xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
��-- MySQL dump 10.13 Distrib 8.4.3, for Win64 (x86_64) -- -- Host: localhost Database: ghana -- ------------------------------------------------------ -- Server version 8.4.3 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `addons` -- DROP TABLE IF EXISTS `addons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `addons` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `unique_identifier` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `version` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `activated` int NOT NULL DEFAULT '1', `image` varchar(1000) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `purchase_code` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `addons` -- LOCK TABLES `addons` WRITE; /*!40000 ALTER TABLE `addons` DISABLE KEYS */; INSERT INTO `addons` VALUES (1,'OTP','otp_system','3.0',1,'otp_system.png','969443bf-37cf-4735-b609-f33726a344f1','2026-01-21 23:05:14','2026-01-21 23:05:14'),(2,'affiliate','affiliate_system','2.1',1,'affiliate_banner.jpg','1404a357-703c-4b7c-9e73-d1c3634f4ff3','2026-01-21 23:11:26','2026-01-21 23:12:28'),(3,'Seller Subscription System','seller_subscription','2.3',1,'seller_subscription.jpg','1404a357-703c-4b7c-9e73-d1c3634f4ff3','2026-01-21 23:13:04','2026-01-21 23:13:04'); /*!40000 ALTER TABLE `addons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `addresses` -- DROP TABLE IF EXISTS `addresses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `addresses` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `address` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `country_id` int DEFAULT NULL, `state_id` int DEFAULT NULL, `city_id` int DEFAULT NULL, `area_id` int DEFAULT NULL, `longitude` float(17,15) DEFAULT NULL, `latitude` float(17,15) DEFAULT NULL, `postal_code` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `phone` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `set_default` int NOT NULL DEFAULT '0', `set_billing` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `addresses` -- LOCK TABLES `addresses` WRITE; /*!40000 ALTER TABLE `addresses` DISABLE KEYS */; /*!40000 ALTER TABLE `addresses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `affiliate_configs` -- DROP TABLE IF EXISTS `affiliate_configs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `affiliate_configs` ( `id` int NOT NULL AUTO_INCREMENT, `type` varchar(1000) CHARACTER SET utf32 COLLATE utf32_unicode_ci DEFAULT NULL, `value` text CHARACTER SET utf32 COLLATE utf32_unicode_ci, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `affiliate_configs` -- LOCK TABLES `affiliate_configs` WRITE; /*!40000 ALTER TABLE `affiliate_configs` DISABLE KEYS */; INSERT INTO `affiliate_configs` VALUES (1,'verification_form','[{\"type\":\"text\",\"label\":\"Your name\"},{\"type\":\"text\",\"label\":\"Email\"},{\"type\":\"text\",\"label\":\"Full Address\"},{\"type\":\"text\",\"label\":\"Phone Number\"},{\"type\":\"text\",\"label\":\"How will you affiliate?\"}]','2026-01-21 23:11:27','2026-01-21 23:11:27'),(2,'minimum_affiliate_withdraw_amount','0','2026-01-21 23:11:27','2026-01-21 23:11:27'); /*!40000 ALTER TABLE `affiliate_configs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `affiliate_logs` -- DROP TABLE IF EXISTS `affiliate_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `affiliate_logs` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL, `guest_id` int DEFAULT NULL, `referred_by_user` int NOT NULL, `amount` double(20,2) NOT NULL, `order_id` bigint DEFAULT NULL, `order_detail_id` bigint DEFAULT NULL, `affiliate_type` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` tinyint 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `affiliate_logs` -- LOCK TABLES `affiliate_logs` WRITE; /*!40000 ALTER TABLE `affiliate_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `affiliate_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `affiliate_options` -- DROP TABLE IF EXISTS `affiliate_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `affiliate_options` ( `id` int NOT NULL AUTO_INCREMENT, `type` varchar(255) CHARACTER SET utf32 COLLATE utf32_unicode_ci DEFAULT NULL, `details` longtext CHARACTER SET utf32 COLLATE utf32_unicode_ci, `percentage` double NOT NULL DEFAULT '0', `status` int 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=utf32 COLLATE=utf32_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `affiliate_options` -- LOCK TABLES `affiliate_options` WRITE; /*!40000 ALTER TABLE `affiliate_options` DISABLE KEYS */; INSERT INTO `affiliate_options` VALUES (2,'user_registration_first_purchase',NULL,20,1,'2020-03-03 05:08:37','2020-03-05 03:56:30'),(3,'product_sharing',NULL,20,0,'2020-03-08 01:55:03','2020-03-10 02:12:32'),(4,'category_wise_affiliate',NULL,0,0,'2020-03-08 01:55:03','2020-03-10 02:12:32'); /*!40000 ALTER TABLE `affiliate_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `affiliate_payments` -- DROP TABLE IF EXISTS `affiliate_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `affiliate_payments` ( `id` int NOT NULL AUTO_INCREMENT, `affiliate_user_id` int NOT NULL, `amount` double(8,2) NOT NULL, `payment_method` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `payment_details` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `affiliate_payments` -- LOCK TABLES `affiliate_payments` WRITE; /*!40000 ALTER TABLE `affiliate_payments` DISABLE KEYS */; INSERT INTO `affiliate_payments` VALUES (2,1,20.00,'Paypal',NULL,'2020-03-10 02:04:30','2020-03-10 02:04:30'); /*!40000 ALTER TABLE `affiliate_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `affiliate_stats` -- DROP TABLE IF EXISTS `affiliate_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `affiliate_stats` ( `id` int NOT NULL AUTO_INCREMENT, `affiliate_user_id` int NOT NULL, `no_of_click` int NOT NULL DEFAULT '0', `no_of_order_item` int NOT NULL DEFAULT '0', `no_of_delivered` int NOT NULL DEFAULT '0', `no_of_cancel` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `affiliate_stats` -- LOCK TABLES `affiliate_stats` WRITE; /*!40000 ALTER TABLE `affiliate_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `affiliate_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `affiliate_users` -- DROP TABLE IF EXISTS `affiliate_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `affiliate_users` ( `id` int NOT NULL AUTO_INCREMENT, `paypal_email` varchar(255) CHARACTER SET utf32 COLLATE utf32_unicode_ci DEFAULT NULL, `bank_information` text CHARACTER SET utf32 COLLATE utf32_unicode_ci, `user_id` int NOT NULL, `informations` text CHARACTER SET utf32 COLLATE utf32_unicode_ci, `balance` double(10,2) NOT NULL DEFAULT '0.00', `status` int NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `affiliate_users` -- LOCK TABLES `affiliate_users` WRITE; /*!40000 ALTER TABLE `affiliate_users` DISABLE KEYS */; INSERT INTO `affiliate_users` VALUES (1,'demo@gmail.com','123456',8,'[{\"type\":\"text\",\"label\":\"Your name\",\"value\":\"Nostrum dicta sint l\"},{\"type\":\"text\",\"label\":\"Email\",\"value\":\"Aut perferendis null\"},{\"type\":\"text\",\"label\":\"Full Address\",\"value\":\"Voluptatem Sit dolo\"},{\"type\":\"text\",\"label\":\"Phone Number\",\"value\":\"Ut ad beatae occaeca\"},{\"type\":\"text\",\"label\":\"How will you affiliate?\",\"value\":\"Porro sint soluta u\"}]',30.00,1,'2020-03-09 05:35:07','2020-03-10 02:04:30'); /*!40000 ALTER TABLE `affiliate_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `affiliate_withdraw_requests` -- DROP TABLE IF EXISTS `affiliate_withdraw_requests`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `affiliate_withdraw_requests` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `amount` double(10,2) NOT NULL, `status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `affiliate_withdraw_requests` -- LOCK TABLES `affiliate_withdraw_requests` WRITE; /*!40000 ALTER TABLE `affiliate_withdraw_requests` DISABLE KEYS */; /*!40000 ALTER TABLE `affiliate_withdraw_requests` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `app_translations` -- DROP TABLE IF EXISTS `app_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `app_translations` ( `id` int NOT NULL AUTO_INCREMENT, `lang` varchar(10) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `lang_key` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `lang_value` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2258 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `app_translations` -- LOCK TABLES `app_translations` WRITE; /*!40000 ALTER TABLE `app_translations` DISABLE KEYS */; INSERT INTO `app_translations` VALUES (1,'en','all_category_ucf','All Category','2020-11-02 07:40:38','2021-09-20 07:29:07'),(2,'en','all_ucf','All','2020-11-02 07:40:38','2021-09-20 07:29:07'),(3,'en','flash_sale_ucf','Flash Sale','2020-11-02 07:40:40','2021-09-20 07:29:07'),(4,'en','view_more_ucf','View More','2020-11-02 07:40:40','2021-09-20 07:29:07'),(5,'en','add_to_wishlist_ucf','Add to wishlist','2020-11-02 07:40:40','2021-09-20 07:29:07'),(6,'en','add_to_compare_ucf','Add to compare','2020-11-02 07:40:40','2021-09-20 07:29:07'),(7,'en','add_to_cart_ucf','Add to cart','2020-11-02 07:40:40','2021-09-20 07:29:07'),(8,'en','club_point_ucf','Club Point','2020-11-02 07:40:40','2021-09-20 07:29:07'),(9,'en','classified_ads_ucf','Classified Ads','2020-11-02 07:40:40','2021-09-20 07:29:07'),(10,'en','used_ucf','Used','2020-11-02 07:40:40','2021-09-20 07:29:07'),(11,'en','top_10_categories_ucf','Top 10 Categories','2020-11-02 07:40:40','2021-09-20 07:29:07'),(12,'en','view_all_categories_ucf','View All Categories','2020-11-02 07:40:40','2021-09-20 07:29:07'),(13,'en','top_10_brands_ucf','Top 10 Brands','2020-11-02 07:40:40','2021-09-20 07:29:07'),(14,'en','view_all_brands_ucf','View All Brands','2020-11-02 07:40:40','2021-09-20 07:29:07'),(15,'en','terms__conditions_ucf','Terms & conditions','2020-11-02 07:40:41','2021-09-20 07:29:07'),(16,'en','best_selling_ucf','Best Selling','2020-11-02 07:40:42','2021-09-20 07:29:07'),(17,'en','top_20_ucf','Top 20','2020-11-02 07:40:42','2021-09-20 07:29:07'),(18,'en','featured_products_ucf','Featured Products','2020-11-02 07:40:42','2021-09-20 07:29:07'),(19,'en','best_sellers_ucf','Best Sellers','2020-11-02 07:40:43','2021-09-20 07:29:07'),(20,'en','visit_store_ucf','Visit Store','2020-11-02 07:40:43','2021-09-20 07:29:07'),(21,'en','popular_suggestions_ucf','Popular Suggestions','2020-11-02 07:46:59','2021-09-20 07:29:07'),(22,'en','category_suggestions_ucf','Category Suggestions','2020-11-02 07:46:59','2021-09-20 07:29:07'),(23,'en','automobile__motorcycle_ucf','Automobile & Motorcycle','2020-11-02 07:47:01','2021-09-20 07:29:07'),(24,'en','price_range_ucf','Price range','2020-11-02 07:47:01','2021-09-20 07:29:07'),(25,'en','filter_by_color_ucf','Filter by color','2020-11-02 07:47:02','2021-09-20 07:29:07'),(26,'en','home_ucf','Home','2020-11-02 07:47:02','2021-09-20 07:29:07'),(27,'en','newest_ucf','Newest','2020-11-02 07:47:02','2021-09-20 07:29:07'),(28,'en','oldest_ucf','Oldest','2020-11-02 07:47:02','2021-09-20 07:29:07'),(29,'en','price_low_to_high_ucf','Price low to high','2020-11-02 07:47:02','2021-09-20 07:29:07'),(30,'en','price_high_to_low_ucf','Price high to low','2020-11-02 07:47:02','2021-09-20 07:29:07'),(31,'en','brands_ucf','Brands','2020-11-02 07:47:02','2021-09-20 07:29:07'),(32,'en','all_brands_ucf','All Brands','2020-11-02 07:47:02','2021-09-20 07:29:07'),(33,'en','all_sellers_ucf','All Sellers','2020-11-02 07:47:02','2021-09-20 07:29:07'),(34,'en','inhouse_product_ucf','Inhouse product','2020-11-02 08:18:03','2021-09-20 07:29:07'),(35,'en','message_seller_ucf','Message Seller','2020-11-02 08:18:03','2021-09-20 07:29:07'),(36,'en','price_ucf','Price','2020-11-02 08:18:03','2021-09-20 07:29:07'),(37,'en','discount_price_ucf','Discount Price','2020-11-02 08:18:03','2021-09-20 07:29:07'),(38,'en','color_ucf','Color','2020-11-02 08:18:03','2021-09-20 07:29:07'),(39,'en','quantity_ucf','Quantity','2020-11-02 08:18:03','2021-09-20 07:29:07'),(40,'en','available_ucf','available','2020-11-02 08:18:03','2021-02-09 06:52:36'),(41,'en','total_price_ucf','Total Price','2020-11-02 08:18:03','2021-09-20 07:29:07'),(42,'en','out_of_stock_ucf','Out of Stock','2020-11-02 08:18:03','2021-09-20 07:29:07'),(43,'en','refund_ucf','Refund','2020-11-02 08:18:03','2021-09-20 07:29:07'),(44,'en','share_ucf','Share','2020-11-02 08:18:03','2021-09-20 07:29:07'),(45,'en','sold_by_ucf','Sold By','2020-11-02 08:18:03','2021-09-20 07:36:54'),(46,'en','customer_reviews_ucf','customer reviews','2020-11-02 08:18:03','2021-09-20 07:29:07'),(47,'en','top_selling_products_ucf','Top Selling Products','2020-11-02 08:18:03','2021-09-20 07:29:07'),(48,'en','description_ucf','Description','2020-11-02 08:18:03','2021-09-20 07:29:07'),(49,'en','video_ucf','Video','2020-11-02 08:18:03','2021-09-20 07:29:07'),(50,'en','reviews_ucf','Reviews','2020-11-02 08:18:03','2021-09-20 07:29:07'),(51,'en','download_ucf','Download','2020-11-02 08:18:03','2021-09-20 07:29:07'),(52,'en','there_have_been_no_reviews_for_this_product_yet_ucf','There have been no reviews for this product yet.','2020-11-02 08:18:03','2021-09-20 07:29:07'),(53,'en','related_products_ucf','Related products','2020-11-02 08:18:03','2021-09-20 07:29:07'),(54,'en','any_query_about_this_product_ucf','Any query about this product','2020-11-02 08:18:03','2021-09-20 07:29:07'),(55,'en','product_name_ucf','Product Name','2020-11-02 08:18:03','2021-09-20 07:29:07'),(56,'en','your_question_ucf','Your Question','2020-11-02 08:18:03','2021-09-20 07:29:07'),(57,'en','send_ucf','Send','2020-11-02 08:18:03','2021-09-20 07:29:07'),(58,'en','use_country_code_before_number_ucf','Use country code before number','2020-11-02 08:18:03','2021-09-20 07:29:07'),(59,'en','remember_me_ucf','Remember Me','2020-11-02 08:18:03','2021-09-20 07:29:07'),(60,'en','dont_have_an_account_ucf','Dont have an account?','2020-11-02 08:18:04','2021-09-20 07:29:07'),(61,'en','register_now_ucf','Register Now','2020-11-02 08:18:04','2021-09-20 07:29:07'),(62,'en','or_login_with_ucf','Or Login With','2020-11-02 08:18:04','2021-09-20 07:29:07'),(63,'en','oops_ucf','oops..','2020-11-02 10:29:04','2021-09-20 07:29:07'),(64,'en','this_item_is_out_of_stock_ucf','This item is out of stock!','2020-11-02 10:29:04','2021-09-20 07:29:07'),(65,'en','back_to_shopping_ucf','Back to shopping','2020-11-02 10:29:04','2021-09-20 07:29:07'),(66,'en','login_to_your_account_ucf','Login to your account.','2020-11-02 11:27:41','2021-09-20 07:29:07'),(67,'en','purchase_history_ucf','Purchase History','2020-11-02 11:27:53','2021-09-20 07:29:07'),(68,'en','new_ucf','New','2020-11-02 11:27:53','2021-09-20 07:29:07'),(69,'en','downloads_ucf','Downloads','2020-11-02 11:27:53','2021-09-20 07:29:07'),(70,'en','sent_refund_request_ucf','Sent Refund Request','2020-11-02 11:27:53','2021-09-20 07:29:07'),(71,'en','product_bulk_upload_ucf','Product Bulk Upload','2020-11-02 11:27:53','2021-09-20 07:29:07'),(72,'en','orders_ucf','Orders','2020-11-02 11:27:53','2021-09-20 07:29:07'),(73,'en','recieved_refund_request_ucf','Recieved Refund Request','2020-11-02 11:27:53','2021-09-20 07:29:07'),(74,'en','shop_setting_ucf','Shop Setting','2020-11-02 11:27:53','2021-09-20 07:29:07'),(75,'en','payment_history_ucf','Payment History','2020-11-02 11:27:53','2021-09-20 07:29:07'),(76,'en','money_withdraw_ucf','Money Withdraw','2020-11-02 11:27:53','2021-09-20 07:29:07'),(77,'en','conversations_ucf','Conversations','2020-11-02 11:27:53','2021-09-20 07:29:07'),(78,'en','my_wallet_ucf','My Wallet','2020-11-02 11:27:53','2021-09-20 07:29:07'),(79,'en','earning_points_ucf','Earning Points','2020-11-02 11:27:53','2021-09-20 07:29:07'),(80,'en','support_ticket_ucf','Support Ticket','2020-11-02 11:27:53','2021-09-20 07:29:07'),(81,'en','manage_profile_ucf','Manage Profile','2020-11-02 11:27:53','2021-09-20 07:29:07'),(82,'en','sold_amount_ucf','Sold Amount','2020-11-02 11:27:53','2021-09-20 07:29:07'),(83,'en','your_sold_amount_current_month_ucf','Your sold amount (current month)','2020-11-02 11:27:53','2021-09-20 07:29:07'),(84,'en','total_sold_ucf','Total Sold','2020-11-02 11:27:54','2021-09-20 07:29:07'),(85,'en','last_month_sold_ucf','Last Month Sold','2020-11-02 11:27:54','2021-09-20 07:29:07'),(86,'en','total_sale_ucf','Total sale','2020-11-02 11:27:54','2021-09-20 07:29:07'),(87,'en','total_earnings_ucf','Total earnings','2020-11-02 11:27:54','2021-09-20 07:29:07'),(88,'en','successful_orders_ucf','Successful orders','2020-11-02 11:27:54','2021-09-20 07:29:07'),(89,'en','total_orders_ucf','Total orders','2020-11-02 11:27:54','2021-09-20 07:29:07'),(90,'en','pending_orders_ucf','Pending orders','2020-11-02 11:27:54','2021-09-20 07:29:07'),(91,'en','cancelled_orders_ucf','Cancelled orders','2020-11-02 11:27:54','2021-09-20 07:29:07'),(92,'en','product_ucf','Product','2020-11-02 11:27:55','2021-09-20 07:29:07'),(93,'en','purchased_package_ucf','Purchased Package','2020-11-02 11:27:55','2021-09-20 07:29:07'),(94,'en','package_not_found_ucf','Package Not Found','2020-11-02 11:27:55','2021-09-20 07:29:07'),(95,'en','upgrade_package_ucf','Upgrade Package','2020-11-02 11:27:55','2021-09-20 07:29:07'),(96,'en','shop_ucf','Shop','2020-11-02 11:27:55','2021-09-20 07:29:07'),(97,'en','manage__organize_your_shop_ucf','Manage & organize your shop','2020-11-02 11:27:55','2021-09-20 07:29:07'),(98,'en','go_to_setting_ucf','Go to setting','2020-11-02 11:27:55','2021-09-20 07:29:07'),(99,'en','payment_ucf','Payment','2020-11-02 11:27:55','2021-09-20 07:29:07'),(100,'en','configure_your_payment_method_ucf','Configure your payment method','2020-11-02 11:27:55','2021-09-20 07:29:07'),(101,'en','my_panel_ucf','My Panel','2020-11-02 11:27:55','2021-09-20 07:29:07'),(102,'en','item_has_been_added_to_wishlist_ucf','Item has been added to wishlist','2020-11-02 11:27:55','2021-09-20 07:29:07'),(103,'en','my_points_ucf','My Points','2020-11-02 11:28:15','2021-09-20 07:29:07'),(104,'en','_points_ucf','Points','2020-11-02 11:28:15','2021-09-20 07:29:07'),(105,'en','wallet_money_ucf','Wallet Money','2020-11-02 11:28:16','2021-09-20 07:29:07'),(106,'en','exchange_rate_ucf','Exchange Rate','2020-11-02 11:28:16','2021-09-20 07:29:07'),(107,'en','point_earning_history_ucf','Point Earning history','2020-11-02 11:28:16','2021-09-20 07:29:07'),(108,'en','date_ucf','Date','2020-11-02 11:28:16','2021-09-20 07:29:07'),(109,'en','points_ucf','Points','2020-11-02 11:28:16','2021-09-20 07:29:07'),(110,'en','converted_ucf','Converted','2020-11-02 11:28:16','2021-09-20 07:29:07'),(111,'en','action_ucf','Action','2020-11-02 11:28:16','2021-09-20 07:29:07'),(112,'en','no_history_found_ucf','No history found.','2020-11-02 11:28:16','2021-09-20 07:29:07'),(113,'en','convert_has_been_done_successfully_check_your_wallets_ucf','Convert has been done successfully Check your Wallets','2020-11-02 11:28:16','2021-09-20 07:29:07'),(114,'en','something_went_wrong_ucf','Something went wrong','2020-11-02 11:28:16','2021-09-20 07:29:07'),(115,'en','remaining_uploads_ucf','Remaining Uploads','2020-11-02 11:37:13','2021-09-20 07:29:07'),(116,'en','no_package_found_ucf','No Package Found','2020-11-02 11:37:13','2021-09-20 07:29:07'),(117,'en','search_product_ucf','Search product','2020-11-02 11:37:13','2021-09-20 07:29:07'),(118,'en','name_ucf','Name','2020-11-02 11:37:13','2021-09-20 07:29:07'),(119,'en','current_qty_ucf','Current Qty','2020-11-02 11:37:13','2021-09-20 07:29:07'),(120,'en','base_price_ucf','Base Price','2020-11-02 11:37:13','2021-09-20 07:29:07'),(121,'en','published_ucf','Published','2020-11-02 11:37:13','2021-09-20 07:29:07'),(122,'en','featured_ucf','Featured','2020-11-02 11:37:13','2021-09-20 07:29:07'),(123,'en','options_ucf','Options','2020-11-02 11:37:13','2021-09-20 07:29:07'),(124,'en','edit_ucf','Edit','2020-11-02 11:37:13','2021-09-20 07:29:07'),(125,'en','duplicate_ucf','Duplicate','2020-11-02 11:37:13','2021-09-20 07:29:07'),(126,'en','1_download_the_skeleton_file_and_fill_it_with_data_ucf','1. Download the skeleton file and fill it with data.','2020-11-02 11:37:20','2021-09-20 07:29:07'),(127,'en','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled_ucf','2. You can download the example file to understand how the data must be filled.','2020-11-02 11:37:20','2021-09-20 07:29:07'),(128,'en','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit_ucf','3. Once you have downloaded and filled the skeleton file, upload it in the form below and submit.','2020-11-02 11:37:20','2021-09-20 07:29:07'),(129,'en','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices_ucf','4. After uploading products you need to edit them and set products images and choices.','2020-11-02 11:37:20','2021-09-20 07:29:07'),(130,'en','download_csv_ucf','Download CSV','2020-11-02 11:37:20','2021-09-20 07:29:07'),(131,'en','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids_ucf','1. Category,Sub category,Sub Sub category and Brand should be in numerical ids.','2020-11-02 11:37:20','2021-09-20 07:29:07'),(132,'en','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id_ucf','2. You can download the pdf to get Category,Sub category,Sub Sub category and Brand id.','2020-11-02 11:37:20','2021-09-20 07:29:07'),(133,'en','download_category_ucf','Download Category','2020-11-02 11:37:20','2021-09-20 07:29:07'),(134,'en','download_sub_category_ucf','Download Sub category','2020-11-02 11:37:20','2021-09-20 07:29:07'),(135,'en','download_sub_sub_category_ucf','Download Sub Sub category','2020-11-02 11:37:20','2021-09-20 07:29:07'),(136,'en','download_brand_ucf','Download Brand','2020-11-02 11:37:20','2021-09-20 07:29:07'),(137,'en','upload_csv_file_ucf','Upload CSV File','2020-11-02 11:37:20','2021-09-20 07:29:07'),(138,'en','csv_ucf','CSV','2020-11-02 11:37:20','2021-09-20 07:29:07'),(139,'en','choose_csv_file_ucf','Choose CSV File','2020-11-02 11:37:20','2021-09-20 07:29:07'),(140,'en','upload_ucf','Upload','2020-11-02 11:37:20','2021-09-20 07:29:07'),(141,'en','add_new_digital_product_ucf','Add New Digital Product','2020-11-02 11:37:25','2021-09-20 07:29:07'),(142,'en','available_status_ucf','Available Status','2020-11-02 11:37:29','2021-09-20 07:29:07'),(143,'en','admin_status_ucf','Admin Status','2020-11-02 11:37:29','2021-09-20 07:29:07'),(144,'en','pending_balance_ucf','Pending Balance','2020-11-02 11:38:07','2021-09-20 07:29:07'),(145,'en','send_withdraw_request_ucf','Send Withdraw Request','2020-11-02 11:38:07','2021-09-20 07:29:07'),(146,'en','withdraw_request_history_ucf','Withdraw Request history','2020-11-02 11:38:07','2021-09-20 07:29:07'),(147,'en','amount_ucf','Amount','2020-11-02 11:38:07','2021-09-20 07:29:07'),(148,'en','status_ucf','Status','2020-11-02 11:38:07','2021-09-20 07:29:07'),(149,'en','message_ucf','Message','2020-11-02 11:38:07','2021-09-20 07:29:07'),(150,'en','send_a_withdraw_request_ucf','Send A Withdraw Request','2020-11-02 11:38:07','2021-09-20 07:29:07'),(151,'en','basic_info_ucf','Basic Info','2020-11-02 11:38:13','2021-09-20 07:29:07'),(152,'en','your_phone_ucf','Your Phone','2020-11-02 11:38:13','2021-09-20 07:29:07'),(153,'en','photo_ucf','Photo','2020-11-02 11:38:13','2021-09-20 07:29:07'),(154,'en','browse_ucf','Browse','2020-11-02 11:38:13','2021-09-20 07:29:07'),(155,'en','your_password_ucf','Your Password','2020-11-02 11:38:13','2021-09-20 07:29:07'),(156,'en','new_password_ucf','New Password','2020-11-02 11:38:14','2021-09-20 07:29:07'),(157,'en','confirm_password_ucf','Confirm Password','2020-11-02 11:38:14','2021-09-20 07:29:07'),(158,'en','add_new_address_ucf','Add New Address','2020-11-02 11:38:14','2021-09-20 07:29:07'),(159,'en','payment_setting_ucf','Payment Setting','2020-11-02 11:38:14','2021-09-20 07:29:07'),(160,'en','cash_payment_ucf','Cash Payment','2020-11-02 11:38:14','2021-09-20 07:29:07'),(161,'en','bank_payment_ucf','Bank Payment','2020-11-02 11:38:14','2021-09-20 07:29:07'),(162,'en','bank_name_ucf','Bank Name','2020-11-02 11:38:14','2021-09-20 07:29:07'),(163,'en','bank_account_name_ucf','Bank Account Name','2020-11-02 11:38:14','2021-09-20 07:29:07'),(164,'en','bank_account_number_ucf','Bank Account Number','2020-11-02 11:38:14','2021-09-20 07:29:07'),(165,'en','bank_routing_number_ucf','Bank Routing Number','2020-11-02 11:38:14','2021-09-20 07:29:07'),(166,'en','update_profile_ucf','Update Profile','2020-11-02 11:38:14','2021-09-20 07:29:07'),(167,'en','change_your_email_ucf','Change your email','2020-11-02 11:38:14','2021-09-20 07:29:07'),(168,'en','your_email_ucf','Your Email','2020-11-02 11:38:14','2021-09-20 07:29:07'),(169,'en','sending_email_ucf','Sending Email...','2020-11-02 11:38:14','2021-09-20 07:29:07'),(170,'en','verify_ucf','Verify','2020-11-02 11:38:14','2021-09-20 07:29:07'),(171,'en','update_email_ucf','Update Email','2020-11-02 11:38:14','2021-09-20 07:29:07'),(172,'en','new_address_ucf','New Address','2020-11-02 11:38:14','2021-09-20 07:29:07'),(173,'en','your_address_ucf','Your Address','2020-11-02 11:38:14','2021-09-20 07:29:07'),(174,'en','country_ucf','Country','2020-11-02 11:38:14','2021-09-20 07:29:07'),(175,'en','select_your_country_ucf','Select your country','2020-11-02 11:38:14','2021-09-20 07:29:07'),(176,'en','city_ucf','City','2020-11-02 11:38:14','2021-09-20 07:29:07'),(177,'en','your_city_ucf','Your City','2020-11-02 11:38:14','2021-09-20 07:29:07'),(178,'en','your_postal_code_ucf','Your Postal Code','2020-11-02 11:38:14','2021-09-20 07:29:07'),(179,'en','880_ucf','+880','2020-11-02 11:38:14','2021-09-20 07:29:07'),(180,'en','save_ucf','Save','2020-11-02 11:38:14','2021-09-20 07:29:07'),(181,'en','received_refund_request_ucf','Received Refund Request','2020-11-02 11:56:20','2021-09-20 07:29:07'),(182,'en','delete_confirmation_ucf','Delete Confirmation','2020-11-02 11:56:20','2021-09-20 07:29:07'),(183,'en','are_you_sure_to_delete_this_ucf','Are you sure to delete this?','2020-11-02 11:56:21','2021-09-20 07:29:07'),(184,'en','premium_packages_for_sellers_ucf','Premium Packages for Sellers','2020-11-02 11:57:36','2021-09-20 07:29:07'),(185,'en','product_upload_ucf','Product Upload','2020-11-02 11:57:36','2021-09-20 07:29:07'),(186,'en','digital_product_upload_ucf','Digital Product Upload','2020-11-02 11:57:36','2021-09-20 07:29:07'),(187,'en','purchase_package_ucf','Purchase Package','2020-11-02 11:57:36','2021-09-20 07:29:07'),(188,'en','select_payment_type_ucf','Select Payment Type','2020-11-02 11:57:36','2021-09-20 07:29:07'),(189,'en','payment_type_ucf','Payment Type','2020-11-02 11:57:36','2021-09-20 07:29:07'),(190,'en','select_one_ucf','Select One','2020-11-02 11:57:36','2021-09-20 07:29:07'),(191,'en','online_payment_ucf','Online payment','2020-11-02 11:57:37','2021-09-20 07:29:07'),(192,'en','offline_payment_ucf','Offline payment','2020-11-02 11:57:37','2021-09-20 07:29:07'),(193,'en','purchase_your_package_ucf','Purchase Your Package','2020-11-02 11:57:37','2021-09-20 07:29:07'),(194,'en','paypal_ucf','Paypal','2020-11-02 11:57:37','2021-09-20 07:29:07'),(195,'en','stripe_ucf','Stripe','2020-11-02 11:57:37','2021-09-20 07:29:07'),(196,'en','sslcommerz_ucf','sslcommerz','2020-11-02 11:57:37','2020-11-02 11:57:37'),(197,'en','confirm_ucf','Confirm','2020-11-02 11:57:37','2021-09-20 07:29:08'),(198,'en','offline_package_payment_ucf','Offline Package Payment','2020-11-02 11:57:37','2021-09-20 07:29:08'),(199,'en','transaction_id_ucf','Transaction ID','2020-11-02 12:30:12','2021-09-20 07:29:08'),(200,'en','choose_image_ucf','Choose image','2020-11-02 12:30:12','2021-09-20 07:29:08'),(201,'en','code_ucf','Code','2020-11-02 12:42:00','2021-09-20 07:29:08'),(202,'en','delivery_status_ucf','Delivery Status','2020-11-02 12:42:00','2021-09-20 07:29:08'),(203,'en','payment_status_ucf','Payment Status','2020-11-02 12:42:00','2021-09-20 07:29:08'),(204,'en','paid_ucf','Paid','2020-11-02 12:42:00','2021-09-20 07:29:08'),(205,'en','order_details_ucf','Order Details','2020-11-02 12:42:00','2021-09-20 07:29:08'),(206,'en','download_invoice_ucf','Download Invoice','2020-11-02 12:42:00','2021-09-20 07:29:08'),(207,'en','unpaid_ucf','Unpaid','2020-11-02 12:42:00','2021-09-20 07:29:08'),(208,'en','order_placed_ucf','Order placed','2020-11-02 12:43:59','2021-09-20 07:29:08'),(209,'en','confirmed_ucf','Confirmed','2020-11-02 12:43:59','2021-09-20 07:29:08'),(210,'en','on_delivery_ucf','On delivery','2020-11-02 12:43:59','2021-09-20 07:29:08'),(211,'en','delivered_ucf','Delivered','2020-11-02 12:43:59','2021-09-20 07:29:08'),(212,'en','order_summary_ucf','Order Summary','2020-11-02 12:43:59','2021-09-20 07:29:08'),(213,'en','order_code_ucf','Order Code','2020-11-02 12:43:59','2021-09-20 07:29:08'),(214,'en','customer_ucf','Customer','2020-11-02 12:43:59','2021-09-20 07:29:08'),(215,'en','total_order_amount_ucf','Total order amount','2020-11-02 12:43:59','2021-09-20 07:29:08'),(216,'en','shipping_metdod_ucf','Shipping metdod','2020-11-02 12:43:59','2021-09-20 07:29:08'),(217,'en','flat_shipping_rate_ucf','Flat shipping rate','2020-11-02 12:44:00','2021-09-20 07:29:08'),(218,'en','payment_metdod_ucf','Payment metdod','2020-11-02 12:44:00','2021-09-20 07:29:08'),(219,'en','variation_ucf','Variation','2020-11-02 12:44:00','2021-09-20 07:29:08'),(220,'en','delivery_type_ucf','Delivery Type','2020-11-02 12:44:00','2021-09-20 07:29:08'),(221,'en','home_delivery_ucf','Home Delivery','2020-11-02 12:44:00','2021-09-20 07:29:08'),(222,'en','order_ammount_ucf','Order Ammount','2020-11-02 12:44:00','2021-09-20 07:29:08'),(223,'en','subtotal_ucf','Subtotal','2020-11-02 12:44:00','2021-09-20 07:29:08'),(224,'en','shipping_ucf','Shipping','2020-11-02 12:44:00','2021-09-20 07:29:08'),(225,'en','coupon_discount_ucf','Coupon Discount','2020-11-02 12:44:00','2021-09-20 07:29:08'),(226,'en','na_ucf','N/A','2020-11-02 12:44:20','2021-09-20 07:29:08'),(227,'en','in_stock_ucf','In stock','2020-11-02 12:54:52','2021-09-20 07:29:08'),(228,'en','buy_now_ucf','Buy Now','2020-11-02 12:54:52','2021-09-20 07:29:08'),(229,'en','item_added_to_your_cart_ucf','Item added to your cart!','2020-11-02 12:56:46','2021-09-20 07:29:08'),(230,'en','proceed_to_checkout_ucf','Proceed to Checkout','2020-11-02 12:56:46','2021-09-20 07:29:08'),(231,'en','cart_items_ucf','Cart Items','2020-11-02 12:56:46','2021-09-20 07:29:08'),(232,'en','1_my_cart_ucf','1. My Cart','2020-11-02 12:56:46','2021-09-20 07:29:08'),(233,'en','view_cart_ucf','View cart','2020-11-02 12:56:46','2021-09-20 07:29:08'),(234,'en','2_shipping_info_ucf','2. Shipping info','2020-11-02 12:56:46','2021-09-20 07:29:08'),(235,'en','checkout_ucf','Checkout','2020-11-02 12:56:46','2021-09-20 07:29:08'),(236,'en','3_delivery_info_ucf','3. Delivery info','2020-11-02 12:56:46','2021-09-20 07:29:08'),(237,'en','4_payment_ucf','4. Payment','2020-11-02 12:56:46','2021-09-20 07:29:08'),(238,'en','5_confirmation_ucf','5. Confirmation','2020-11-02 12:56:46','2021-09-20 07:29:08'),(239,'en','remove_ucf','Remove','2020-11-02 12:56:46','2021-09-20 07:29:08'),(240,'en','return_to_shop_ucf','Return to shop','2020-11-02 12:56:46','2021-09-20 07:29:08'),(241,'en','continue_to_shipping_ucf','Continue to Shipping','2020-11-02 12:56:46','2021-09-20 07:29:08'),(242,'en','or_ucf','Or','2020-11-02 12:56:46','2021-09-20 07:29:08'),(243,'en','guest_checkout_ucf','Guest Checkout','2020-11-02 12:56:46','2021-09-20 07:29:08'),(244,'en','continue_to_delivery_info_ucf','Continue to Delivery Info','2020-11-02 12:57:44','2021-09-20 07:29:08'),(245,'en','postal_code_ucf','Postal Code','2020-11-02 13:01:01','2021-09-20 07:29:08'),(246,'en','choose_delivery_type_ucf','Choose Delivery Type','2020-11-02 13:01:04','2021-09-20 07:29:08'),(247,'en','local_pickup_ucf','Local Pickup','2020-11-02 13:01:04','2021-09-20 07:29:08'),(248,'en','select_your_nearest_pickup_point_ucf','Select your nearest pickup point','2020-11-02 13:01:04','2021-09-20 07:29:08'),(249,'en','continue_to_payment_ucf','Continue to Payment','2020-11-02 13:01:04','2021-09-20 07:29:08'),(250,'en','select_a_payment_option_ucf','Select a payment option','2020-11-02 13:01:13','2021-09-20 07:29:08'),(251,'en','razorpay_ucf','Razorpay','2020-11-02 13:01:13','2021-09-20 07:29:08'),(252,'en','paystack_ucf','Paystack','2020-11-02 13:01:13','2021-09-20 07:29:08'),(253,'en','voguepay_ucf','VoguePay','2020-11-02 13:01:13','2021-09-20 07:29:08'),(254,'en','payhere_ucf','payhere','2020-11-02 13:01:13','2021-02-09 06:52:37'),(255,'en','ngenius_ucf','ngenius','2020-11-02 13:01:13','2020-11-02 13:01:13'),(256,'en','paytm_ucf','Paytm','2020-11-02 13:01:13','2021-09-20 07:29:08'),(257,'en','cash_on_delivery_ucf','Cash on Delivery','2020-11-02 13:01:13','2021-09-20 07:29:08'),(258,'en','your_wallet_balance__ucf','Your wallet balance :','2020-11-02 13:01:13','2021-09-20 07:29:08'),(259,'en','insufficient_balance_ucf','Insufficient balance','2020-11-02 13:01:13','2021-09-20 07:29:08'),(260,'en','i_agree_to_the_ucf','I agree to the','2020-11-02 13:01:14','2021-09-20 07:29:08'),(261,'en','complete_order_ucf','Complete Order','2020-11-02 13:01:14','2021-09-20 07:29:08'),(262,'en','summary_ucf','Summary','2020-11-02 13:01:14','2021-09-20 07:29:08'),(263,'en','items_ucf','Items','2020-11-02 13:01:14','2021-09-20 07:29:08'),(264,'en','total_club_point_ucf','Total Club point','2020-11-02 13:01:14','2021-09-20 07:29:08'),(265,'en','total_shipping_ucf','Total Shipping','2020-11-02 13:01:14','2021-09-20 07:29:08'),(266,'en','have_coupon_code_enter_here_ucf','Have coupon code? Enter here','2020-11-02 13:01:14','2021-09-20 07:29:08'),(267,'en','apply_ucf','Apply','2020-11-02 13:01:14','2021-09-20 07:29:08'),(268,'en','you_need_to_agree_with_our_policies_ucf','You need to agree with our policies','2020-11-02 13:01:14','2021-09-20 07:29:08'),(269,'en','forgot_password_ucf','Forgot password','2020-11-02 13:01:25','2021-09-20 07:29:08'),(270,'en','seo_setting_ucf','SEO Setting','2020-11-02 13:01:33','2021-09-20 07:29:08'),(271,'en','system_update_ucf','System Update','2020-11-02 13:01:34','2021-09-20 07:29:08'),(272,'en','add_new_payment_method_ucf','Add New Payment Method','2020-11-02 13:01:38','2021-09-20 07:29:08'),(273,'en','manual_payment_method_ucf','Manual Payment Method','2020-11-02 13:01:38','2021-09-20 07:29:08'),(274,'en','heading_ucf','Heading','2020-11-02 13:01:38','2021-09-20 07:29:08'),(275,'en','logo_ucf','Logo','2020-11-02 13:01:38','2021-09-20 07:29:08'),(276,'en','manual_payment_information_ucf','Manual Payment Information','2020-11-02 13:01:42','2021-09-20 07:29:08'),(277,'en','type_ucf','Type','2020-11-02 13:01:42','2021-09-20 07:29:08'),(278,'en','custom_payment_ucf','Custom Payment','2020-11-02 13:01:42','2021-09-20 07:29:08'),(279,'en','check_payment_ucf','Check Payment','2020-11-02 13:01:42','2021-09-20 07:29:08'),(280,'en','checkout_thumbnail_ucf','Checkout Thumbnail','2020-11-02 13:01:42','2021-09-20 07:29:08'),(281,'en','payment_instruction_ucf','Payment Instruction','2020-11-02 13:01:42','2021-09-20 07:29:08'),(282,'en','bank_information_ucf','Bank Information','2020-11-02 13:01:42','2021-09-20 07:29:08'),(283,'en','select_file_ucf','Select File','2020-11-02 13:01:53','2021-09-20 07:29:08'),(284,'en','upload_new_ucf','Upload New','2020-11-02 13:01:53','2021-09-20 07:29:08'),(285,'en','sort_by_newest_ucf','Sort by newest','2020-11-02 13:01:53','2021-09-20 07:29:08'),(286,'en','sort_by_oldest_ucf','Sort by oldest','2020-11-02 13:01:53','2021-09-20 07:29:08'),(287,'en','sort_by_smallest_ucf','Sort by smallest','2020-11-02 13:01:53','2021-09-20 07:29:08'),(288,'en','sort_by_largest_ucf','Sort by largest','2020-11-02 13:01:53','2021-09-20 07:29:08'),(289,'en','selected_only_ucf','Selected Only','2020-11-02 13:01:53','2021-09-20 07:29:08'),(290,'en','no_files_found_ucf','No files found','2020-11-02 13:01:53','2021-09-20 07:29:08'),(291,'en','0_file_selected_ucf','0 File selected','2020-11-02 13:01:53','2021-09-20 07:29:08'),(292,'en','clear_ucf','Clear','2020-11-02 13:01:53','2021-09-20 07:29:08'),(293,'en','prev_ucf','Prev','2020-11-02 13:01:53','2021-09-20 07:29:08'),(294,'en','next_ucf','Next','2020-11-02 13:01:53','2021-09-20 07:29:08'),(295,'en','add_files_ucf','Add Files','2020-11-02 13:01:53','2021-09-20 07:29:08'),(296,'en','method_has_been_inserted_successfully_ucf','Method has been inserted successfully','2020-11-02 13:02:03','2021-09-20 07:29:08'),(297,'en','order_date_ucf','Order Date','2020-11-02 13:02:42','2021-09-20 07:29:08'),(298,'en','bill_to_ucf','Bill to','2020-11-02 13:02:42','2021-09-20 07:29:08'),(299,'en','sub_total_ucf','Sub Total','2020-11-02 13:02:42','2021-09-20 07:29:08'),(300,'en','total_tax_ucf','Total Tax','2020-11-02 13:02:42','2021-09-20 07:29:08'),(301,'en','grand_total_ucf','Grand Total','2020-11-02 13:02:42','2021-09-20 07:29:08'),(302,'en','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history_ucf','Your order has been placed successfully. Please submit payment information from purchase history','2020-11-02 13:02:47','2021-09-20 07:29:08'),(303,'en','thank_you_for_your_order_ucf','Thank You for Your Order!','2020-11-02 13:02:48','2021-09-20 07:29:08'),(304,'en','order_code_ucf','Order Code:','2020-11-02 13:02:48','2021-09-20 07:29:08'),(305,'en','a_copy_or_your_order_summary_has_been_sent_to_ucf','A copy or your order summary has been sent to','2020-11-02 13:02:48','2021-09-20 07:29:08'),(306,'en','make_payment_ucf','Make Payment','2020-11-02 13:03:26','2021-09-20 07:29:08'),(307,'en','payment_screenshot_ucf','Payment screenshot','2020-11-02 13:03:29','2021-09-20 07:29:08'),(308,'en','paypal_credential_ucf','Paypal Credential','2020-11-02 13:12:20','2021-09-20 07:29:08'),(309,'en','paypal_client_id_ucf','Paypal Client ID','2020-11-02 13:12:20','2021-09-20 07:29:08'),(310,'en','paypal_client_secret_ucf','Paypal Client Secret','2020-11-02 13:12:20','2021-09-20 07:29:08'),(311,'en','paypal_sandbox_mode_ucf','Paypal Sandbox Mode','2020-11-02 13:12:20','2021-09-20 07:29:08'),(312,'en','sslcommerz_credential_ucf','Sslcommerz Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(313,'en','sslcz_store_id_ucf','Sslcz Store Id','2020-11-02 13:12:21','2021-09-20 07:29:08'),(314,'en','sslcz_store_password_ucf','Sslcz store password','2020-11-02 13:12:21','2021-09-20 07:29:08'),(315,'en','sslcommerz_sandbox_mode_ucf','Sslcommerz Sandbox Mode','2020-11-02 13:12:21','2021-09-20 07:29:08'),(316,'en','stripe_credential_ucf','Stripe Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(317,'en','stripe_key_ucf','STRIPE KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(318,'en','stripe_secret_ucf','STRIPE SECRET','2020-11-02 13:12:21','2021-09-20 07:29:08'),(319,'en','razorpay_credential_ucf','RazorPay Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(320,'en','razor_key_ucf','RAZOR KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(321,'en','razor_secret_ucf','RAZOR SECRET','2020-11-02 13:12:21','2021-09-20 07:29:08'),(322,'en','instamojo_credential_ucf','Instamojo Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(323,'en','api_key_ucf','API KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(324,'en','im_api_key_ucf','IM API KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(325,'en','auth_token_ucf','AUTH TOKEN','2020-11-02 13:12:21','2021-09-20 07:29:08'),(326,'en','im_auth_token_ucf','IM AUTH TOKEN','2020-11-02 13:12:21','2021-09-20 07:29:08'),(327,'en','instamojo_sandbox_mode_ucf','Instamojo Sandbox Mode','2020-11-02 13:12:21','2021-09-20 07:29:08'),(328,'en','paystack_credential_ucf','PayStack Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(329,'en','public_key_ucf','PUBLIC KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(330,'en','secret_key_ucf','SECRET KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(331,'en','merchant_email_ucf','MERCHANT EMAIL','2020-11-02 13:12:21','2021-09-20 07:29:08'),(332,'en','voguepay_credential_ucf','VoguePay Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(333,'en','merchant_id_ucf','MERCHANT ID','2020-11-02 13:12:21','2021-09-20 07:29:08'),(334,'en','sandbox_mode_ucf','Sandbox Mode','2020-11-02 13:12:21','2021-09-20 07:29:08'),(335,'en','payhere_credential_ucf','Payhere Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(336,'en','payhere_merchant_id_ucf','PAYHERE MERCHANT ID','2020-11-02 13:12:22','2021-09-20 07:29:08'),(337,'en','payhere_secret_ucf','PAYHERE SECRET','2020-11-02 13:12:22','2021-09-20 07:29:08'),(338,'en','payhere_currency_ucf','PAYHERE CURRENCY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(339,'en','payhere_sandbox_mode_ucf','Payhere Sandbox Mode','2020-11-02 13:12:22','2021-09-20 07:29:08'),(340,'en','ngenius_credential_ucf','Ngenius Credential','2020-11-02 13:12:22','2021-09-20 07:29:08'),(341,'en','ngenius_outlet_id_ucf','NGENIUS OUTLET ID','2020-11-02 13:12:22','2021-09-20 07:29:08'),(342,'en','ngenius_api_key_ucf','NGENIUS API KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(343,'en','ngenius_currency_ucf','NGENIUS CURRENCY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(344,'en','mpesa_credential_ucf','Mpesa Credential','2020-11-02 13:12:22','2021-09-20 07:29:08'),(345,'en','mpesa_consumer_key_ucf','MPESA CONSUMER KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(346,'en','mpesa_consumer_key_ucf','MPESA_CONSUMER_KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(347,'en','mpesa_consumer_secret_ucf','MPESA CONSUMER SECRET','2020-11-02 13:12:22','2021-09-20 07:29:08'),(348,'en','mpesa_consumer_secret_ucf','MPESA_CONSUMER_SECRET','2020-11-02 13:12:22','2021-09-20 07:29:08'),(349,'en','mpesa_short_code_ucf','MPESA SHORT CODE','2020-11-02 13:12:22','2021-09-20 07:29:08'),(350,'en','mpesa_short_code_ucf','MPESA_SHORT_CODE','2020-11-02 13:12:22','2021-09-20 07:29:08'),(351,'en','mpesa_sandbox_activation_ucf','MPESA SANDBOX ACTIVATION','2020-11-02 13:12:22','2021-09-20 07:29:08'),(352,'en','flutterwave_credential_ucf','Flutterwave Credential','2020-11-02 13:12:22','2021-09-20 07:29:08'),(353,'en','rave_public_key_ucf','RAVE_PUBLIC_KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(354,'en','rave_secret_key_ucf','RAVE_SECRET_KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(355,'en','rave_title_ucf','RAVE_TITLE','2020-11-02 13:12:22','2021-09-20 07:29:08'),(356,'en','stagin_activation_ucf','STAGIN ACTIVATION','2020-11-02 13:12:22','2021-09-20 07:29:08'),(357,'en','all_product_ucf','All Product','2020-11-02 13:15:01','2021-09-20 07:29:08'),(358,'en','sort_by_ucf','Sort By','2020-11-02 13:15:01','2021-09-20 07:29:08'),(359,'en','rating_high__low_ucf','Rating (High > Low)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(360,'en','rating_low__high_ucf','Rating (Low > High)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(361,'en','num_of_sale_high__low_ucf','Num of Sale (High > Low)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(362,'en','num_of_sale_low__high_ucf','Num of Sale (Low > High)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(363,'en','base_price_high__low_ucf','Base Price (High > Low)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(364,'en','base_price_low__high_ucf','Base Price (Low > High)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(365,'en','type__enter_ucf','Type & Enter','2020-11-02 13:15:01','2021-09-20 07:29:08'),(366,'en','added_by_ucf','Added By','2020-11-02 13:15:01','2021-09-20 07:29:08'),(367,'en','num_of_sale_ucf','Num of Sale','2020-11-02 13:15:01','2021-09-20 07:29:08'),(368,'en','total_stock_ucf','Total Stock','2020-11-02 13:15:01','2021-09-20 07:29:08'),(369,'en','todays_deal_ucf','Todays Deal','2020-11-02 13:15:01','2021-09-20 07:29:08'),(370,'en','rating_ucf','Rating','2020-11-02 13:15:01','2021-09-20 07:29:08'),(371,'en','times_ucf','times','2020-11-02 13:15:01','2021-02-09 06:52:38'),(372,'en','add_nerw_product_ucf','Add Nerw Product','2020-11-02 13:15:02','2021-09-20 07:29:08'),(373,'en','product_information_ucf','Product Information','2020-11-02 13:15:02','2021-09-20 07:29:08'),(374,'en','unit_ucf','Unit','2020-11-02 13:15:02','2021-09-20 07:29:08'),(375,'en','unit_eg_kg_pc_etc_ucf','Unit (e.g. KG, Pc etc)','2020-11-02 13:15:03','2021-09-20 07:29:08'),(376,'en','minimum_qty_ucf','Minimum Qty','2020-11-02 13:15:03','2021-09-20 07:29:08'),(377,'en','tags_ucf','Tags','2020-11-02 13:15:03','2021-09-20 07:29:08'),(378,'en','type_and_hit_enter_to_add_a_tag_ucf','Type and hit enter to add a tag','2020-11-02 13:15:03','2021-09-20 07:29:08'),(379,'en','barcode_ucf','Barcode','2020-11-02 13:15:03','2021-09-20 07:29:08'),(380,'en','refundable_ucf','Refundable','2020-11-02 13:15:03','2021-09-20 07:29:08'),(381,'en','product_images_ucf','Product Images','2020-11-02 13:15:03','2021-09-20 07:29:08'),(382,'en','gallery_images_ucf','Gallery Images','2020-11-02 13:15:03','2021-09-20 07:29:08'),(383,'en','todays_deal_updated_successfully_ucf','Todays Deal updated successfully','2020-11-02 13:15:03','2021-09-20 07:29:08'),(384,'en','published_products_updated_successfully_ucf','Published products updated successfully','2020-11-02 13:15:03','2021-09-20 07:29:08'),(385,'en','thumbnail_image_ucf','Thumbnail Image','2020-11-02 13:15:03','2021-09-20 07:29:08'),(386,'en','featured_products_updated_successfully_ucf','Featured products updated successfully','2020-11-02 13:15:03','2021-09-20 07:29:08'),(387,'en','product_videos_ucf','Product Videos','2020-11-02 13:15:03','2021-09-20 07:29:08'),(388,'en','video_provider_ucf','Video Provider','2020-11-02 13:15:03','2021-09-20 07:29:08'),(389,'en','youtube_ucf','Youtube','2020-11-02 13:15:03','2021-09-20 07:29:08'),(390,'en','dailymotion_ucf','Dailymotion','2020-11-02 13:15:03','2021-09-20 07:29:08'),(391,'en','vimeo_ucf','Vimeo','2020-11-02 13:15:03','2021-09-20 07:29:08'),(392,'en','video_link_ucf','Video Link','2020-11-02 13:15:03','2021-09-20 07:29:08'),(393,'en','product_variation_ucf','Product Variation','2020-11-02 13:15:03','2021-09-20 07:29:08'),(394,'en','colors_ucf','Colors','2020-11-02 13:15:03','2021-09-20 07:29:08'),(395,'en','attributes_ucf','Attributes','2020-11-02 13:15:03','2021-09-20 07:29:08'),(396,'en','choose_attributes_ucf','Choose Attributes','2020-11-02 13:15:03','2021-09-20 07:29:08'),(397,'en','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute_ucf','Choose the attributes of this product and then input values of each attribute','2020-11-02 13:15:03','2021-09-20 07:29:08'),(398,'en','product_price__stock_ucf','Product price + stock','2020-11-02 13:15:03','2021-09-20 07:29:08'),(399,'en','unit_price_ucf','Unit price','2020-11-02 13:15:03','2021-09-20 07:29:08'),(400,'en','purchase_price_ucf','Purchase price','2020-11-02 13:15:03','2021-09-20 07:29:08'),(401,'en','flat_ucf','Flat','2020-11-02 13:15:04','2021-09-20 07:29:08'),(402,'en','percent_ucf','Percent','2020-11-02 13:15:04','2021-09-20 07:29:08'),(403,'en','discount_ucf','Discount','2020-11-02 13:15:04','2021-09-20 07:29:08'),(404,'en','product_description_ucf','Product Description','2020-11-02 13:15:04','2021-09-20 07:29:08'),(405,'en','product_shipping_cost_ucf','Product Shipping Cost','2020-11-02 13:15:04','2021-09-20 07:29:08'),(406,'en','free_shipping_ucf','Free Shipping','2020-11-02 13:15:04','2021-09-20 07:29:08'),(407,'en','flat_rate_ucf','Flat Rate','2020-11-02 13:15:04','2021-09-20 07:29:08'),(408,'en','shipping_cost_ucf','Shipping cost','2020-11-02 13:15:04','2021-09-20 07:29:08'),(409,'en','pdf_specification_ucf','PDF Specification','2020-11-02 13:15:04','2021-09-20 07:29:08'),(410,'en','seo_meta_tags_ucf','SEO Meta Tags','2020-11-02 13:15:04','2021-09-20 07:29:08'),(411,'en','meta_title_ucf','Meta Title','2020-11-02 13:15:04','2021-09-20 07:29:08'),(412,'en','meta_image_ucf','Meta Image','2020-11-02 13:15:04','2021-09-20 07:29:08'),(413,'en','choice_title_ucf','Choice Title','2020-11-02 13:15:04','2021-09-20 07:29:08'),(414,'en','enter_choice_values_ucf','Enter choice values','2020-11-02 13:15:04','2021-09-20 07:29:08'),(415,'en','all_categories_ucf','All categories A','2020-11-03 07:12:19','2021-09-20 07:40:46'),(416,'en','add_new_category_ucf','Add New category','2020-11-03 07:12:19','2021-09-20 07:29:08'),(417,'en','type_name__enter_ucf','Type name & Enter','2020-11-03 07:12:19','2021-09-20 07:29:08'),(418,'en','banner_ucf','Banner','2020-11-03 07:12:19','2021-09-20 07:29:08'),(419,'en','commission_ucf','Commission','2020-11-03 07:12:19','2021-09-20 07:29:08'),(420,'en','icon_ucf','icon','2020-11-03 07:12:19','2021-02-09 06:52:38'),(421,'en','featured_categories_updated_successfully_ucf','Featured categories updated successfully','2020-11-03 07:12:20','2021-09-20 07:29:08'),(422,'en','hot_ucf','Hot','2020-11-03 07:13:12','2021-09-20 07:29:08'),(423,'en','filter_by_payment_status_ucf','Filter by Payment Status','2020-11-03 07:15:15','2021-09-20 07:29:08'),(424,'en','unpaid_ucf','Un-Paid','2020-11-03 07:15:15','2021-09-20 07:29:08'),(425,'en','filter_by_deliver_status_ucf','Filter by Deliver Status','2020-11-03 07:15:15','2021-09-20 07:29:08'),(426,'en','pending_ucf','Pending','2020-11-03 07:15:15','2021-09-20 07:29:08'),(427,'en','type_order_code__hit_enter_ucf','Type Order code & hit Enter','2020-11-03 07:15:15','2021-09-20 07:29:08'),(428,'en','num_of_products_ucf','Num. of Products','2020-11-03 07:15:15','2021-09-20 07:29:08'),(429,'en','walk_in_customer_ucf','Walk In Customer','2020-11-03 10:03:20','2021-09-20 07:29:08'),(430,'en','qty_ucf','QTY','2020-11-03 10:03:20','2021-09-20 07:29:08'),(431,'en','without_shipping_charge_ucf','Without Shipping Charge','2020-11-03 10:03:20','2021-09-20 07:29:08'),(432,'en','with_shipping_charge_ucf','With Shipping Charge','2020-11-03 10:03:20','2021-09-20 07:29:08'),(433,'en','pay_with_cash_ucf','Pay With Cash','2020-11-03 10:03:20','2021-09-20 07:29:08'),(434,'en','shipping_address_ucf','Shipping Address','2020-11-03 10:03:20','2021-09-20 07:29:08'),(435,'en','close_ucf','Close','2020-11-03 10:03:20','2021-09-20 07:29:08'),(436,'en','select_country_ucf','Select country','2020-11-03 10:03:21','2021-09-20 07:29:08'),(437,'en','order_confirmation_ucf','Order Confirmation','2020-11-03 10:03:21','2021-09-20 07:29:08'),(438,'en','are_you_sure_to_confirm_this_order_ucf','Are you sure to confirm this order?','2020-11-03 10:03:21','2021-09-20 07:29:08'),(439,'en','comfirm_order_ucf','Comfirm Order','2020-11-03 10:03:21','2021-09-20 07:29:08'),(440,'en','personal_info_ucf','Personal Info','2020-11-03 11:38:15','2021-09-20 07:29:08'),(441,'en','repeat_password_ucf','Repeat Password','2020-11-03 11:38:15','2021-09-20 07:29:08'),(442,'en','shop_name_ucf','Shop Name','2020-11-03 11:38:15','2021-09-20 07:29:08'),(443,'en','register_your_shop_ucf','Register Your Shop','2020-11-03 11:38:15','2021-09-20 07:29:08'),(444,'en','affiliate_informations_ucf','Affiliate Informations','2020-11-03 11:39:06','2021-09-20 07:29:08'),(445,'en','affiliate_ucf','Affiliate','2020-11-03 11:39:06','2021-09-20 07:29:08'),(446,'en','user_info_ucf','User Info','2020-11-03 11:39:06','2021-09-20 07:29:08'),(447,'en','installed_addon_ucf','Installed Addon','2020-11-03 11:48:13','2021-09-20 07:29:08'),(448,'en','available_addon_ucf','Available Addon','2020-11-03 11:48:13','2021-09-20 07:29:08'),(449,'en','install_new_addon_ucf','Install New Addon','2020-11-03 11:48:13','2021-09-20 07:29:08'),(450,'en','version_ucf','Version','2020-11-03 11:48:13','2021-09-20 07:29:08'),(451,'en','activated_ucf','Activated','2020-11-03 11:48:13','2021-09-20 07:29:08'),(452,'en','deactivated_ucf','Deactivated','2020-11-03 11:48:13','2021-09-20 07:29:08'),(453,'en','activate_otp_ucf','Activate OTP','2020-11-03 11:48:20','2021-09-20 07:29:08'),(454,'en','otp_will_be_used_for_ucf','OTP will be Used For','2020-11-03 11:48:20','2021-09-20 07:29:08'),(455,'en','settings_updated_successfully_ucf','Settings updated successfully','2020-11-03 11:48:20','2021-09-20 07:29:08'),(456,'en','product_owner_ucf','Product Owner','2020-11-03 11:48:46','2021-09-20 07:29:08'),(457,'en','point_ucf','Point','2020-11-03 11:48:46','2021-09-20 07:29:08'),(458,'en','set_point_for_product_within_a_range_ucf','Set Point for Product Within a Range','2020-11-03 11:48:47','2021-09-20 07:29:08'),(459,'en','set_point_for_multiple_products_ucf','Set Point for multiple products','2020-11-03 11:48:47','2021-09-20 07:29:08'),(460,'en','min_price_ucf','Min Price','2020-11-03 11:48:47','2021-09-20 07:29:08'),(461,'en','max_price_ucf','Max Price','2020-11-03 11:48:47','2021-09-20 07:29:08'),(462,'en','set_point_for_all_products_ucf','Set Point for all Products','2020-11-03 11:48:47','2021-09-20 07:29:08'),(463,'en','set_point_for__ucf','Set Point For','2020-11-03 11:48:47','2021-09-20 07:29:08'),(464,'en','convert_status_ucf','Convert Status','2020-11-03 11:48:58','2021-09-20 07:29:08'),(465,'en','earned_at_ucf','Earned At','2020-11-03 11:48:59','2021-09-20 07:29:08'),(466,'en','seller_based_selling_report_ucf','Seller Based Selling Report','2020-11-03 11:49:35','2021-09-20 07:29:08'),(467,'en','sort_by_verificarion_status_ucf','Sort by verificarion status','2020-11-03 11:49:35','2021-09-20 07:29:08'),(468,'en','approved_ucf','Approved','2020-11-03 11:49:35','2021-09-20 07:29:08'),(469,'en','non_approved_ucf','Non Approved','2020-11-03 11:49:35','2021-09-20 07:29:08'),(470,'en','filter_ucf','Filter','2020-11-03 11:49:35','2021-09-20 07:29:08'),(471,'en','seller_name_ucf','Seller Name','2020-11-03 11:49:35','2021-09-20 07:29:08'),(472,'en','number_of_product_sale_ucf','Number of Product Sale','2020-11-03 11:49:36','2021-09-20 07:29:08'),(473,'en','order_amount_ucf','Order Amount','2020-11-03 11:49:36','2021-09-20 07:29:08'),(474,'en','facebook_chat_setting_ucf','Facebook Chat Setting','2020-11-03 11:51:14','2021-09-20 07:29:08'),(475,'en','facebook_page_id_ucf','Facebook Page ID','2020-11-03 11:51:14','2021-09-20 07:29:08'),(476,'en','please_be_carefull_when_you_are_configuring_facebook_chat_for_incorrect_configuration_you_will_not_get_messenger_icon_on_your_userend_site_ucf','Please be carefull when you are configuring Facebook chat. For incorrect configuration you will not get messenger icon on your user-end site.','2020-11-03 11:51:14','2021-09-20 07:29:08'),(477,'en','login_into_your_facebook_page_ucf','Login into your facebook page','2020-11-03 11:51:14','2021-09-20 07:29:08'),(478,'en','find_the_about_option_of_your_facebook_page_ucf','Find the About option of your facebook page','2020-11-03 11:51:14','2021-09-20 07:29:08'),(479,'en','at_the_very_bottom_you_can_find_the_facebook_page_id_ucf','At the very bottom, you can find the \\���Facebook Page ID\\���','2020-11-03 11:51:14','2021-09-20 07:29:08'),(480,'en','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging_ucf','Go to Settings of your page and find the option of \\\"Advance Messaging\\\"','2020-11-03 11:51:14','2021-09-20 07:29:08'),(481,'en','scroll_down_that_page_and_you_will_get_white_listed_domain_ucf','Scroll down that page and you will get \\\"white listed domain\\\"','2020-11-03 11:51:14','2021-09-20 07:29:08'),(482,'en','set_your_website_domain_name_ucf','Set your website domain name','2020-11-03 11:51:14','2021-09-20 07:29:08'),(483,'en','google_recaptcha_setting_ucf','Google reCAPTCHA Setting','2020-11-03 11:51:25','2021-09-20 07:29:08'),(484,'en','site_key_ucf','Site KEY','2020-11-03 11:51:25','2021-09-20 07:29:08'),(485,'en','select_shipping_method_ucf','Select Shipping Method','2020-11-03 11:51:32','2021-09-20 07:29:08'),(486,'en','product_wise_shipping_cost_ucf','Product Wise Shipping Cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(487,'en','flat_rate_shipping_cost_ucf','Flat Rate Shipping Cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(488,'en','seller_wise_flat_shipping_cost_ucf','Seller Wise Flat Shipping Cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(489,'en','note_ucf','Note','2020-11-03 11:51:32','2021-09-20 07:29:08'),(490,'en','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost_ucf','Product Wise Shipping Cost calulation: Shipping cost is calculate by addition of each product shipping cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(491,'en','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed_ucf','Flat Rate Shipping Cost calulation: How many products a customer purchase, doesn\'t matter. Shipping cost is fixed','2020-11-03 11:51:32','2021-09-20 07:29:08'),(492,'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_ucf','Seller Wise Flat Shipping Cost calulation: Fixed rate for each seller. If a customer purchase 2 product from two seller shipping cost is calculate by addition of each seller flat shipping cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(493,'en','flat_rate_cost_ucf','Flat Rate Cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(494,'en','shipping_cost_for_admin_products_ucf','Shipping Cost for Admin Products','2020-11-03 11:51:32','2021-09-20 07:29:08'),(495,'en','countries_ucf','Countries','2020-11-03 11:52:02','2021-09-20 07:29:08'),(496,'en','showhide_ucf','Show/Hide','2020-11-03 11:52:02','2021-09-20 07:29:08'),(497,'en','country_status_updated_successfully_ucf','Country status updated successfully','2020-11-03 11:52:02','2021-09-20 07:29:08'),(498,'en','all_subcategories_ucf','All Subcategories','2020-11-03 12:27:55','2021-09-20 07:29:08'),(499,'en','add_new_subcategory_ucf','Add New Subcategory','2020-11-03 12:27:55','2021-09-20 07:29:08'),(500,'en','subcategories_ucf','Sub-Categories','2020-11-03 12:27:55','2021-09-20 07:29:08'),(501,'en','sub_category_information_ucf','Sub Category Information','2020-11-03 12:28:07','2021-09-20 07:29:08'),(502,'en','slug_ucf','Slug','2020-11-03 12:28:07','2021-09-20 07:29:08'),(503,'en','all_sub_subcategories_ucf','All Sub Subcategories','2020-11-03 12:29:12','2021-09-20 07:29:08'),(504,'en','add_new_sub_subcategory_ucf','Add New Sub Subcategory','2020-11-03 12:29:12','2021-09-20 07:29:08'),(505,'en','subsubcategories_ucf','Sub-Sub-categories','2020-11-03 12:29:12','2021-09-20 07:29:08'),(506,'en','make_this_default_ucf','Make This Default','2020-11-04 08:24:24','2021-09-20 07:29:08'),(507,'en','shops_ucf','Shops','2020-11-04 11:17:10','2021-09-20 07:29:08'),(508,'en','women_clothing__fashion_ucf','Women Clothing & Fashion','2020-11-04 11:23:12','2021-09-20 07:29:08'),(509,'en','cellphones__tabs_ucf','Cellphones & Tabs','2020-11-04 12:10:41','2021-09-20 07:29:08'),(510,'en','welcome_to_ucf','Welcome to','2020-11-07 07:14:43','2021-09-20 07:29:08'),(511,'en','create_a_new_account_ucf','Create a New Account','2020-11-07 07:32:15','2021-09-20 07:29:08'),(512,'en','full_name_ucf','Full Name','2020-11-07 07:32:15','2021-09-20 07:29:08'),(513,'en','password_ucf','password','2020-11-07 07:32:15','2021-02-09 06:52:50'),(514,'en','confrim_password_ucf','Confrim Password','2020-11-07 07:32:15','2021-09-20 07:29:08'),(515,'en','i_agree_with_the_ucf','I agree with the','2020-11-07 07:32:15','2021-09-20 07:29:08'),(516,'en','terms_and_conditions_ucf','Terms and Conditions','2020-11-07 07:32:15','2021-09-20 07:29:08'),(517,'en','register_ucf','Register','2020-11-07 07:32:15','2021-09-20 07:29:08'),(518,'en','already_have_an_account_ucf','Already have an account','2020-11-07 07:32:16','2021-09-20 07:29:08'),(519,'en','sign_up_with_ucf','Sign Up with','2020-11-07 07:32:16','2021-09-20 07:29:08'),(520,'en','i_agree_with_the_terms_and_conditions_ucf','I agree with the Terms and Conditions','2020-11-07 07:34:49','2021-09-20 07:29:08'),(521,'en','all_role_ucf','All Role','2020-11-07 07:44:28','2021-09-20 07:29:08'),(522,'en','add_new_role_ucf','Add New Role','2020-11-07 07:44:28','2021-09-20 07:29:08'),(523,'en','roles_ucf','Roles','2020-11-07 07:44:28','2021-09-20 07:29:08'),(524,'en','add_new_staffs_ucf','Add New Staffs','2020-11-07 07:44:36','2021-09-20 07:29:08'),(525,'en','role_ucf','Role','2020-11-07 07:44:36','2021-09-20 07:29:08'),(526,'en','frontend_website_name_ucf','Frontend Website Name','2020-11-07 07:44:59','2021-09-20 07:29:08'),(527,'en','website_name_ucf','Website Name','2020-11-07 07:44:59','2021-09-20 07:29:08'),(528,'en','site_motto_ucf','Site Motto','2020-11-07 07:44:59','2021-09-20 07:29:08'),(529,'en','best_ecommerce_website_ucf','Best eCommerce Website','2020-11-07 07:44:59','2021-09-20 07:29:08'),(530,'en','site_icon_ucf','Site Icon','2020-11-07 07:44:59','2021-09-20 07:29:09'),(531,'en','website_favicon_32x32_png_ucf','Website favicon. 32x32 .png','2020-11-07 07:44:59','2021-09-20 07:29:09'),(532,'en','website_base_color_ucf','Website Base Color','2020-11-07 07:44:59','2021-09-20 07:29:09'),(533,'en','hex_color_code_ucf','Hex Color Code','2020-11-07 07:44:59','2021-09-20 07:29:09'),(534,'en','website_base_hover_color_ucf','Website Base Hover Color','2020-11-07 07:44:59','2021-09-20 07:29:09'),(535,'en','update_ucf','Update','2020-11-07 07:45:00','2021-09-20 07:29:09'),(536,'en','global_seo_ucf','Global Seo','2020-11-07 07:45:00','2021-09-20 07:29:09'),(537,'en','meta_description_ucf','Meta description','2020-11-07 07:45:00','2021-09-20 07:29:09'),(538,'en','keywords_ucf','Keywords','2020-11-07 07:45:00','2021-09-20 07:29:09'),(539,'en','separate_with_coma_ucf','Separate with coma','2020-11-07 07:45:00','2021-09-20 07:29:09'),(540,'en','website_pages_ucf','Website Pages','2020-11-07 07:49:04','2021-09-20 07:29:09'),(541,'en','all_pages_ucf','All Pages','2020-11-07 07:49:04','2021-09-20 07:29:09'),(542,'en','add_new_page_ucf','Add New Page','2020-11-07 07:49:04','2021-09-20 07:29:09'),(543,'en','url_ucf','URL','2020-11-07 07:49:04','2021-09-20 07:29:09'),(544,'en','actions_ucf','Actions','2020-11-07 07:49:04','2021-09-20 07:29:09'),(545,'en','edit_page_information_ucf','Edit Page Information','2020-11-07 07:49:22','2021-09-20 07:29:09'),(546,'en','page_content_ucf','Page Content','2020-11-07 07:49:22','2021-09-20 07:29:09'),(547,'en','title_ucf','Title','2020-11-07 07:49:22','2021-09-20 07:29:09'),(548,'en','link_ucf','Link','2020-11-07 07:49:22','2021-09-20 07:29:09'),(549,'en','use_character_number_hypen_only_ucf','Use character, number, hypen only','2020-11-07 07:49:22','2021-09-20 07:29:09'),(550,'en','add_content_ucf','Add Content','2020-11-07 07:49:22','2021-09-20 07:29:09'),(551,'en','seo_fields_ucf','Seo Fields','2020-11-07 07:49:22','2021-09-20 07:29:09'),(552,'en','update_page_ucf','Update Page','2020-11-07 07:49:22','2021-09-20 07:29:09'),(553,'en','default_language_ucf','Default Language','2020-11-07 07:50:09','2021-09-20 07:29:09'),(554,'en','add_new_language_ucf','Add New Language','2020-11-07 07:50:09','2021-09-20 07:29:09'),(555,'en','rtl_ucf','RTL','2020-11-07 07:50:09','2021-09-20 07:29:09'),(556,'en','translation_ucf','Translation','2020-11-07 07:50:09','2021-09-20 07:29:09'),(557,'en','language_information_ucf','Language Information','2020-11-07 07:50:23','2021-09-20 07:29:09'),(558,'en','save_page_ucf','Save Page','2020-11-07 07:51:27','2021-09-20 07:29:09'),(559,'en','home_page_settings_ucf','Home Page Settings','2020-11-07 07:51:35','2021-09-20 07:29:09'),(560,'en','home_slider_ucf','Home Slider','2020-11-07 07:51:35','2021-09-20 07:29:09'),(561,'en','photos__links_ucf','Photos & Links','2020-11-07 07:51:35','2021-09-20 07:29:09'),(562,'en','add_new_ucf','Add New','2020-11-07 07:51:35','2021-09-20 07:29:09'),(563,'en','home_categories_ucf','Home Categories','2020-11-07 07:51:35','2021-09-20 07:29:09'),(564,'en','home_banner_1_max_3_ucf','Home Banner 1 (Max 3)','2020-11-07 07:51:35','2021-09-20 07:29:09'),(565,'en','banner__links_ucf','Banner & Links','2020-11-07 07:51:35','2021-09-20 07:29:09'),(566,'en','home_banner_2_max_3_ucf','Home Banner 2 (Max 3)','2020-11-07 07:51:36','2021-09-20 07:29:09'),(567,'en','top_10_ucf','Top 10','2020-11-07 07:51:36','2021-09-20 07:29:09'),(568,'en','top_categories_max_10_ucf','Top Categories (Max 10)','2020-11-07 07:51:36','2021-09-20 07:29:09'),(569,'en','top_brands_max_10_ucf','Top Brands (Max 10)','2020-11-07 07:51:36','2021-09-20 07:29:09'),(570,'en','system_name_ucf','System Name','2020-11-07 07:54:22','2021-09-20 07:29:09'),(571,'en','system_logo__white_ucf','System Logo - White','2020-11-07 07:54:22','2021-09-20 07:29:09'),(572,'en','choose_files_ucf','Choose Files','2020-11-07 07:54:22','2021-09-20 07:29:09'),(573,'en','will_be_used_in_admin_panel_side_menu_ucf','Will be used in admin panel side menu','2020-11-07 07:54:23','2021-09-20 07:29:09'),(574,'en','system_logo__black_ucf','System Logo - Black','2020-11-07 07:54:23','2021-09-20 07:29:09'),(575,'en','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page_ucf','Will be used in admin panel topbar in mobile + Admin login page','2020-11-07 07:54:23','2021-09-20 07:29:09'),(576,'en','system_timezone_ucf','System Timezone','2020-11-07 07:54:23','2021-09-20 07:29:09'),(577,'en','admin_login_page_background_ucf','Admin login page background','2020-11-07 07:54:23','2021-09-20 07:29:09'),(578,'en','website_header_ucf','Website Header','2020-11-07 08:21:36','2021-09-20 07:29:09'),(579,'en','header_setting_ucf','Header Setting','2020-11-07 08:21:36','2021-09-20 07:29:09'),(580,'en','header_logo_ucf','Header Logo','2020-11-07 08:21:36','2021-09-20 07:29:09'),(581,'en','show_language_switcher_ucf','Show Language Switcher?','2020-11-07 08:21:36','2021-09-20 07:29:09'),(582,'en','show_currency_switcher_ucf','Show Currency Switcher?','2020-11-07 08:21:36','2021-09-20 07:29:09'),(583,'en','enable_stikcy_header_ucf','Enable stikcy header?','2020-11-07 08:21:36','2021-09-20 07:29:09'),(584,'en','website_footer_ucf','Website Footer','2020-11-07 08:21:56','2021-09-20 07:29:09'),(585,'en','footer_widget_ucf','Footer Widget','2020-11-07 08:21:56','2021-09-20 07:29:09'),(586,'en','about_widget_ucf','About Widget','2020-11-07 08:21:56','2021-09-20 07:29:09'),(587,'en','footer_logo_ucf','Footer Logo','2020-11-07 08:21:56','2021-09-20 07:29:09'),(588,'en','about_description_ucf','About description','2020-11-07 08:21:56','2021-09-20 07:29:09'),(589,'en','contact_info_widget_ucf','Contact Info Widget','2020-11-07 08:21:56','2021-09-20 07:29:09'),(590,'en','footer_contact_address_ucf','Footer contact address','2020-11-07 08:21:56','2021-09-20 07:29:09'),(591,'en','footer_contact_phone_ucf','Footer contact phone','2020-11-07 08:21:56','2021-09-20 07:29:09'),(592,'en','footer_contact_email_ucf','Footer contact email','2020-11-07 08:21:56','2021-09-20 07:29:09'),(593,'en','link_widget_one_ucf','Link Widget One','2020-11-07 08:21:56','2021-09-20 07:29:09'),(594,'en','links_ucf','Links','2020-11-07 08:21:56','2021-09-20 07:29:09'),(595,'en','footer_bottom_ucf','Footer Bottom','2020-11-07 08:21:56','2021-09-20 07:29:09'),(596,'en','copyright_widget__ucf','Copyright Widget','2020-11-07 08:21:57','2021-09-20 07:29:09'),(597,'en','copyright_text_ucf','Copyright Text','2020-11-07 08:21:57','2021-09-20 07:29:09'),(598,'en','social_link_widget__ucf','Social Link Widget','2020-11-07 08:21:57','2021-09-20 07:29:09'),(599,'en','show_social_links_ucf','Show Social Links?','2020-11-07 08:21:57','2021-09-20 07:29:09'),(600,'en','social_links_ucf','Social Links','2020-11-07 08:21:57','2021-09-20 07:29:09'),(601,'en','payment_methods_widget__ucf','Payment Methods Widget','2020-11-07 08:21:57','2021-09-20 07:29:09'),(602,'en','rtl_status_updated_successfully_ucf','RTL status updated successfully','2020-11-07 08:36:11','2021-09-20 07:29:09'),(603,'en','language_changed_to__ucf','Language changed to','2020-11-07 08:36:27','2021-09-20 07:29:09'),(604,'en','inhouse_product_sale_report_ucf','Inhouse Product sale report','2020-11-07 09:30:25','2021-09-20 07:29:09'),(605,'en','sort_by_category_ucf','Sort by Category','2020-11-07 09:30:25','2021-09-20 07:29:09'),(606,'en','product_wise_stock_report_ucf','Product wise stock report','2020-11-07 09:31:02','2021-09-20 07:29:09'),(607,'en','currency_changed_to__ucf','Currency changed to','2020-11-07 12:36:28','2021-09-20 07:29:09'),(608,'en','avatar_ucf','Avatar','2020-11-08 09:32:35','2021-09-20 07:29:09'),(609,'en','copy_ucf','Copy','2020-11-08 10:03:42','2021-09-20 07:29:09'),(610,'en','variant_ucf','Variant','2020-11-08 10:43:02','2021-09-20 07:29:09'),(611,'en','variant_price_ucf','Variant Price','2020-11-08 10:43:03','2021-09-20 07:29:09'),(612,'en','sku_ucf','SKU','2020-11-08 10:43:03','2021-09-20 07:29:09'),(613,'en','key_ucf','Key','2020-11-08 12:35:09','2021-09-20 07:29:09'),(614,'en','value_ucf','Value','2020-11-08 12:35:09','2021-09-20 07:29:09'),(615,'en','copy_translations_ucf','Copy Translations','2020-11-08 12:35:10','2021-09-20 07:29:09'),(616,'en','all_pickup_points_ucf','All Pick-up Points','2020-11-08 12:35:43','2021-09-20 07:29:09'),(617,'en','add_new_pickup_point_ucf','Add New Pick-up Point','2020-11-08 12:35:43','2021-09-20 07:29:09'),(618,'en','manager_ucf','Manager','2020-11-08 12:35:43','2021-09-20 07:29:09'),(619,'en','location_ucf','Location','2020-11-08 12:35:43','2021-09-20 07:29:09'),(620,'en','pickup_station_contact_ucf','Pickup Station Contact','2020-11-08 12:35:43','2021-09-20 07:29:09'),(621,'en','open_ucf','Open','2020-11-08 12:35:43','2021-09-20 07:29:09'),(622,'en','pos_activation_for_seller_ucf','POS Activation for Seller','2020-11-08 12:35:55','2021-09-20 07:29:09'),(623,'en','order_completed_successfully_ucf','Order Completed Successfully.','2020-11-08 12:36:02','2021-09-20 07:29:09'),(624,'en','text_input_ucf','Text Input','2020-11-08 12:38:40','2021-09-20 07:29:09'),(625,'en','select_ucf','Select','2020-11-08 12:38:40','2021-09-20 07:29:09'),(626,'en','multiple_select_ucf','Multiple Select','2020-11-08 12:38:40','2021-09-20 07:29:09'),(627,'en','radio_ucf','Radio','2020-11-08 12:38:40','2021-09-20 07:29:09'),(628,'en','file_ucf','File','2020-11-08 12:38:40','2021-09-20 07:29:09'),(629,'en','email_address_ucf','Email Address','2020-11-08 12:39:32','2021-09-20 07:29:09'),(630,'en','verification_info_ucf','Verification Info','2020-11-08 12:39:32','2021-09-20 07:29:09'),(631,'en','approval_ucf','Approval','2020-11-08 12:39:32','2021-09-20 07:29:09'),(632,'en','due_amount_ucf','Due Amount','2020-11-08 12:39:32','2021-09-20 07:29:09'),(633,'en','show_ucf','Show','2020-11-08 12:39:32','2021-09-20 07:29:09'),(634,'en','pay_now_ucf','Pay Now','2020-11-08 12:39:32','2021-09-20 07:29:09'),(635,'en','affiliate_user_verification_ucf','Affiliate User Verification','2020-11-08 12:40:01','2021-09-20 07:29:09'),(636,'en','reject_ucf','Reject','2020-11-08 12:40:01','2021-09-20 07:29:09'),(637,'en','accept_ucf','Accept','2020-11-08 12:40:01','2021-09-20 07:29:09'),(638,'en','beauty_health__hair_ucf','Beauty, Health & Hair','2020-11-08 12:54:17','2021-09-20 07:29:09'),(639,'en','comparison_ucf','Comparison','2020-11-08 12:54:33','2021-09-20 07:29:09'),(640,'en','reset_compare_list_ucf','Reset Compare List','2020-11-08 12:54:33','2021-09-20 07:29:09'),(641,'en','your_comparison_list_is_empty_ucf','Your comparison list is empty','2020-11-08 12:54:33','2021-09-20 07:29:09'),(642,'en','convert_point_to_wallet_ucf','Convert Point To Wallet','2020-11-08 13:04:42','2021-09-20 07:29:09'),(643,'en','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon_ucf','Note: You need to activate wallet option first before using club point addon.','2020-11-08 13:04:43','2021-09-20 07:29:09'),(644,'en','create_an_account_ucf','Create an account.','2020-11-09 06:17:11','2021-09-20 07:29:09'),(645,'en','use_email_instead_ucf','Use Email Instead','2020-11-09 06:17:11','2021-09-20 07:29:09'),(646,'en','by_signing_up_you_agree_to_our_terms_and_conditions_ucf','By signing up you agree to our terms and conditions.','2020-11-09 06:17:11','2021-09-20 07:29:09'),(647,'en','create_account_ucf','Create Account','2020-11-09 06:17:11','2021-09-20 07:29:09'),(648,'en','or_join_with_ucf','Or Join With','2020-11-09 06:17:11','2021-09-20 07:29:09'),(649,'en','already_have_an_account_ucf','Already have an account?','2020-11-09 06:17:11','2021-09-20 07:29:09'),(650,'en','log_in_ucf','Log In','2020-11-09 06:17:11','2021-09-20 07:29:09'),(651,'en','computer__accessories_ucf','Computer & Accessories','2020-11-09 07:52:05','2021-09-20 07:29:09'),(652,'en','products_ucf','Product(s)','2020-11-09 07:52:23','2021-09-20 07:29:09'),(653,'en','in_your_cart_ucf','in your cart','2020-11-09 07:52:23','2021-09-20 07:29:09'),(654,'en','in_your_wishlist_ucf','in your wishlist','2020-11-09 07:52:23','2021-09-20 07:29:09'),(655,'en','you_ordered_ucf','you ordered','2020-11-09 07:52:24','2021-09-20 07:29:09'),(656,'en','default_shipping_address_ucf','Default Shipping Address','2020-11-09 07:52:24','2021-09-20 07:29:09'),(657,'en','sports__outdoor_ucf','Sports & outdoor','2020-11-09 07:53:32','2021-09-20 07:29:09'),(658,'en','copied_ucf','Copied','2020-11-09 07:54:19','2021-09-20 07:29:09'),(659,'en','copy_the_promote_link_ucf','Copy the Promote Link','2020-11-09 07:54:19','2021-09-20 07:29:09'),(660,'en','write_a_review_ucf','Write a review','2020-11-09 07:54:20','2021-09-20 07:29:09'),(661,'en','your_name_ucf','Your name','2020-11-09 07:54:20','2021-09-20 07:29:09'),(662,'en','comment_ucf','Comment','2020-11-09 07:54:20','2021-09-20 07:29:09'),(663,'en','your_review_ucf','Your review','2020-11-09 07:54:20','2021-09-20 07:29:09'),(664,'en','submit_review_ucf','Submit review','2020-11-09 07:54:20','2021-09-20 07:29:09'),(665,'en','claire_willis_ucf','Claire Willis','2020-11-09 08:05:00','2021-09-20 07:29:09'),(666,'en','germaine_greene_ucf','Germaine Greene','2020-11-09 08:05:00','2021-09-20 07:29:09'),(667,'en','product_file_ucf','Product File','2020-11-09 08:07:08','2021-09-20 07:29:09'),(668,'en','choose_file_ucf','Choose file','2020-11-09 08:07:08','2021-09-20 07:29:09'),(669,'en','type_to_add_a_tag_ucf','Type to add a tag','2020-11-09 08:07:08','2021-09-20 07:29:09'),(670,'en','images_ucf','Images','2020-11-09 08:07:08','2021-09-20 07:29:09'),(671,'en','main_images_ucf','Main Images','2020-11-09 08:07:08','2021-09-20 07:29:09'),(672,'en','meta_tags_ucf','Meta Tags','2020-11-09 08:07:08','2021-09-20 07:29:09'),(673,'en','digital_product_has_been_inserted_successfully_ucf','Digital Product has been inserted successfully','2020-11-09 08:14:25','2021-09-20 07:29:09'),(674,'en','edit_digital_product_ucf','Edit Digital Product','2020-11-09 08:14:34','2021-09-20 07:29:09'),(675,'en','select_an_option_ucf','Select an option','2020-11-09 08:14:34','2021-09-20 07:29:09'),(676,'en','tax_ucf','Tax','2020-11-09 08:14:35','2021-02-11 04:15:27'),(677,'en','any_question_about_this_product_ucf','Any question about this product?','2020-11-09 08:15:11','2021-09-20 07:29:09'),(678,'en','sign_in_ucf','Sign in','2020-11-09 08:15:11','2021-09-20 07:29:09'),(679,'en','login_with_google_ucf','Login with Google','2020-11-09 08:15:11','2021-09-20 07:29:09'),(680,'en','login_with_facebook_ucf','Login with Facebook','2020-11-09 08:15:11','2021-09-20 07:29:09'),(681,'en','login_with_twitter_ucf','Login with Twitter','2020-11-09 08:15:11','2021-09-20 07:29:09'),(682,'en','click_to_show_phone_number_ucf','Click to show phone number','2020-11-09 08:15:51','2021-09-20 07:29:09'),(683,'en','other_ads_of_ucf','Other Ads of','2020-11-09 08:15:52','2021-09-20 07:29:09'),(684,'en','store_home_ucf','Store Home','2020-11-09 08:54:23','2021-09-20 07:29:09'),(685,'en','top_selling_ucf','Top Selling','2020-11-09 08:54:23','2021-09-20 07:29:09'),(686,'en','shop_settings_ucf','Shop Settings','2020-11-09 08:55:38','2021-09-20 07:29:09'),(687,'en','visit_shop_ucf','Visit Shop','2020-11-09 08:55:38','2021-09-20 07:29:09'),(688,'en','pickup_points_ucf','Pickup Points','2020-11-09 08:55:38','2021-09-20 07:29:09'),(689,'en','select_pickup_point_ucf','Select Pickup Point','2020-11-09 08:55:38','2021-09-20 07:29:09'),(690,'en','slider_settings_ucf','Slider Settings','2020-11-09 08:55:39','2021-09-20 07:29:09'),(691,'en','social_media_link_ucf','Social Media Link','2020-11-09 08:55:39','2021-09-20 07:29:09'),(692,'en','facebook_ucf','Facebook','2020-11-09 08:55:39','2021-09-20 07:29:09'),(693,'en','twitter_ucf','Twitter','2020-11-09 08:55:39','2021-09-20 07:29:09'),(694,'en','google_ucf','Google','2020-11-09 08:55:39','2021-09-20 07:29:09'),(695,'en','new_arrival_products_ucf','New Arrival Products','2020-11-09 08:56:26','2021-09-20 07:29:09'),(696,'en','check_your_order_status_ucf','Check Your Order Status','2020-11-09 09:23:32','2021-09-20 07:29:09'),(697,'en','shipping_method_ucf','Shipping method','2020-11-09 09:27:40','2021-09-20 07:29:09'),(698,'en','shipped_by_ucf','Shipped By','2020-11-09 09:27:41','2021-09-20 07:29:09'),(699,'en','image_ucf','Image','2020-11-09 09:29:37','2021-09-20 07:29:09'),(700,'en','sub_sub_category_ucf','Sub Sub Category','2020-11-09 09:29:37','2021-09-20 07:29:09'),(701,'en','inhouse_products_ucf','Inhouse Products','2020-11-09 10:22:32','2021-09-20 07:29:09'),(702,'en','forgot_password_ucf','Forgot Password?','2020-11-09 10:33:21','2021-09-20 07:29:09'),(703,'en','enter_your_email_address_to_recover_your_password_ucf','Enter your email address to recover your password.','2020-11-09 10:33:21','2021-09-20 07:29:09'),(704,'en','email_or_phone_ucf','Email or Phone','2020-11-09 10:33:21','2021-09-20 07:29:09'),(705,'en','send_password_reset_link_ucf','Send Password Reset Link','2020-11-09 10:33:21','2021-09-20 07:29:09'),(706,'en','back_to_login_ucf','Back to Login','2020-11-09 10:33:21','2021-09-20 07:29:09'),(707,'en','index_ucf','index','2020-11-09 10:35:29','2021-02-09 06:52:51'),(708,'en','download_your_product_ucf','Download Your Product','2020-11-09 10:35:30','2021-09-20 07:29:09'),(709,'en','option_ucf','Option','2020-11-09 10:35:30','2021-09-20 07:29:09'),(710,'en','applied_refund_request_ucf','Applied Refund Request','2020-11-09 10:35:39','2021-09-20 07:29:09'),(711,'en','item_has_been_renoved_from_wishlist_ucf','Item has been renoved from wishlist','2020-11-09 10:36:04','2021-09-20 07:29:09'),(712,'en','bulk_products_upload_ucf','Bulk Products Upload','2020-11-09 10:39:24','2021-09-20 07:29:09'),(713,'en','upload_csv_ucf','Upload CSV','2020-11-09 10:39:25','2021-09-20 07:29:09'),(714,'en','create_a_ticket_ucf','Create a Ticket','2020-11-09 10:40:25','2021-09-20 07:29:09'),(715,'en','tickets_ucf','Tickets','2020-11-09 10:40:25','2021-09-20 07:29:09'),(716,'en','ticket_id_ucf','Ticket ID','2020-11-09 10:40:25','2021-09-20 07:29:09'),(717,'en','sending_date_ucf','Sending Date','2020-11-09 10:40:25','2021-09-20 07:29:09'),(718,'en','subject_ucf','Subject','2020-11-09 10:40:25','2021-09-20 07:29:09'),(719,'en','view_details_ucf','View Details','2020-11-09 10:40:25','2021-09-20 07:29:09'),(720,'en','provide_a_detailed_description_ucf','Provide a detailed description','2020-11-09 10:40:26','2021-09-20 07:29:09'),(721,'en','type_your_reply_ucf','Type your reply','2020-11-09 10:40:26','2021-09-20 07:29:09'),(722,'en','send_ticket_ucf','Send Ticket','2020-11-09 10:40:26','2021-09-20 07:29:09'),(723,'en','load_more_ucf','Load More','2020-11-09 10:40:57','2021-09-20 07:29:09'),(724,'en','jewelry__watches_ucf','Jewelry & Watches','2020-11-09 10:47:38','2021-09-20 07:29:09'),(725,'en','filters_ucf','Filters','2020-11-09 10:53:54','2021-09-20 07:29:09'),(726,'en','contact_address_ucf','Contact address','2020-11-09 10:58:46','2021-09-20 07:29:09'),(727,'en','contact_phone_ucf','Contact phone','2020-11-09 10:58:47','2021-09-20 07:29:09'),(728,'en','contact_email_ucf','Contact email','2020-11-09 10:58:47','2021-09-20 07:29:09'),(729,'en','filter_by_ucf','Filter by','2020-11-09 11:00:03','2021-09-20 07:29:09'),(730,'en','condition_ucf','Condition','2020-11-09 11:56:13','2021-09-20 07:29:09'),(731,'en','all_type_ucf','All Type','2020-11-09 11:56:13','2021-09-20 07:29:09'),(732,'en','pay_with_wallet_ucf','Pay with wallet','2020-11-09 12:56:34','2021-09-20 07:29:09'),(733,'en','select_variation_ucf','Select variation','2020-11-10 07:54:29','2021-09-20 07:29:09'),(734,'en','no_product_added_ucf','No Product Added','2020-11-10 08:07:53','2021-09-20 07:29:09'),(735,'en','status_has_been_updated_successfully_ucf','Status has been updated successfully','2020-11-10 08:41:23','2021-09-20 07:29:09'),(736,'en','all_seller_packages_ucf','All Seller Packages','2020-11-10 09:14:10','2021-09-20 07:29:09'),(737,'en','add_new_package_ucf','Add New Package','2020-11-10 09:14:10','2021-09-20 07:29:09'),(738,'en','package_logo_ucf','Package Logo','2020-11-10 09:14:10','2021-09-20 07:29:09'),(739,'en','days_ucf','days','2020-11-10 09:14:10','2021-02-09 06:52:51'),(740,'en','create_new_seller_package_ucf','Create New Seller Package','2020-11-10 09:14:31','2021-09-20 07:29:09'),(741,'en','package_name_ucf','Package Name','2020-11-10 09:14:31','2021-09-20 07:29:09'),(742,'en','duration_ucf','Duration','2020-11-10 09:14:31','2021-09-20 07:29:09'),(743,'en','validity_in_number_of_days_ucf','Validity in number of days','2020-11-10 09:14:31','2021-09-20 07:29:09'),(744,'en','update_package_information_ucf','Update Package Information','2020-11-10 09:14:59','2021-09-20 07:29:09'),(745,'en','package_has_been_inserted_successfully_ucf','Package has been inserted successfully','2020-11-10 09:15:14','2021-09-20 07:29:09'),(746,'en','refund_request_ucf','Refund Request','2020-11-10 09:17:25','2021-09-20 07:29:09'),(747,'en','reason_ucf','Reason','2020-11-10 09:17:25','2021-09-20 07:29:09'),(748,'en','label_ucf','Label','2020-11-10 09:20:13','2021-09-20 07:29:09'),(749,'en','select_label_ucf','Select Label','2020-11-10 09:20:13','2021-09-20 07:29:09'),(750,'en','multiple_select_label_ucf','Multiple Select Label','2020-11-10 09:20:13','2021-09-20 07:29:09'),(751,'en','radio_label_ucf','Radio Label','2020-11-10 09:20:13','2021-09-20 07:29:09'),(752,'en','pickup_point_orders_ucf','Pickup Point Orders','2020-11-10 09:25:40','2021-09-20 07:29:09'),(753,'en','view_ucf','View','2020-11-10 09:25:40','2021-09-20 07:29:09'),(754,'en','order__ucf','Order #','2020-11-10 09:25:48','2021-09-20 07:29:09'),(755,'en','order_status_ucf','Order Status','2020-11-10 09:25:48','2021-09-20 07:29:09'),(756,'en','total_amount_ucf','Total amount','2020-11-10 09:25:48','2021-09-20 07:29:09'),(757,'en','total_ucf','TOTAL','2020-11-10 09:25:49','2021-09-20 07:29:09'),(758,'en','delivery_status_has_been_updated_ucf','Delivery status has been updated','2020-11-10 09:25:49','2021-09-20 07:29:09'),(759,'en','payment_status_has_been_updated_ucf','Payment status has been updated','2020-11-10 09:25:49','2021-09-20 07:29:09'),(760,'en','invoice_ucf','INVOICE','2020-11-10 09:25:58','2021-09-20 07:29:09'),(761,'en','set_refund_time_ucf','Set Refund Time','2020-11-10 09:34:04','2021-09-20 07:29:09'),(762,'en','set_time_for_sending_refund_request_ucf','Set Time for sending Refund Request','2020-11-10 09:34:04','2021-09-20 07:29:09'),(763,'en','set_refund_sticker_ucf','Set Refund Sticker','2020-11-10 09:34:05','2021-09-20 07:29:09'),(764,'en','sticker_ucf','Sticker','2020-11-10 09:34:05','2021-09-20 07:29:09'),(765,'en','refund_request_all_ucf','Refund Request All','2020-11-10 09:34:12','2021-09-20 07:29:09'),(766,'en','order_id_ucf','Order Id','2020-11-10 09:34:12','2021-09-20 07:29:09'),(767,'en','seller_approval_ucf','Seller Approval','2020-11-10 09:34:12','2021-09-20 07:29:09'),(768,'en','admin_approval_ucf','Admin Approval','2020-11-10 09:34:12','2021-09-20 07:29:09'),(769,'en','refund_status_ucf','Refund Status','2020-11-10 09:34:12','2021-09-20 07:29:09'),(770,'en','no_refund_ucf','No Refund','2020-11-10 09:35:27','2021-09-20 07:29:09'),(771,'en','status_updated_successfully_ucf','Status updated successfully','2020-11-10 09:54:20','2021-09-20 07:29:09'),(772,'en','user_search_report_ucf','User Search Report','2020-11-11 06:43:24','2021-09-20 07:29:09'),(773,'en','search_by_ucf','Search By','2020-11-11 06:43:24','2021-09-20 07:29:09'),(774,'en','number_searches_ucf','Number searches','2020-11-11 06:43:24','2021-09-20 07:29:09'),(775,'en','sender_ucf','Sender','2020-11-11 06:51:49','2021-09-20 07:29:09'),(776,'en','receiver_ucf','Receiver','2020-11-11 06:51:49','2021-09-20 07:29:09'),(777,'en','verification_form_updated_successfully_ucf','Verification form updated successfully','2020-11-11 06:53:29','2021-09-20 07:29:09'),(778,'en','invalid_email_or_password_ucf','Invalid email or password','2020-11-11 07:07:49','2021-09-20 07:29:09'),(779,'en','all_coupons_ucf','All Coupons','2020-11-11 07:14:04','2021-09-20 07:29:09'),(780,'en','add_new_coupon_ucf','Add New Coupon','2020-11-11 07:14:04','2021-09-20 07:29:09'),(781,'en','coupon_information_ucf','Coupon Information','2020-11-11 07:14:04','2021-09-20 07:29:09'),(782,'en','start_date_ucf','Start Date','2020-11-11 07:14:04','2021-09-20 07:29:09'),(783,'en','end_date_ucf','End Date','2020-11-11 07:14:05','2021-09-20 07:29:09'),(784,'en','product_base_ucf','Product Base','2020-11-11 07:14:05','2021-09-20 07:29:09'),(785,'en','send_newsletter_ucf','Send Newsletter','2020-11-11 07:14:10','2021-09-20 07:29:09'),(786,'en','mobile_users_ucf','Mobile Users','2020-11-11 07:14:10','2021-09-20 07:29:09'),(787,'en','sms_subject_ucf','SMS subject','2020-11-11 07:14:10','2021-09-20 07:29:09'),(788,'en','sms_content_ucf','SMS content','2020-11-11 07:14:10','2021-09-20 07:29:09'),(789,'en','all_flash_delas_ucf','All Flash Delas','2020-11-11 07:16:06','2021-09-20 07:29:09'),(790,'en','create_new_flash_dela_ucf','Create New Flash Dela','2020-11-11 07:16:06','2021-09-20 07:29:09'),(791,'en','page_link_ucf','Page Link','2020-11-11 07:16:06','2021-09-20 07:29:09'),(792,'en','flash_deal_information_ucf','Flash Deal Information','2020-11-11 07:16:14','2021-09-20 07:29:09'),(793,'en','background_color_ucf','Background Color','2020-11-11 07:16:14','2021-09-20 07:29:09'),(794,'en','0000ff_ucf','#0000ff','2020-11-11 07:16:14','2021-09-20 07:29:09'),(795,'en','text_color_ucf','Text Color','2020-11-11 07:16:14','2021-09-20 07:29:09'),(796,'en','white_ucf','White','2020-11-11 07:16:14','2021-09-20 07:29:09'),(797,'en','dark_ucf','Dark','2020-11-11 07:16:15','2021-09-20 07:29:09'),(798,'en','choose_products_ucf','Choose Products','2020-11-11 07:16:15','2021-09-20 07:29:09'),(799,'en','discounts_ucf','Discounts','2020-11-11 07:16:20','2021-09-20 07:29:09'),(800,'en','discount_type_ucf','Discount Type','2020-11-11 07:16:20','2021-09-20 07:29:09'),(801,'en','twillo_credential_ucf','Twillo Credential','2020-11-11 07:17:35','2021-09-20 07:29:09'),(802,'en','twilio_sid_ucf','TWILIO SID','2020-11-11 07:17:35','2021-09-20 07:29:09'),(803,'en','twilio_auth_token_ucf','TWILIO AUTH TOKEN','2020-11-11 07:17:35','2021-09-20 07:29:09'),(804,'en','twilio_verify_sid_ucf','TWILIO VERIFY SID','2020-11-11 07:17:35','2021-09-20 07:29:09'),(805,'en','valid_twillo_number_ucf','VALID TWILLO NUMBER','2020-11-11 07:17:35','2021-09-20 07:29:09'),(806,'en','nexmo_credential_ucf','Nexmo Credential','2020-11-11 07:17:35','2021-09-20 07:29:09'),(807,'en','nexmo_key_ucf','NEXMO KEY','2020-11-11 07:17:35','2021-09-20 07:29:09'),(808,'en','nexmo_secret_ucf','NEXMO SECRET','2020-11-11 07:17:35','2021-09-20 07:29:09'),(809,'en','ssl_wireless_credential_ucf','SSL Wireless Credential','2020-11-11 07:17:35','2021-09-20 07:29:09'),(810,'en','ssl_sms_api_token_ucf','SSL SMS API TOKEN','2020-11-11 07:17:35','2021-09-20 07:29:09'),(811,'en','ssl_sms_sid_ucf','SSL SMS SID','2020-11-11 07:17:35','2021-09-20 07:29:09'),(812,'en','ssl_sms_url_ucf','SSL SMS URL','2020-11-11 07:17:35','2021-09-20 07:29:09'),(813,'en','fast2sms_credential_ucf','Fast2SMS Credential','2020-11-11 07:17:35','2021-09-20 07:29:09'),(814,'en','auth_key_ucf','AUTH KEY','2020-11-11 07:17:35','2021-09-20 07:29:09'),(815,'en','route_ucf','ROUTE','2020-11-11 07:17:35','2021-09-20 07:29:09'),(816,'en','promotional_use_ucf','Promotional Use','2020-11-11 07:17:35','2021-09-20 07:29:09'),(817,'en','transactional_use_ucf','Transactional Use','2020-11-11 07:17:35','2021-09-20 07:29:09'),(818,'en','sender_id_ucf','SENDER ID','2020-11-11 07:17:35','2021-09-20 07:29:09'),(819,'en','nexmo_otp_ucf','Nexmo OTP','2020-11-11 07:17:42','2021-09-20 07:29:09'),(820,'en','twillo_otp_ucf','Twillo OTP','2020-11-11 07:17:43','2021-09-20 07:29:09'),(821,'en','ssl_wireless_otp_ucf','SSL Wireless OTP','2020-11-11 07:17:43','2021-09-20 07:29:09'),(822,'en','fast2sms_otp_ucf','Fast2SMS OTP','2020-11-11 07:17:43','2021-09-20 07:29:09'),(823,'en','order_placement_ucf','Order Placement','2020-11-11 07:17:43','2021-09-20 07:29:09'),(824,'en','delivery_status_changing_time_ucf','Delivery Status Changing Time','2020-11-11 07:17:43','2021-09-20 07:29:09'),(825,'en','paid_status_changing_time_ucf','Paid Status Changing Time','2020-11-11 07:17:43','2021-09-20 07:29:09'),(826,'en','send_bulk_sms_ucf','Send Bulk SMS','2020-11-11 07:19:14','2021-09-20 07:29:09'),(827,'en','all_subscribers_ucf','All Subscribers','2020-11-11 07:21:51','2021-09-20 07:29:09'),(828,'en','coupon_information_adding_ucf','Coupon Information Adding','2020-11-11 07:22:25','2021-09-20 07:29:09'),(829,'en','coupon_type_ucf','Coupon Type','2020-11-11 07:22:25','2021-09-20 07:29:09'),(830,'en','for_products_ucf','For Products','2020-11-11 07:22:25','2021-09-20 07:29:09'),(831,'en','for_total_orders_ucf','For Total Orders','2020-11-11 07:22:25','2021-09-20 07:29:09'),(832,'en','add_your_product_base_coupon_ucf','Add Your Product Base Coupon','2020-11-11 07:22:42','2021-09-20 07:29:09'),(833,'en','coupon_code_ucf','Coupon code','2020-11-11 07:22:42','2021-09-20 07:29:09'),(834,'en','sub_category_ucf','Sub Category','2020-11-11 07:22:42','2021-09-20 07:29:09'),(835,'en','add_more_ucf','Add More','2020-11-11 07:22:43','2021-09-20 07:29:09'),(836,'en','add_your_cart_base_coupon_ucf','Add Your Cart Base Coupon','2020-11-11 07:29:40','2021-09-20 07:29:09'),(837,'en','minimum_shopping_ucf','Minimum Shopping','2020-11-11 07:29:40','2021-09-20 07:29:09'),(838,'en','maximum_discount_amount_ucf','Maximum Discount Amount','2020-11-11 07:29:41','2021-09-20 07:29:09'),(839,'en','coupon_information_update_ucf','Coupon Information Update','2020-11-11 08:18:34','2021-09-20 07:29:09'),(840,'en','please_configure_smtp_setting_to_work_all_email_sending_funtionality_ucf','Please Configure SMTP Setting to work all email sending funtionality','2020-11-11 13:10:18','2021-09-20 07:29:09'),(841,'en','configure_now_ucf','Configure Now','2020-11-11 13:10:18','2021-09-20 07:29:09'),(842,'en','total_published_products_ucf','Total published products','2020-11-11 13:10:18','2021-09-20 07:29:09'),(843,'en','total_sellers_products_ucf','Total sellers products','2020-11-11 13:10:18','2021-09-20 07:29:09'),(844,'en','total_admin_products_ucf','Total admin products','2020-11-11 13:10:18','2021-09-20 07:29:09'),(845,'en','manage_products_ucf','Manage Products','2020-11-11 13:10:18','2021-09-20 07:29:09'),(846,'en','total_product_category_ucf','Total product category','2020-11-11 13:10:18','2021-09-20 07:29:09'),(847,'en','create_category_ucf','Create Category','2020-11-11 13:10:18','2021-09-20 07:29:09'),(848,'en','total_product_sub_sub_category_ucf','Total product sub sub category','2020-11-11 13:10:18','2021-09-20 07:29:10'),(849,'en','create_sub_sub_category_ucf','Create Sub Sub Category','2020-11-11 13:10:18','2021-09-20 07:29:10'),(850,'en','total_product_sub_category_ucf','Total product sub category','2020-11-11 13:10:18','2021-09-20 07:29:10'),(851,'en','create_sub_category_ucf','Create Sub Category','2020-11-11 13:10:18','2021-09-20 07:29:10'),(852,'en','total_product_brand_ucf','Total product brand','2020-11-11 13:10:18','2021-09-20 07:29:10'),(853,'en','create_brand_ucf','Create Brand','2020-11-11 13:10:18','2021-09-20 07:29:10'),(854,'en','total_sellers_ucf','Total sellers','2020-11-11 13:10:19','2021-09-20 07:29:10'),(855,'en','total_approved_sellers_ucf','Total approved sellers','2020-11-11 13:10:19','2021-09-20 07:29:10'),(856,'en','total_pending_sellers_ucf','Total pending sellers','2020-11-11 13:10:19','2021-09-20 07:29:10'),(857,'en','manage_sellers_ucf','Manage Sellers','2020-11-11 13:10:19','2021-09-20 07:29:10'),(858,'en','category_wise_product_sale_ucf','Category wise product sale','2020-11-11 13:10:19','2021-09-20 07:29:10'),(859,'en','sale_ucf','Sale','2020-11-11 13:10:19','2021-09-20 07:29:10'),(860,'en','category_wise_product_stock_ucf','Category wise product stock','2020-11-11 13:10:19','2021-09-20 07:29:10'),(861,'en','category_name_ucf','Category Name','2020-11-11 13:10:19','2021-09-20 07:29:10'),(862,'en','stock_ucf','Stock','2020-11-11 13:10:19','2021-09-20 07:29:10'),(863,'en','frontend_ucf','Frontend','2020-11-11 13:10:19','2021-09-20 07:29:10'),(864,'en','home_page_ucf','Home page','2020-11-11 13:10:19','2021-09-20 07:29:10'),(865,'en','setting_ucf','setting','2020-11-11 13:10:19','2021-02-09 06:52:51'),(866,'en','policy_page_ucf','Policy page','2020-11-11 13:10:20','2021-09-20 07:29:10'),(867,'en','setting_ucf','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(868,'en','general_ucf','General','2020-11-11 13:10:20','2021-09-20 07:29:10'),(869,'en','setting_ucf','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(870,'en','click_here_ucf','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(871,'en','useful_link_ucf','Useful link','2020-11-11 13:10:20','2021-09-20 07:29:10'),(872,'en','setting_ucf','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(873,'en','click_here_ucf','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(874,'en','activation_ucf','Activation','2020-11-11 13:10:20','2021-09-20 07:29:10'),(875,'en','setting_ucf','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(876,'en','click_here_ucf','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(877,'en','smtp_ucf','SMTP','2020-11-11 13:10:20','2021-09-20 07:29:10'),(878,'en','setting_ucf','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(879,'en','click_here_ucf','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(880,'en','payment_method_ucf','Payment method','2020-11-11 13:10:20','2021-09-20 07:29:10'),(881,'en','setting_ucf','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(882,'en','click_here_ucf','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(883,'en','social_media_ucf','Social media','2020-11-11 13:10:20','2021-09-20 07:29:10'),(884,'en','setting_ucf','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(885,'en','click_here_ucf','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(886,'en','business_ucf','Business','2020-11-11 13:10:21','2021-09-20 07:29:10'),(887,'en','setting_ucf','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(888,'en','setting_ucf','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(889,'en','click_here_ucf','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(890,'en','seller_verification_ucf','Seller verification','2020-11-11 13:10:21','2021-09-20 07:29:10'),(891,'en','form_setting_ucf','form setting','2020-11-11 13:10:21','2021-09-20 07:29:10'),(892,'en','click_here_ucf','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(893,'en','language_ucf','Language','2020-11-11 13:10:21','2021-09-20 07:29:10'),(894,'en','setting_ucf','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(895,'en','click_here_ucf','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(896,'en','setting_ucf','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(897,'en','click_here_ucf','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(898,'en','dashboard_ucf','Dashboard','2020-11-11 13:10:21','2021-09-20 07:29:10'),(899,'en','pos_system_ucf','POS System','2020-11-11 13:10:21','2021-09-20 07:29:10'),(900,'en','pos_manager_ucf','POS Manager','2020-11-11 13:10:21','2021-09-20 07:29:10'),(901,'en','pos_configuration_ucf','POS Configuration','2020-11-11 13:10:21','2021-09-20 07:29:10'),(902,'en','products_ucf','Products','2020-11-11 13:10:21','2021-09-20 07:29:10'),(903,'en','add_new_product_ucf','Add New product','2020-11-11 13:10:22','2021-09-20 07:29:10'),(904,'en','all_products_ucf','All Products','2020-11-11 13:10:22','2021-09-20 07:29:10'),(905,'en','in_house_products_ucf','In House Products','2020-11-11 13:10:22','2021-09-20 07:29:10'),(906,'en','seller_products_ucf','Seller Products','2020-11-11 13:10:22','2021-09-20 07:29:10'),(907,'en','digital_products_ucf','Digital Products','2020-11-11 13:10:22','2021-09-20 07:29:10'),(908,'en','bulk_import_ucf','Bulk Import','2020-11-11 13:10:22','2021-09-20 07:29:10'),(909,'en','bulk_export_ucf','Bulk Export','2020-11-11 13:10:22','2021-09-20 07:29:10'),(910,'en','category_ucf','Category','2020-11-11 13:10:22','2021-09-20 07:29:10'),(911,'en','subcategory_ucf','Subcategory','2020-11-11 13:10:22','2021-09-20 07:29:10'),(912,'en','sub_subcategory_ucf','Sub Subcategory','2020-11-11 13:10:22','2021-09-20 07:29:10'),(913,'en','brand_ucf','Brand','2020-11-11 13:10:22','2021-09-20 07:29:10'),(914,'en','attribute_ucf','Attribute','2020-11-11 13:10:22','2021-09-20 07:29:10'),(915,'en','product_reviews_ucf','Product Reviews','2020-11-11 13:10:22','2021-09-20 07:29:10'),(916,'en','sales_ucf','Sales','2020-11-11 13:10:22','2021-09-20 07:29:10'),(917,'en','all_orders_ucf','All Orders','2020-11-11 13:10:22','2021-09-20 07:29:10'),(918,'en','inhouse_orders_ucf','Inhouse orders','2020-11-11 13:10:22','2021-09-20 07:29:10'),(919,'en','seller_orders_ucf','Seller Orders','2020-11-11 13:10:22','2021-09-20 07:29:10'),(920,'en','pickup_point_order_ucf','Pick-up Point Order','2020-11-11 13:10:22','2021-09-20 07:29:10'),(921,'en','refunds_ucf','Refunds','2020-11-11 13:10:22','2021-09-20 07:29:10'),(922,'en','refund_requests_ucf','Refund Requests','2020-11-11 13:10:22','2021-09-20 07:29:10'),(923,'en','approved_refund_ucf','Approved Refund','2020-11-11 13:10:23','2021-09-20 07:29:10'),(924,'en','refund_configuration_ucf','Refund Configuration','2020-11-11 13:10:23','2021-09-20 07:29:10'),(925,'en','customers_ucf','Customers','2020-11-11 13:10:23','2021-09-20 07:29:10'),(926,'en','customer_list_ucf','Customer list','2020-11-11 13:10:23','2021-09-20 07:29:10'),(927,'en','classified_products_ucf','Classified Products','2020-11-11 13:10:23','2021-09-20 07:29:10'),(928,'en','classified_packages_ucf','Classified Packages','2020-11-11 13:10:23','2021-09-20 07:29:10'),(929,'en','sellers_ucf','Sellers','2020-11-11 13:10:23','2021-09-20 07:29:10'),(930,'en','all_seller_ucf','All Seller','2020-11-11 13:10:23','2021-09-20 07:29:10'),(931,'en','payouts_ucf','Payouts','2020-11-11 13:10:23','2021-09-20 07:29:10'),(932,'en','payout_requests_ucf','Payout Requests','2020-11-11 13:10:23','2021-09-20 07:29:10'),(933,'en','seller_commission_ucf','Seller Commission','2020-11-11 13:10:23','2021-09-20 07:29:10'),(934,'en','seller_packages_ucf','Seller Packages','2020-11-11 13:10:23','2021-09-20 07:29:10'),(935,'en','seller_verification_form_ucf','Seller Verification Form','2020-11-11 13:10:23','2021-09-20 07:29:10'),(936,'en','reports_ucf','Reports','2020-11-11 13:10:23','2021-09-20 07:29:10'),(937,'en','in_house_product_sale_ucf','In House Product Sale','2020-11-11 13:10:23','2021-09-20 07:29:10'),(938,'en','seller_products_sale_ucf','Seller Products Sale','2020-11-11 13:10:23','2021-09-20 07:29:10'),(939,'en','products_stock_ucf','Products Stock','2020-11-11 13:10:23','2021-09-20 07:29:10'),(940,'en','products_wishlist_ucf','Products wishlist','2020-11-11 13:10:23','2021-09-20 07:29:10'),(941,'en','user_searches_ucf','User Searches','2020-11-11 13:10:23','2021-09-20 07:29:10'),(942,'en','marketing_ucf','Marketing','2020-11-11 13:10:24','2021-09-20 07:29:10'),(943,'en','flash_deals_ucf','Flash deals','2020-11-11 13:10:24','2021-09-20 07:29:10'),(944,'en','newsletters_ucf','Newsletters','2020-11-11 13:10:24','2021-09-20 07:29:10'),(945,'en','bulk_sms_ucf','Bulk SMS','2020-11-11 13:10:24','2021-09-20 07:29:10'),(946,'en','subscribers_ucf','Subscribers','2020-11-11 13:10:24','2021-09-20 07:29:10'),(947,'en','coupon_ucf','Coupon','2020-11-11 13:10:24','2021-09-20 07:29:10'),(948,'en','support_ucf','Support','2020-11-11 13:10:24','2021-09-20 07:29:10'),(949,'en','ticket_ucf','Ticket','2020-11-11 13:10:24','2021-09-20 07:29:10'),(950,'en','product_queries_ucf','Product Queries','2020-11-11 13:10:24','2021-09-20 07:29:10'),(951,'en','website_setup_ucf','Website Setup','2020-11-11 13:10:24','2021-09-20 07:29:10'),(952,'en','header_ucf','Header','2020-11-11 13:10:24','2021-09-20 07:29:10'),(953,'en','footer_ucf','Footer','2020-11-11 13:10:24','2021-09-20 07:29:10'),(954,'en','pages_ucf','Pages','2020-11-11 13:10:24','2021-09-20 07:29:10'),(955,'en','appearance_ucf','Appearance','2020-11-11 13:10:24','2021-09-20 07:29:10'),(956,'en','setup__configurations_ucf','Setup & Configurations','2020-11-11 13:10:24','2021-09-20 07:29:10'),(957,'en','general_settings_ucf','General Settings','2020-11-11 13:10:24','2021-09-20 07:29:10'),(958,'en','features_activation_ucf','Features activation','2020-11-11 13:10:24','2021-09-20 07:29:10'),(959,'en','languages_ucf','Languages','2020-11-11 13:10:24','2021-09-20 07:29:10'),(960,'en','currency_ucf','Currency','2020-11-11 13:10:25','2021-09-20 07:29:10'),(961,'en','pickup_point_ucf','Pickup point','2020-11-11 13:10:25','2021-09-20 07:29:10'),(962,'en','smtp_settings_ucf','SMTP Settings','2020-11-11 13:10:25','2021-09-20 07:29:10'),(963,'en','payment_methods_ucf','Payment Methods','2020-11-11 13:10:25','2021-09-20 07:29:10'),(964,'en','file_system_configuration_ucf','File System Configuration','2020-11-11 13:10:25','2021-09-20 07:29:10'),(965,'en','social_media_logins_ucf','Social media Logins','2020-11-11 13:10:25','2021-09-20 07:29:10'),(966,'en','analytics_tools_ucf','Analytics Tools','2020-11-11 13:10:25','2021-09-20 07:29:10'),(967,'en','facebook_chat_ucf','Facebook Chat','2020-11-11 13:10:25','2021-09-20 07:29:10'),(968,'en','google_recaptcha_ucf','Google reCAPTCHA','2020-11-11 13:10:25','2021-09-20 07:29:10'),(969,'en','shipping_configuration_ucf','Shipping Configuration','2020-11-11 13:10:25','2021-09-20 07:29:10'),(970,'en','shipping_countries_ucf','Shipping Countries','2020-11-11 13:10:25','2021-09-20 07:29:10'),(971,'en','affiliate_system_ucf','Affiliate System','2020-11-11 13:10:25','2021-09-20 07:29:10'),(972,'en','affiliate_registration_form_ucf','Affiliate Registration Form','2020-11-11 13:10:25','2021-09-20 07:29:10'),(973,'en','affiliate_configurations_ucf','Affiliate Configurations','2020-11-11 13:10:25','2021-09-20 07:29:10'),(974,'en','affiliate_users_ucf','Affiliate Users','2020-11-11 13:10:25','2021-09-20 07:29:10'),(975,'en','referral_users_ucf','Referral Users','2020-11-11 13:10:25','2021-09-20 07:29:10'),(976,'en','affiliate_withdraw_requests_ucf','Affiliate Withdraw Requests','2020-11-11 13:10:26','2021-09-20 07:29:10'),(977,'en','offline_payment_system_ucf','Offline Payment System','2020-11-11 13:10:26','2021-09-20 07:29:10'),(978,'en','manual_payment_methods_ucf','Manual Payment Methods','2020-11-11 13:10:26','2021-09-20 07:29:10'),(979,'en','offline_wallet_recharge_ucf','Offline Wallet Recharge','2020-11-11 13:10:26','2021-09-20 07:29:10'),(980,'en','offline_customer_package_payments_ucf','Offline Customer Package Payments','2020-11-11 13:10:26','2021-09-20 07:29:10'),(981,'en','offline_seller_package_payments_ucf','Offline Seller Package Payments','2020-11-11 13:10:26','2021-09-20 07:29:10'),(982,'en','paytm_payment_gateway_ucf','Paytm Payment Gateway','2020-11-11 13:10:26','2021-09-20 07:29:10'),(983,'en','set_paytm_credentials_ucf','Set Paytm Credentials','2020-11-11 13:10:26','2021-09-20 07:29:10'),(984,'en','club_point_system_ucf','Club Point System','2020-11-11 13:10:26','2021-09-20 07:29:10'),(985,'en','club_point_configurations_ucf','Club Point Configurations','2020-11-11 13:10:26','2021-09-20 07:29:10'),(986,'en','set_product_point_ucf','Set Product Point','2020-11-11 13:10:26','2021-09-20 07:29:10'),(987,'en','user_points_ucf','User Points','2020-11-11 13:10:26','2021-09-20 07:29:10'),(988,'en','otp_system_ucf','OTP System','2020-11-11 13:10:26','2021-09-20 07:29:10'),(989,'en','otp_configurations_ucf','OTP Configurations','2020-11-11 13:10:26','2021-09-20 07:29:10'),(990,'en','set_otp_credentials_ucf','Set OTP Credentials','2020-11-11 13:10:26','2021-09-20 07:29:10'),(991,'en','staffs_ucf','Staffs','2020-11-11 13:10:26','2021-09-20 07:29:10'),(992,'en','all_staffs_ucf','All staffs','2020-11-11 13:10:27','2021-09-20 07:29:10'),(993,'en','staff_permissions_ucf','Staff permissions','2020-11-11 13:10:27','2021-09-20 07:29:10'),(994,'en','addon_manager_ucf','Addon Manager','2020-11-11 13:10:27','2021-09-20 07:29:10'),(995,'en','browse_website_ucf','Browse Website','2020-11-11 13:10:27','2021-09-20 07:29:10'),(996,'en','pos_ucf','POS','2020-11-11 13:10:27','2021-09-20 07:29:10'),(997,'en','notifications_ucf','Notifications','2020-11-11 13:10:27','2021-09-20 07:29:10'),(998,'en','new_orders_ucf','new orders','2020-11-11 13:10:27','2021-09-20 07:29:10'),(999,'en','userimage_ucf','user-image','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1000,'en','profile_ucf','Profile','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1001,'en','logout_ucf','Logout','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1002,'en','page_not_found_ucf','Page Not Found!','2020-11-11 13:10:28','2021-09-20 07:29:10'),(1003,'en','the_page_you_are_looking_for_has_not_been_found_on_our_server_ucf','The page you are looking for has not been found on our server.','2020-11-11 13:10:28','2021-09-20 07:29:10'),(1004,'en','registration_ucf','Registration','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1005,'en','i_am_shopping_for_ucf','I am shopping for...','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1006,'en','compare_ucf','Compare','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1007,'en','wishlist_ucf','Wishlist','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1008,'en','cart_ucf','Cart','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1009,'en','your_cart_is_empty_ucf','Your Cart is empty','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1010,'en','categories_ucf','Categories','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1011,'en','see_all_ucf','See All','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1012,'en','seller_policy_ucf','Seller Policy','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1013,'en','return_policy_ucf','Return Policy','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1014,'en','support_policy_ucf','Support Policy','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1015,'en','privacy_policy_ucf','Privacy Policy','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1016,'en','your_email_address_ucf','Your Email Address','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1017,'en','subscribe_ucf','Subscribe','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1018,'en','contact_info_ucf','Contact Info','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1019,'en','address_ucf','Address','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1020,'en','phone_ucf','Phone','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1021,'en','email_ucf','Email','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1022,'en','login_ucf','Login','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1023,'en','my_account_ucf','My Account','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1024,'en','login_ucf','Login','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1025,'en','order_history_ucf','Order History','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1026,'en','my_wishlist_ucf','My Wishlist','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1027,'en','track_order_ucf','Track Order','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1028,'en','be_an_affiliate_partner_ucf','Be an affiliate partner','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1029,'en','be_a_seller_ucf','Be a Seller','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1030,'en','apply_now_ucf','Apply Now','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1031,'en','confirmation_ucf','Confirmation','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1032,'en','delete_confirmation_message_ucf','Delete confirmation message','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1033,'en','cancel_ucf','Cancel','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1034,'en','delete_ucf','Delete','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1035,'en','item_has_been_added_to_compare_list_ucf','Item has been added to compare list','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1036,'en','please_login_first_ucf','Please login first','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1037,'en','total_earnings_from_ucf','Total Earnings From','2020-11-12 08:01:11','2021-09-20 07:29:10'),(1038,'en','client_subscription_ucf','Client Subscription','2020-11-12 08:01:12','2021-09-20 07:29:10'),(1039,'en','product_category_ucf','Product category','2020-11-12 08:03:46','2021-09-20 07:29:10'),(1040,'en','product_sub_sub_category_ucf','Product sub sub category','2020-11-12 08:03:46','2021-09-20 07:29:10'),(1041,'en','product_sub_category_ucf','Product sub category','2020-11-12 08:03:46','2021-09-20 07:29:10'),(1042,'en','product_brand_ucf','Product brand','2020-11-12 08:03:46','2021-09-20 07:29:10'),(1043,'en','top_client_packages_ucf','Top Client Packages','2020-11-12 08:05:21','2021-09-20 07:29:10'),(1044,'en','top_freelancer_packages_ucf','Top Freelancer Packages','2020-11-12 08:05:21','2021-09-20 07:29:10'),(1045,'en','number_of_sale_ucf','Number of sale','2020-11-12 09:13:09','2021-09-20 07:29:10'),(1046,'en','number_of_stock_ucf','Number of Stock','2020-11-12 09:16:02','2021-09-20 07:29:10'),(1047,'en','top_10_products_ucf','Top 10 Products','2020-11-12 10:02:29','2021-09-20 07:29:10'),(1048,'en','top_12_products_ucf','Top 12 Products','2020-11-12 10:02:39','2021-09-20 07:29:10'),(1049,'en','admin_can_not_be_a_seller_ucf','Admin cannot be a seller','2020-11-12 11:30:19','2021-09-20 07:29:10'),(1050,'en','filter_by_rating_ucf','Filter by Rating','2020-11-15 08:01:15','2021-09-20 07:29:10'),(1051,'en','published_reviews_updated_successfully_ucf','Published reviews updated successfully','2020-11-15 08:01:15','2021-09-20 07:29:10'),(1052,'en','refund_sticker_has_been_updated_successfully_ucf','Refund Sticker has been updated successfully','2020-11-15 08:17:12','2021-09-20 07:29:10'),(1053,'en','edit_product_ucf','Edit Product','2020-11-15 10:31:54','2021-09-20 07:29:10'),(1054,'en','meta_images_ucf','Meta Images','2020-11-15 10:32:12','2021-09-20 07:29:10'),(1055,'en','update_product_ucf','Update Product','2020-11-15 10:32:12','2021-09-20 07:29:10'),(1056,'en','product_has_been_deleted_successfully_ucf','Product has been deleted successfully','2020-11-15 10:32:57','2021-09-20 07:29:10'),(1057,'en','your_profile_has_been_updated_successfully_ucf','Your Profile has been updated successfully!','2020-11-15 11:10:42','2021-09-20 07:29:10'),(1058,'en','upload_limit_has_been_reached_please_upgrade_your_package_ucf','Upload limit has been reached. Please upgrade your package.','2020-11-15 11:13:45','2021-09-20 07:29:10'),(1059,'en','add_your_product_ucf','Add Your Product','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1060,'en','select_a_category_ucf','Select a category','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1061,'en','select_a_brand_ucf','Select a brand','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1062,'en','product_unit_ucf','Product Unit','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1063,'en','minimum_qty_ucf','Minimum Qty.','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1064,'en','product_tag_ucf','Product Tag','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1065,'en','type__hit_enter_ucf','Type & hit enter','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1066,'en','videos_ucf','Videos','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1067,'en','video_from_ucf','Video From','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1068,'en','video_url_ucf','Video URL','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1069,'en','customer_choice_ucf','Customer Choice','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1070,'en','pdf_ucf','PDF','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1071,'en','choose_pdf_ucf','Choose PDF','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1072,'en','select_category_ucf','Select Category','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1073,'en','target_category_ucf','Target Category','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1074,'en','subsubcategory_ucf','subsubcategory','2020-11-15 11:17:56','2021-02-09 06:53:13'),(1075,'en','search_category_ucf','Search Category','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1076,'en','search_subcategory_ucf','Search SubCategory','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1077,'en','search_subsubcategory_ucf','Search SubSubCategory','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1078,'en','update_your_product_ucf','Update your product','2020-11-15 11:39:14','2021-09-20 07:29:10'),(1079,'en','product_has_been_updated_successfully_ucf','Product has been updated successfully','2020-11-15 11:51:36','2021-09-20 07:29:10'),(1080,'en','add_your_digital_product_ucf','Add Your Digital Product','2020-11-15 12:24:21','2021-09-20 07:29:10'),(1081,'en','active_ecommerce_cms_update_process_ucf','Active eCommerce CMS Update Process','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1082,'en','codecanyon_purchase_code_ucf','Codecanyon purchase code','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1083,'en','database_name_ucf','Database Name','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1084,'en','database_username_ucf','Database Username','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1085,'en','database_password_ucf','Database Password','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1086,'en','database_hostname_ucf','Database Hostname','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1087,'en','update_now_ucf','Update Now','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1088,'en','congratulations_ucf','Congratulations','2020-11-16 07:55:14','2021-09-20 07:29:10'),(1089,'en','you_have_successfully_completed_the_updating_process_please_login_to_continue_ucf','You have successfully completed the updating process. Please Login to continue','2020-11-16 07:55:14','2021-09-20 07:29:10'),(1090,'en','go_to_home_ucf','Go to Home','2020-11-16 07:55:14','2021-09-20 07:29:10'),(1091,'en','login_to_admin_panel_ucf','Login to Admin panel','2020-11-16 07:55:14','2021-09-20 07:29:10'),(1092,'en','s3_file_system_credentials_ucf','S3 File System Credentials','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1093,'en','aws_access_key_id_ucf','AWS_ACCESS_KEY_ID','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1094,'en','aws_secret_access_key_ucf','AWS_SECRET_ACCESS_KEY','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1095,'en','aws_default_region_ucf','AWS_DEFAULT_REGION','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1096,'en','aws_bucket_ucf','AWS_BUCKET','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1097,'en','aws_url_ucf','AWS_URL','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1098,'en','s3_file_system_activation_ucf','S3 File System Activation','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1099,'en','your_phone_number_ucf','Your phone number','2020-11-17 05:50:10','2021-09-20 07:29:10'),(1100,'en','zip_file_ucf','Zip File','2020-11-17 06:58:45','2021-09-20 07:29:10'),(1101,'en','install_ucf','Install','2020-11-17 06:58:45','2021-09-20 07:29:10'),(1102,'en','this_version_is_not_capable_of_installing_addons_please_update_ucf','This version is not capable of installing Addons, Please update.','2020-11-17 06:59:11','2021-09-20 07:29:10'),(1103,'en','search_in_menu_ucf','Search in menu','2021-02-03 03:55:48','2021-09-20 07:29:11'),(1104,'en','uploaded_files_ucf','Uploaded Files','2021-02-03 03:55:48','2021-09-20 07:29:11'),(1105,'en','shipping_cities_ucf','Shipping Cities','2021-02-03 03:55:48','2021-09-20 07:29:11'),(1106,'en','system_ucf','System','2021-02-03 03:55:49','2021-09-20 07:29:11'),(1107,'en','server_status_ucf','Server status','2021-02-03 03:55:49','2021-09-20 07:29:11'),(1108,'en','nothing_found_ucf','Nothing Found','2021-02-03 03:55:49','2021-09-20 07:29:11'),(1109,'en','parent_category_ucf','Parent Category','2021-02-03 03:58:00','2021-09-20 07:29:11'),(1110,'en','level_ucf','Level','2021-02-03 03:58:00','2021-09-20 07:29:11'),(1111,'en','category_information_ucf','Category Information','2021-02-03 03:58:12','2021-09-20 07:29:11'),(1112,'en','translatable_ucf','Translatable','2021-02-03 03:58:12','2021-09-20 07:29:11'),(1113,'en','no_parent_ucf','No Parent','2021-02-03 03:58:12','2021-09-20 07:29:11'),(1114,'en','physical_ucf','Physical','2021-02-03 03:58:13','2021-09-20 07:29:11'),(1115,'en','digital_ucf','Digital','2021-02-03 03:58:13','2021-09-20 07:29:11'),(1116,'en','200x200_ucf','200x200','2021-02-03 03:58:13','2021-02-03 03:58:13'),(1117,'en','32x32_ucf','32x32','2021-02-03 03:58:13','2021-02-03 03:58:13'),(1118,'en','search_your_files_ucf','Search your files','2021-02-03 03:58:15','2021-09-20 07:29:11'),(1119,'en','category_has_been_updated_successfully_ucf','Category has been updated successfully','2021-02-03 04:47:29','2021-09-20 07:29:11'),(1120,'en','all_uploaded_files_ucf','All uploaded files','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1121,'en','upload_new_file_ucf','Upload New File','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1122,'en','all_files_ucf','All files','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1123,'en','search_ucf','Search','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1124,'en','details_info_ucf','Details Info','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1125,'en','copy_link_ucf','Copy Link','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1126,'en','are_you_sure_to_delete_this_file_ucf','Are you sure to delete this file?','2021-02-03 06:25:31','2021-09-20 07:29:11'),(1127,'en','file_info_ucf','File Info','2021-02-03 06:25:31','2021-09-20 07:29:11'),(1128,'en','link_copied_to_clipboard_ucf','Link copied to clipboard','2021-02-03 06:25:31','2021-09-20 07:29:11'),(1129,'en','oops_unable_to_copy_ucf','Oops, unable to copy','2021-02-03 06:25:31','2021-09-20 07:29:11'),(1130,'en','file_deleted_successfully_ucf','File deleted successfully','2021-02-03 06:26:02','2021-09-20 07:29:11'),(1131,'en','add_new_brand_ucf','Add New Brand','2021-02-03 07:04:22','2021-09-20 07:29:11'),(1132,'en','120x80_ucf','120x80','2021-02-03 07:04:22','2021-02-03 07:04:22'),(1133,'en','brand_information_ucf','Brand Information','2021-02-03 07:04:29','2021-09-20 07:29:11'),(1134,'en','brand_has_been_updated_successfully_ucf','Brand has been updated successfully','2021-02-03 07:06:52','2021-09-20 07:29:11'),(1135,'en','brand_has_been_deleted_successfully_ucf','Brand has been deleted successfully','2021-02-03 07:07:54','2021-09-20 07:29:11'),(1136,'en','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product_ucf','This is used for search. Input those words by which cutomer can find this product.','2021-02-04 03:11:06','2021-09-20 07:29:11'),(1137,'en','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images_ucf','These images are visible in product details page gallery. Use 600x600 sizes images.','2021-02-04 03:11:06','2021-09-20 07:29:11'),(1138,'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_ucf','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 03:11:06','2021-09-20 07:29:11'),(1139,'en','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code_ucf','Use proper link without extra parameter. Don\'t use short share link/embeded iframe code.','2021-02-04 03:11:06','2021-09-20 07:29:11'),(1140,'en','save_product_ucf','Save Product','2021-02-04 03:11:07','2021-09-20 07:29:11'),(1141,'en','product_has_been_inserted_successfully_ucf','Product has been inserted successfully','2021-02-04 03:29:35','2021-09-20 07:29:11'),(1142,'en','something_went_wrong_ucf','Something went wrong!','2021-02-04 04:32:50','2021-09-20 07:29:11'),(1143,'en','sorry_for_the_inconvenience_but_were_working_on_it_ucf','Sorry for the inconvenience, but we\'re working on it.','2021-02-04 04:32:50','2021-09-20 07:29:11'),(1144,'en','error_code_ucf','Error code','2021-02-04 04:32:50','2021-09-20 07:29:11'),(1145,'en','please_configure_smtp_setting_to_work_all_email_sending_functionality_ucf','Please Configure SMTP Setting to work all email sending functionality','2021-02-04 04:33:06','2021-09-20 07:29:11'),(1146,'en','order_ucf','Order','2021-02-04 04:33:06','2021-09-20 07:29:11'),(1147,'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_ucf','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 06:10:35','2021-09-20 07:29:11'),(1148,'en','home_banner_3_max_3_ucf','Home Banner 3 (Max 3)','2021-02-04 06:10:36','2021-09-20 07:29:11'),(1149,'en','add_new_seller_ucf','Add New Seller','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1150,'en','filter_by_approval_ucf','Filter by Approval','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1151,'en','nonapproved_ucf','Non-Approved','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1152,'en','type_name_or_email__enter_ucf','Type name or email & Enter','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1153,'en','due_to_seller_ucf','Due to seller','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1154,'en','log_in_as_this_seller_ucf','Log in as this Seller','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1155,'en','go_to_payment_ucf','Go to Payment','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1156,'en','ban_this_seller_ucf','Ban this seller','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1157,'en','do_you_really_want_to_ban_this_seller_ucf','Do you really want to ban this seller?','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1158,'en','proceed_ucf','Proceed!','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1159,'en','approved_sellers_updated_successfully_ucf','Approved sellers updated successfully','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1160,'en','seller_has_been_deleted_successfully_ucf','Seller has been deleted successfully','2021-02-04 07:28:26','2021-09-20 07:29:11'),(1161,'en','seller_information_ucf','Seller Information','2021-02-04 07:29:05','2021-09-20 07:29:11'),(1162,'en','seller_has_been_inserted_successfully_ucf','Seller has been inserted successfully','2021-02-04 07:35:31','2021-09-20 07:29:11'),(1163,'en','email_already_exists_ucf','Email already exists!','2021-02-04 07:38:36','2021-09-20 07:29:11'),(1164,'en','verify_your_email_address_ucf','Verify Your Email Address','2021-02-04 07:40:03','2021-09-20 07:29:11'),(1165,'en','before_proceeding_please_check_your_email_for_a_verification_link_ucf','Before proceeding, please check your email for a verification link.','2021-02-04 07:40:03','2021-09-20 07:29:11'),(1166,'en','if_you_did_not_receive_the_email_ucf','If you did not receive the email.','2021-02-04 07:40:03','2021-09-20 07:29:11'),(1167,'en','click_here_to_request_another_ucf','Click here to request another','2021-02-04 07:40:03','2021-09-20 07:29:11'),(1168,'en','email_verification_ucf','Email Verification','2021-02-04 07:40:09','2021-09-20 07:29:11'),(1169,'en','email_verification___ucf','Email Verification -','2021-02-04 07:40:09','2021-09-20 07:29:11'),(1170,'en','https_activation_ucf','HTTPS Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1171,'en','maintenance_mode_ucf','Maintenance Mode','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1172,'en','maintenance_mode_activation_ucf','Maintenance Mode Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1173,'en','classified_product_activate_ucf','Classified Product Activate','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1174,'en','classified_product_ucf','Classified Product','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1175,'en','business_related_ucf','Business Related','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1176,'en','vendor_system_activation_ucf','Vendor System Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1177,'en','wallet_system_activation_ucf','Wallet System Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1178,'en','coupon_system_activation_ucf','Coupon System Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1179,'en','pickup_point_activation_ucf','Pickup Point Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1180,'en','conversation_activation_ucf','Conversation Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1181,'en','guest_checkout_activation_ucf','Guest Checkout Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1182,'en','categorybased_commission_ucf','Category-based Commission','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1183,'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_ucf','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 07:43:51','2021-09-20 07:29:11'),(1184,'en','set_commisssion_now_ucf','Set Commisssion Now','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1185,'en','payment_related_ucf','Payment Related','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1186,'en','paypal_payment_activation_ucf','Paypal Payment Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1187,'en','you_need_to_configure_paypal_correctly_to_enable_this_feature_ucf','You need to configure Paypal correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1188,'en','stripe_payment_activation_ucf','Stripe Payment Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1189,'en','sslcommerz_activation_ucf','SSlCommerz Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1190,'en','instamojo_payment_activation_ucf','Instamojo Payment Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1191,'en','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature_ucf','You need to configure Instamojo Payment correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1192,'en','razor_pay_activation_ucf','Razor Pay Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1193,'en','you_need_to_configure_razor_correctly_to_enable_this_feature_ucf','You need to configure Razor correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1194,'en','paystack_activation_ucf','PayStack Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1195,'en','you_need_to_configure_paystack_correctly_to_enable_this_feature_ucf','You need to configure PayStack correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1196,'en','voguepay_activation_ucf','VoguePay Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1197,'en','you_need_to_configure_voguepay_correctly_to_enable_this_feature_ucf','You need to configure VoguePay correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1198,'en','payhere_activation_ucf','Payhere Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1199,'en','ngenius_activation_ucf','Ngenius Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1200,'en','you_need_to_configure_ngenius_correctly_to_enable_this_feature_ucf','You need to configure Ngenius correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1201,'en','iyzico_activation_ucf','Iyzico Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1202,'en','you_need_to_configure_iyzico_correctly_to_enable_this_feature_ucf','You need to configure iyzico correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1203,'en','bkash_activation_ucf','Bkash Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1204,'en','you_need_to_configure_bkash_correctly_to_enable_this_feature_ucf','You need to configure bkash correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1205,'en','nagad_activation_ucf','Nagad Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1206,'en','you_need_to_configure_nagad_correctly_to_enable_this_feature_ucf','You need to configure nagad correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1207,'en','cash_payment_activation_ucf','Cash Payment Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1208,'en','social_media_login_ucf','Social Media Login','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1209,'en','facebook_login_ucf','Facebook login','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1210,'en','you_need_to_configure_facebook_client_correctly_to_enable_this_feature_ucf','You need to configure Facebook Client correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1211,'en','google_login_ucf','Google login','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1212,'en','you_need_to_configure_google_client_correctly_to_enable_this_feature_ucf','You need to configure Google Client correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1213,'en','twitter_login_ucf','Twitter login','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1214,'en','you_need_to_configure_twitter_client_correctly_to_enable_this_feature_ucf','You need to configure Twitter Client correctly to enable this feature','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1215,'en','shop_logo_ucf','Shop Logo','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1216,'en','shop_address_ucf','Shop Address','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1217,'en','banner_settings_ucf','Banner Settings','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1218,'en','banners_ucf','Banners','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1219,'en','we_had_to_limit_height_to_maintian_consistancy_in_some_device_both_side_of_the_banner_might_be_cropped_for_height_limitation_ucf','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 07:45:53','2021-09-20 07:29:11'),(1220,'en','insert_link_with_https__ucf','Insert link with https','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1221,'en','your_shop_has_been_updated_successfully_ucf','Your Shop has been updated successfully!','2021-02-04 07:49:29','2021-09-20 07:29:11'),(1222,'en','support_ticket_ucf','Support Ticket','2021-02-04 14:25:45','2021-09-20 07:29:11'),(1223,'en','delete_ucf','Delete','2021-02-05 03:06:35','2021-09-20 07:29:11'),(1224,'en','search_result_for__ucf','Search result for','2021-02-05 03:15:40','2021-09-20 07:29:11'),(1225,'en','brand_has_been_inserted_successfully_ucf','Brand has been inserted successfully','2021-02-05 07:27:04','2021-09-20 07:29:11'),(1226,'en','about_ucf','About','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1227,'en','payout_info_ucf','Payout Info','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1228,'en','bank_acc_name_ucf','Bank Acc Name','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1229,'en','bank_acc_number_ucf','Bank Acc Number','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1230,'en','total_products_ucf','Total Products','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1231,'en','total_sold_amount_ucf','Total Sold Amount','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1232,'en','wallet_balance_ucf','Wallet Balance','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1233,'en','cookies_agreement_ucf','Cookies Agreement','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1234,'en','cookies_agreement_text_ucf','Cookies Agreement Text','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1235,'en','show_cookies_agreement_ucf','Show Cookies Agreement?','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1236,'en','custom_script_ucf','Custom Script','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1237,'en','header_custom_script__before_head_ucf','Header custom script - before </head>','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1238,'en','write_script_with_script_tag_ucf','Write script with <script> tag','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1239,'en','footer_custom_script__before_body_ucf','Footer custom script - before </body>','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1240,'en','category_has_been_inserted_successfully_ucf','Category has been inserted successfully','2021-02-07 04:00:49','2021-09-20 07:29:11'),(1241,'en','all_flash_deals_ucf','All Flash Deals','2021-02-07 07:05:16','2021-09-20 07:29:11'),(1242,'en','create_new_flash_deal_ucf','Create New Flash Deal','2021-02-07 07:05:16','2021-09-20 07:29:11'),(1243,'en','ffffff_ucf','#FFFFFF','2021-02-07 07:05:19','2021-09-20 07:29:11'),(1244,'en','this_image_is_shown_as_cover_banner_in_flash_deal_details_page_ucf','This image is shown as cover banner in flash deal details page.','2021-02-07 07:05:19','2021-09-20 07:29:11'),(1245,'en','flash_deal_has_been_inserted_successfully_ucf','Flash Deal has been inserted successfully','2021-02-07 07:07:14','2021-09-20 07:29:11'),(1246,'en','flash_deal_status_updated_successfully_ucf','Flash deal status updated successfully','2021-02-07 07:07:32','2021-09-20 07:29:11'),(1247,'en','flash_deal_has_been_updated_successfully_ucf','Flash Deal has been updated successfully','2021-02-08 06:22:46','2021-09-20 07:29:11'),(1248,'en','update_language_info_ucf','update Language Info','2021-02-09 06:28:04','2021-09-20 07:29:11'),(1249,'en','language_has_been_updated_successfully_ucf','Language has been updated successfully','2021-02-09 06:28:10','2021-09-20 07:29:11'),(1250,'en','type_key__enter_ucf','Type key & Enter','2021-02-09 06:29:56','2021-09-20 07:29:11'),(1251,'en','translations_updated_for__ucf','Translations updated for','2021-02-09 06:31:12','2021-09-20 07:29:11'),(1252,'en','language_has_been_inserted_successfully_ucf','Language has been inserted successfully','2021-02-09 06:54:07','2021-09-20 07:29:15'),(1253,'en','verify_now_ucf','Verify Now','2021-02-11 06:00:02','2021-09-20 07:30:23'),(1254,'en','iyzico_ucf','Iyzico','2021-02-11 06:50:18','2021-09-20 07:30:23'),(1255,'en','bkash_credential_ucf','Bkash Credential','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1256,'en','bkash_checkout_app_key_ucf','BKASH CHECKOUT APP KEY','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1257,'en','bkash_checkout_app_secret_ucf','BKASH CHECKOUT APP SECRET','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1258,'en','bkash_checkout_user_name_ucf','BKASH CHECKOUT USER NAME','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1259,'en','bkash_checkout_password_ucf','BKASH CHECKOUT PASSWORD','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1260,'en','bkash_sandbox_mode_ucf','Bkash Sandbox Mode','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1261,'en','nagad_credential_ucf','Nagad Credential','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1262,'en','nagad_mode_ucf','NAGAD MODE','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1263,'en','nagad_merchant_id_ucf','NAGAD MERCHANT ID','2021-02-11 06:50:42','2021-09-20 07:30:23'),(1264,'en','nagad_merchant_number_ucf','NAGAD MERCHANT NUMBER','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1265,'en','nagad_pg_public_key_ucf','NAGAD PG PUBLIC KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1266,'en','nagad_merchant_private_key_ucf','NAGAD MERCHANT PRIVATE KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1267,'en','iyzico_credential_ucf','Iyzico Credential','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1268,'en','iyzico_api_key_ucf','IYZICO_API_KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1269,'en','iyzico_api_key_ucf','IYZICO API KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1270,'en','iyzico_secret_key_ucf','IYZICO_SECRET_KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1271,'en','iyzico_secret_key_ucf','IYZICO SECRET KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1272,'en','iyzico_sandbox_mode_ucf','IYZICO Sandbox Mode','2021-02-11 06:50:43','2021-09-20 07:30:23'),(1273,'en','instamojo_ucf','Instamojo','2021-02-11 06:53:34','2021-09-20 07:30:23'),(1274,'en','nagad_ucf','Nagad','2021-02-11 06:53:35','2021-09-20 07:30:23'),(1275,'en','bkash_ucf','Bkash','2021-02-11 06:53:35','2021-09-20 07:30:23'),(1276,'en','your_order_has_been_placed_ucf','Your order has been placed','2021-02-11 06:55:22','2021-09-20 07:30:23'),(1277,'en','your_order_has_been_placed_successfully_ucf','Your order has been placed successfully','2021-02-11 06:55:22','2021-09-20 07:30:23'),(1278,'en','product_image_ucf','Product Image','2021-02-11 06:56:47','2021-09-20 07:30:23'),(1279,'en','add_to_compare_ucf','Add to compare','2021-02-12 15:42:01','2021-09-20 07:30:23'),(1280,'en','step_1_ucf','Step 1','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1281,'en','download_the_skeleton_file_and_fill_it_with_proper_data_ucf','Download the skeleton file and fill it with proper data','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1282,'en','you_can_download_the_example_file_to_understand_how_the_data_must_be_filled_ucf','You can download the example file to understand how the data must be filled','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1283,'en','once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit_ucf','Once you have downloaded and filled the skeleton file, upload it in the form below and submit','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1284,'en','after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices_ucf','After uploading products you need to edit them and set product\'s images and choices','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1285,'en','step_2_ucf','Step 2','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1286,'en','category_and_brand_should_be_in_numerical_id_ucf','Category and Brand should be in numerical id','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1287,'en','you_can_download_the_pdf_to_get_category_and_brand_id_ucf','You can download the pdf to get Category and Brand id','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1288,'en','upload_product_file_ucf','Upload Product File','2021-02-13 03:34:49','2021-09-20 07:30:23'),(1289,'en','all_attributes_ucf','All Attributes','2021-02-13 03:41:19','2021-09-20 07:30:23'),(1290,'en','add_new_attribute_ucf','Add New Attribute','2021-02-13 03:41:19','2021-09-20 07:30:23'),(1291,'en','attribute_has_been_inserted_successfully_ucf','Attribute has been inserted successfully','2021-02-13 03:41:48','2021-09-20 07:30:23'),(1292,'en','attribute_has_been_deleted_successfully_ucf','Attribute has been deleted successfully','2021-02-13 03:41:59','2021-09-20 07:30:23'),(1293,'en','product_has_been_duplicated_successfully_ucf','Product has been duplicated successfully','2021-02-14 04:24:28','2021-09-20 07:30:23'),(1294,'en','filter_by_date_ucf','Filter by date','2021-02-14 04:26:26','2021-09-20 07:30:23'),(1295,'en','1_category_and_brand_should_be_in_numerical_id_ucf','1. Category and Brand should be in numerical id.','2021-02-14 04:47:38','2021-09-20 07:30:23'),(1296,'en','2_you_can_download_the_pdf_to_get_category_and_brand_id_ucf','2. You can download the pdf to get Category and Brand id.','2021-02-14 04:47:38','2021-09-20 07:30:23'),(1297,'en','payment_completed_ucf','Payment completed','2021-02-14 05:00:40','2021-09-20 07:30:23'),(1298,'en','contact_ucf','Contact','2021-02-14 05:01:48','2021-09-20 07:30:23'),(1299,'en','order_status_has_been_updated_ucf','Order status has been updated','2021-02-14 05:01:48','2021-09-20 07:30:23'),(1300,'en','review_has_been_submitted_successfully_ucf','Review has been submitted successfully','2021-02-14 05:06:58','2021-09-20 07:30:23'),(1301,'en','pay_to_seller_ucf','Pay to seller','2021-02-14 05:53:05','2021-09-20 07:30:23'),(1302,'en','txn_code_ucf','Txn Code','2021-02-14 05:53:05','2021-09-20 07:30:23'),(1303,'en','clear_due_ucf','Clear due','2021-02-14 05:53:05','2021-09-20 07:30:23'),(1304,'en','product_wish_report_ucf','Product Wish Report','2021-02-14 06:00:21','2021-09-20 07:30:23'),(1305,'en','number_of_wish_ucf','Number of Wish','2021-02-14 06:00:21','2021-09-20 07:30:23'),(1306,'en','all_customers_ucf','All Customers','2021-02-14 06:02:18','2021-09-20 07:30:23'),(1307,'en','type_email_or_name__enter_ucf','Type email or name & Enter','2021-02-14 06:02:18','2021-09-20 07:30:23'),(1308,'en','package_ucf','Package','2021-02-14 06:02:18','2021-09-20 07:30:23'),(1309,'en','log_in_as_this_customer_ucf','Log in as this Customer','2021-02-14 06:02:18','2021-09-20 07:30:23'),(1310,'en','ban_this_customer_ucf','Ban this Customer','2021-02-14 06:02:18','2021-09-20 07:30:23'),(1311,'en','do_you_really_want_to_ban_this_customer_ucf','Do you really want to ban this Customer?','2021-02-14 06:02:18','2021-09-20 07:30:23'),(1312,'en','do_you_really_want_to_unban_this_customer_ucf','Do you really want to unban this Customer?','2021-02-14 06:02:19','2021-09-20 07:30:23'),(1313,'en','ticket_has_been_sent_successfully_ucf','Ticket has been sent successfully','2021-02-14 06:24:25','2021-09-20 07:30:23'),(1314,'en','send_reply_ucf','Send Reply','2021-02-14 06:24:34','2021-09-20 07:30:23'),(1315,'en','recharge_wallet_ucf','Recharge Wallet','2021-02-14 07:01:14','2021-09-20 07:30:23'),(1316,'en','wallet_recharge_history_ucf','Wallet recharge history','2021-02-14 07:01:15','2021-09-20 07:30:23'),(1317,'en','offline_recharge_wallet_ucf','Offline Recharge Wallet','2021-02-14 07:01:15','2021-09-20 07:30:23'),(1318,'en','message_has_been_send_to_seller_ucf','Message has been send to seller','2021-02-14 07:15:56','2021-09-20 07:30:23'),(1319,'en','your_classified_product_upload_limit_has_been_reached_please_buy_a_package_ucf','Your classified product upload limit has been reached. Please buy a package.','2021-02-15 05:03:44','2021-09-20 07:30:23'),(1320,'en','premium_packages_for_customers_ucf','Premium Packages for Customers','2021-02-15 05:03:44','2021-09-20 07:30:23'),(1321,'en','offline_package_purchase__ucf','Offline Package Purchase ','2021-02-15 05:03:45','2021-09-20 07:30:23'),(1322,'en','all_classifies_packages_ucf','All Classifies Packages','2021-02-15 05:15:40','2021-09-20 07:30:23'),(1323,'en','create_new_package_ucf','Create New Package','2021-02-15 05:15:42','2021-09-20 07:30:23'),(1324,'en','package_purchasing_successful_ucf','Package purchasing successful','2021-02-15 05:26:45','2021-09-20 07:30:23'),(1325,'en','product_upload_remaining_ucf','Product Upload Remaining','2021-02-15 05:26:46','2021-09-20 07:30:23'),(1326,'en','current_package_ucf','Current Package','2021-02-15 05:26:46','2021-09-20 07:30:23'),(1327,'en','select_a_condition_ucf','Select a condition','2021-02-15 05:26:55','2021-09-20 07:30:23'),(1328,'en','uploaded_by_ucf','Uploaded By','2021-02-15 05:40:07','2021-09-20 07:30:23'),(1329,'en','customer_status_ucf','Customer Status','2021-02-15 05:40:07','2021-09-20 07:30:23'),(1330,'en','unpublished_ucf','UNPUBLISHED','2021-02-15 05:40:07','2021-09-20 07:30:23'),(1331,'en','sendmail_ucf','Sendmail','2021-02-16 07:56:29','2021-09-20 07:30:27'),(1332,'en','mailgun_ucf','Mailgun','2021-02-16 07:56:30','2021-09-20 07:30:27'),(1333,'en','mail_host_ucf','MAIL HOST','2021-02-16 07:56:30','2021-09-20 07:30:27'),(1334,'en','mail_port_ucf','MAIL PORT','2021-02-16 07:56:30','2021-09-20 07:30:27'),(1335,'en','mail_username_ucf','MAIL USERNAME','2021-02-16 07:56:30','2021-09-20 07:30:27'),(1336,'en','mail_password_ucf','MAIL PASSWORD','2021-02-16 07:56:30','2021-09-20 07:30:27'),(1337,'en','mail_encryption_ucf','MAIL ENCRYPTION','2021-02-16 07:56:30','2021-09-20 07:30:27'),(1338,'en','mail_from_address_ucf','MAIL FROM ADDRESS','2021-02-16 07:56:30','2021-09-20 07:30:27'),(1339,'en','mail_from_name_ucf','MAIL FROM NAME','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1340,'en','mailgun_domain_ucf','MAILGUN DOMAIN','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1341,'en','mailgun_secret_ucf','MAILGUN SECRET','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1342,'en','save_configuration_ucf','Save Configuration','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1343,'en','test_smtp_configuration_ucf','Test SMTP configuration','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1344,'en','enter_your_email_address_ucf','Enter your email address','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1345,'en','send_test_email_ucf','Send test email','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1346,'en','instruction_ucf','Instruction','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1347,'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_ucf','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 07:56:31','2021-09-20 07:30:27'),(1348,'en','for_nonssl_ucf','For Non-SSL','2021-02-16 07:56:31','2021-09-20 07:30:27'),(1349,'en','select_sendmail_for_mail_driver_if_you_face_any_issue_after_configuring_smtp_as_mail_driver__ucf','Select sendmail for Mail Driver if you face any issue after configuring smtp as Mail Driver ','2021-02-16 07:56:32','2021-09-20 07:30:27'),(1350,'en','set_mail_host_according_to_your_server_mail_client_manual_settings_ucf','Set Mail Host according to your server Mail Client Manual Settings','2021-02-16 07:56:32','2021-09-20 07:30:27'),(1351,'en','set_mail_port_as_587_ucf','Set Mail port as 587','2021-02-16 07:56:32','2021-09-20 07:30:27'),(1352,'en','set_mail_encryption_as_ssl_if_you_face_issue_with_tls_ucf','Set Mail Encryption as ssl if you face issue with tls','2021-02-16 07:56:32','2021-09-20 07:30:27'),(1353,'en','for_ssl_ucf','For SSL','2021-02-16 07:56:32','2021-09-20 07:30:27'),(1354,'en','set_mail_port_as_465_ucf','Set Mail port as 465','2021-02-16 07:56:32','2021-09-20 07:30:27'),(1355,'en','set_mail_encryption_as_ssl_ucf','Set Mail Encryption as ssl','2021-02-16 07:56:32','2021-09-20 07:30:27'),(1356,'en','installupdate_addon_ucf','Install/Update Addon','2021-02-18 05:50:31','2021-09-20 07:30:27'),(1357,'en','no_addon_installed_ucf','No Addon Installed','2021-02-18 05:50:31','2021-09-20 07:30:27'),(1358,'en','blog_system_ucf','Blog System','2021-02-18 10:01:49','2021-09-20 07:30:27'),(1359,'en','all_posts_ucf','All Posts','2021-02-18 10:01:49','2021-09-20 07:30:27'),(1360,'en','facebook_comment_ucf','Facebook Comment','2021-02-18 10:01:50','2021-09-20 07:30:27'),(1361,'en','add_new_post_ucf','Add New Post','2021-02-18 10:02:55','2021-09-20 07:30:27'),(1362,'en','all_blog_posts_ucf','All blog posts','2021-02-18 10:02:55','2021-09-20 07:30:27'),(1363,'en','short_description_ucf','Short Description','2021-02-18 10:02:55','2021-09-20 07:30:27'),(1364,'en','change_blog_status_successfully_ucf','Change blog status successfully','2021-02-18 10:02:56','2021-09-20 07:30:27'),(1365,'en','blog_information_ucf','Blog Information','2021-02-18 10:02:58','2021-09-20 07:30:27'),(1366,'en','blog_title_ucf','Blog Title','2021-02-18 10:02:58','2021-09-20 07:30:27'),(1367,'en','meta_keywords_ucf','Meta Keywords','2021-02-18 10:02:59','2021-09-20 07:30:27'),(1368,'en','header_nav_menu_ucf','Header Nav Menu','2021-02-18 10:04:04','2021-09-20 07:30:27'),(1369,'en','link_with_ucf','Link with','2021-02-18 10:04:04','2021-09-20 07:30:27'),(1370,'en','blog_ucf','Blog','2021-02-18 10:11:56','2021-09-20 07:30:27'),(1371,'en','all_blog_categories_ucf','All Blog Categories','2021-02-18 10:17:26','2021-09-20 07:30:27'),(1372,'en','blog_categories_ucf','Blog Categories','2021-02-18 10:17:26','2021-09-20 07:30:27'),(1373,'en','blog_category_information_ucf','Blog Category Information','2021-02-19 04:04:31','2021-09-20 07:30:27'),(1374,'en','blog_category_has_been_created_successfully_ucf','Blog category has been created successfully','2021-02-19 04:05:13','2021-09-20 07:30:27'),(1375,'en','blog_post_has_been_created_successfully_ucf','Blog post has been created successfully','2021-02-19 04:15:31','2021-09-20 07:30:27'),(1376,'en','blog_post_has_been_updated_successfully_ucf','Blog post has been updated successfully','2021-02-19 04:32:34','2021-09-20 07:30:27'),(1377,'en','blog_category_has_been_updated_successfully_ucf','Blog category has been updated successfully','2021-02-19 04:52:22','2021-09-20 07:30:27'),(1378,'en','installupdate_ucf','Install/Update','2021-02-22 04:00:43','2021-09-20 07:30:27'),(1379,'en','addon_nstalled_successfully_ucf','Addon nstalled successfully','2021-02-23 02:22:29','2021-09-20 07:30:27'),(1380,'en','approved_refunds_ucf','Approved Refunds','2021-02-23 02:23:39','2021-09-20 07:30:27'),(1381,'en','rejected_refunds_ucf','rejected Refunds','2021-02-23 02:23:40','2021-09-20 07:30:27'),(1382,'en','affiliate_logs_ucf','Affiliate Logs','2021-02-23 02:24:06','2021-09-20 07:30:27'),(1383,'en','african_payment_gateway_addon_ucf','African Payment Gateway Addon','2021-02-23 02:24:21','2021-09-20 07:30:27'),(1384,'en','african_pg_configurations_ucf','African PG Configurations','2021-02-23 02:24:21','2021-09-20 07:30:27'),(1385,'en','set_african_pg_credentials_ucf','Set African PG Credentials','2021-02-23 02:24:21','2021-09-20 07:30:27'),(1386,'en','at_the_very_bottom_you_can_find_the_facebook_page_id_ucf','At the very bottom, you can find the ���Facebook Page ID���','2021-02-23 02:25:36','2021-09-20 07:30:27'),(1387,'en','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging_ucf','Go to Settings of your page and find the option of \"Advance Messaging\"','2021-02-23 02:25:36','2021-09-20 07:30:27'),(1388,'en','scroll_down_that_page_and_you_will_get_white_listed_domain_ucf','Scroll down that page and you will get \"white listed domain\"','2021-02-23 02:25:36','2021-09-20 07:30:27'),(1389,'en','paystack_currency_code_ucf','PAYSTACK CURRENCY CODE','2021-02-23 02:26:16','2021-09-20 07:30:27'),(1390,'en','mpesa_activation_ucf','MPesa Activation','2021-02-23 02:26:48','2021-09-20 07:30:27'),(1391,'en','you_need_to_configure_mpesa_correctly_to_enable_this_feature_ucf','You need to configure Mpesa correctly to enable this feature','2021-02-23 02:26:48','2021-09-20 07:30:27'),(1392,'en','flutterwave_activation_ucf','flutterwave Activation','2021-02-23 02:26:48','2021-09-20 07:30:27'),(1393,'en','you_need_to_configure_flutterwave_correctly_to_enable_this_feature_ucf','You need to configure flutterwave correctly to enable this feature','2021-02-23 02:26:49','2021-09-20 07:30:27'),(1394,'en','payfast_activation_ucf','Payfast Activation','2021-02-23 02:26:49','2021-09-20 07:30:27'),(1395,'en','you_need_to_configure_payfast_correctly_to_enable_this_feature_ucf','You need to configure payfast correctly to enable this feature','2021-02-23 02:26:49','2021-09-20 07:30:27'),(1396,'en','mpesa_username_ucf','MPESA USERNAME','2021-02-23 02:26:59','2021-09-20 07:30:27'),(1397,'en','mpesa_username_ucf','MPESA_USERNAME','2021-02-23 02:26:59','2021-09-20 07:30:27'),(1398,'en','mpesa_password_ucf','MPESA PASSWORD','2021-02-23 02:26:59','2021-09-20 07:30:27'),(1399,'en','mpesa_password_ucf','MPESA_PASSWORD','2021-02-23 02:26:59','2021-09-20 07:30:27'),(1400,'en','mpesa_passkey_ucf','MPESA PASSKEY','2021-02-23 02:26:59','2021-09-20 07:30:27'),(1401,'en','mpesa_passkey_ucf','MPESA_PASSKEY','2021-02-23 02:26:59','2021-09-20 07:30:27'),(1402,'en','payfast_credential_ucf','PAYFAST Credential','2021-02-23 02:26:59','2021-09-20 07:30:27'),(1403,'en','payfast_merchant_id_ucf','PAYFAST_MERCHANT_ID','2021-02-23 02:26:59','2021-09-20 07:30:28'),(1404,'en','payfast_merchant_key_ucf','PAYFAST_MERCHANT_KEY','2021-02-23 02:27:00','2021-09-20 07:30:28'),(1405,'en','payfast_sandbox_mode_ucf','PAYFAST Sandbox Mode','2021-02-23 02:27:00','2021-09-20 07:30:28'),(1406,'en','google_login_credential_ucf','Google Login Credential','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1407,'en','client_id_ucf','Client ID','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1408,'en','google_client_id_ucf','Google Client ID','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1409,'en','client_secret_ucf','Client Secret','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1410,'en','google_client_secret_ucf','Google Client Secret','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1411,'en','facebook_login_credential_ucf','Facebook Login Credential','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1412,'en','app_id_ucf','App ID','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1413,'en','facebook_client_id_ucf','Facebook Client ID','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1414,'en','app_secret_ucf','App Secret','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1415,'en','facebook_client_secret_ucf','Facebook Client Secret','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1416,'en','twitter_login_credential_ucf','Twitter Login Credential','2021-02-23 02:27:51','2021-09-20 07:30:28'),(1417,'en','twitter_client_id_ucf','Twitter Client ID','2021-02-23 02:27:52','2021-09-20 07:30:28'),(1418,'en','twitter_client_secret_ucf','Twitter Client Secret','2021-02-23 02:27:52','2021-09-20 07:30:28'),(1419,'en','point_convert_rate_has_been_updated_successfully_ucf','Point convert rate has been updated successfully','2021-02-23 02:30:21','2021-09-20 07:30:28'),(1420,'en','owner_ucf','Owner','2021-02-23 02:30:24','2021-09-20 07:30:28'),(1421,'en','set_any_specific_point_for_those_products_what_are_between_minprice_and_maxprice_minprice_should_be_less_than_maxprice_ucf','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 02:30:25','2021-09-20 07:30:28'),(1422,'en','set_point_for_product_ucf','Set Point for Product','2021-02-23 02:30:31','2021-09-20 07:30:28'),(1423,'en','set_point_ucf','Set Point','2021-02-23 02:30:31','2021-09-20 07:30:28'),(1424,'en','point_has_been_updated_successfully_ucf','Point has been updated successfully','2021-02-23 02:30:37','2021-09-20 07:30:28'),(1425,'en','point_has_been_inserted_successfully_for__ucf','Point has been inserted successfully for ','2021-02-23 02:31:06','2021-09-20 07:30:28'),(1426,'en','_products_ucf',' products','2021-02-23 02:31:06','2021-09-20 07:30:28'),(1427,'en','customer_name_ucf','Customer Name','2021-02-23 02:32:42','2021-09-20 07:30:28'),(1428,'en','mimo_otp_ucf','MIMO OTP','2021-02-23 02:32:49','2021-09-20 07:30:28'),(1429,'en','mimo_credential_ucf','MIMO Credential','2021-02-23 02:33:05','2021-09-20 07:30:28'),(1430,'en','mimo_username_ucf','MIMO_USERNAME','2021-02-23 02:33:05','2021-09-20 07:30:28'),(1431,'en','mimo_password_ucf','MIMO_PASSWORD','2021-02-23 02:33:05','2021-09-20 07:30:28'),(1432,'en','mimo_sender_id_ucf','MIMO_SENDER_ID','2021-02-23 02:33:06','2021-09-20 07:30:28'),(1433,'en','reject_refund_request__ucf','Reject Refund Request !','2021-02-23 02:33:49','2021-09-20 07:30:28'),(1434,'en','reject_reason_ucf','Reject Reason','2021-02-23 02:33:49','2021-09-20 07:30:28'),(1435,'en','submit_ucf','Submit','2021-02-23 02:33:49','2021-09-20 07:30:28'),(1436,'en','approval_has_been_done_successfully_ucf','Approval has been done successfully','2021-02-23 02:33:49','2021-09-20 07:30:28'),(1437,'en','refund_has_been_sent_successfully_ucf','Refund has been sent successfully','2021-02-23 02:33:49','2021-09-20 07:30:28'),(1438,'en','rejected_request_ucf','Rejected Request','2021-02-23 02:34:05','2021-09-20 07:30:28'),(1439,'en','refund_request_reject_reason_ucf','Refund Request Reject Reason','2021-02-23 02:34:05','2021-09-20 07:30:28'),(1440,'en','approved_request_ucf','Approved Request','2021-02-23 02:34:08','2021-09-20 07:30:28'),(1441,'en','mpesa_ucf','mpesa','2021-02-23 02:35:33','2021-02-23 02:35:33'),(1442,'en','flutterwave_ucf','flutterwave','2021-02-23 02:35:33','2021-02-23 02:35:33'),(1443,'en','payfast_ucf','payfast','2021-02-23 02:35:33','2021-02-23 02:35:33'),(1444,'en','this_addon_is_updated_successfully_ucf','This addon is updated successfully','2021-02-23 02:40:18','2021-09-20 07:30:28'),(1445,'en','nonrefundable_ucf','Non-refundable','2021-02-23 15:06:44','2021-09-20 07:30:28'),(1446,'en','offline_recharge_has_been_done_please_wait_for_response_ucf','Offline Recharge has been done. Please wait for response.','2021-02-23 15:08:43','2021-09-20 07:30:28'),(1447,'en','use_phone_instead_ucf','Use Phone Instead','2021-02-23 15:13:57','2021-09-20 07:30:28'),(1448,'en','phone_verification_ucf','Phone Verification','2021-02-23 15:14:25','2021-09-20 07:30:28'),(1449,'en','resend_code_ucf','Resend Code','2021-02-23 15:14:25','2021-09-20 07:30:28'),(1450,'en','staff_information_ucf','Staff Information','2021-02-25 15:53:40','2021-09-20 07:30:28'),(1451,'en','staff_has_been_inserted_successfully_ucf','Staff has been inserted successfully','2021-02-25 15:54:00','2021-09-20 07:30:28'),(1452,'en','role_information_ucf','Role Information','2021-02-25 16:01:25','2021-09-20 07:30:28'),(1453,'en','permissions_ucf','Permissions','2021-02-25 16:01:25','2021-09-20 07:30:28'),(1454,'en','role_has_been_updated_successfully_ucf','Role has been updated successfully','2021-02-25 16:01:46','2021-09-20 07:30:28'),(1455,'en','update_your_system_ucf','Update your system','2021-02-25 16:03:26','2021-09-20 07:30:28'),(1456,'en','current_verion_ucf','Current verion','2021-02-25 16:03:26','2021-09-20 07:30:28'),(1457,'en','make_sure_your_server_has_matched_with_all_requirements_ucf','Make sure your server has matched with all requirements.','2021-02-25 16:03:26','2021-09-20 07:30:28'),(1458,'en','check_here_ucf','Check Here','2021-02-25 16:03:26','2021-09-20 07:30:28'),(1459,'en','download_latest_version_from_codecanyon_ucf','Download latest version from codecanyon.','2021-02-25 16:03:26','2021-09-20 07:30:28'),(1460,'en','extract_downloaded_zip_you_will_find_updateszip_file_in_those_extraced_files_ucf','Extract downloaded zip. You will find updates.zip file in those extraced files.','2021-02-25 16:03:27','2021-09-20 07:30:28'),(1461,'en','upload_that_zip_file_here_and_click_update_now_ucf','Upload that zip file here and click update now.','2021-02-25 16:03:27','2021-09-20 07:30:28'),(1462,'en','if_you_are_using_any_addon_make_sure_to_update_those_addons_after_updating_ucf','If you are using any addon make sure to update those addons after updating.','2021-02-25 16:03:27','2021-09-20 07:30:28'),(1463,'en','package_duration_ucf','Package Duration','2021-02-25 23:10:17','2021-09-20 07:30:28'),(1464,'en','digital_product_upload_remaining_ucf','Digital Product Upload Remaining','2021-02-25 23:12:10','2021-09-20 07:30:28'),(1465,'en','package_expires_at_ucf','Package Expires at','2021-02-25 23:12:10','2021-09-20 07:30:28'),(1466,'en','ok_i_understood_ucf','Ok. I Understood','2021-02-27 16:56:27','2021-09-20 07:30:28'),(1467,'en','commission_history_ucf','Commission History','2021-03-07 05:40:47','2021-09-20 07:30:28'),(1468,'en','vat__tax_ucf','Vat & TAX','2021-03-07 05:40:48','2021-09-20 07:30:28'),(1469,'en','info_ucf','Info','2021-03-07 05:40:54','2021-09-20 07:30:28'),(1470,'en','product_wise_shipping_ucf','Product Wise Shipping','2021-03-07 05:42:45','2021-09-20 07:30:28'),(1471,'en','low_stock_quantity_warning_ucf','Low Stock Quantity Warning','2021-03-07 05:42:45','2021-09-20 07:30:28'),(1472,'en','stock_visibility_state_ucf','Stock Visibility State','2021-03-07 05:42:45','2021-09-20 07:30:28'),(1473,'en','show_stock_quantity_ucf','Show Stock Quantity','2021-03-07 05:42:45','2021-09-20 07:30:28'),(1474,'en','show_stock_with_text_only_ucf','Show Stock With Text Only','2021-03-07 05:42:45','2021-09-20 07:30:28'),(1475,'en','hide_stock_ucf','Hide Stock','2021-03-07 05:42:46','2021-09-20 07:30:28'),(1476,'en','flash_deal_ucf','Flash Deal','2021-03-07 05:42:46','2021-09-20 07:30:28'),(1477,'en','add_to_flash_ucf','Add To Flash','2021-03-07 05:42:46','2021-09-20 07:30:28'),(1478,'en','estimate_shipping_time_ucf','Estimate Shipping Time','2021-03-07 05:42:46','2021-09-20 07:30:28'),(1479,'en','shipping_days_ucf','Shipping Days','2021-03-07 05:42:46','2021-09-20 07:30:28'),(1480,'en','save_as_draft_ucf','Save As Draft','2021-03-07 05:42:46','2021-09-20 07:30:28'),(1481,'en','save__unpublish_ucf','Save & Unpublish','2021-03-07 05:42:46','2021-09-20 07:30:28'),(1482,'en','save__publish_ucf','Save & Publish','2021-03-07 05:42:46','2021-09-20 07:30:28'),(1483,'en','all_cities_ucf','All cities','2021-03-07 05:43:04','2021-09-20 07:30:28'),(1484,'en','cities_ucf','Cities','2021-03-07 05:43:04','2021-09-20 07:30:28'),(1485,'en','cost_ucf','Cost','2021-03-07 05:43:04','2021-09-20 07:30:28'),(1486,'en','add_new_city_ucf','Add New city','2021-03-07 05:43:04','2021-09-20 07:30:28'),(1487,'en','_pts_ucf',' pts','2021-03-08 04:54:26','2021-09-20 07:30:28'),(1488,'en','no_ucf','No','2021-03-08 04:54:26','2021-09-20 07:30:28'),(1489,'en','convert_now_ucf','Convert Now','2021-03-08 04:54:26','2021-09-20 07:30:28'),(1490,'en','affiliate_balance_ucf','Affiliate Balance','2021-03-08 04:56:22','2021-09-20 07:30:28'),(1491,'en','configure_payout_ucf','Configure Payout','2021-03-08 04:56:22','2021-09-20 07:30:28'),(1492,'en','affiliate_withdraw_request_ucf','Affiliate Withdraw Request','2021-03-08 04:56:22','2021-09-20 07:30:28'),(1493,'en','copy_url_ucf','Copy Url','2021-03-08 04:56:22','2021-09-20 07:30:28'),(1494,'en','affiliate_earning_history_ucf','Affiliate Earning History','2021-03-08 04:56:22','2021-09-20 07:30:28'),(1495,'en','referral_user_ucf','Referral User','2021-03-08 04:56:22','2021-09-20 07:30:28'),(1496,'en','referral_type_ucf','Referral Type','2021-03-08 04:56:22','2021-09-20 07:30:28'),(1497,'en','payment_settings_ucf','Payment Settings','2021-03-08 04:56:50','2021-09-20 07:30:28'),(1498,'en','paypal_email_ucf','Paypal Email','2021-03-08 04:56:50','2021-09-20 07:30:28'),(1499,'en','bank_informations_ucf','Bank Informations','2021-03-08 04:56:50','2021-09-20 07:30:28'),(1500,'en','acc_no_bank_name_etc_ucf','Acc. No, Bank Name etc','2021-03-08 04:56:50','2021-09-20 07:30:28'),(1501,'en','update_payment_settings_ucf','Update Payment Settings','2021-03-08 04:56:50','2021-09-20 07:30:28'),(1502,'en','affiliate_payment_settings_has_been_updated_successfully_ucf','Affiliate payment settings has been updated successfully','2021-03-08 04:56:53','2021-09-20 07:30:28'),(1503,'en','new_withdraw_request_created_successfully_ucf','New withdraw request created successfully','2021-03-08 04:57:38','2021-09-20 07:30:28'),(1504,'en','affiliate_withdraw_request_history_ucf','Affiliate withdraw request history','2021-03-08 04:57:39','2021-09-20 07:30:28'),(1505,'en','affiliate_payment_history_ucf','Affiliate payment history','2021-03-08 05:00:42','2021-09-20 07:30:28'),(1506,'en','default_ucf','Default','2021-03-08 05:06:37','2021-09-20 07:30:28'),(1507,'en','area_wise_flat_shipping_cost_ucf','Area Wise Flat Shipping Cost','2021-03-08 05:46:02','2021-09-20 07:30:28'),(1508,'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_ucf','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 05:46:02','2021-09-20 07:30:28'),(1509,'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__ucf','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 05:46:03','2021-09-20 07:30:28'),(1510,'en','1_flat_rate_shipping_cost_is_applicable_if_flat_rate_shipping_is_enabled_ucf','1. Flat rate shipping cost is applicable if Flat rate shipping is enabled.','2021-03-08 05:46:03','2021-09-20 07:30:28'),(1511,'en','1_shipping_cost_for_admin_is_applicable_if_seller_wise_shipping_cost_is_enabled_ucf','1. Shipping cost for admin is applicable if Seller wise shipping cost is enabled.','2021-03-08 05:46:03','2021-09-20 07:30:28'),(1512,'en','the_requested_quantity_is_not_available_for__ucf','The requested quantity is not available for ','2021-03-08 05:56:12','2021-09-20 07:30:28'),(1513,'en','city_has_been_inserted_successfully_ucf','City has been inserted successfully','2021-03-08 05:56:45','2021-09-20 07:30:28'),(1514,'en','namibia_ucf','Namibia','2021-03-08 05:57:17','2021-09-20 07:30:28'),(1515,'en','city_information_ucf','City Information','2021-03-08 06:14:10','2021-09-20 07:30:28'),(1516,'en','city_has_been_updated_successfully_ucf','City has been updated successfully','2021-03-08 06:14:23','2021-09-20 07:30:28'),(1517,'en','sed_ea_dolore_offici_ucf','Sed ea dolore offici','2021-03-08 06:17:47','2021-09-20 07:30:28'),(1518,'en','pickup_point_information_ucf','Pickup Point Information','2021-03-08 06:27:30','2021-09-20 07:30:28'),(1519,'en','pickup_point_status_ucf','Pickup Point Status','2021-03-08 06:27:30','2021-09-20 07:30:28'),(1520,'en','pickup_point_manager_ucf','Pick-up Point Manager','2021-03-08 06:27:30','2021-09-20 07:30:28'),(1521,'en','picuppoint_has_been_inserted_successfully_ucf','PicupPoint has been inserted successfully','2021-03-08 06:27:37','2021-09-20 07:30:28'),(1522,'en','update_pickup_point_information_ucf','Update Pickup Point Information','2021-03-08 06:27:41','2021-09-20 07:30:28'),(1523,'en','picuppoint_has_been_updated_successfully_ucf','PicupPoint has been updated successfully','2021-03-08 06:27:45','2021-09-20 07:30:28'),(1524,'en','pickip_point_ucf','Pickip Point','2021-03-08 06:28:05','2021-09-20 07:30:28'),(1525,'en','yes_ucf','Yes','2021-03-08 06:35:13','2021-09-20 07:30:28'),(1526,'en','done_ucf','Done','2021-03-08 06:35:13','2021-09-20 07:30:28'),(1527,'en','conversations_with__ucf','Conversations With ','2021-03-08 06:36:37','2021-09-20 07:30:28'),(1528,'en','between_you_and_ucf','Between you and','2021-03-08 06:36:37','2021-09-20 07:30:28'),(1529,'en','seller_product_manage_by_admin_ucf','Seller Product Manage By Admin','2021-03-08 06:49:14','2021-09-20 07:30:28'),(1530,'en','after_activate_this_option_cash_on_delivery_of_seller_product_will_be_managed_by_admin_ucf','After activate this option Cash On Delivery of Seller product will be managed by Admin','2021-03-08 06:49:14','2021-09-20 07:30:28'),(1531,'en','all_taxes_ucf','All Taxes','2021-03-09 03:43:13','2021-09-20 07:30:28'),(1532,'en','add_new_tax_ucf','Add New Tax','2021-03-09 03:43:13','2021-09-20 07:30:28'),(1533,'en','tax_type_ucf','Tax Type','2021-03-09 03:43:13','2021-09-20 07:30:28'),(1534,'en','tax_name_ucf','Tax Name','2021-03-09 03:43:13','2021-09-20 07:30:28'),(1535,'en','tax_status_updated_successfully_ucf','Tax status updated successfully','2021-03-09 03:43:13','2021-09-20 07:30:28'),(1536,'en','blogs_ucf','Blogs','2021-03-24 08:01:32','2021-09-20 07:30:28'),(1537,'en','blogs_ucf','Blogs','2021-03-24 08:01:32','2021-09-20 07:30:28'),(1538,'en','view_all_sellers_ucf','View All Sellers','2021-03-24 23:31:18','2021-09-20 07:30:28'),(1539,'en','file_selected_ucf','File selected','2021-04-11 04:54:39','2021-09-20 07:30:28'),(1540,'en','files_selected_ucf','Files selected','2021-04-11 04:54:39','2021-09-20 07:30:28'),(1541,'en','add_more_files_ucf','Add more files','2021-04-11 04:54:39','2021-09-20 07:30:28'),(1542,'en','adding_more_files_ucf','Adding more files','2021-04-11 04:54:39','2021-09-20 07:30:28'),(1543,'en','drop_files_here_paste_or_ucf','Drop files here, paste or','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1544,'en','upload_complete_ucf','Upload complete','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1545,'en','upload_paused_ucf','Upload paused','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1546,'en','resume_upload_ucf','Resume upload','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1547,'en','pause_upload_ucf','Pause upload','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1548,'en','retry_upload_ucf','Retry upload','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1549,'en','cancel_upload_ucf','Cancel upload','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1550,'en','uploading_ucf','Uploading','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1551,'en','processing_ucf','Processing','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1552,'en','complete_ucf','Complete','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1553,'en','files_ucf','Files','2021-04-11 04:54:40','2021-09-20 07:30:28'),(1554,'en','this_action_is_disabled_in_demo_mode_ucf','This action is disabled in demo mode','2021-05-20 03:38:21','2021-09-20 07:30:28'),(1555,'en','nothing_selected_ucf','Nothing selected','2021-05-20 03:49:25','2021-09-20 07:30:28'),(1556,'en','nothing_selected_ucf','Nothing selected','2021-05-20 03:49:25','2021-09-20 07:30:28'),(1557,'en','delivery_boy_ucf','Delivery Boy','2021-05-20 04:03:03','2021-09-20 07:30:28'),(1558,'en','all_delivery_boy_ucf','All Delivery Boy','2021-05-20 04:03:03','2021-09-20 07:30:28'),(1559,'en','add_delivery_boy_ucf','Add Delivery Boy','2021-05-20 04:03:04','2021-09-20 07:30:28'),(1560,'en','cancel_request_ucf','Cancel Request','2021-05-20 04:03:04','2021-09-20 07:30:28'),(1561,'en','configuration_ucf','Configuration','2021-05-20 04:03:04','2021-09-20 07:30:28'),(1562,'en','all_delivery_boys_ucf','All Delivery Boys','2021-05-20 04:04:59','2021-09-20 07:30:28'),(1563,'en','add_new_delivery_boy_ucf','Add New Delivery Boy','2021-05-20 04:04:59','2021-09-20 07:30:28'),(1564,'en','delivery_boys_ucf','Delivery Boys','2021-05-20 04:04:59','2021-09-20 07:30:28'),(1565,'en','collection_ucf','Collection','2021-05-20 04:05:00','2021-09-20 07:30:28'),(1566,'en','do_you_really_want_to_ban_this_delivery_boy_ucf','Do you really want to ban this delivery_boy?','2021-05-20 04:05:00','2021-09-20 07:30:28'),(1567,'en','do_you_really_want_to_unban_this_delivery_boy_ucf','Do you really want to unban this delivery_boy?','2021-05-20 04:05:00','2021-09-20 07:30:28'),(1568,'en','delivery_boy_information_ucf','Delivery Boy Information','2021-05-20 04:05:06','2021-09-20 07:30:28'),(1569,'en','select_city_ucf','Select City','2021-05-20 04:05:06','2021-09-20 07:30:28'),(1570,'en','delivery_boy_has_been_created_successfully_ucf','Delivery Boy has been created successfully','2021-05-20 04:07:01','2021-09-20 07:30:28'),(1571,'en','ban_this_delivery_boy_ucf','Ban this delivery boy','2021-05-20 04:07:02','2021-09-20 07:30:28'),(1572,'en','payment_configuration_ucf','Payment Configuration','2021-05-20 04:32:11','2021-09-20 07:30:28'),(1573,'en','monthly_salary_ucf','Monthly Salary','2021-05-20 04:32:11','2021-09-20 07:30:28'),(1574,'en','salary_amount_ucf','Salary Amount','2021-05-20 04:32:11','2021-09-20 07:30:28'),(1575,'en','per_order_commission_ucf','Per Order Commission','2021-05-20 04:32:11','2021-09-20 07:30:28'),(1576,'en','commission_rate_ucf','Commission Rate','2021-05-20 04:32:11','2021-09-20 07:30:28'),(1577,'en','notification_configuration_ucf','Notification Configuration','2021-05-20 04:32:11','2021-09-20 07:30:28'),(1578,'en','send_mail_ucf','Send Mail','2021-05-20 04:32:11','2021-09-20 07:30:28'),(1579,'en','send_otp_ucf','Send OTP','2021-05-20 04:32:11','2021-09-20 07:30:28'),(1580,'en','all_cancel_request_ucf','All Cancel Request','2021-05-20 04:32:16','2021-09-20 07:30:28'),(1581,'en','cancel_requests_ucf','Cancel Requests','2021-05-20 04:32:16','2021-09-20 07:30:28'),(1582,'en','request_by_ucf','Request By','2021-05-20 04:32:16','2021-09-20 07:30:28'),(1583,'en','request_at_ucf','Request At','2021-05-20 04:32:16','2021-09-20 07:30:28'),(1584,'en','offline_customer_package_payment_requests_ucf','Offline Customer Package Payment Requests','2021-05-20 04:37:23','2021-09-20 07:30:28'),(1585,'en','method_ucf','Method','2021-05-20 04:37:23','2021-09-20 07:30:28'),(1586,'en','txn_id_ucf','TXN ID','2021-05-20 04:37:23','2021-09-20 07:30:28'),(1587,'en','reciept_ucf','Reciept','2021-05-20 04:37:23','2021-09-20 07:30:28'),(1588,'en','offline_customer_package_payment_approved_successfully_ucf','Offline Customer Package Payment approved successfully','2021-05-20 04:37:23','2021-09-20 07:30:28'),(1589,'en','refferal_users_ucf','Refferal Users','2021-05-20 04:37:37','2021-09-20 07:30:28'),(1590,'en','reffered_by_ucf','Reffered By','2021-05-20 04:37:37','2021-09-20 07:30:28'),(1591,'en','affiliate_withdraw_request_reject_ucf','Affiliate Withdraw Request Reject','2021-05-20 04:37:59','2021-09-20 07:30:28'),(1592,'en','are_you_sure_you_want_to_reject_this_ucf','Are you sure, You want to reject this?','2021-05-20 04:37:59','2021-09-20 07:30:28'),(1593,'en','server_information_ucf','Server information','2021-05-20 04:38:23','2021-09-20 07:30:28'),(1594,'en','current_version_ucf','Current Version','2021-05-20 04:38:23','2021-09-20 07:30:28'),(1595,'en','required_version_ucf','Required Version','2021-05-20 04:38:23','2021-09-20 07:30:28'),(1596,'en','phpini_config_ucf','php.ini Config','2021-05-20 04:38:23','2021-09-20 07:30:28'),(1597,'en','config_name_ucf','Config Name','2021-05-20 04:38:23','2021-09-20 07:30:28'),(1598,'en','current_ucf','Current','2021-05-20 04:38:24','2021-09-20 07:30:28'),(1599,'en','recommended_ucf','Recommended','2021-05-20 04:38:24','2021-09-20 07:30:28'),(1600,'en','extensions_information_ucf','Extensions information','2021-05-20 04:38:24','2021-09-20 07:30:28'),(1601,'en','extension_name_ucf','Extension Name','2021-05-20 04:38:24','2021-09-20 07:30:28'),(1602,'en','filesystem_permissions_ucf','Filesystem Permissions','2021-05-20 04:38:24','2021-09-20 07:30:28'),(1603,'en','file_or_folder_ucf','File or Folder','2021-05-20 04:38:24','2021-09-20 07:30:28'),(1604,'en','assign_deliver_boy_ucf','Assign Deliver Boy','2021-05-20 04:38:42','2021-09-20 07:30:28'),(1605,'en','select_delivery_boy_ucf','Select Delivery Boy','2021-05-20 04:38:42','2021-09-20 07:30:28'),(1606,'en','picked_up_ucf','Picked Up','2021-05-20 04:38:43','2021-09-20 07:30:28'),(1607,'en','on_the_way_ucf','On The Way','2021-05-20 04:38:43','2021-09-20 07:30:28'),(1608,'en','delivery_boy_has_been_assigned_ucf','Delivery boy has been assigned','2021-05-20 04:38:43','2021-09-20 07:30:28'),(1609,'en','seller_account_ucf','Seller Account','2021-05-20 04:53:34','2021-09-20 07:30:28'),(1610,'en','copy_credentials_ucf','Copy credentials','2021-05-20 04:53:34','2021-09-20 07:30:28'),(1611,'en','customer_account_ucf','Customer Account','2021-05-20 04:53:34','2021-09-20 07:30:28'),(1612,'en','delivery_boy_account_ucf','Delivery Boy Account','2021-05-20 04:54:07','2021-09-20 07:30:28'),(1613,'en','invalid_coupon_ucf','Invalid coupon!','2021-05-20 04:58:01','2021-09-20 07:30:28'),(1614,'en','assigned_delivery_ucf','Assigned Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(1615,'en','pickup_delivery_ucf','Pickup Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(1616,'en','on_the_way_delivery_ucf','On The Way Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(1617,'en','completed_delivery_ucf','Completed Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(1618,'en','pending_delivery_ucf','Pending Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(1619,'en','cancelled_delivery_ucf','Cancelled Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(1620,'en','request_cancelled_delivery_ucf','Request Cancelled Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(1621,'en','total_collections_ucf','Total Collections','2021-05-20 05:01:59','2021-09-20 07:30:28'),(1622,'en','assigned_delivery_history_ucf','Assigned Delivery History','2021-05-20 05:12:13','2021-09-20 07:30:28'),(1623,'en','mark_as_pickup_ucf','Mark As Pickup','2021-05-20 05:12:13','2021-09-20 07:30:28'),(1624,'en','do_you_really_want_to_send_request_to_cancel_ucf','Do you really want to send request to cancel?','2021-05-20 05:12:13','2021-09-20 07:30:28'),(1625,'en','request_cancel_ucf','Request Cancel','2021-05-20 05:12:13','2021-09-20 07:30:28'),(1626,'en','total_collection_history_ucf','Total Collection History','2021-05-20 05:13:48','2021-09-20 07:30:28'),(1627,'en','cancelled_delivery_history_ucf','Cancelled Delivery History','2021-05-20 05:13:53','2021-09-20 07:30:28'),(1628,'en','completed_delivery_history_ucf','Completed Delivery History','2021-05-20 05:13:59','2021-09-20 07:30:28'),(1629,'en','on_the_way_delivery_history_ucf','On The Way Delivery History','2021-05-20 05:14:03','2021-09-20 07:30:28'),(1630,'en','pickup_delivery_history_ucf','Pickup Delivery History','2021-05-20 05:14:08','2021-09-20 07:30:28'),(1631,'en','website_popup_ucf','Website Popup','2021-06-02 02:31:46','2021-09-20 07:30:28'),(1632,'en','show_website_popup_ucf','Show website popup?','2021-06-02 02:31:46','2021-09-20 07:30:28'),(1633,'en','popup_content_ucf','Popup content','2021-06-02 02:31:46','2021-09-20 07:30:28'),(1634,'en','show_subscriber_form_ucf','Show Subscriber form?','2021-06-02 02:31:46','2021-09-20 07:30:28'),(1635,'en','topbar_banner_ucf','Topbar Banner','2021-06-02 02:31:49','2021-09-20 07:30:28'),(1636,'en','topbar_banner_link_ucf','Topbar Banner Link','2021-06-02 02:31:49','2021-09-20 07:30:28'),(1637,'en','disable_image_optimization_ucf','Disable image optimization?','2021-06-02 03:18:51','2021-09-20 07:30:28'),(1638,'en','back_to_uploaded_files_ucf','Back to uploaded files','2021-06-02 03:41:55','2021-09-20 07:30:28'),(1639,'en','drag__drop_your_files_ucf','Drag & drop your files','2021-06-02 03:41:56','2021-09-20 07:30:28'),(1640,'en','subscribe_now_ucf','Subscribe Now','2021-06-02 03:44:19','2021-09-20 07:30:28'),(1641,'en','play_store_link_ucf','Play Store Link','2021-06-02 03:49:21','2021-09-20 07:30:28'),(1642,'en','app_store_link_ucf','App Store Link','2021-06-02 03:49:21','2021-09-20 07:30:28'),(1643,'en','hello_ucf','Hello','2021-06-08 05:29:55','2021-09-20 07:30:28'),(1644,'en','shop_by_department_ucf','Shop By Department','2021-06-08 05:29:55','2021-09-20 07:30:28'),(1645,'en','log_out_ucf','Log Out','2021-06-08 05:29:55','2021-09-20 07:30:28'),(1646,'en','sms_templates_ucf','SMS Templates','2021-06-21 06:01:43','2021-09-20 07:30:28'),(1647,'en','loading_ucf','Loading..','2021-06-21 06:02:59','2021-09-20 07:30:28'),(1648,'en','place_order_ucf','Place Order','2021-06-21 06:02:59','2021-09-20 07:30:28'),(1649,'en','load_more_ucf','Load More.','2021-06-21 06:02:59','2021-09-20 07:30:28'),(1650,'en','nothing_more_found_ucf','Nothing more found.','2021-06-21 06:02:59','2021-09-20 07:30:28'),(1651,'en','phone_number_verification_ucf','Phone Number Verification','2021-06-21 06:03:28','2021-09-20 07:30:28'),(1652,'en','password_reset_ucf','Password Reset','2021-06-21 06:03:28','2021-09-20 07:30:28'),(1653,'en','delivery_status_change_ucf','Delivery Status Change','2021-06-21 06:03:28','2021-09-20 07:30:28'),(1654,'en','payment_status_change_ucf','Payment Status Change','2021-06-21 06:03:28','2021-09-20 07:30:28'),(1655,'en','assign_delivery_boy_ucf','Assign Delivery Boy','2021-06-21 06:03:28','2021-09-20 07:30:28'),(1656,'en','sms_body_ucf','SMS Body','2021-06-21 06:03:28','2021-09-20 07:30:28'),(1657,'en','template_id_ucf','Template ID','2021-06-21 06:03:28','2021-09-20 07:30:28'),(1658,'en','update_settings_ucf','Update Settings','2021-06-21 06:03:28','2021-09-20 07:30:28'),(1659,'en','please_turn_off_maintenance_mode_before_updating_ucf','Please turn off maintenance mode before updating.','2021-07-28 00:34:17','2021-09-20 07:30:28'),(1660,'en','file_system__cache_configuration_ucf','File System & Cache Configuration','2021-07-28 00:34:18','2021-09-20 07:30:28'),(1661,'en','google_map_ucf','Google Map','2021-07-28 00:34:19','2021-09-20 07:30:28'),(1662,'en','google_firebase_ucf','Google Firebase','2021-07-28 00:34:19','2021-09-20 07:30:28'),(1663,'en','no_notification_found_ucf','No notification found','2021-07-28 00:34:19','2021-09-20 07:30:28'),(1664,'en','view_all_notifications_ucf','View All Notifications','2021-07-28 00:34:19','2021-09-20 07:30:28'),(1665,'en','account_ucf','Account','2021-08-09 20:12:43','2021-09-20 07:30:28'),(1666,'en','item_has_been_removed_from_cart_ucf','Item has been removed from cart','2021-08-09 20:12:43','2021-09-20 07:30:28'),(1667,'en','please_choose_all_the_options_ucf','Please choose all the options','2021-08-09 20:12:43','2021-09-20 07:30:28'),(1668,'en','auction_products_ucf','Auction Products','2021-08-09 20:15:40','2021-09-20 07:30:28'),(1669,'en','add_new_auction_product_ucf','Add New auction product','2021-08-09 20:15:40','2021-09-20 07:30:28'),(1670,'en','all_auction_products_ucf','All Auction Products','2021-08-09 20:15:40','2021-09-20 07:30:28'),(1671,'en','select_brand_ucf','Select Brand','2021-08-09 20:18:10','2021-09-20 07:30:28'),(1672,'en','minimum_purchase_qty_ucf','Minimum Purchase Qty','2021-08-09 20:18:11','2021-09-20 07:30:28'),(1673,'en','discount_date_range_ucf','Discount Date Range','2021-08-09 20:18:11','2021-09-20 07:30:28'),(1674,'en','select_date_ucf','Select Date','2021-08-09 20:18:11','2021-09-20 07:30:28'),(1675,'en','1_ucf','1','2021-08-09 20:18:11','2021-08-09 20:18:11'),(1676,'en','product_wise_shipping_cost_is_disable_shipping_cost_is_configured_from_here_ucf','Product wise shipping cost is disable. Shipping cost is configured from here','2021-08-09 20:18:11','2021-09-20 07:30:28'),(1677,'en','starting_bidding_price_ucf','Starting bidding price','2021-08-09 20:26:44','2021-09-20 07:30:28'),(1678,'en','auction_date_range_ucf','Auction Date Range','2021-08-09 20:26:44','2021-09-20 07:30:28'),(1679,'en','auction_products_orders_ucf','Auction Products Orders','2021-08-19 00:50:51','2021-09-20 07:30:28'),(1680,'en','twilio_otp_ucf','Twilio OTP','2021-08-21 05:56:00','2021-09-20 07:30:28'),(1681,'en','mimsms_ucf','MIMSMS','2021-08-21 05:56:00','2021-09-20 07:30:28'),(1682,'en','twilio_credential_ucf','Twilio Credential','2021-08-21 05:56:36','2021-09-20 07:30:28'),(1683,'en','valid_twilio_number_ucf','VALID TWILIO NUMBER','2021-08-21 05:56:36','2021-09-20 07:30:28'),(1684,'en','entity_id_ucf','ENTITY ID','2021-08-21 05:56:37','2021-09-20 07:30:28'),(1685,'en','dlt_manual_ucf','DLT Manual','2021-08-21 05:56:37','2021-09-20 07:30:28'),(1686,'en','mimsms_credential_ucf','MIMSMS Credential','2021-08-21 05:56:37','2021-09-20 07:30:28'),(1687,'en','mim_api_key_ucf','MIM_API_KEY','2021-08-21 05:56:37','2021-09-20 07:30:28'),(1688,'en','mim_sender_id_ucf','MIM_SENDER_ID','2021-08-21 05:56:37','2021-09-20 07:30:28'),(1689,'en','product_bidding_price__date_range_ucf','Product Bidding Price + Date Range','2021-08-21 07:19:33','2021-09-20 07:30:28'),(1690,'en','is_product_quantity_mulitiply_ucf','Is Product Quantity Mulitiply','2021-08-21 07:19:33','2021-09-20 07:30:28'),(1691,'en','auction_product_ucf','Auction Product','2021-08-21 19:16:21','2021-09-20 07:30:28'),(1692,'en','bidded_products_ucf','Bidded Products','2021-08-21 19:16:21','2021-09-20 07:30:28'),(1693,'en','all_auction_product_ucf','All Auction Product','2021-08-21 11:42:38','2021-09-20 07:30:28'),(1694,'en','bid_starting_amount_ucf','Bid Starting Amount','2021-08-21 11:42:38','2021-09-20 07:30:28'),(1695,'en','auction_start_date_ucf','Auction Start Date','2021-08-21 11:42:38','2021-09-20 07:30:28'),(1696,'en','auction_end_date_ucf','Auction End Date','2021-08-21 11:42:38','2021-09-20 07:30:28'),(1697,'en','total_bids_ucf','Total Bids','2021-08-21 11:42:38','2021-09-20 07:30:28'),(1698,'en','bulk_action_ucf','Bulk Action','2021-08-21 11:42:49','2021-09-20 07:30:28'),(1699,'en','delete_selection_ucf','Delete selection','2021-08-21 11:42:49','2021-09-20 07:30:28'),(1700,'en','product_approval_update_successfully_ucf','Product approval update successfully','2021-08-21 11:42:51','2021-09-20 07:30:28'),(1701,'en','view_products_ucf','View Products','2021-08-21 11:47:23','2021-09-20 07:30:28'),(1702,'en','view_all_bids_ucf','View All Bids','2021-08-21 11:47:23','2021-09-20 07:30:28'),(1703,'en','edit_auction_product_ucf','Edit Auction Product','2021-08-21 11:50:05','2021-09-20 07:30:28'),(1704,'en','auction_will_end_ucf','Auction Will End','2021-08-21 12:18:43','2021-09-20 07:30:28'),(1705,'en','starting_bid_ucf','Starting Bid','2021-08-21 12:18:43','2021-09-20 07:30:28'),(1706,'en','highest_bid_ucf','Highest Bid','2021-08-21 12:18:43','2021-09-20 07:30:28'),(1707,'en','place_bid_ucf','Place Bid','2021-08-21 12:18:43','2021-09-20 07:30:28'),(1708,'en','bid_for_product_ucf','Bid For Product','2021-08-21 12:18:44','2021-09-20 07:30:28'),(1709,'en','min_bid_amount__ucf','Min Bid Amount: ','2021-08-21 12:18:44','2021-09-20 07:30:28'),(1710,'en','place_bid_price_ucf','Place Bid Price','2021-08-21 12:18:44','2021-09-20 07:30:28'),(1711,'en','enter_amount_ucf','Enter Amount','2021-08-21 12:18:44','2021-09-20 07:30:28'),(1712,'en','bid_placed_successfully_ucf','Bid Placed Successfully','2021-08-21 12:21:27','2021-09-20 07:30:28'),(1713,'en','my_bidded_amount_ucf','My Bidded Amount','2021-08-21 12:21:28','2021-09-20 07:30:28'),(1714,'en','chnage_bid_ucf','Chnage Bid','2021-08-21 12:21:29','2021-09-20 07:30:28'),(1715,'en','highest_bid_amount_ucf','Highest Bid Amount','2021-08-21 12:25:54','2021-09-20 07:30:28'),(1716,'en','ended_ucf','Ended','2021-08-21 12:28:51','2021-09-20 07:30:28'),(1717,'en','buy_ucf','Buy','2021-08-21 12:28:51','2021-09-20 07:30:28'),(1718,'en','address_edit_ucf','Address Edit','2021-08-21 12:30:27','2021-09-20 07:30:28'),(1719,'en','proxypay_ucf','ProxyPay','2021-08-21 12:30:40','2021-09-20 07:30:28'),(1720,'en','has_been_placed_ucf','has been Placed','2021-08-21 12:32:46','2021-09-20 07:30:28'),(1721,'en','order_has_been_deleted_successfully_ucf','Order has been deleted successfully','2021-08-21 12:33:00','2021-09-20 07:30:28'),(1722,'en','purchased_ucf','Purchased','2021-08-21 12:33:30','2021-09-20 07:30:28'),(1723,'en','remove_other_items_to_add_auction_product_ucf','Remove other items to add auction product.','2021-08-21 12:33:57','2021-09-20 07:30:28'),(1724,'en','item_alreday_added_to_the_cart_ucf','Item alreday added to the cart.','2021-08-21 12:33:57','2021-09-20 07:30:28'),(1725,'en','total_collected_ucf','Total Collected','2021-09-05 11:02:27','2021-09-20 07:30:28'),(1726,'en','earnings_ucf','Earnings','2021-09-05 11:02:27','2021-09-20 07:30:28'),(1727,'en','values_ucf','Values','2021-09-05 11:03:02','2021-09-20 07:30:28'),(1728,'en','attribute_values_ucf','Attribute values','2021-09-05 11:03:02','2021-09-20 07:30:28'),(1729,'en','global_seo_ucf','Global SEO','2021-09-14 05:23:18','2021-09-20 07:30:28'),(1730,'en','keyword_keyword_ucf','Keyword, Keyword','2021-09-14 05:23:18','2021-09-20 07:30:28'),(1731,'en','choose_file_ucf','Choose File','2021-09-14 05:23:18','2021-09-20 07:30:29'),(1732,'en','nothing_found_ucf','Nothing found','2021-09-14 05:23:18','2021-09-20 07:30:29'),(1733,'en','wallet_recharge_history_ucf','Wallet Recharge History','2021-09-14 05:23:18','2021-09-20 07:30:29'),(1734,'en','order_code__ucf','Order code: ','2021-09-14 05:23:18','2021-09-20 07:30:29'),(1735,'en','all_categories_ucf','All categories','2021-09-14 05:23:19','2021-09-20 07:44:39'),(1736,'en','new_ucf','new','2021-09-14 07:18:02','2021-09-14 07:18:02'),(1737,'en','password_ucf','Password','2021-09-14 07:22:08','2021-09-20 07:30:29'),(1738,'en','forgot_password_ucf','Forgot password?','2021-09-14 07:22:08','2021-09-20 07:30:29'),(1739,'en','times_ucf','Times','2021-09-14 07:22:14','2021-09-20 07:30:29'),(1740,'en','be_a_seller_ucf','Be A Seller','2021-09-14 07:22:14','2021-09-20 07:30:29'),(1741,'en','sort_by_ucf','Sort by','2021-09-14 07:22:16','2021-09-20 07:30:29'),(1742,'en','tax_ucf','Tax','2021-09-14 07:22:21','2021-09-20 07:30:29'),(1743,'en','total_ucf','Total','2021-09-14 07:22:21','2021-09-20 07:30:29'),(1744,'en','postal_code_ucf','Postal code','2021-09-14 07:22:23','2021-09-20 07:30:29'),(1745,'en','terms_and_conditions_ucf','terms and conditions','2021-09-14 07:22:27','2021-09-20 07:30:29'),(1746,'en','return_policy_ucf','return policy','2021-09-14 07:22:27','2021-09-20 07:30:29'),(1747,'en','privacy_policy_ucf','privacy policy','2021-09-14 07:22:27','2021-09-20 07:30:29'),(1748,'en','order_date_ucf','Order date','2021-09-14 07:22:32','2021-09-20 07:30:29'),(1749,'en','shipping_address_ucf','Shipping address','2021-09-14 07:22:32','2021-09-20 07:30:29'),(1750,'en','order_status_ucf','Order status','2021-09-14 07:22:32','2021-09-20 07:30:29'),(1751,'en','seller_commission_activation_ucf','Seller Commission Activation','2021-09-19 04:42:21','2021-09-20 07:30:29'),(1752,'en','of_seller_product_price_will_be_deducted_from_seller_earnings_ucf','of seller product price will be deducted from seller earnings','2021-09-19 04:42:21','2021-09-20 07:30:29'),(1753,'en','this_commission_only_works_when_category_based_commission_is_turned_off_from_business_settings_ucf','This commission only works when Category Based Commission is turned off from Business Settings','2021-09-19 04:42:21','2021-09-20 07:30:29'),(1754,'en','disable_image_encoding_ucf','Disable image encoding?','2021-09-19 04:42:42','2021-09-20 07:30:29'),(1755,'en','admin_approval_on_seller_product_ucf','Admin Approval On Seller Product','2021-09-19 04:42:42','2021-09-20 07:30:29'),(1756,'en','after_activate_this_option_admin_approval_need_to_seller_product_ucf','After activate this option, Admin approval need to seller product','2021-09-19 04:42:42','2021-09-20 07:30:29'),(1757,'en','proxy_pay_activation_ucf','Proxy Pay Activation','2021-09-19 04:42:42','2021-09-20 07:30:29'),(1758,'en','you_need_to_configure_proxypay_correctly_to_enable_this_feature_ucf','You need to configure proxypay correctly to enable this feature','2021-09-19 04:42:42','2021-09-20 07:30:29'),(1759,'en','amarpay_activation_ucf','Amarpay Activation','2021-09-19 04:42:42','2021-09-20 07:30:29'),(1760,'en','you_need_to_configure_amarpay_correctly_to_enable_this_feature_ucf','You need to configure amarpay correctly to enable this feature','2021-09-19 04:42:42','2021-09-20 07:30:29'),(1761,'en','category_based_commission_ucf','Category Based Commission','2021-09-19 04:44:37','2021-09-20 07:30:29'),(1762,'en','if_category_based_commission_is_enbaled_global_percentage_will_not_work_ucf','If Category Based Commission is enbaled, Global percentage will not work.','2021-09-19 04:46:09','2021-09-20 07:30:29'),(1763,'en','if_category_based_commission_is_enbaled_set_seller_commission_percentage_0_ucf','If Category Based Commission is enbaled, Set seller commission percentage 0.','2021-09-19 04:46:38','2021-09-20 07:30:29'),(1764,'en','seller_commission_activatation_ucf','Seller Commission Activatation','2021-09-19 04:47:42','2021-09-20 07:30:29'),(1765,'en','seller_commission_updated_successfully_ucf','Seller Commission updated successfully','2021-09-19 05:28:32','2021-09-20 07:30:29'),(1766,'en','order_level_ucf','Order Level','2021-09-19 05:33:57','2021-09-20 07:30:29'),(1767,'en','icon_ucf','Icon','2021-09-19 05:33:57','2021-09-20 07:30:29'),(1768,'en','all_products_ucf','All products','2021-09-19 05:49:10','2021-09-20 07:30:29'),(1769,'en','add_new_product_ucf','Add New Product','2021-09-19 05:49:10','2021-09-20 07:30:29'),(1770,'en','reviews_ucf','reviews','2021-09-19 06:05:06','2021-09-19 06:05:06'),(1771,'en','sold_by_ucf','Sold by','2021-09-19 06:05:07','2021-09-20 07:30:29'),(1772,'en','coupon_has_been_saved_successfully_ucf','Coupon has been saved successfully','2021-09-20 01:35:28','2021-09-20 07:30:29'),(1773,'en','cart_base_ucf','Cart Base','2021-09-20 01:35:28','2021-09-20 07:30:29'),(1774,'en','coupon_has_been_deleted_successfully_ucf','Coupon has been deleted successfully','2021-09-20 01:52:19','2021-09-20 07:30:29'),(1775,'en','coupon_has_been_updated_successfully_ucf','Coupon has been updated successfully','2021-09-20 01:53:42','2021-09-20 07:30:29'),(1776,'en','coupons_ucf','Coupons','2021-09-20 02:02:10','2021-09-20 07:30:29'),(1777,'en','add_your_coupon_ucf','Add Your Coupon','2021-09-20 02:03:19','2021-09-20 07:30:29'),(1778,'en','edit_your_coupon_ucf','Edit Your Coupon','2021-09-20 02:14:13','2021-09-20 07:30:29'),(1779,'en','paypal_client_id_ucf','Paypal Client Id','2021-09-20 04:19:16','2021-09-20 07:30:29'),(1780,'en','stripe_key_ucf','Stripe Key','2021-09-20 04:19:16','2021-09-20 07:30:29'),(1781,'en','stripe_secret_ucf','Stripe Secret','2021-09-20 04:19:16','2021-09-20 07:30:29'),(1782,'en','aamarpay_credential_ucf','Aamarpay Credential','2021-09-20 04:19:16','2021-09-20 07:30:29'),(1783,'en','aamarpay_store_id_ucf','Aamarpay Store Id','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1784,'en','aamarpay_signature_key_ucf','Aamarpay signature key','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1785,'en','aamarpay_sandbox_mode_ucf','Aamarpay Sandbox Mode','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1786,'en','proxypay_credential_ucf','ProxyPay Credential','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1787,'en','proxypay_token_ucf','PROXYPAY_TOKEN','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1788,'en','proxypay_token_ucf','PROXYPAY TOKEN','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1789,'en','proxypay_entity_ucf','PROXYPAY_ENTITY','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1790,'en','proxypay_end_time_ucf','PROXYPAY_END_TIME','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1791,'en','days_ucf','Days','2021-09-20 04:19:17','2021-09-20 07:30:29'),(1792,'en','flw_public_key_ucf','FLW_PUBLIC_KEY','2021-09-20 05:04:59','2021-09-20 07:30:29'),(1793,'en','flw_secret_key_ucf','FLW_SECRET_KEY','2021-09-20 05:04:59','2021-09-20 07:30:29'),(1794,'en','flw_secret_hash_ucf','FLW_SECRET_HASH','2021-09-20 05:04:59','2021-09-20 07:30:29'),(1795,'en','categories_ucf','Categories','2021-09-20 07:30:29','2021-09-20 07:30:29'),(1796,'en','please_select_seller_first_ucf','Please Select Seller first.','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1797,'en','edit_seller_custom_followers_ucf','Edit Seller Custom Followers','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1798,'en','commission_percentage_ucf','Commission Percentage','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1799,'en','selle_commission_ucf','Selle Commission','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1800,'en','set_seller_commission_ucf','Set Seller Commission','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1801,'en','do_you_really_want_to_unban_this_seller_ucf','Do you really want to unban this seller?','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1802,'en','set_commission_ucf','Set Commission','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1803,'en','regular_ucf','Regular','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1804,'en','unverified_ucf','Unverified','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1805,'en','verified_ucf','Verified','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1806,'en','filter_by_verification_status_ucf','Filter by Verification Status','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1807,'en','set_bulk_commission_ucf','Set Bulk Commission','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1808,'en','reply_ucf','Reply','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1809,'en','query_ucf','Query','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1810,'en','sitemap_url_ucf','Sitemap URL','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1811,'en','invalid_login_credentials_ucf','Invalid login credentials','2025-04-24 06:19:29','2025-04-24 06:19:29'),(1812,'en','sitemap_url_ucf','Sitemap URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(1813,'en','please_select_seller_first_ucf','Please Select Seller first.','2025-06-26 09:57:07','2025-06-26 09:57:07'),(1814,'en','commission_percentage_ucf','Commission Percentage','2025-06-26 09:57:07','2025-06-26 09:57:07'),(1815,'en','filter_by_verification_status_ucf','Filter by Verification Status','2025-06-26 09:57:07','2025-06-26 09:57:07'),(2048,'en','admin_login_page_image_ucf','Admin Login Page Image','2026-01-21 20:31:07','2026-01-21 20:31:07'),(2049,'en','johndoeexamplecom_ucf','johndoe@example.com','2026-01-21 20:31:07','2026-01-21 20:31:07'),(2050,'en','back_to_previous_page_ucf','Back to Previous Page','2026-01-21 20:31:07','2026-01-21 20:31:07'),(2051,'en','please_enter_a_valid_phone_number_format_ucf','Please enter a valid phone number format','2026-01-21 20:31:10','2026-01-21 20:31:10'),(2052,'en','total_customer_ucf','Total Customer','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2053,'en','top_customers_ucf','Top Customers','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2054,'en','sellers_products_ucf','Sellers Products','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2055,'en','total_category_ucf','Total Category','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2056,'en','total_brands_ucf','Total Brands','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2057,'en','top_brands_ucf','Top Brands','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2058,'en','total_sales_ucf','Total Sales','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2059,'en','sales_this_month_ucf','Sales this month','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2060,'en','sales_stat_ucf','Sales Stat','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2061,'en','inhouse_sales_ucf','In-house Sales','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2062,'en','sellers_sales_ucf','Sellers Sales','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2063,'en','pending_seller_ucf','Pending Seller','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2064,'en','top_sellers_ucf','Top Sellers','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2065,'en','pending_sellers_ucf','Pending Sellers','2026-01-21 20:31:49','2026-01-21 20:31:49'),(2066,'en','total_order_ucf','Total Order','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2067,'en','pending_order_ucf','Pending order','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2068,'en','confirmed_order_ucf','Confirmed Order','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2069,'en','processed_order_ucf','Processed Order','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2070,'en','order_shipped_ucf','Order Shipped','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2071,'en','inhouse_top_category_ucf','In-house Top Category','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2072,'en','by_sales_ucf','By Sales','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2073,'en','today_ucf','Today','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2074,'en','week_ucf','Week','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2075,'en','month_ucf','Month','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2076,'en','inhouse_top_brands_ucf','In-house Top Brands','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2077,'en','inhouse_store_ucf','In-house Store','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2078,'en','all_inhouse_orders_ucf','All In-house Orders','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2079,'en','ratings_ucf','Ratings','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2080,'en','top_seller__products_ucf','Top Seller & Products','2026-01-21 20:31:50','2026-01-21 20:31:50'),(2081,'en','yearly_sales_ucf','Yearly Sales','2026-01-21 20:31:51','2026-01-21 20:31:51'),(2082,'en','saving_ucf','Saving','2026-01-21 20:31:51','2026-01-21 20:31:51'),(2083,'en','an_error_occurred_while_processing_ucf','An error occurred while processing','2026-01-21 20:31:51','2026-01-21 20:31:51'),(2084,'en','saving_as_draft_ucf','Saving As Draft','2026-01-21 20:31:51','2026-01-21 20:31:51'),(2085,'en','seller_product_ucf','Seller Product','2026-01-21 20:31:58','2026-01-21 20:31:58'),(2086,'en','physical_products_ucf','Physical Products','2026-01-21 20:31:58','2026-01-21 20:31:58'),(2087,'en','category_based_discount_ucf','Category Based Discount','2026-01-21 20:31:58','2026-01-21 20:31:58'),(2088,'en','brand_bulk_import_ucf','Brand Bulk Import','2026-01-21 20:31:58','2026-01-21 20:31:58'),(2089,'en','custom_label_ucf','Custom Label','2026-01-21 20:31:58','2026-01-21 20:31:58'),(2090,'en','size_guide_ucf','Size Guide','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2091,'en','size_chart_ucf','Size Chart','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2092,'en','measurement_points_ucf','Measurement Points','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2093,'en','warranty_ucf','Warranty','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2094,'en','smart_bar_ucf','Smart Bar','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2095,'en','notes_ucf','Notes','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2096,'en','add_new_note_ucf','Add New Note','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2097,'en','note_list_ucf','Note List','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2098,'en','unpaid_orders_ucf','Unpaid Orders','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2099,'en','applied_seller_ucf','Applied Seller','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2100,'en','seller_rating__followers_ucf','Seller Rating & Followers','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2101,'en','seller_based_commission_ucf','Seller Based Commission','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2102,'en','earning_report_ucf','Earning Report','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2103,'en','dynamic_popup_ucf','Dynamic Pop-up','2026-01-21 20:31:59','2026-01-21 20:31:59'),(2104,'en','custom_alert_ucf','Custom Alert','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2105,'en','custom_sell_alert_ucf','Custom Sell Alert','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2106,'en','email_templates_ucf','Email Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2107,'en','admin_templates_ucf','Admin Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2108,'en','seller_templates_ucf','Seller Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2109,'en','customer_templates_ucf','Customer Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2110,'en','common_templates_ucf','Common Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2111,'en','notification_ucf','Notification','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2112,'en','settings_ucf','Settings','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2113,'en','notification_types_ucf','Notification Types','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2114,'en','custom_notification_ucf','Custom Notification','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2115,'en','custom_notification_history_ucf','Custom Notification History','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2116,'en','custom_visitors_ucf','Custom Visitors','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2117,'en','product_conversations_ucf','Product Conversations','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2118,'en','contacts_ucf','Contacts','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2119,'en','payment_gateways_ucf','Payment Gateways','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2120,'en','select_homepage_ucf','Select Homepage','2026-01-21 20:32:00','2026-01-21 20:32:00'),(2121,'en','homepage_settings_ucf','Homepage Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2122,'en','font_family_ucf','Font Family','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2123,'en','authentication_layout__settings_ucf','Authentication Layout & Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2124,'en','element_ucf','Element','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2125,'en','all_elements_ucf','All Elements','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2126,'en','select_header_ucf','Select Header','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2127,'en','header_settings_ucf','Header Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2128,'en','top_bar_ucf','Top Bar','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2129,'en','top_bar_list_ucf','Top Bar List','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2130,'en','top_bar_settings_ucf','Top Bar Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2131,'en','footer_settings_ucf','Footer Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2132,'en','business_settings_ucf','Business Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2133,'en','order_configuration_ucf','Order Configuration','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2134,'en','file_system__cache____________________________________configuration_ucf','File System & Cache Configuration','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2135,'en','whatsapp_chat_ucf','WhatsApp Chat','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2136,'en','shipping_states_ucf','Shipping States','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2137,'en','shipping_areas_ucf','Shipping Areas','2026-01-21 20:32:01','2026-01-21 20:32:01'),(2138,'en','shipping_zones_ucf','Shipping Zones','2026-01-21 20:32:02','2026-01-21 20:32:02'),(2139,'en','shipping_carrier_ucf','Shipping Carrier','2026-01-21 20:32:02','2026-01-21 20:32:02'),(2140,'en','sitemap_generator_ucf','Sitemap Generator','2026-01-21 20:32:02','2026-01-21 20:32:02'),(2141,'en','clear_cache_ucf','Clear Cache','2026-01-21 20:32:03','2026-01-21 20:32:03'),(2142,'en','new_product_ucf','New Product','2026-01-21 20:32:03','2026-01-21 20:32:03'),(2143,'en','new_category_ucf','New Category','2026-01-21 20:32:03','2026-01-21 20:32:03'),(2144,'en','new_brand_ucf','New Brand','2026-01-21 20:32:03','2026-01-21 20:32:03'),(2145,'en','view_all_ucf','View All','2026-01-21 22:31:58','2026-01-21 22:31:58'),(2146,'en','become_a_seller__ucf','Become a Seller !','2026-01-21 22:32:00','2026-01-21 22:32:00'),(2147,'en','login_to_seller_ucf','Login to Seller','2026-01-21 22:32:00','2026-01-21 22:32:00'),(2148,'en','helpline_ucf','Helpline','2026-01-21 22:32:00','2026-01-21 22:32:00'),(2149,'en','seller_zone_ucf','Seller Zone','2026-01-21 22:32:06','2026-01-21 22:32:06'),(2150,'en','become_a_seller_ucf','Become A Seller','2026-01-21 22:32:06','2026-01-21 22:32:06'),(2151,'en','delete_your_account_ucf','Delete Your Account','2026-01-21 22:32:07','2026-01-21 22:32:07'),(2152,'en','warning_you_cannot_undo_this_action_ucf','Warning: You cannot undo this action','2026-01-21 22:32:07','2026-01-21 22:32:07'),(2153,'en','note__ucf','Note: ','2026-01-21 22:32:07','2026-01-21 22:32:07'),(2154,'en','dont_click_to_any_button_or_dont_do_any_action_during_account_deletion_it_may_takes_some_times_ucf','Don\'t Click to any button or don\'t do any action during account Deletion, it may takes some times.','2026-01-21 22:32:07','2026-01-21 22:32:07'),(2155,'en','deleting_account_means_ucf','Deleting Account Means:','2026-01-21 22:32:07','2026-01-21 22:32:07'),(2156,'en','warning_ucf','warning','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2157,'en','if_you_create_any_classified_ptoducts_after_deleting_your_account_those_products_will_no_longer_in_our_system_ucf','If you create any classified ptoducts, after deleting your account, those products will no longer in our system','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2158,'en','after_deleting_your_account_wallet_balance_will_no_longer_in_our_system_ucf','After deleting your account, wallet balance will no longer in our system','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2159,'en','delete_account_ucf','Delete Account','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2160,'en','sorry_nothing_found_for_ucf','Sorry, nothing found for','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2161,'en','please_login_as_a_customer_to_add_products_to_the_wishlist_ucf','Please Login as a customer to add products to the WishList.','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2162,'en','please_login_as_a_customer_to_add_products_to_the_cart_ucf','Please Login as a customer to add products to the Cart.','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2163,'en','product_not_found_ucf','Product not found','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2164,'en','sorry_only_customers__sellers_can_bid_ucf','Sorry, Only customers & Sellers can Bid.','2026-01-21 22:32:08','2026-01-21 22:32:08'),(2165,'en','coupon_code_copied_ucf','Coupon Code Copied','2026-01-21 22:32:09','2026-01-21 22:32:09'),(2166,'en','use_phone_number_instead_ucf','Use Phone Number Instead','2026-01-21 22:32:09','2026-01-21 22:32:09'),(2167,'en','featured_categories_ucf','Featured Categories','2026-01-21 22:32:46','2026-01-21 22:32:46'),(2168,'en','activate_addon_link_ucf','Activate Addon Link','2026-01-21 22:59:58','2026-01-21 22:59:58'),(2169,'en','data_can_not_change_in_demo_mode_ucf','Data can not change in demo mode.','2026-01-21 22:59:58','2026-01-21 22:59:58'),(2170,'en','gst_activation_confirmation_ucf','GST Activation Confirmation','2026-01-21 22:59:58','2026-01-21 22:59:58'),(2171,'en','are_you_sure_you_want_to_enable_the_gst_system_ucf','Are you sure you want to enable the GST system?','2026-01-21 22:59:58','2026-01-21 22:59:58'),(2172,'en','this_action_cannot_be_undone_all_existing_vat_taxes_linked_to_products_will_be_permanently_removed_in_addition_any_products_without_an_assigned_hsngst_code_will_be_automatically_unpublished_ucf','This action cannot be undone. All existing VAT taxes linked to products will be permanently removed. In addition, any products without an assigned HSN/GST code will be automatically unpublished.','2026-01-21 22:59:58','2026-01-21 22:59:58'),(2173,'en','main_item_purchase_code_ucf','Main item purchase code','2026-01-21 23:00:04','2026-01-21 23:00:04'),(2174,'en','addon_purchase_code_ucf','Addon purchase code','2026-01-21 23:00:04','2026-01-21 23:00:04'),(2175,'en','you_can_autometically_update_from_previous_10_ten_version_ucf','You can autometically update from previous 10 (ten) version.','2026-01-21 23:00:25','2026-01-21 23:00:25'),(2177,'en','purchase_code_ucf','Purchase code','2026-01-21 23:05:17','2026-01-21 23:05:17'),(2178,'en','otp_login_configuration_ucf','OTP Login Configuration','2026-01-21 23:05:18','2026-01-21 23:05:18'),(2180,'en','cache_cleared_successfully_ucf','Cache cleared successfully','2026-01-22 00:26:45','2026-01-22 00:26:45'),(2181,'en','drafts_ucf','Drafts','2026-01-22 00:27:55','2026-01-22 00:27:55'),(2182,'en','publish_ucf','Publish','2026-01-22 00:27:55','2026-01-22 00:27:55'),(2183,'en','mark_featured_ucf','Mark Featured','2026-01-22 00:27:56','2026-01-22 00:27:56'),(2184,'en','mark_todays_deal_ucf','Mark Todays Deal','2026-01-22 00:27:56','2026-01-22 00:27:56'),(2185,'en','processing__ucf','Processing ...','2026-01-22 00:27:56','2026-01-22 00:27:56'),(2186,'en','gst_verification_is_pending_for_this_account_ucf','GST verification is pending for this account.','2026-01-22 00:27:56','2026-01-22 00:27:56'),(2187,'en','please_assign_gst_details_ucf','Please assign GST details','2026-01-22 00:27:56','2026-01-22 00:27:56'),(2188,'en','selected_item_deleted_successfully_ucf','Selected item deleted successfully','2026-01-22 00:27:56','2026-01-22 00:27:56'),(2189,'en','selected_items_deleted_successfully_ucf','Selected items deleted successfully','2026-01-22 00:27:57','2026-01-22 00:27:57'),(2190,'en','selected_items_published_successfully_ucf','Selected items Published successfully','2026-01-22 00:27:57','2026-01-22 00:27:57'),(2191,'en','selected_items_added_in_featured_successfully_ucf','Selected items added in featured successfully','2026-01-22 00:27:57','2026-01-22 00:27:57'),(2192,'en','selected_products_have_been_marked_as_todays_deals_ucf','Selected products have been marked as Today���s Deals.','2026-01-22 00:27:57','2026-01-22 00:27:57'),(2193,'en','are_you_sure_you_want_to_delete_the_selected_product_ucf','Are you sure you want to delete the selected product?','2026-01-22 00:27:57','2026-01-22 00:27:57'),(2194,'en','this_action_cannot_be_undone_once_deleted_the_product_will_be_permanently_removed_ucf','This action cannot be undone. Once deleted, the product will be permanently removed.','2026-01-22 00:27:57','2026-01-22 00:27:57'),(2195,'en','please_select_at_least_one_item_ucf','Please select at least one item','2026-01-22 00:27:57','2026-01-22 00:27:57'),(2196,'en','are_you_sure_you_want_to_delete_the_selected_products_ucf','Are you sure you want to delete the selected products?','2026-01-22 00:27:57','2026-01-22 00:27:57'),(2197,'en','this_action_cannot_be_undone_once_deleted_the_products_will_be_permanently_removed_ucf','This action cannot be undone. Once deleted, the products will be permanently removed.','2026-01-22 00:27:58','2026-01-22 00:27:58'),(2198,'en','publish_confirmation_ucf','Publish Confirmation','2026-01-22 00:27:58','2026-01-22 00:27:58'),(2199,'en','are_you_sure_you_want_to_publish_the_selected_products_ucf','Are you sure you want to publish the selected products?','2026-01-22 00:27:58','2026-01-22 00:27:58'),(2200,'en','products_already_published_will_be_skipped_ucf','Products already published will be skipped.','2026-01-22 00:27:58','2026-01-22 00:27:58'),(2201,'en','todays_deal_confirmation_ucf','Today���s Deal Confirmation','2026-01-22 00:27:58','2026-01-22 00:27:58'),(2202,'en','are_you_sure_you_want_to_make_the_selected_products_as_todays_deals_ucf','Are you sure you want to make the selected products as Today���s Deals?','2026-01-22 00:27:58','2026-01-22 00:27:58'),(2203,'en','products_already_marked_as_todays_deals_will_be_skipped_ucf','Products already marked as Today���s Deals will be skipped.','2026-01-22 00:27:58','2026-01-22 00:27:58'),(2204,'en','feature_confirmation_ucf','Feature Confirmation','2026-01-22 00:27:58','2026-01-22 00:27:58'),(2205,'en','are_you_sure_you_want_to_mark_the_selected_products_as_featured__ucf','Are you sure you want to mark the selected products as featured ?','2026-01-22 00:27:59','2026-01-22 00:27:59'),(2206,'en','products_already_marked_as_featured_will_be_skipped_ucf','Products already marked as featured will be skipped.','2026-01-22 00:27:59','2026-01-22 00:27:59'),(2207,'en','failed_to_load_data_ucf','Failed to load data.','2026-01-22 00:27:59','2026-01-22 00:27:59'),(2208,'en','failed_to_load_stock_data_ucf','Failed to load stock data','2026-01-22 00:27:59','2026-01-22 00:27:59'),(2209,'en','stock_updated_successfully_ucf','Stock updated successfully','2026-01-22 00:27:59','2026-01-22 00:27:59'),(2210,'en','thumb_ucf','Thumb','2026-01-22 00:28:07','2026-01-22 00:28:07'),(2211,'en','name__brand_ucf','Name / Brand','2026-01-22 00:28:07','2026-01-22 00:28:07'),(2212,'en','owner__category_ucf','Owner / Category','2026-01-22 00:28:07','2026-01-22 00:28:07'),(2213,'en','price_details_ucf','Price Details','2026-01-22 00:28:07','2026-01-22 00:28:07'),(2214,'en','clear_tempdata_ucf','Clear Tempdata','2026-01-22 00:28:40','2026-01-22 00:28:40'),(2215,'en','import_product_ucf','Import Product','2026-01-22 00:28:40','2026-01-22 00:28:40'),(2216,'en','files__media_ucf','Files & Media','2026-01-22 00:28:40','2026-01-22 00:28:40'),(2217,'en','price__stock_ucf','Price & Stock','2026-01-22 00:28:40','2026-01-22 00:28:40'),(2218,'en','seo_ucf','SEO','2026-01-22 00:28:41','2026-01-22 00:28:41'),(2219,'en','frequently_bought_ucf','Frequently Bought','2026-01-22 00:28:41','2026-01-22 00:28:41'),(2220,'en','you_can_choose_a_brand_if_youd_like_to_display_your_product_by_brand_ucf','You can choose a brand if you\'d like to display your product by brand.','2026-01-22 00:28:41','2026-01-22 00:28:41'),(2221,'en','weight_ucf','Weight','2026-01-22 00:28:41','2026-01-22 00:28:41'),(2222,'en','in_kg_ucf','In Kg','2026-01-22 00:28:41','2026-01-22 00:28:41'),(2223,'en','the_minimum_quantity_needs_to_be_purchased_by_your_customer_ucf','The minimum quantity needs to be purchased by your customer.','2026-01-22 00:28:42','2026-01-22 00:28:42'),(2224,'en','select_main_ucf','Select Main','2026-01-22 00:28:42','2026-01-22 00:28:42'),(2225,'en','this_will_be_used_for_commission_based_calculations_and_homepage_category_wise_product_show_ucf','This will be used for commission based calculations and homepage category wise product Show.','2026-01-22 00:28:42','2026-01-22 00:28:42'),(2226,'en','if_you_enable_this_this_product_will_be_granted_as_a_featured_product_ucf','If you enable this, this product will be granted as a featured product.','2026-01-22 00:28:42','2026-01-22 00:28:42'),(2227,'en','if_you_enable_this_this_product_will_be_granted_as_a_todays_deal_product_ucf','If you enable this, this product will be granted as a todays deal product.','2026-01-22 00:28:42','2026-01-22 00:28:42'),(2228,'en','if_you_want_to_select_this_product_as_a_flash_deal_you_can_use_it_ucf','If you want to select this product as a flash deal, you can use it','2026-01-22 00:28:42','2026-01-22 00:28:42'),(2229,'en','choose_flash_title_ucf','Choose Flash Title','2026-01-22 00:28:42','2026-01-22 00:28:42'),(2230,'en','choose_discount_type_ucf','Choose Discount Type','2026-01-22 00:28:43','2026-01-22 00:28:43'),(2231,'en','product_files__media_ucf','Product Files & Media','2026-01-22 00:28:43','2026-01-22 00:28:43'),(2232,'en','these_images_are_visible_in_product_details_page_gallery_minimum_dimensions_required_900px_width_x_900px_height_ucf','These images are visible in product details page gallery. Minimum dimensions required: 900px width X 900px height.','2026-01-22 00:28:43','2026-01-22 00:28:43'),(2233,'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_if_no_thumbnail_is_uploaded_the_p','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. If no thumbnail is uploaded, ','2026-01-22 00:28:43','2026-01-22 00:28:43'),(2234,'en','try_to_upload_videos_under_30_seconds_for_better_performance_ucf','Try to upload videos under 30 seconds for better performance.','2026-01-22 00:28:43','2026-01-22 00:28:43'),(2235,'en','video_thumbnails_ucf','Video Thumbnails','2026-01-22 00:28:43','2026-01-22 00:28:43'),(2236,'en','add_thumbnails_in_the_same_order_as_your_videos_if_you_upload_only_one_image_it_will_be_used_for_all_videos_ucf','Add thumbnails in the same order as your videos. If you upload only one image, it will be used for all videos.','2026-01-22 00:28:43','2026-01-22 00:28:43'),(2237,'en','youtube_video__shorts_link_ucf','Youtube video / shorts link','2026-01-22 00:28:44','2026-01-22 00:28:44'),(2238,'en','youtube_video__shorts_url_ucf','Youtube video / shorts url','2026-01-22 00:28:44','2026-01-22 00:28:44'),(2239,'en','youtube_video_or_short_link_ucf','Youtube video or short link','2026-01-22 00:28:44','2026-01-22 00:28:44'),(2240,'en','add_another_ucf','Add Another','2026-01-22 00:28:44','2026-01-22 00:28:44'),(2241,'en','external_link_ucf','External link','2026-01-22 00:28:44','2026-01-22 00:28:44'),(2242,'en','leave_it_blank_if_you_do_not_use_external_site_link_ucf','Leave it blank if you do not use external site link','2026-01-22 00:28:44','2026-01-22 00:28:44'),(2243,'en','external_link_button_text_ucf','External link button text','2026-01-22 00:28:45','2026-01-22 00:28:45'),(2244,'en','select_warranty_ucf','Select Warranty','2026-01-22 00:28:45','2026-01-22 00:28:45'),(2245,'en','warranty_note_ucf','Warranty Note','2026-01-22 00:28:45','2026-01-22 00:28:45'),(2246,'en','select_warranty_note_ucf','Select Warranty Note','2026-01-22 00:28:45','2026-01-22 00:28:45'),(2247,'en','select_product_ucf','Select Product','2026-01-22 00:28:45','2026-01-22 00:28:45'),(2248,'en','add_products_ucf','Add Products','2026-01-22 00:28:46','2026-01-22 00:28:46'),(2249,'en','choose_category_ucf','Choose Category','2026-01-22 00:28:46','2026-01-22 00:28:46'),(2250,'en','search_by_product_name_ucf','Search by Product Name','2026-01-22 00:28:46','2026-01-22 00:28:46'),(2251,'en','add_ucf','Add','2026-01-22 00:28:46','2026-01-22 00:28:46'),(2252,'en','copy_products_ucf','Copy Products','2026-01-22 00:28:47','2026-01-22 00:28:47'),(2253,'en','your_refund_type_is_category_based_at_first_select_the_main_category_ucf','Your refund type is category based. At first select the main category.','2026-01-22 00:28:47','2026-01-22 00:28:47'),(2254,'en','this_product_allows_refunds_ucf','This product allows refunds.','2026-01-22 00:28:48','2026-01-22 00:28:48'),(2255,'en','selected_main_category_has_no_refund_select_a_refundable_category_ucf','Selected main category has no refund. Select a refundable category.','2026-01-22 00:28:48','2026-01-22 00:28:48'),(2256,'en','could_not_verify_category_refund_status_ucf','Could not verify category refund status.','2026-01-22 00:28:48','2026-01-22 00:28:48'),(2257,'en','thumb_ucf','Thumb','2026-01-22 00:33:06','2026-01-22 00:33:06'); /*!40000 ALTER TABLE `app_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `area_translations` -- DROP TABLE IF EXISTS `area_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `area_translations` ( `id` int NOT NULL AUTO_INCREMENT, `area_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(10) COLLATE utf8mb3_unicode_ci 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=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `area_translations` -- LOCK TABLES `area_translations` WRITE; /*!40000 ALTER TABLE `area_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `area_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `areas` -- DROP TABLE IF EXISTS `areas`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `areas` ( `id` bigint NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `city_id` int NOT NULL, `cost` double(20,2) NOT NULL DEFAULT '0.00', `status` int NOT NULL DEFAULT '1', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `areas` -- LOCK TABLES `areas` WRITE; /*!40000 ALTER TABLE `areas` DISABLE KEYS */; /*!40000 ALTER TABLE `areas` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `attribute_category` -- DROP TABLE IF EXISTS `attribute_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `attribute_category` ( `id` int NOT NULL AUTO_INCREMENT, `category_id` int NOT NULL, `attribute_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `attribute_category` -- LOCK TABLES `attribute_category` WRITE; /*!40000 ALTER TABLE `attribute_category` DISABLE KEYS */; /*!40000 ALTER TABLE `attribute_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `attribute_translations` -- DROP TABLE IF EXISTS `attribute_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `attribute_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `attribute_id` bigint NOT NULL, `name` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `attribute_translations` -- LOCK TABLES `attribute_translations` WRITE; /*!40000 ALTER TABLE `attribute_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `attribute_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `attribute_values` -- DROP TABLE IF EXISTS `attribute_values`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `attribute_values` ( `id` int NOT NULL AUTO_INCREMENT, `attribute_id` int NOT NULL, `value` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `color_code` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `attribute_values` -- LOCK TABLES `attribute_values` WRITE; /*!40000 ALTER TABLE `attribute_values` DISABLE KEYS */; /*!40000 ALTER TABLE `attribute_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `attributes` -- DROP TABLE IF EXISTS `attributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `attributes` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `attributes` -- LOCK TABLES `attributes` WRITE; /*!40000 ALTER TABLE `attributes` DISABLE KEYS */; INSERT INTO `attributes` VALUES (1,'Size','2020-02-24 05:55:07','2020-02-24 05:55:07'),(2,'Fabric','2020-02-24 05:55:13','2020-02-24 05:55:13'); /*!40000 ALTER TABLE `attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blog_categories` -- DROP TABLE IF EXISTS `blog_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `blog_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `category_name` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `slug` varchar(255) COLLATE utf8mb3_unicode_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blog_categories` -- LOCK TABLES `blog_categories` WRITE; /*!40000 ALTER TABLE `blog_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `blog_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blogs` -- DROP TABLE IF EXISTS `blogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `blogs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `category_id` int NOT NULL, `title` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `slug` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `short_description` text COLLATE utf8mb3_unicode_ci, `description` longtext COLLATE utf8mb3_unicode_ci, `banner` int DEFAULT NULL, `meta_title` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_img` int DEFAULT NULL, `meta_description` text COLLATE utf8mb3_unicode_ci, `meta_keywords` text COLLATE utf8mb3_unicode_ci, `status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blogs` -- LOCK TABLES `blogs` WRITE; /*!40000 ALTER TABLE `blogs` DISABLE KEYS */; /*!40000 ALTER TABLE `blogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `brand_translations` -- DROP TABLE IF EXISTS `brand_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `brand_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `brand_id` bigint NOT NULL, `name` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `brand_translations` -- LOCK TABLES `brand_translations` WRITE; /*!40000 ALTER TABLE `brand_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `brand_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `brands` -- DROP TABLE IF EXISTS `brands`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `brands` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `logo` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `top` int NOT NULL DEFAULT '0', `slug` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_title` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_description` text COLLATE utf8mb3_unicode_ci, `meta_keywords` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `brands` -- LOCK TABLES `brands` WRITE; /*!40000 ALTER TABLE `brands` DISABLE KEYS */; INSERT INTO `brands` VALUES (1,'Demo brand','uploads/brands/brand.jpg',1,'Demo-brand-12','Demo brand',NULL,NULL,'2019-03-12 06:05:56','2019-08-06 06:52:40'),(2,'Demo brand1','uploads/brands/brand.jpg',1,'Demo-brand1','Demo brand1',NULL,NULL,'2019-03-12 06:06:13','2019-08-06 06:07:26'); /*!40000 ALTER TABLE `brands` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `business_settings` -- DROP TABLE IF EXISTS `business_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `business_settings` ( `id` int NOT NULL AUTO_INCREMENT, `type` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb3_unicode_ci, `lang` varchar(30) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=220 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `business_settings` -- LOCK TABLES `business_settings` WRITE; /*!40000 ALTER TABLE `business_settings` DISABLE KEYS */; INSERT INTO `business_settings` VALUES (1,'home_default_currency','1',NULL,'2018-10-16 01:35:52','2019-01-28 01:26:53'),(2,'system_default_currency','1',NULL,'2018-10-16 01:36:58','2020-01-26 04:22:13'),(3,'currency_format','1',NULL,'2018-10-17 03:01:59','2018-10-17 03:01:59'),(4,'symbol_format','1',NULL,'2018-10-17 03:01:59','2019-01-20 02:10:55'),(5,'no_of_decimals','2',NULL,'2018-10-17 03:01:59','2020-03-04 00:57:16'),(6,'product_activation','1',NULL,'2018-10-28 01:38:37','2019-02-04 01:11:41'),(7,'vendor_system_activation','1',NULL,'2018-10-28 07:44:16','2019-02-04 01:11:38'),(8,'show_vendors','1',NULL,'2018-10-28 07:44:47','2019-02-04 01:11:13'),(11,'cash_payment','1',NULL,'2018-10-28 07:46:05','2019-01-24 03:40:18'),(12,'payumoney_payment','0',NULL,'2018-10-28 07:46:27','2019-03-05 05:41:36'),(13,'best_selling','1',NULL,'2018-12-24 08:13:44','2019-02-14 05:29:13'),(14,'paypal_sandbox','0',NULL,'2019-01-16 12:44:18','2019-01-16 12:44:18'),(15,'sslcommerz_sandbox','1',NULL,'2019-01-16 12:44:18','2019-03-14 00:07:26'),(17,'vendor_commission','20',NULL,'2019-01-31 06:18:04','2019-04-13 06:49:26'),(18,'verification_form','[{\"type\":\"text\",\"label\":\"Your name\"},{\"type\":\"text\",\"label\":\"Shop name\"},{\"type\":\"text\",\"label\":\"Email\"},{\"type\":\"text\",\"label\":\"License No\"},{\"type\":\"text\",\"label\":\"Full Address\"},{\"type\":\"text\",\"label\":\"Phone Number\"},{\"type\":\"file\",\"label\":\"Tax Papers\"}]',NULL,'2019-02-03 11:36:58','2019-02-16 06:14:42'),(19,'google_analytics','0',NULL,'2019-02-06 12:22:35','2019-02-06 12:22:35'),(20,'facebook_login','0',NULL,'2019-02-07 12:51:59','2019-02-08 19:41:15'),(21,'google_login','0',NULL,'2019-02-07 12:52:10','2019-02-08 19:41:14'),(22,'twitter_login','0',NULL,'2019-02-07 12:52:20','2019-02-08 02:32:56'),(23,'payumoney_payment','1',NULL,'2019-03-05 11:38:17','2019-03-05 11:38:17'),(24,'payumoney_sandbox','1',NULL,'2019-03-05 11:38:17','2019-03-05 05:39:18'),(36,'facebook_chat','0',NULL,'2019-04-15 11:45:04','2019-04-15 11:45:04'),(37,'email_verification','0',NULL,'2019-04-30 07:30:07','2019-04-30 07:30:07'),(38,'wallet_system','0',NULL,'2019-05-19 08:05:44','2019-05-19 02:11:57'),(39,'coupon_system','0',NULL,'2019-06-11 09:46:18','2019-06-11 09:46:18'),(40,'current_version','10.2.2',NULL,'2019-06-11 09:46:18','2019-06-11 09:46:18'),(42,'instamojo_sandbox','1',NULL,'2019-07-06 09:58:43','2019-07-06 09:58:43'),(45,'pickup_point','0',NULL,'2019-10-17 11:50:39','2019-10-17 11:50:39'),(46,'maintenance_mode','0',NULL,'2019-10-17 11:51:04','2019-10-17 11:51:04'),(48,'voguepay_sandbox','0',NULL,'2019-10-17 11:51:38','2019-10-17 11:51:38'),(50,'category_wise_commission','0',NULL,'2020-01-21 07:22:47','2020-01-21 07:22:47'),(51,'conversation_system','1',NULL,'2020-01-21 07:23:21','2020-01-21 07:23:21'),(52,'guest_checkout_active','1',NULL,'2020-01-22 07:36:38','2020-01-22 07:36:38'),(53,'facebook_pixel','0',NULL,'2020-01-22 11:43:58','2020-01-22 11:43:58'),(55,'classified_product','0',NULL,'2020-05-13 13:01:05','2020-05-13 13:01:05'),(56,'pos_activation_for_seller','1',NULL,'2020-06-11 09:45:02','2020-06-11 09:45:02'),(57,'shipping_type','product_wise_shipping',NULL,'2020-07-01 13:49:56','2020-07-01 13:49:56'),(58,'flat_rate_shipping_cost','0',NULL,'2020-07-01 13:49:56','2020-07-01 13:49:56'),(59,'shipping_cost_admin','0',NULL,'2020-07-01 13:49:56','2020-07-01 13:49:56'),(60,'payhere_sandbox','0',NULL,'2020-07-30 18:23:53','2020-07-30 18:23:53'),(62,'google_recaptcha','0',NULL,'2020-08-17 07:13:37','2020-08-17 07:13:37'),(64,'header_logo',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(65,'show_language_switcher','on',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(66,'show_currency_switcher','on',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(67,'header_stikcy','on',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(68,'footer_logo',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(69,'about_us_description',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(70,'contact_address',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(71,'contact_phone',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(72,'contact_email',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(73,'widget_one_labels',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(74,'widget_one_links',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(75,'widget_one',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(76,'frontend_copyright_text',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(77,'show_social_links',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(78,'facebook_link',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(79,'twitter_link',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(80,'instagram_link',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(81,'youtube_link',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(82,'linkedin_link',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(83,'payment_method_images',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(84,'home_slider_images','[]','en','2020-11-16 07:26:36','2020-11-16 07:26:36'),(85,'home_slider_links','[]','en','2020-11-16 07:26:36','2020-11-16 07:26:36'),(86,'home_banner1_images','[]','en','2020-11-16 07:26:36','2020-11-16 07:26:36'),(87,'home_banner1_links','[]','en','2020-11-16 07:26:36','2020-11-16 07:26:36'),(88,'home_banner2_images','[]','en','2020-11-16 07:26:36','2020-11-16 07:26:36'),(89,'home_banner2_links','[]','en','2020-11-16 07:26:36','2020-11-16 07:26:36'),(90,'home_categories','[]',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(91,'top10_categories','[]',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(92,'top10_brands','[]',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(93,'website_name',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(94,'site_motto',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(95,'site_icon',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(96,'base_color','#e62e04',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(97,'base_hov_color','#e62e04',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(98,'meta_title',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(99,'meta_description',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(100,'meta_keywords',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(101,'meta_image',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(102,'site_name',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(103,'system_logo_white',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(104,'system_logo_black',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(105,'timezone',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(106,'admin_login_background',NULL,NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(107,'iyzico_sandbox','1',NULL,'2020-12-30 16:45:56','2020-12-30 16:45:56'),(109,'decimal_separator','1',NULL,'2020-12-30 16:45:56','2020-12-30 16:45:56'),(112,'bkash_sandbox','1',NULL,'2021-01-22 10:30:03','2021-01-22 10:30:03'),(113,'header_menu_labels','[\"Home\",\"Flash Sale\",\"Blogs\",\"All Brands\",\"All Categories\"]',NULL,'2021-02-16 02:43:11','2021-02-16 02:52:18'),(114,'header_menu_links','[\"http:\\/\\/domain.com\",\"http:\\/\\/domain.com\\/flash-deals\",\"http:\\/\\/domain.com\\/blog\",\"http:\\/\\/domain.com\\/brands\",\"http:\\/\\/domain.com\\/categories\"]',NULL,'2021-02-16 02:43:11','2021-02-18 01:20:04'),(115,'proxypay','1',NULL,'2021-06-20 11:25:42','2021-06-20 11:25:42'),(116,'proxypay_sandbox','1',NULL,'2021-06-20 11:25:42','2021-06-20 11:25:42'),(117,'google_map','0',NULL,'2021-07-27 15:49:39','2021-07-27 15:49:39'),(118,'google_firebase','0',NULL,'2021-07-27 15:49:39','2021-07-27 15:49:39'),(119,'authorizenet_sandbox','1',NULL,'2021-02-16 02:43:11','2021-06-14 05:00:23'),(120,'min_order_amount_check_activat',NULL,NULL,'2022-04-17 06:57:17','2022-04-17 06:57:17'),(121,'minimum_order_amount',NULL,NULL,'2022-04-17 06:57:17','2022-04-17 06:57:17'),(122,'item_name','eCommerce',NULL,'2022-04-17 06:57:17','2022-04-17 06:57:17'),(124,'aamarpay_sandbox','0',NULL,'2022-04-17 06:57:17','2022-04-17 06:57:17'),(125,'secondary_base_color','#FFBA00',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(126,'secondary_base_hov_color','#FBE8E5',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(127,'header_nav_menu_text','light',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(128,'homepage_select','classic',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(129,'todays_deal_section_bg','0',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(130,'todays_deal_section_bg_color','#3d4666',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(131,'flash_deal_bg_color','#d33533',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(132,'flash_deal_bg_full_width','0',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(133,'flash_deal_banner_menu_text','light',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(134,'todays_deal_banner_text_color','light',NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(135,'coupon_background_image',NULL,NULL,'2023-11-19 09:45:29','2023-11-19 09:45:29'),(136,'admin_login_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(137,'customer_login_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(138,'customer_register_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(139,'seller_login_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(140,'seller_register_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(141,'delivery_boy_login_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(142,'forgot_password_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(143,'password_reset_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(144,'phone_number_verify_page_image',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(145,'authentication_layout_select','boxed',NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(146,'flash_deal_card_bg_image',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(147,'flash_deal_card_bg_title',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(148,'flash_deal_card_bg_subtitle',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(149,'flash_deal_card_text',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(150,'todays_deal_card_bg_image',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(151,'todays_deal_card_bg_title',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(152,'todays_deal_card_bg_subtitle',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(153,'todays_deal_card_text',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(154,'new_product_card_bg_image',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(155,'new_product_card_bg_title',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(156,'new_product_card_bg_subtitle',NULL,'en','2023-12-11 09:55:33','2023-12-11 09:55:33'),(157,'new_product_card_text',NULL,NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(158,'featured_categories_text','dark',NULL,'2023-12-11 09:55:33','2023-12-11 09:55:33'),(159,'guest_checkout_activation','0',NULL,'2024-03-05 12:35:24','2024-03-05 12:35:24'),(160,'slider_section_full_width','0','en','2024-03-19 06:12:16','2024-03-19 06:12:16'),(161,'slider_section_bg_color','#dedede','en','2024-03-19 06:12:16','2024-03-19 06:12:16'),(162,'home_banner4_images',NULL,'en','2024-03-19 06:12:16','2024-03-19 06:12:16'),(163,'home_banner4_links',NULL,'en','2024-03-19 06:12:16','2024-03-19 06:12:16'),(164,'home_banner5_images',NULL,'en','2024-03-19 06:12:16','2024-03-19 06:12:16'),(165,'home_banner5_links',NULL,'en','2024-03-19 06:12:16','2024-03-19 06:12:16'),(166,'home_banner6_images',NULL,'en','2024-03-19 06:12:16','2024-03-19 06:12:16'),(167,'home_banner6_links',NULL,'en','2024-03-19 06:12:16','2024-03-19 06:12:16'),(168,'last_viewed_product_activation','1',NULL,'2024-04-02 06:59:06','2024-04-02 06:59:06'),(169,'custom_alert_location','bottom-left',NULL,'2024-04-03 03:30:20','2024-04-03 03:30:20'),(170,'notification_show_type','only_text',NULL,'2024-06-11 07:25:53','2024-06-11 07:25:53'),(171,'cupon_text_color','dark',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(172,'flash_deal_section_outline','0',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(173,'flash_deal_section_outline_color','#000000',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(174,'featured_section_bg_color','#ffffff',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(175,'featured_section_outline','1',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(176,'featured_section_outline_color','#dfdfe6',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(177,'best_selling_section_bg_color','#ffffff',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(178,'best_selling_section_outline','1',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(179,'best_selling_section_outline_color','#dfdfe6',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(180,'new_products_section_bg_color','#f5f5f5',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(181,'new_products_section_outline','0',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(182,'new_products_section_outline_color','#000000',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(183,'home_categories_section_bg_color','#f2f4f5',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(184,'home_categories_content_bg_color','#ffffff',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(185,'home_categories_content_outline','0',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(186,'home_categories_content_outline_color','#000000',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(187,'classified_section_bg_color','#fff9ed',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(188,'classified_section_outline','0',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(189,'classified_section_outline_color','#000000',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(190,'sellers_section_bg_color','#fff9ed',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(191,'sellers_section_outline','0',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(192,'sellers_section_outline_color','#000000',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(193,'brands_section_bg_color','#f0f2f5',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(194,'brands_section_outline','0',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(195,'brands_section_outline_color','#000000',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(196,'uploaded_image_format','default',NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'),(197,'product_external_link_for_seller','1',NULL,'2024-08-22 05:45:04','2024-08-22 05:45:04'),(198,'use_floating_buttons','1',NULL,'2024-08-22 05:45:04','2024-08-22 05:45:04'),(199,'seller_commission_type','fixed_rate',NULL,'2024-08-22 05:45:04','2024-08-22 05:45:04'),(200,'whatsapp_chat','0',NULL,'2025-04-24 06:18:32','2025-04-24 06:18:32'),(201,'whatsapp_order','0',NULL,'2025-08-06 12:53:37','2025-08-06 12:53:37'),(202,'order_messege_template','Hello [[storeName]], \r\nI am interested in ordering \"[[productTitle]]\".\r\n\r\nKindly provide me the order process and payment details. \r\n[[productUrl]]',NULL,'2025-08-06 12:53:37','2025-08-06 12:53:37'),(203,'whatsapp_order_seller_prods','0',NULL,'2025-08-20 06:32:12','2025-08-20 06:32:12'),(204,'header_element','1',NULL,'2025-08-27 10:53:10','2025-08-27 10:53:10'),(205,'top_header_bg_color','#ffffff',NULL,'2025-07-28 04:46:27','2025-07-28 07:58:05'),(206,'middle_header_bg_color','#ffffff',NULL,'2025-07-28 04:46:27','2025-07-28 04:46:27'),(207,'bottom_header_bg_color','#ff0000',NULL,'2025-07-28 04:46:27','2025-07-29 01:04:22'),(208,'top_header_text_color','#857E7E',NULL,'2025-07-28 04:46:27','2025-07-28 07:58:05'),(209,'middle_header_text_color','#857E7E',NULL,'2025-07-28 04:46:27','2025-07-29 01:04:22'),(210,'bottom_header_text_color','#ffffff',NULL,'2025-07-28 04:50:54','2025-07-28 04:50:54'),(211,'featured_category_section_bg_color','#f9e0df',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'),(212,'featured_category_section_outline','1',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'),(213,'featured_category_section_outline_color','#d42d2a',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'),(214,'featured_category_btn_color','#F94C10',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'),(215,'featured_category_section_btn_text_color','#f5f5f5',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'),(216,'auction_product_bg_color','#F0ECE3',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'),(217,'auction_product_btn_color','#C7B198',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'),(218,'classified_bg_color','#f5f5f5',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'),(219,'hero_bg_color','#f5f5f5',NULL,'2025-10-22 06:31:28','2025-10-22 06:31:28'); /*!40000 ALTER TABLE `business_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `carrier_range_prices` -- DROP TABLE IF EXISTS `carrier_range_prices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `carrier_range_prices` ( `id` int NOT NULL AUTO_INCREMENT, `carrier_id` int NOT NULL, `carrier_range_id` int NOT NULL, `zone_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `carrier_range_prices` -- LOCK TABLES `carrier_range_prices` WRITE; /*!40000 ALTER TABLE `carrier_range_prices` DISABLE KEYS */; /*!40000 ALTER TABLE `carrier_range_prices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `carrier_ranges` -- DROP TABLE IF EXISTS `carrier_ranges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `carrier_ranges` ( `id` int NOT NULL AUTO_INCREMENT, `carrier_id` int NOT NULL, `billing_type` varchar(20) COLLATE utf8mb3_unicode_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `carrier_ranges` -- LOCK TABLES `carrier_ranges` WRITE; /*!40000 ALTER TABLE `carrier_ranges` DISABLE KEYS */; /*!40000 ALTER TABLE `carrier_ranges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `carriers` -- DROP TABLE IF EXISTS `carriers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `carriers` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `logo` int DEFAULT NULL, `transit_time` varchar(255) COLLATE utf8mb4_general_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `carriers` -- LOCK TABLES `carriers` WRITE; /*!40000 ALTER TABLE `carriers` DISABLE KEYS */; /*!40000 ALTER TABLE `carriers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `carts` -- DROP TABLE IF EXISTS `carts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `carts` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `status` tinyint(1) NOT NULL DEFAULT '1', `owner_id` int DEFAULT NULL, `user_id` int DEFAULT NULL, `temp_user_id` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `address_id` int NOT NULL DEFAULT '0', `billing_address` int NOT NULL DEFAULT '0', `product_id` int DEFAULT NULL, `variation` text COLLATE utf8mb3_unicode_ci, `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) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '', `pickup_point` int DEFAULT NULL, `carrier_id` int DEFAULT NULL, `discount` double(10,2) NOT NULL DEFAULT '0.00', `product_referral_code` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `coupon_code` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `coupon_applied` tinyint NOT NULL DEFAULT '0', `quantity` int NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `carts` -- LOCK TABLES `carts` WRITE; /*!40000 ALTER TABLE `carts` DISABLE KEYS */; /*!40000 ALTER TABLE `carts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `categories` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT '0', `level` int NOT NULL DEFAULT '0', `name` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `order_level` int NOT NULL DEFAULT '0', `commision_rate` double(8,2) NOT NULL DEFAULT '0.00', `discount` double(20,2) NOT NULL DEFAULT '0.00', `discount_start_date` int DEFAULT NULL, `discount_end_date` int DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `icon` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `cover_image` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `featured` int NOT NULL DEFAULT '0', `hot_category` enum('0','1') COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '0', `top` int NOT NULL DEFAULT '0', `digital` int NOT NULL DEFAULT '0', `slug` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `refund_request_time` int unsigned DEFAULT NULL, `meta_title` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_description` text COLLATE utf8mb3_unicode_ci, `meta_keywords` varchar(255) COLLATE utf8mb3_unicode_ci 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=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categories` -- LOCK TABLES `categories` WRITE; /*!40000 ALTER TABLE `categories` DISABLE KEYS */; INSERT INTO `categories` VALUES (1,0,0,'Demo category 1',0,0.00,0.00,NULL,NULL,'uploads/categories/banner/category-banner.jpg','uploads/categories/icon/KjJP9wuEZNL184XVUk3S7EiZ8NnBN99kiU4wdvp3.png',NULL,1,'0',1,0,'Demo-category-1',NULL,'Demo category 1',NULL,NULL,'2019-08-06 12:06:58','2019-08-06 06:06:58'),(2,0,0,'Demo category 2',0,0.00,0.00,NULL,NULL,'uploads/categories/banner/category-banner.jpg','uploads/categories/icon/h9XhWwI401u6sRoLITEk9SUMRAlWN8moGrpPfS6I.png',NULL,1,'0',0,0,'Demo-category-2',NULL,'Demo category 2',NULL,NULL,'2019-08-06 12:06:58','2019-08-06 06:06:58'),(3,0,0,'Demo category 3',0,0.00,0.00,NULL,NULL,'uploads/categories/banner/category-banner.jpg','uploads/categories/icon/rKAPw5rNlS84JtD9ZQqn366jwE11qyJqbzAe5yaA.png',NULL,1,'0',1,0,'Demo-category-3',NULL,'Demo category 3',NULL,NULL,'2019-08-06 12:06:58','2019-08-06 06:06:58'); /*!40000 ALTER TABLE `categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category_translations` -- DROP TABLE IF EXISTS `category_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `category_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `category_id` bigint NOT NULL, `name` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category_translations` -- LOCK TABLES `category_translations` WRITE; /*!40000 ALTER TABLE `category_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `category_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cities` -- DROP TABLE IF EXISTS `cities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cities` ( `id` bigint NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `state_id` int DEFAULT NULL, `country_id` int DEFAULT NULL, `cost` double(20,2) NOT NULL DEFAULT '0.00', `status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cities` -- LOCK TABLES `cities` WRITE; /*!40000 ALTER TABLE `cities` DISABLE KEYS */; INSERT INTO `cities` VALUES (1,'Sed ea dolore offici',1,101,0.00,0,'2021-04-06 01:13:42','2021-10-11 00:51:51',NULL),(2,'Garacharma',1,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3,'Port Blair',1,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4,'Rangat',1,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(5,'Addanki',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(6,'Adivivaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(7,'Adoni',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(8,'Aganampudi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(9,'Ajjaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(10,'Akividu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(11,'Akkarampalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(12,'Akkayapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(13,'Akkireddipalem',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(14,'Alampur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(15,'Amalapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(16,'Amudalavalasa',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(17,'Amur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(18,'Anakapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(19,'Anantapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(20,'Andole',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(21,'Atmakur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(22,'Attili',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(23,'Avanigadda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(24,'Badepalli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(25,'Badvel',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(26,'Balapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(27,'Bandarulanka',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(28,'Banganapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(29,'Bapatla',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(30,'Bapulapadu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(31,'Belampalli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(32,'Bestavaripeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(33,'Betamcherla',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(34,'Bhattiprolu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(35,'Bhimavaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(36,'Bhimunipatnam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(37,'Bobbili',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(38,'Bombuflat',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(39,'Bommuru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(40,'Bugganipalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(41,'Challapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(42,'Chandur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(43,'Chatakonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(44,'Chemmumiahpet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(45,'Chidiga',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(46,'Chilakaluripet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(47,'Chimakurthy',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(48,'Chinagadila',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(49,'Chinagantyada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(50,'Chinnachawk',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(51,'Chintalavalasa',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(52,'Chipurupalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(53,'Chirala',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(54,'Chittoor',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(55,'Chodavaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(56,'Choutuppal',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(57,'Chunchupalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(58,'Cuddapah',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(59,'Cumbum',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(60,'Darnakal',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(61,'Dasnapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(62,'Dauleshwaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(63,'Dharmavaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(64,'Dhone',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(65,'Dommara Nandyal',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(66,'Dowlaiswaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(67,'East Godavari Dist.',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(68,'Eddumailaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(69,'Edulapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(70,'Ekambara kuppam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(71,'Eluru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(72,'Enikapadu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(73,'Fakirtakya',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(74,'Farrukhnagar',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(75,'Gaddiannaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(76,'Gajapathinagaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(77,'Gajularega',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(78,'Gajuvaka',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(79,'Gannavaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(80,'Garacharma',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(81,'Garimellapadu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(82,'Giddalur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(83,'Godavarikhani',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(84,'Gopalapatnam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(85,'Gopalur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(86,'Gorrekunta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(87,'Gudivada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(88,'Gudur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(89,'Guntakal',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(90,'Guntur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(91,'Guti',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(92,'Hindupur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(93,'Hukumpeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(94,'Ichchapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(95,'Isnapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(96,'Jaggayyapeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(97,'Jallaram Kamanpur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(98,'Jammalamadugu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(99,'Jangampalli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(100,'Jarjapupeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(101,'Kadiri',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(102,'Kaikalur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(103,'Kakinada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(104,'Kallur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(105,'Kalyandurg',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(106,'Kamalapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(107,'Kamareddi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(108,'Kanapaka',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(109,'Kanigiri',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(110,'Kanithi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(111,'Kankipadu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(112,'Kantabamsuguda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(113,'Kanuru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(114,'Karnul',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(115,'Katheru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(116,'Kavali',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(117,'Kazipet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(118,'Khanapuram Haveli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(119,'Kodar',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(120,'Kollapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(121,'Kondapalem',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(122,'Kondapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(123,'Kondukur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(124,'Kosgi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(125,'Kothavalasa',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(126,'Kottapalli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(127,'Kovur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(128,'Kovurpalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(129,'Kovvur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(130,'Krishna',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(131,'Kuppam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(132,'Kurmannapalem',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(133,'Kurnool',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(134,'Lakshettipet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(135,'Lalbahadur Nagar',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(136,'Machavaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(137,'Macherla',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(138,'Machilipatnam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(139,'Madanapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(140,'Madaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(141,'Madhuravada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(142,'Madikonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(143,'Madugule',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(144,'Mahabubnagar',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(145,'Mahbubabad',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(146,'Malkajgiri',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(147,'Mamilapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(148,'Mancheral',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(149,'Mandapeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(150,'Mandasa',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(151,'Mangalagiri',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(152,'Manthani',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(153,'Markapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(154,'Marturu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(155,'Metpalli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(156,'Mindi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(157,'Mirpet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(158,'Moragudi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(159,'Mothugudam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(160,'Nagari',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(161,'Nagireddipalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(162,'Nandigama',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(163,'Nandikotkur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(164,'Nandyal',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(165,'Narasannapeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(166,'Narasapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(167,'Narasaraopet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(168,'Narayanavanam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(169,'Narsapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(170,'Narsingi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(171,'Narsipatnam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(172,'Naspur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(173,'Nathayyapalem',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(174,'Nayudupeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(175,'Nelimaria',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(176,'Nellore',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(177,'Nidadavole',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(178,'Nuzvid',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(179,'Omerkhan daira',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(180,'Ongole',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(181,'Osmania University',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(182,'Pakala',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(183,'Palakole',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(184,'Palakurthi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(185,'Palasa',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(186,'Palempalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(187,'Palkonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(188,'Palmaner',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(189,'Pamur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(190,'Panjim',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(191,'Papampeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(192,'Parasamba',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(193,'Parvatipuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(194,'Patancheru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(195,'Payakaraopet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(196,'Pedagantyada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(197,'Pedana',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(198,'Peddapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(199,'Pendurthi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(200,'Penugonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(201,'Penukonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(202,'Phirangipuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(203,'Pithapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(204,'Ponnur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(205,'Port Blair',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(206,'Pothinamallayyapalem',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(207,'Prakasam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(208,'Prasadampadu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(209,'Prasantinilayam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(210,'Proddatur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(211,'Pulivendla',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(212,'Punganuru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(213,'Puttur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(214,'Qutubullapur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(215,'Rajahmundry',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(216,'Rajamahendri',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(217,'Rajampet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(218,'Rajendranagar',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(219,'Rajoli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(220,'Ramachandrapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(221,'Ramanayyapeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(222,'Ramapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(223,'Ramarajupalli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(224,'Ramavarappadu',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(225,'Rameswaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(226,'Rampachodavaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(227,'Ravulapalam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(228,'Rayachoti',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(229,'Rayadrug',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(230,'Razam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(231,'Razole',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(232,'Renigunta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(233,'Repalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(234,'Rishikonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(235,'Salur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(236,'Samalkot',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(237,'Sattenapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(238,'Seetharampuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(239,'Serilungampalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(240,'Shankarampet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(241,'Shar',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(242,'Singarayakonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(243,'Sirpur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(244,'Sirsilla',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(245,'Sompeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(246,'Sriharikota',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(247,'Srikakulam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(248,'Srikalahasti',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(249,'Sriramnagar',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(250,'Sriramsagar',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(251,'Srisailam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(252,'Srisailamgudem Devasthanam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(253,'Sulurpeta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(254,'Suriapet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(255,'Suryaraopet',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(256,'Tadepalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(257,'Tadepalligudem',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(258,'Tadpatri',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(259,'Tallapalle',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(260,'Tanuku',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(261,'Tekkali',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(262,'Tenali',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(263,'Tigalapahad',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(264,'Tiruchanur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(265,'Tirumala',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(266,'Tirupati',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(267,'Tirvuru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(268,'Trimulgherry',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(269,'Tuni',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(270,'Turangi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(271,'Ukkayapalli',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(272,'Ukkunagaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(273,'Uppal Kalan',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(274,'Upper Sileru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(275,'Uravakonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(276,'Vadlapudi',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(277,'Vaparala',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(278,'Vemalwada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(279,'Venkatagiri',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(280,'Venkatapuram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(281,'Vepagunta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(282,'Vetapalem',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(283,'Vijayapuri',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(284,'Vijayapuri South',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(285,'Vijayawada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(286,'Vinukonda',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(287,'Visakhapatnam',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(288,'Vizianagaram',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(289,'Vuyyuru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(290,'Wanparti',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(291,'West Godavari Dist.',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(292,'Yadagirigutta',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(293,'Yarada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(294,'Yellamanchili',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(295,'Yemmiganur',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(296,'Yenamalakudru',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(297,'Yendada',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(298,'Yerraguntla',2,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(299,'Along',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(300,'Basar',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(301,'Bondila',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(302,'Changlang',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(303,'Daporijo',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(304,'Deomali',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(305,'Itanagar',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(306,'Jairampur',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(307,'Khonsa',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(308,'Naharlagun',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(309,'Namsai',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(310,'Pasighat',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(311,'Roing',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(312,'Seppa',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(313,'Tawang',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(314,'Tezu',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(315,'Ziro',3,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(316,'Abhayapuri',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(317,'Ambikapur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(318,'Amguri',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(319,'Anand Nagar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(320,'Badarpur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(321,'Badarpur Railway Town',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(322,'Bahbari Gaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(323,'Bamun Sualkuchi',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(324,'Barbari',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(325,'Barpathar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(326,'Barpeta',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(327,'Barpeta Road',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(328,'Basugaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(329,'Bihpuria',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(330,'Bijni',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(331,'Bilasipara',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(332,'Biswanath Chariali',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(333,'Bohori',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(334,'Bokajan',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(335,'Bokokhat',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(336,'Bongaigaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(337,'Bongaigaon Petro-chemical Town',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(338,'Borgolai',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(339,'Chabua',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(340,'Chandrapur Bagicha',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(341,'Chapar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(342,'Chekonidhara',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(343,'Choto Haibor',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(344,'Dergaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(345,'Dharapur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(346,'Dhekiajuli',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(347,'Dhemaji',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(348,'Dhing',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(349,'Dhubri',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(350,'Dhuburi',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(351,'Dibrugarh',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(352,'Digboi',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(353,'Digboi Oil Town',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(354,'Dimaruguri',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(355,'Diphu',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(356,'Dispur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(357,'Doboka',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(358,'Dokmoka',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(359,'Donkamokan',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(360,'Duliagaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(361,'Duliajan',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(362,'Duliajan No.1',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(363,'Dum Duma',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(364,'Durga Nagar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(365,'Gauripur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(366,'Goalpara',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(367,'Gohpur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(368,'Golaghat',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(369,'Golakganj',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(370,'Gossaigaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(371,'Guwahati',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(372,'Haflong',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(373,'Hailakandi',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(374,'Hamren',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(375,'Hauli',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(376,'Hauraghat',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(377,'Hojai',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(378,'Jagiroad',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(379,'Jagiroad Paper Mill',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(380,'Jogighopa',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(381,'Jonai Bazar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(382,'Jorhat',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(383,'Kampur Town',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(384,'Kamrup',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(385,'Kanakpur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(386,'Karimganj',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(387,'Kharijapikon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(388,'Kharupetia',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(389,'Kochpara',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(390,'Kokrajhar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(391,'Kumar Kaibarta Gaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(392,'Lakhimpur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(393,'Lakhipur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(394,'Lala',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(395,'Lanka',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(396,'Lido Tikok',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(397,'Lido Town',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(398,'Lumding',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(399,'Lumding Railway Colony',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(400,'Mahur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(401,'Maibong',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(402,'Majgaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(403,'Makum',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(404,'Mangaldai',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(405,'Mankachar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(406,'Margherita',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(407,'Mariani',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(408,'Marigaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(409,'Moran',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(410,'Moranhat',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(411,'Nagaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(412,'Naharkatia',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(413,'Nalbari',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(414,'Namrup',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(415,'Naubaisa Gaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(416,'Nazira',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(417,'New Bongaigaon Railway Colony',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(418,'Niz-Hajo',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(419,'North Guwahati',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(420,'Numaligarh',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(421,'Palasbari',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(422,'Panchgram',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(423,'Pathsala',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(424,'Raha',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(425,'Rangapara',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(426,'Rangia',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(427,'Salakati',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(428,'Sapatgram',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(429,'Sarthebari',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(430,'Sarupathar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(431,'Sarupathar Bengali',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(432,'Senchoagaon',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(433,'Sibsagar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(434,'Silapathar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(435,'Silchar',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(436,'Silchar Part-X',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(437,'Sonari',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(438,'Sorbhog',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(439,'Sualkuchi',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(440,'Tangla',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(441,'Tezpur',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(442,'Tihu',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(443,'Tinsukia',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(444,'Titabor',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(445,'Udalguri',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(446,'Umrangso',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(447,'Uttar Krishnapur Part-I',4,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(448,'Amarpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(449,'Ara',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(450,'Araria',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(451,'Areraj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(452,'Asarganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(453,'Aurangabad',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(454,'Bagaha',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(455,'Bahadurganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(456,'Bairgania',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(457,'Bakhtiyarpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(458,'Banka',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(459,'Banmankhi',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(460,'Bar Bigha',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(461,'Barauli',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(462,'Barauni Oil Township',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(463,'Barh',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(464,'Barhiya',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(465,'Bariapur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(466,'Baruni',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(467,'Begusarai',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(468,'Behea',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(469,'Belsand',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(470,'Bettiah',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(471,'Bhabua',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(472,'Bhagalpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(473,'Bhimnagar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(474,'Bhojpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(475,'Bihar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(476,'Bihar Sharif',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(477,'Bihariganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(478,'Bikramganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(479,'Birpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(480,'Bodh Gaya',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(481,'Buxar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(482,'Chakia',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(483,'Chanpatia',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(484,'Chhapra',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(485,'Chhatapur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(486,'Colgong',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(487,'Dalsingh Sarai',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(488,'Darbhanga',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(489,'Daudnagar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(490,'Dehri',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(491,'Dhaka',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(492,'Dighwara',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(493,'Dinapur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(494,'Dinapur Cantonment',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(495,'Dumra',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(496,'Dumraon',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(497,'Fatwa',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(498,'Forbesganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(499,'Gaya',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(500,'Gazipur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(501,'Ghoghardiha',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(502,'Gogri Jamalpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(503,'Gopalganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(504,'Habibpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(505,'Hajipur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(506,'Hasanpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(507,'Hazaribagh',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(508,'Hilsa',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(509,'Hisua',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(510,'Islampur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(511,'Jagdispur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(512,'Jahanabad',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(513,'Jamalpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(514,'Jamhaur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(515,'Jamui',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(516,'Janakpur Road',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(517,'Janpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(518,'Jaynagar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(519,'Jha Jha',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(520,'Jhanjharpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(521,'Jogbani',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(522,'Kanti',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(523,'Kasba',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(524,'Kataiya',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(525,'Katihar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(526,'Khagaria',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(527,'Khagaul',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(528,'Kharagpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(529,'Khusrupur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(530,'Kishanganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(531,'Koath',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(532,'Koilwar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(533,'Lakhisarai',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(534,'Lalganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(535,'Lauthaha',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(536,'Madhepura',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(537,'Madhubani',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(538,'Maharajganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(539,'Mahnar Bazar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(540,'Mairwa',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(541,'Makhdumpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(542,'Maner',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(543,'Manihari',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(544,'Marhaura',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(545,'Masaurhi',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(546,'Mirganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(547,'Mohiuddinagar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(548,'Mokama',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(549,'Motihari',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(550,'Motipur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(551,'Munger',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(552,'Murliganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(553,'Muzaffarpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(554,'Nabinagar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(555,'Narkatiaganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(556,'Nasriganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(557,'Natwar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(558,'Naugachhia',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(559,'Nawada',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(560,'Nirmali',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(561,'Nokha',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(562,'Paharpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(563,'Patna',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(564,'Phulwari',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(565,'Piro',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(566,'Purnia',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(567,'Pusa',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(568,'Rafiganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(569,'Raghunathpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(570,'Rajgir',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(571,'Ramnagar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(572,'Raxaul',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(573,'Revelganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(574,'Rusera',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(575,'Sagauli',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(576,'Saharsa',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(577,'Samastipur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(578,'Sasaram',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(579,'Shahpur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(580,'Shaikhpura',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(581,'Sherghati',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(582,'Shivhar',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(583,'Silao',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(584,'Sitamarhi',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(585,'Siwan',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(586,'Sonepur',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(587,'Sultanganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(588,'Supaul',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(589,'Teghra',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(590,'Tekari',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(591,'Thakurganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(592,'Vaishali',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(593,'Waris Aliganj',5,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(594,'Chandigarh',6,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(595,'Ahiwara',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(596,'Akaltara',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(597,'Ambagarh Chauki',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(598,'Ambikapur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(599,'Arang',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(600,'Bade Bacheli',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(601,'Bagbahara',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(602,'Baikunthpur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(603,'Balod',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(604,'Baloda',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(605,'Baloda Bazar',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(606,'Banarsi',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(607,'Basna',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(608,'Bemetra',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(609,'Bhanpuri',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(610,'Bhatapara',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(611,'Bhatgaon',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(612,'Bhilai',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(613,'Bilaspur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(614,'Bilha',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(615,'Birgaon',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(616,'Bodri',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(617,'Champa',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(618,'Charcha',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(619,'Charoda',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(620,'Chhuikhadan',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(621,'Chirmiri',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(622,'Dantewada',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(623,'Deori',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(624,'Dhamdha',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(625,'Dhamtari',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(626,'Dharamjaigarh',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(627,'Dipka',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(628,'Doman Hill Colliery',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(629,'Dongargaon',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(630,'Dongragarh',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(631,'Durg',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(632,'Frezarpur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(633,'Gandai',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(634,'Gariaband',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(635,'Gaurela',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(636,'Gelhapani',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(637,'Gharghoda',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(638,'Gidam',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(639,'Gobra Nawapara',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(640,'Gogaon',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(641,'Hatkachora',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(642,'Jagdalpur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(643,'Jamui',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(644,'Jashpurnagar',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(645,'Jhagrakhand',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(646,'Kanker',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(647,'Katghora',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(648,'Kawardha',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(649,'Khairagarh',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(650,'Khamhria',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(651,'Kharod',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(652,'Kharsia',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(653,'Khonga Pani',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(654,'Kirandu',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(655,'Kirandul',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(656,'Kohka',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(657,'Kondagaon',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(658,'Korba',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(659,'Korea',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(660,'Koria Block',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(661,'Kota',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(662,'Kumhari',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(663,'Kumud Katta',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(664,'Kurasia',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(665,'Kurud',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(666,'Lingiyadih',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(667,'Lormi',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(668,'Mahasamund',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(669,'Mahendragarh',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(670,'Mehmand',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(671,'Mongra',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(672,'Mowa',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(673,'Mungeli',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(674,'Nailajanjgir',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(675,'Namna Kalan',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(676,'Naya Baradwar',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(677,'Pandariya',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(678,'Patan',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(679,'Pathalgaon',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(680,'Pendra',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(681,'Phunderdihari',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(682,'Pithora',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(683,'Raigarh',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(684,'Raipur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(685,'Rajgamar',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(686,'Rajhara',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(687,'Rajnandgaon',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(688,'Ramanuj Ganj',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(689,'Ratanpur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(690,'Sakti',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(691,'Saraipali',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(692,'Sarajpur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(693,'Sarangarh',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(694,'Shivrinarayan',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(695,'Simga',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(696,'Sirgiti',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(697,'Takhatpur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(698,'Telgaon',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(699,'Tildanewra',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(700,'Urla',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(701,'Vishrampur',7,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(702,'Amli',8,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(703,'Silvassa',8,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(704,'Daman',9,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(705,'Diu',9,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(706,'Delhi',10,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(707,'New Delhi',10,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(708,'Aldona',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(709,'Altinho',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(710,'Aquem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(711,'Arpora',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(712,'Bambolim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(713,'Bandora',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(714,'Bardez',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(715,'Benaulim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(716,'Betora',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(717,'Bicholim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(718,'Calapor',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(719,'Candolim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(720,'Caranzalem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(721,'Carapur',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(722,'Chicalim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(723,'Chimbel',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(724,'Chinchinim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(725,'Colvale',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(726,'Corlim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(727,'Cortalim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(728,'Cuncolim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(729,'Curchorem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(730,'Curti',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(731,'Davorlim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(732,'Dona Paula',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(733,'Goa',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(734,'Guirim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(735,'Jua',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(736,'Kalangat',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(737,'Kankon',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(738,'Kundaim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(739,'Loutulim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(740,'Madgaon',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(741,'Mapusa',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(742,'Margao',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(743,'Margaon',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(744,'Miramar',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(745,'Morjim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(746,'Mormugao',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(747,'Navelim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(748,'Pale',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(749,'Panaji',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(750,'Parcem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(751,'Parra',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(752,'Penha de Franca',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(753,'Pernem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(754,'Pilerne',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(755,'Pissurlem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(756,'Ponda',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(757,'Porvorim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(758,'Quepem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(759,'Queula',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(760,'Raia',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(761,'Reis Magos',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(762,'Salcette',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(763,'Saligao',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(764,'Sancoale',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(765,'Sanguem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(766,'Sanquelim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(767,'Sanvordem',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(768,'Sao Jose-de-Areal',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(769,'Sattari',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(770,'Serula',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(771,'Sinquerim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(772,'Siolim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(773,'Taleigao',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(774,'Tivim',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(775,'Valpoi',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(776,'Varca',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(777,'Vasco',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(778,'Verna',11,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(779,'Abrama',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(780,'Adalaj',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(781,'Adityana',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(782,'Advana',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(783,'Ahmedabad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(784,'Ahwa',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(785,'Alang',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(786,'Ambaji',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(787,'Ambaliyasan',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(788,'Amod',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(789,'Amreli',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(790,'Amroli',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(791,'Anand',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(792,'Andada',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(793,'Anjar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(794,'Anklav',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(795,'Ankleshwar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(796,'Anklesvar INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(797,'Antaliya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(798,'Arambhada',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(799,'Asarma',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(800,'Atul',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(801,'Babra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(802,'Bag-e-Firdosh',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(803,'Bagasara',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(804,'Bahadarpar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(805,'Bajipura',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(806,'Bajva',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(807,'Balasinor',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(808,'Banaskantha',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(809,'Bansda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(810,'Bantva',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(811,'Bardoli',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(812,'Barwala',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(813,'Bayad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(814,'Bechar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(815,'Bedi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(816,'Beyt',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(817,'Bhachau',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(818,'Bhanvad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(819,'Bharuch',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(820,'Bharuch INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(821,'Bhavnagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(822,'Bhayavadar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(823,'Bhestan',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(824,'Bhuj',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(825,'Bilimora',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(826,'Bilkha',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(827,'Billimora',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(828,'Bodakdev',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(829,'Bodeli',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(830,'Bopal',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(831,'Boria',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(832,'Boriavi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(833,'Borsad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(834,'Botad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(835,'Cambay',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(836,'Chaklasi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(837,'Chala',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(838,'Chalala',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(839,'Chalthan',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(840,'Chanasma',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(841,'Chandisar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(842,'Chandkheda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(843,'Chanod',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(844,'Chaya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(845,'Chenpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(846,'Chhapi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(847,'Chhaprabhatha',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(848,'Chhatral',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(849,'Chhota Udepur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(850,'Chikhli',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(851,'Chiloda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(852,'Chorvad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(853,'Chotila',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(854,'Dabhoi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(855,'Dadara',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(856,'Dahod',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(857,'Dakor',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(858,'Damnagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(859,'Deesa',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(860,'Delvada',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(861,'Devgadh Baria',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(862,'Devsar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(863,'Dhandhuka',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(864,'Dhanera',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(865,'Dhangdhra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(866,'Dhansura',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(867,'Dharampur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(868,'Dhari',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(869,'Dhola',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(870,'Dholka',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(871,'Dholka Rural',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(872,'Dhoraji',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(873,'Dhrangadhra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(874,'Dhrol',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(875,'Dhuva',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(876,'Dhuwaran',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(877,'Digvijaygram',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(878,'Disa',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(879,'Dungar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(880,'Dungarpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(881,'Dungra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(882,'Dwarka',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(883,'Flelanganj',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(884,'GSFC Complex',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(885,'Gadhda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(886,'Gandevi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(887,'Gandhidham',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(888,'Gandhinagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(889,'Gariadhar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(890,'Ghogha',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(891,'Godhra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(892,'Gondal',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(893,'Hajira INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(894,'Halol',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(895,'Halvad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(896,'Hansot',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(897,'Harij',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(898,'Himatnagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(899,'Ichchhapor',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(900,'Idar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(901,'Jafrabad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(902,'Jalalpore',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(903,'Jambusar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(904,'Jamjodhpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(905,'Jamnagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(906,'Jasdan',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(907,'Jawaharnagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(908,'Jetalsar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(909,'Jetpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(910,'Jodiya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(911,'Joshipura',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(912,'Junagadh',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(913,'Kadi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(914,'Kadodara',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(915,'Kalavad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(916,'Kali',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(917,'Kaliawadi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(918,'Kalol',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(919,'Kalol INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(920,'Kandla',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(921,'Kanjari',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(922,'Kanodar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(923,'Kapadwanj',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(924,'Karachiya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(925,'Karamsad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(926,'Karjan',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(927,'Kathial',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(928,'Kathor',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(929,'Katpar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(930,'Kavant',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(931,'Keshod',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(932,'Kevadiya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(933,'Khambhaliya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(934,'Khambhat',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(935,'Kharaghoda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(936,'Khed Brahma',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(937,'Kheda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(938,'Kheralu',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(939,'Kodinar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(940,'Kosamba',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(941,'Kundla',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(942,'Kutch',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(943,'Kutiyana',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(944,'Lakhtar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(945,'Lalpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(946,'Lambha',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(947,'Lathi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(948,'Limbdi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(949,'Limla',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(950,'Lunavada',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(951,'Madhapar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(952,'Maflipur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(953,'Mahemdavad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(954,'Mahudha',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(955,'Mahuva',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(956,'Mahuvar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(957,'Makarba',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(958,'Makarpura',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(959,'Makassar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(960,'Maktampur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(961,'Malia',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(962,'Malpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(963,'Manavadar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(964,'Mandal',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(965,'Mandvi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(966,'Mangrol',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(967,'Mansa',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(968,'Meghraj',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(969,'Mehsana',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(970,'Mendarla',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(971,'Mithapur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(972,'Modasa',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(973,'Mogravadi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(974,'Morbi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(975,'Morvi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(976,'Mundra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(977,'Nadiad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(978,'Naliya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(979,'Nanakvada',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(980,'Nandej',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(981,'Nandesari',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(982,'Nandesari INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(983,'Naroda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(984,'Navagadh',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(985,'Navagam Ghed',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(986,'Navsari',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(987,'Ode',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(988,'Okaf',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(989,'Okha',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(990,'Olpad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(991,'Paddhari',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(992,'Padra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(993,'Palanpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(994,'Palej',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(995,'Pali',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(996,'Palitana',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(997,'Paliyad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(998,'Pandesara',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(999,'Panoli',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1000,'Pardi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1001,'Parnera',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1002,'Parvat',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1003,'Patan',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1004,'Patdi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1005,'Petlad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1006,'Petrochemical Complex',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1007,'Porbandar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1008,'Prantij',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1009,'Radhanpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1010,'Raiya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1011,'Rajkot',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1012,'Rajpipla',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1013,'Rajula',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1014,'Ramod',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1015,'Ranavav',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1016,'Ranoli',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1017,'Rapar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1018,'Sahij',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1019,'Salaya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1020,'Sanand',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1021,'Sankheda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1022,'Santrampur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1023,'Saribujrang',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1024,'Sarigam INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1025,'Sayan',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1026,'Sayla',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1027,'Shahpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1028,'Shahwadi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1029,'Shapar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1030,'Shivrajpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1031,'Siddhapur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1032,'Sidhpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1033,'Sihor',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1034,'Sika',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1035,'Singarva',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1036,'Sinor',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1037,'Sojitra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1038,'Sola',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1039,'Songadh',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1040,'Suraj Karadi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1041,'Surat',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1042,'Surendranagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1043,'Talaja',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1044,'Talala',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1045,'Talod',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1046,'Tankara',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1047,'Tarsali',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1048,'Thangadh',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1049,'Tharad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1050,'Thasra',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1051,'Udyognagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1052,'Ukai',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1053,'Umbergaon',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1054,'Umbergaon INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1055,'Umrala',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1056,'Umreth',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1057,'Un',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1058,'Una',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1059,'Unjha',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1060,'Upleta',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1061,'Utran',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1062,'Uttarsanda',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1063,'V.U. Nagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1064,'V.V. Nagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1065,'Vadia',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1066,'Vadla',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1067,'Vadnagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1068,'Vadodara',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1069,'Vaghodia INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1070,'Valbhipur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1071,'Vallabh Vidyanagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1072,'Valsad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1073,'Valsad INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1074,'Vanthali',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1075,'Vapi',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1076,'Vapi INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1077,'Vartej',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1078,'Vasad',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1079,'Vasna Borsad INA',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1080,'Vaso',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1081,'Veraval',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1082,'Vidyanagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1083,'Vijalpor',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1084,'Vijapur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1085,'Vinchhiya',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1086,'Vinzol',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1087,'Virpur',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1088,'Visavadar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1089,'Visnagar',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1090,'Vyara',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1091,'Wadhwan',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1092,'Waghai',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1093,'Waghodia',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1094,'Wankaner',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1095,'Zalod',12,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1096,'Ambala',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1097,'Ambala Cantt',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1098,'Asan Khurd',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1099,'Asandh',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1100,'Ateli',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1101,'Babiyal',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1102,'Bahadurgarh',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1103,'Ballabgarh',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1104,'Barwala',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1105,'Bawal',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1106,'Bawani Khera',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1107,'Beri',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1108,'Bhiwani',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1109,'Bilaspur',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1110,'Buria',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1111,'Charkhi Dadri',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1112,'Chhachhrauli',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1113,'Chita',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1114,'Dabwali',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1115,'Dharuhera',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1116,'Dundahera',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1117,'Ellenabad',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1118,'Farakhpur',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1119,'Faridabad',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1120,'Farrukhnagar',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1121,'Fatehabad',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1122,'Firozpur Jhirka',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1123,'Gannaur',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1124,'Ghraunda',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1125,'Gohana',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1126,'Gurgaon',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1127,'Haileymandi',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1128,'Hansi',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1129,'Hasanpur',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1130,'Hathin',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1131,'Hisar',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1132,'Hissar',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1133,'Hodal',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1134,'Indri',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1135,'Jagadhri',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1136,'Jakhal Mandi',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1137,'Jhajjar',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1138,'Jind',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1139,'Julana',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1140,'Kaithal',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1141,'Kalanur',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1142,'Kalanwali',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1143,'Kalayat',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1144,'Kalka',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1145,'Kanina',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1146,'Kansepur',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1147,'Kardhan',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1148,'Karnal',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1149,'Kharkhoda',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1150,'Kheri Sampla',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1151,'Kundli',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1152,'Kurukshetra',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1153,'Ladrawan',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1154,'Ladwa',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1155,'Loharu',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1156,'Maham',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1157,'Mahendragarh',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1158,'Mustafabad',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1159,'Nagai Chaudhry',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1160,'Narayangarh',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1161,'Narnaul',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1162,'Narnaund',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1163,'Narwana',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1164,'Nilokheri',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1165,'Nuh',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1166,'Palwal',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1167,'Panchkula',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1168,'Panipat',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1169,'Panipat Taraf Ansar',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1170,'Panipat Taraf Makhdum Zadgan',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1171,'Panipat Taraf Rajputan',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1172,'Pehowa',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1173,'Pinjaur',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1174,'Punahana',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1175,'Pundri',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1176,'Radaur',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1177,'Raipur Rani',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1178,'Rania',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1179,'Ratiya',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1180,'Rewari',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1181,'Rohtak',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1182,'Ropar',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1183,'Sadauri',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1184,'Safidon',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1185,'Samalkha',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1186,'Sankhol',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1187,'Sasauli',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1188,'Shahabad',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1189,'Sirsa',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1190,'Siwani',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1191,'Sohna',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1192,'Sonipat',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1193,'Sukhrali',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1194,'Taoru',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1195,'Taraori',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1196,'Tauru',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1197,'Thanesar',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1198,'Tilpat',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1199,'Tohana',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1200,'Tosham',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1201,'Uchana',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1202,'Uklana Mandi',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1203,'Uncha Siwana',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1204,'Yamunanagar',13,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1205,'Arki',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1206,'Baddi',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1207,'Bakloh',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1208,'Banjar',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1209,'Bhota',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1210,'Bhuntar',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1211,'Bilaspur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1212,'Chamba',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1213,'Chaupal',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1214,'Chuari Khas',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1215,'Dagshai',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1216,'Dalhousie',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1217,'Dalhousie Cantonment',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1218,'Damtal',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1219,'Daulatpur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1220,'Dera Gopipur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1221,'Dhalli',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1222,'Dharamshala',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1223,'Gagret',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1224,'Ghamarwin',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1225,'Hamirpur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1226,'Jawala Mukhi',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1227,'Jogindarnagar',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1228,'Jubbal',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1229,'Jutogh',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1230,'Kala Amb',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1231,'Kalpa',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1232,'Kangra',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1233,'Kasauli',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1234,'Kot Khai',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1235,'Kullu',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1236,'Kulu',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1237,'Manali',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1238,'Mandi',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1239,'Mant Khas',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1240,'Mehatpur Basdehra',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1241,'Nadaun',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1242,'Nagrota',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1243,'Nahan',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1244,'Naina Devi',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1245,'Nalagarh',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1246,'Narkanda',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1247,'Nurpur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1248,'Palampur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1249,'Pandoh',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1250,'Paonta Sahib',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1251,'Parwanoo',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1252,'Parwanu',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1253,'Rajgarh',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1254,'Rampur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1255,'Rawalsar',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1256,'Rohru',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1257,'Sabathu',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1258,'Santokhgarh',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1259,'Sarahan',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1260,'Sarka Ghat',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1261,'Seoni',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1262,'Shimla',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1263,'Sirmaur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1264,'Solan',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1265,'Solon',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1266,'Sundarnagar',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1267,'Sundernagar',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1268,'Talai',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1269,'Theog',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1270,'Tira Sujanpur',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1271,'Una',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1272,'Yol',14,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1273,'Achabal',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1274,'Akhnur',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1275,'Anantnag',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1276,'Arnia',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1277,'Awantipora',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1278,'Badami Bagh',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1279,'Bandipur',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1280,'Banihal',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1281,'Baramula',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1282,'Baramulla',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1283,'Bari Brahmana',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1284,'Bashohli',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1285,'Batote',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1286,'Bhaderwah',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1287,'Bijbiara',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1288,'Billawar',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1289,'Birwah',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1290,'Bishna',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1291,'Budgam',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1292,'Charari Sharief',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1293,'Chenani',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1294,'Doda',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1295,'Duru-Verinag',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1296,'Gandarbat',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1297,'Gho Manhasan',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1298,'Gorah Salathian',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1299,'Gulmarg',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1300,'Hajan',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1301,'Handwara',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1302,'Hiranagar',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1303,'Jammu',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1304,'Jammu Cantonment',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1305,'Jammu Tawi',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1306,'Jourian',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1307,'Kargil',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1308,'Kathua',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1309,'Katra',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1310,'Khan Sahib',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1311,'Khour',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1312,'Khrew',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1313,'Kishtwar',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1314,'Kud',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1315,'Kukernag',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1316,'Kulgam',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1317,'Kunzer',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1318,'Kupwara',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1319,'Lakhenpur',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1320,'Leh',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1321,'Magam',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1322,'Mattan',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1323,'Naushehra',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1324,'Pahalgam',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1325,'Pampore',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1326,'Parole',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1327,'Pattan',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1328,'Pulwama',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1329,'Punch',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1330,'Qazigund',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1331,'Rajauri',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1332,'Ramban',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1333,'Ramgarh',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1334,'Ramnagar',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1335,'Ranbirsingh Pora',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1336,'Reasi',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1337,'Rehambal',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1338,'Samba',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1339,'Shupiyan',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1340,'Sopur',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1341,'Srinagar',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1342,'Sumbal',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1343,'Sunderbani',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1344,'Talwara',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1345,'Thanamandi',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1346,'Tral',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1347,'Udhampur',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1348,'Uri',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1349,'Vijaypur',15,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1350,'Adityapur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1351,'Amlabad',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1352,'Angarpathar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1353,'Ara',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1354,'Babua Kalan',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1355,'Bagbahra',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1356,'Baliapur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1357,'Baliari',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1358,'Balkundra',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1359,'Bandhgora',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1360,'Barajamda',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1361,'Barhi',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1362,'Barka Kana',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1363,'Barki Saraiya',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1364,'Barughutu',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1365,'Barwadih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1366,'Basaria',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1367,'Basukinath',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1368,'Bermo',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1369,'Bhagatdih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1370,'Bhaurah',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1371,'Bhojudih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1372,'Bhuli',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1373,'Bokaro',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1374,'Borio Bazar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1375,'Bundu',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1376,'Chaibasa',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1377,'Chaitudih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1378,'Chakradharpur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1379,'Chakulia',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1380,'Chandaur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1381,'Chandil',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1382,'Chandrapura',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1383,'Chas',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1384,'Chatra',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1385,'Chhatatanr',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1386,'Chhotaputki',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1387,'Chiria',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1388,'Chirkunda',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1389,'Churi',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1390,'Daltenganj',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1391,'Danguwapasi',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1392,'Dari',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1393,'Deoghar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1394,'Deorikalan',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1395,'Devghar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1396,'Dhanbad',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1397,'Dhanwar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1398,'Dhaunsar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1399,'Dugda',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1400,'Dumarkunda',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1401,'Dumka',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1402,'Egarkunr',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1403,'Gadhra',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1404,'Garwa',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1405,'Ghatsila',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1406,'Ghorabandha',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1407,'Gidi',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1408,'Giridih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1409,'Gobindpur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1410,'Godda',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1411,'Godhar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1412,'Golphalbari',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1413,'Gomoh',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1414,'Gua',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1415,'Gumia',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1416,'Gumla',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1417,'Haludbani',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1418,'Hazaribag',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1419,'Hesla',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1420,'Husainabad',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1421,'Isri',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1422,'Jadugora',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1423,'Jagannathpur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1424,'Jamadoba',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1425,'Jamshedpur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1426,'Jamtara',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1427,'Jarangdih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1428,'Jaridih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1429,'Jasidih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1430,'Jena',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1431,'Jharia',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1432,'Jharia Khas',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1433,'Jhinkpani',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1434,'Jhumri Tilaiya',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1435,'Jorapokhar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1436,'Jugsalai',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1437,'Kailudih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1438,'Kalikapur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1439,'Kandra',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1440,'Kanke',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1441,'Katras',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1442,'Kedla',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1443,'Kenduadih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1444,'Kharkhari',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1445,'Kharsawan',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1446,'Khelari',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1447,'Khunti',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1448,'Kiri Buru',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1449,'Kiriburu',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1450,'Kodarma',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1451,'Kuju',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1452,'Kurpania',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1453,'Kustai',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1454,'Lakarka',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1455,'Lapanga',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1456,'Latehar',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1457,'Lohardaga',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1458,'Loiya',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1459,'Loyabad',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1460,'Madhupur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1461,'Mahesh Mundi',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1462,'Maithon',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1463,'Malkera',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1464,'Mango',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1465,'Manoharpur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1466,'Marma',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1467,'Meghahatuburu Forest village',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1468,'Mera',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1469,'Meru',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1470,'Mihijam',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1471,'Mugma',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1472,'Muri',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1473,'Mushabani',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1474,'Nagri Kalan',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1475,'Netarhat',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1476,'Nirsa',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1477,'Noamundi',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1478,'Okni',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1479,'Orla',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1480,'Pakaur',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1481,'Palamau',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1482,'Palawa',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1483,'Panchet',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1484,'Panrra',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1485,'Paratdih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1486,'Pathardih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1487,'Patratu',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1488,'Phusro',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1489,'Pondar Kanali',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1490,'Rajmahal',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1491,'Ramgarh',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1492,'Ranchi',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1493,'Ray',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1494,'Rehla',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1495,'Religara',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1496,'Rohraband',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1497,'Sahibganj',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1498,'Sahnidih',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1499,'Saraidhela',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1500,'Saraikela',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1501,'Sarjamda',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1502,'Saunda',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1503,'Sewai',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1504,'Sijhua',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1505,'Sijua',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1506,'Simdega',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1507,'Sindari',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1508,'Sinduria',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1509,'Sini',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1510,'Sirka',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1511,'Siuliban',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1512,'Surubera',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1513,'Tati',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1514,'Tenudam',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1515,'Tisra',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1516,'Topa',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1517,'Topchanchi',16,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1518,'Adityanagar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1519,'Adityapatna',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1520,'Afzalpur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1521,'Ajjampur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1522,'Aland',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1523,'Almatti Sitimani',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1524,'Alnavar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1525,'Alur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1526,'Ambikanagara',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1527,'Anekal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1528,'Ankola',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1529,'Annigeri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1530,'Arkalgud',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1531,'Arsikere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1532,'Athni',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1533,'Aurad',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1534,'Badagavettu',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1535,'Badami',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1536,'Bagalkot',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1537,'Bagepalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1538,'Bailhongal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1539,'Baindur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1540,'Bajala',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1541,'Bajpe',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1542,'Banavar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1543,'Bangarapet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1544,'Bankapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1545,'Bannur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1546,'Bantwal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1547,'Basavakalyan',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1548,'Basavana Bagevadi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1549,'Belagula',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1550,'Belakavadiq',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1551,'Belgaum',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1552,'Belgaum Cantonment',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1553,'Bellary',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1554,'Belluru',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1555,'Beltangadi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1556,'Belur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1557,'Belvata',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1558,'Bengaluru',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1559,'Bhadravati',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1560,'Bhalki',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1561,'Bhatkal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1562,'Bhimarayanagudi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1563,'Bhogadi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1564,'Bidar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1565,'Bijapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1566,'Bilgi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1567,'Birur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1568,'Bommanahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1569,'Bommasandra',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1570,'Byadgi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1571,'Byatarayanapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1572,'Chakranagar Colony',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1573,'Challakere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1574,'Chamrajnagar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1575,'Chamundi Betta',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1576,'Channagiri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1577,'Channapatna',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1578,'Channarayapatna',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1579,'Chickballapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1580,'Chik Ballapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1581,'Chikkaballapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1582,'Chikmagalur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1583,'Chiknayakanhalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1584,'Chikodi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1585,'Chincholi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1586,'Chintamani',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1587,'Chitaguppa',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1588,'Chitapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1589,'Chitradurga',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1590,'Coorg',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1591,'Dandeli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1592,'Dargajogihalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1593,'Dasarahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1594,'Davangere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1595,'Devadurga',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1596,'Devagiri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1597,'Devanhalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1598,'Dharwar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1599,'Dhupdal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1600,'Dod Ballapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1601,'Donimalai',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1602,'Gadag',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1603,'Gajendragarh',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1604,'Ganeshgudi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1605,'Gangawati',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1606,'Gangoli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1607,'Gauribidanur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1608,'Gokak',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1609,'Gokak Falls',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1610,'Gonikoppal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1611,'Gorur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1612,'Gottikere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1613,'Gubbi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1614,'Gudibanda',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1615,'Gulbarga',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1616,'Guledgudda',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1617,'Gundlupet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1618,'Gurmatkal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1619,'Haliyal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1620,'Hangal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1621,'Harihar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1622,'Harpanahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1623,'Hassan',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1624,'Hatti',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1625,'Hatti Gold Mines',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1626,'Haveri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1627,'Hebbagodi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1628,'Hebbalu',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1629,'Hebri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1630,'Heggadadevanakote',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1631,'Herohalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1632,'Hidkal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1633,'Hindalgi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1634,'Hirekerur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1635,'Hiriyur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1636,'Holalkere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1637,'Hole Narsipur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1638,'Homnabad',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1639,'Honavar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1640,'Honnali',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1641,'Hosakote',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1642,'Hosanagara',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1643,'Hosangadi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1644,'Hosdurga',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1645,'Hoskote',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1646,'Hospet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1647,'Hubli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1648,'Hukeri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1649,'Hunasagi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1650,'Hunasamaranahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1651,'Hungund',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1652,'Hunsur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1653,'Huvina Hadagalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1654,'Ilkal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1655,'Indi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1656,'Jagalur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1657,'Jamkhandi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1658,'Jevargi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1659,'Jog Falls',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1660,'Kabini Colony',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1661,'Kadur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1662,'Kalghatgi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1663,'Kamalapuram',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1664,'Kampli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1665,'Kanakapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1666,'Kangrali BK',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1667,'Kangrali KH',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1668,'Kannur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1669,'Karkala',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1670,'Karwar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1671,'Kemminja',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1672,'Kengeri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1673,'Kerur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1674,'Khanapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1675,'Kodigenahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1676,'Kodiyal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1677,'Kodlipet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1678,'Kolar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1679,'Kollegal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1680,'Konanakunte',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1681,'Konanur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1682,'Konnur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1683,'Koppa',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1684,'Koppal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1685,'Koratagere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1686,'Kotekara',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1687,'Kothnur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1688,'Kotturu',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1689,'Krishnapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1690,'Krishnarajanagar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1691,'Krishnarajapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1692,'Krishnarajasagara',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1693,'Krishnarajpet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1694,'Kudchi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1695,'Kudligi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1696,'Kudremukh',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1697,'Kumsi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1698,'Kumta',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1699,'Kundapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1700,'Kundgol',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1701,'Kunigal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1702,'Kurgunta',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1703,'Kushalnagar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1704,'Kushtagi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1705,'Kyathanahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1706,'Lakshmeshwar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1707,'Lingsugur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1708,'Londa',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1709,'Maddur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1710,'Madhugiri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1711,'Madikeri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1712,'Magadi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1713,'Magod Falls',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1714,'Mahadeswara Hills',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1715,'Mahadevapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1716,'Mahalingpur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1717,'Maisuru',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1718,'Maisuru Cantonment',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1719,'Malavalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1720,'Mallar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1721,'Malpe',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1722,'Malur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1723,'Manchenahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1724,'Mandya',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1725,'Mangalore',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1726,'Mangaluru',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1727,'Manipal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1728,'Manvi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1729,'Maski',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1730,'Mastikatte Colony',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1731,'Mayakonda',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1732,'Melukote',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1733,'Molakalmuru',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1734,'Mudalgi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1735,'Mudbidri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1736,'Muddebihal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1737,'Mudgal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1738,'Mudhol',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1739,'Mudigere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1740,'Mudushedde',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1741,'Mulbagal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1742,'Mulgund',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1743,'Mulki',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1744,'Mulur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1745,'Mundargi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1746,'Mundgod',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1747,'Munirabad',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1748,'Munnur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1749,'Murudeshwara',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1750,'Mysore',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1751,'Nagamangala',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1752,'Nanjangud',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1753,'Naragund',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1754,'Narasimharajapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1755,'Naravi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1756,'Narayanpur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1757,'Naregal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1758,'Navalgund',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1759,'Nelmangala',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1760,'Nipani',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1761,'Nitte',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1762,'Nyamati',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1763,'Padu',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1764,'Pandavapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1765,'Pattanagere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1766,'Pavagada',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1767,'Piriyapatna',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1768,'Ponnampet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1769,'Puttur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1770,'Rabkavi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1771,'Raichur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1772,'Ramanagaram',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1773,'Ramdurg',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1774,'Ranibennur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1775,'Raybag',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1776,'Robertsonpet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1777,'Ron',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1778,'Sadalgi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1779,'Sagar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1780,'Sakleshpur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1781,'Saligram',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1782,'Sandur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1783,'Sanivarsante',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1784,'Sankeshwar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1785,'Sargur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1786,'Sathyamangala',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1787,'Saundatti Yellamma',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1788,'Savanur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1789,'Sedam',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1790,'Shahabad',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1791,'Shahabad A.C.C.',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1792,'Shahapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1793,'Shahpur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1794,'Shaktinagar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1795,'Shiggaon',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1796,'Shikarpur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1797,'Shimoga',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1798,'Shirhatti',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1799,'Shorapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1800,'Shravanabelagola',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1801,'Shrirangapattana',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1802,'Siddapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1803,'Sidlaghatta',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1804,'Sindgi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1805,'Sindhnur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1806,'Sira',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1807,'Sirakoppa',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1808,'Sirsi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1809,'Siruguppa',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1810,'Someshwar',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1811,'Somvarpet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1812,'Sorab',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1813,'Sringeri',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1814,'Srinivaspur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1815,'Sulya',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1816,'Suntikopa',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1817,'Talikota',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1818,'Tarikera',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1819,'Tekkalakota',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1820,'Terdal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1821,'Thokur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1822,'Thumbe',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1823,'Tiptur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1824,'Tirthahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1825,'Tirumakudal Narsipur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1826,'Tonse',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1827,'Tumkur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1828,'Turuvekere',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1829,'Udupi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1830,'Ullal',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1831,'Uttarahalli',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1832,'Venkatapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1833,'Vijayapura',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1834,'Virarajendrapet',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1835,'Wadi',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1836,'Wadi A.C.C.',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1837,'Yadgir',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1838,'Yelahanka',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1839,'Yelandur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1840,'Yelbarga',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1841,'Yellapur',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1842,'Yenagudde',17,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1843,'Adimaly',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1844,'Adoor',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1845,'Adur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1846,'Akathiyur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1847,'Alangad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1848,'Alappuzha',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1849,'Aluva',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1850,'Ancharakandy',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1851,'Angamaly',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1852,'Aroor',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1853,'Arukutti',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1854,'Attingal',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1855,'Avinissery',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1856,'Azhikode North',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1857,'Azhikode South',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1858,'Azhiyur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1859,'Balussery',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1860,'Bangramanjeshwar',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1861,'Beypur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1862,'Brahmakulam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1863,'Chala',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1864,'Chalakudi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1865,'Changanacheri',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1866,'Chauwara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1867,'Chavakkad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1868,'Chelakkara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1869,'Chelora',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1870,'Chendamangalam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1871,'Chengamanad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1872,'Chengannur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1873,'Cheranallur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1874,'Cheriyakadavu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1875,'Cherthala',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1876,'Cherukunnu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1877,'Cheruthazham',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1878,'Cheruvannur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1879,'Cheruvattur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1880,'Chevvur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1881,'Chirakkal',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1882,'Chittur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1883,'Chockli',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1884,'Churnikkara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1885,'Dharmadam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1886,'Edappal',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1887,'Edathala',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1888,'Elayavur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1889,'Elur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1890,'Eranholi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1891,'Erattupetta',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1892,'Ernakulam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1893,'Eruvatti',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1894,'Ettumanoor',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1895,'Feroke',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1896,'Guruvayur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1897,'Haripad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1898,'Hosabettu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1899,'Idukki',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1900,'Iringaprom',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1901,'Irinjalakuda',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1902,'Iriveri',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1903,'Kadachira',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1904,'Kadalundi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1905,'Kadamakkudy',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1906,'Kadirur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1907,'Kadungallur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1908,'Kakkodi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1909,'Kalady',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1910,'Kalamassery',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1911,'Kalliasseri',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1912,'Kalpetta',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1913,'Kanhangad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1914,'Kanhirode',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1915,'Kanjikkuzhi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1916,'Kanjikode',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1917,'Kanjirappalli',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1918,'Kannadiparamba',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1919,'Kannangad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1920,'Kannapuram',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1921,'Kannur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1922,'Kannur Cantonment',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1923,'Karunagappally',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1924,'Karuvamyhuruthy',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1925,'Kasaragod',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1926,'Kasargod',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1927,'Kattappana',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1928,'Kayamkulam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1929,'Kedamangalam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1930,'Kochi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1931,'Kodamthuruthu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1932,'Kodungallur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1933,'Koduvally',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1934,'Koduvayur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1935,'Kokkothamangalam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1936,'Kolazhy',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1937,'Kollam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1938,'Komalapuram',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1939,'Koothattukulam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1940,'Koratty',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1941,'Kothamangalam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1942,'Kottarakkara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1943,'Kottayam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1944,'Kottayam Malabar',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1945,'Kottuvally',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1946,'Koyilandi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1947,'Kozhikode',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1948,'Kudappanakunnu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1949,'Kudlu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1950,'Kumarakom',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1951,'Kumily',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1952,'Kunnamangalam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1953,'Kunnamkulam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1954,'Kurikkad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1955,'Kurkkanchery',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1956,'Kuthuparamba',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1957,'Kuttakulam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1958,'Kuttikkattur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1959,'Kuttur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1960,'Malappuram',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1961,'Mallappally',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1962,'Manjeri',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1963,'Manjeshwar',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1964,'Mannancherry',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1965,'Mannar',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1966,'Mannarakkat',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1967,'Maradu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1968,'Marathakkara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1969,'Marutharod',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1970,'Mattannur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1971,'Mavelikara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1972,'Mavilayi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1973,'Mavur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1974,'Methala',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1975,'Muhamma',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1976,'Mulavukad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1977,'Mundakayam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1978,'Munderi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1979,'Munnar',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1980,'Muthakunnam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1981,'Muvattupuzha',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1982,'Muzhappilangad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1983,'Nadapuram',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1984,'Nadathara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1985,'Narath',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1986,'Nattakam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1987,'Nedumangad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1988,'Nenmenikkara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1989,'New Mahe',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1990,'Neyyattinkara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1991,'Nileshwar',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1992,'Olavanna',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1993,'Ottapalam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1994,'Ottappalam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1995,'Paduvilayi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1996,'Palai',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1997,'Palakkad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1998,'Palayad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(1999,'Palissery',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2000,'Pallikkunnu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2001,'Paluvai',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2002,'Panniyannur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2003,'Pantalam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2004,'Panthiramkavu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2005,'Panur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2006,'Pappinisseri',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2007,'Parassala',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2008,'Paravur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2009,'Pathanamthitta',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2010,'Pathanapuram',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2011,'Pathiriyad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2012,'Pattambi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2013,'Pattiom',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2014,'Pavaratty',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2015,'Payyannur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2016,'Peermade',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2017,'Perakam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2018,'Peralasseri',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2019,'Peringathur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2020,'Perinthalmanna',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2021,'Perole',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2022,'Perumanna',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2023,'Perumbaikadu',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2024,'Perumbavoor',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2025,'Pinarayi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2026,'Piravam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2027,'Ponnani',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2028,'Pottore',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2029,'Pudukad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2030,'Punalur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2031,'Puranattukara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2032,'Puthunagaram',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2033,'Puthuppariyaram',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2034,'Puzhathi',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2035,'Ramanattukara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2036,'Shoranur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2037,'Sultans Battery',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2038,'Sulthan Bathery',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2039,'Talipparamba',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2040,'Thaikkad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2041,'Thalassery',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2042,'Thannirmukkam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2043,'Theyyalingal',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2044,'Thiruvalla',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2045,'Thiruvananthapuram',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2046,'Thiruvankulam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2047,'Thodupuzha',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2048,'Thottada',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2049,'Thrippunithura',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2050,'Thrissur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2051,'Tirur',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2052,'Udma',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2053,'Vadakara',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2054,'Vaikam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2055,'Valapattam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2056,'Vallachira',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2057,'Varam',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2058,'Varappuzha',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2059,'Varkala',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2060,'Vayalar',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2061,'Vazhakkala',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2062,'Venmanad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2063,'Villiappally',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2064,'Wayanad',19,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2065,'Agethi',20,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2066,'Amini',20,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2067,'Androth Island',20,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2068,'Kavaratti',20,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2069,'Minicoy',20,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2070,'Agar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2071,'Ajaigarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2072,'Akoda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2073,'Akodia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2074,'Alampur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2075,'Alirajpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2076,'Alot',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2077,'Amanganj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2078,'Amarkantak',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2079,'Amarpatan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2080,'Amarwara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2081,'Ambada',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2082,'Ambah',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2083,'Amla',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2084,'Amlai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2085,'Anjad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2086,'Antri',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2087,'Anuppur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2088,'Aron',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2089,'Ashoknagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2090,'Ashta',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2091,'Babai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2092,'Bada Malhera',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2093,'Badagaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2094,'Badagoan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2095,'Badarwas',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2096,'Badawada',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2097,'Badi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2098,'Badkuhi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2099,'Badnagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2100,'Badnawar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2101,'Badod',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2102,'Badoda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2103,'Badra',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2104,'Bagh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2105,'Bagli',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2106,'Baihar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2107,'Baikunthpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2108,'Bakswaha',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2109,'Balaghat',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2110,'Baldeogarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2111,'Bamaniya',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2112,'Bamhani',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2113,'Bamor',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2114,'Bamora',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2115,'Banda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2116,'Bangawan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2117,'Bansatar Kheda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2118,'Baraily',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2119,'Barela',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2120,'Barghat',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2121,'Bargi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2122,'Barhi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2123,'Barigarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2124,'Barwaha',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2125,'Barwani',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2126,'Basoda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2127,'Begamganj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2128,'Beohari',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2129,'Berasia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2130,'Betma',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2131,'Betul',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2132,'Betul Bazar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2133,'Bhainsdehi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2134,'Bhamodi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2135,'Bhander',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2136,'Bhanpura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2137,'Bharveli',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2138,'Bhaurasa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2139,'Bhavra',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2140,'Bhedaghat',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2141,'Bhikangaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2142,'Bhilakhedi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2143,'Bhind',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2144,'Bhitarwar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2145,'Bhopal',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2146,'Bhuibandh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2147,'Biaora',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2148,'Bijawar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2149,'Bijeypur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2150,'Bijrauni',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2151,'Bijuri',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2152,'Bilaua',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2153,'Bilpura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2154,'Bina Railway Colony',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2155,'Bina-Etawa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2156,'Birsinghpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2157,'Boda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2158,'Budhni',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2159,'Burhanpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2160,'Burhar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2161,'Chachaura Binaganj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2162,'Chakghat',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2163,'Chandameta Butar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2164,'Chanderi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2165,'Chandia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2166,'Chandla',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2167,'Chaurai Khas',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2168,'Chhatarpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2169,'Chhindwara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2170,'Chhota Chhindwara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2171,'Chichli',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2172,'Chitrakut',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2173,'Churhat',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2174,'Daboh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2175,'Dabra',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2176,'Damoh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2177,'Damua',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2178,'Datia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2179,'Deodara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2180,'Deori',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2181,'Deori Khas',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2182,'Depalpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2183,'Devendranagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2184,'Devhara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2185,'Dewas',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2186,'Dhamnod',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2187,'Dhana',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2188,'Dhanpuri',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2189,'Dhar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2190,'Dharampuri',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2191,'Dighawani',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2192,'Diken',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2193,'Dindori',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2194,'Dola',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2195,'Dumar Kachhar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2196,'Dungariya Chhapara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2197,'Gadarwara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2198,'Gairatganj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2199,'Gandhi Sagar Hydel Colony',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2200,'Ganjbasoda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2201,'Garhakota',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2202,'Garhi Malhara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2203,'Garoth',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2204,'Gautapura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2205,'Ghansor',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2206,'Ghuwara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2207,'Gogaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2208,'Gogapur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2209,'Gohad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2210,'Gormi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2211,'Govindgarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2212,'Guna',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2213,'Gurh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2214,'Gwalior',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2215,'Hanumana',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2216,'Harda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2217,'Harpalpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2218,'Harrai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2219,'Harsud',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2220,'Hatod',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2221,'Hatpipalya',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2222,'Hatta',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2223,'Hindoria',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2224,'Hirapur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2225,'Hoshangabad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2226,'Ichhawar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2227,'Iklehra',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2228,'Indergarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2229,'Indore',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2230,'Isagarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2231,'Itarsi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2232,'Jabalpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2233,'Jabalpur Cantonment',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2234,'Jabalpur G.C.F',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2235,'Jaisinghnagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2236,'Jaithari',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2237,'Jaitwara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2238,'Jamai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2239,'Jaora',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2240,'Jatachhapar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2241,'Jatara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2242,'Jawad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2243,'Jawar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2244,'Jeronkhalsa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2245,'Jhabua',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2246,'Jhundpura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2247,'Jiran',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2248,'Jirapur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2249,'Jobat',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2250,'Joura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2251,'Kailaras',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2252,'Kaimur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2253,'Kakarhati',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2254,'Kalichhapar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2255,'Kanad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2256,'Kannod',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2257,'Kantaphod',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2258,'Kareli',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2259,'Karera',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2260,'Kari',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2261,'Karnawad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2262,'Karrapur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2263,'Kasrawad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2264,'Katangi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2265,'Katni',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2266,'Kelhauri',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2267,'Khachrod',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2268,'Khajuraho',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2269,'Khamaria',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2270,'Khand',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2271,'Khandwa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2272,'Khaniyadhana',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2273,'Khargapur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2274,'Khargone',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2275,'Khategaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2276,'Khetia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2277,'Khilchipur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2278,'Khirkiya',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2279,'Khujner',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2280,'Khurai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2281,'Kolaras',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2282,'Kotar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2283,'Kothi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2284,'Kotma',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2285,'Kukshi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2286,'Kumbhraj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2287,'Kurwai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2288,'Lahar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2289,'Lakhnadon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2290,'Lateri',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2291,'Laundi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2292,'Lidhora Khas',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2293,'Lodhikheda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2294,'Loharda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2295,'Machalpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2296,'Madhogarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2297,'Maharajpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2298,'Maheshwar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2299,'Mahidpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2300,'Maihar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2301,'Majholi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2302,'Makronia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2303,'Maksi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2304,'Malaj Khand',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2305,'Malanpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2306,'Malhargarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2307,'Manasa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2308,'Manawar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2309,'Mandav',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2310,'Mandideep',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2311,'Mandla',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2312,'Mandleshwar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2313,'Mandsaur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2314,'Manegaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2315,'Mangawan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2316,'Manglaya Sadak',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2317,'Manpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2318,'Mau',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2319,'Mauganj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2320,'Meghnagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2321,'Mehara Gaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2322,'Mehgaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2323,'Mhaugaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2324,'Mhow',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2325,'Mihona',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2326,'Mohgaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2327,'Morar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2328,'Morena',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2329,'Morwa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2330,'Multai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2331,'Mundi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2332,'Mungaoli',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2333,'Murwara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2334,'Nagda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2335,'Nagod',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2336,'Nagri',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2337,'Naigarhi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2338,'Nainpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2339,'Nalkheda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2340,'Namli',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2341,'Narayangarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2342,'Narsimhapur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2343,'Narsingarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2344,'Narsinghpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2345,'Narwar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2346,'Nasrullaganj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2347,'Naudhia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2348,'Naugaon',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2349,'Naurozabad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2350,'Neemuch',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2351,'Nepa Nagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2352,'Neuton Chikhli Kalan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2353,'Nimach',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2354,'Niwari',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2355,'Obedullaganj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2356,'Omkareshwar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2357,'Orachha',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2358,'Ordinance Factory Itarsi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2359,'Pachmarhi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2360,'Pachmarhi Cantonment',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2361,'Pachore',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2362,'Palchorai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2363,'Palda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2364,'Palera',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2365,'Pali',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2366,'Panagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2367,'Panara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2368,'Pandaria',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2369,'Pandhana',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2370,'Pandhurna',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2371,'Panna',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2372,'Pansemal',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2373,'Parasia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2374,'Pasan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2375,'Patan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2376,'Patharia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2377,'Pawai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2378,'Petlawad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2379,'Phuph Kalan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2380,'Pichhore',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2381,'Pipariya',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2382,'Pipliya Mandi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2383,'Piploda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2384,'Pithampur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2385,'Polay Kalan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2386,'Porsa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2387,'Prithvipur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2388,'Raghogarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2389,'Rahatgarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2390,'Raisen',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2391,'Rajakhedi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2392,'Rajgarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2393,'Rajnagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2394,'Rajpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2395,'Rampur Baghelan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2396,'Rampur Naikin',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2397,'Rampura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2398,'Ranapur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2399,'Ranipura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2400,'Ratangarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2401,'Ratlam',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2402,'Ratlam Kasba',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2403,'Rau',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2404,'Rehli',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2405,'Rehti',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2406,'Rewa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2407,'Sabalgarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2408,'Sagar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2409,'Sagar Cantonment',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2410,'Sailana',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2411,'Sanawad',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2412,'Sanchi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2413,'Sanwer',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2414,'Sarangpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2415,'Sardarpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2416,'Sarni',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2417,'Satai',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2418,'Satna',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2419,'Satwas',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2420,'Sausar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2421,'Sehore',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2422,'Semaria',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2423,'Sendhwa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2424,'Seondha',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2425,'Seoni',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2426,'Seoni Malwa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2427,'Sethia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2428,'Shahdol',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2429,'Shahgarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2430,'Shahpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2431,'Shahpura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2432,'Shajapur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2433,'Shamgarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2434,'Sheopur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2435,'Shivpuri',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2436,'Shujalpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2437,'Sidhi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2438,'Sihora',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2439,'Singolo',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2440,'Singrauli',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2441,'Sinhasa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2442,'Sirgora',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2443,'Sirmaur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2444,'Sironj',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2445,'Sitamau',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2446,'Sohagpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2447,'Sonkatch',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2448,'Soyatkalan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2449,'Suhagi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2450,'Sultanpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2451,'Susner',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2452,'Suthaliya',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2453,'Tal',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2454,'Talen',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2455,'Tarana',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2456,'Taricharkalan',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2457,'Tekanpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2458,'Tendukheda',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2459,'Teonthar',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2460,'Thandia',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2461,'Tikamgarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2462,'Timarni',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2463,'Tirodi',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2464,'Udaipura',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2465,'Ujjain',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2466,'Ukwa',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2467,'Umaria',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2468,'Unchahara',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2469,'Unhel',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2470,'Vehicle Factory Jabalpur',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2471,'Vidisha',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2472,'Vijayraghavgarh',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2473,'Waraseoni',21,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2474,'Achalpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2475,'Aheri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2476,'Ahmadnagar Cantonment',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2477,'Ahmadpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2478,'Ahmednagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2479,'Ajra',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2480,'Akalkot',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2481,'Akkalkuwa',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2482,'Akola',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2483,'Akot',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2484,'Alandi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2485,'Alibag',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2486,'Allapalli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2487,'Alore',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2488,'Amalner',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2489,'Ambad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2490,'Ambajogai',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2491,'Ambernath',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2492,'Ambivali Tarf Wankhal',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2493,'Amgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2494,'Amravati',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2495,'Anjangaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2496,'Arvi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2497,'Ashta',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2498,'Ashti',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2499,'Aurangabad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2500,'Aurangabad Cantonment',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2501,'Ausa',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2502,'Babhulgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2503,'Badlapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2504,'Balapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2505,'Ballarpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2506,'Baramati',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2507,'Barshi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2508,'Basmat',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2509,'Beed',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2510,'Bhadravati',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2511,'Bhagur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2512,'Bhandara',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2513,'Bhigvan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2514,'Bhingar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2515,'Bhiwandi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2516,'Bhokhardan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2517,'Bhor',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2518,'Bhosari',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2519,'Bhum',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2520,'Bhusawal',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2521,'Bid',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2522,'Biloli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2523,'Birwadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2524,'Boisar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2525,'Bop Khel',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2526,'Brahmapuri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2527,'Budhgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2528,'Buldana',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2529,'Buldhana',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2530,'Butibori',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2531,'Chakan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2532,'Chalisgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2533,'Chandrapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2534,'Chandur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2535,'Chandur Bazar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2536,'Chandvad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2537,'Chicholi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2538,'Chikhala',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2539,'Chikhaldara',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2540,'Chikhli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2541,'Chinchani',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2542,'Chinchwad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2543,'Chiplun',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2544,'Chopda',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2545,'Dabhol',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2546,'Dahance',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2547,'Dahanu',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2548,'Daharu',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2549,'Dapoli Camp',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2550,'Darwa',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2551,'Daryapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2552,'Dattapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2553,'Daund',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2554,'Davlameti',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2555,'Deglur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2556,'Dehu Road',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2557,'Deolali',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2558,'Deolali Pravara',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2559,'Deoli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2560,'Desaiganj',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2561,'Deulgaon Raja',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2562,'Dewhadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2563,'Dharangaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2564,'Dharmabad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2565,'Dharur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2566,'Dhatau',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2567,'Dhule',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2568,'Digdoh',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2569,'Diglur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2570,'Digras',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2571,'Dombivli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2572,'Dondaicha',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2573,'Dudhani',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2574,'Durgapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2575,'Dyane',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2576,'Edandol',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2577,'Eklahare',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2578,'Faizpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2579,'Fekari',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2580,'Gadchiroli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2581,'Gadhinghaj',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2582,'Gandhi Nagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2583,'Ganeshpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2584,'Gangakher',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2585,'Gangapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2586,'Gevrai',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2587,'Ghatanji',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2588,'Ghoti',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2589,'Ghugus',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2590,'Ghulewadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2591,'Godoli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2592,'Gondia',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2593,'Guhagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2594,'Hadgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2595,'Harnai Beach',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2596,'Hinganghat',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2597,'Hingoli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2598,'Hupari',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2599,'Ichalkaranji',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2600,'Igatpuri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2601,'Indapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2602,'Jaisinghpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2603,'Jalgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2604,'Jalna',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2605,'Jamkhed',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2606,'Jawhar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2607,'Jaysingpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2608,'Jejuri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2609,'Jintur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2610,'Junnar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2611,'Kabnur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2612,'Kagal',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2613,'Kalamb',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2614,'Kalamnuri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2615,'Kalas',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2616,'Kalmeshwar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2617,'Kalundre',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2618,'Kalyan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2619,'Kamthi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2620,'Kamthi Cantonment',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2621,'Kandari',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2622,'Kandhar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2623,'Kandri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2624,'Kandri II',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2625,'Kanhan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2626,'Kankavli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2627,'Kannad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2628,'Karad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2629,'Karanja',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2630,'Karanje Tarf',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2631,'Karivali',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2632,'Karjat',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2633,'Karmala',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2634,'Kasara Budruk',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2635,'Katai',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2636,'Katkar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2637,'Katol',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2638,'Kegaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2639,'Khadkale',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2640,'Khadki',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2641,'Khamgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2642,'Khapa',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2643,'Kharadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2644,'Kharakvasla',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2645,'Khed',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2646,'Kherdi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2647,'Khoni',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2648,'Khopoli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2649,'Khuldabad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2650,'Kinwat',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2651,'Kodoli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2652,'Kolhapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2653,'Kon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2654,'Kondumal',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2655,'Kopargaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2656,'Kopharad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2657,'Koradi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2658,'Koregaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2659,'Korochi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2660,'Kudal',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2661,'Kundaim',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2662,'Kundalwadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2663,'Kurandvad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2664,'Kurduvadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2665,'Kusgaon Budruk',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2666,'Lanja',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2667,'Lasalgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2668,'Latur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2669,'Loha',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2670,'Lohegaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2671,'Lonar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2672,'Lonavala',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2673,'Madhavnagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2674,'Mahabaleshwar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2675,'Mahad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2676,'Mahadula',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2677,'Maindargi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2678,'Majalgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2679,'Malegaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2680,'Malgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2681,'Malkapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2682,'Malwan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2683,'Manadur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2684,'Manchar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2685,'Mangalvedhe',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2686,'Mangrul Pir',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2687,'Manmad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2688,'Manor',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2689,'Mansar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2690,'Manwath',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2691,'Mapuca',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2692,'Matheran',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2693,'Mehkar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2694,'Mhasla',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2695,'Mhaswad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2696,'Mira Bhayandar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2697,'Miraj',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2698,'Mohpa',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2699,'Mohpada',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2700,'Moram',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2701,'Morshi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2702,'Mowad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2703,'Mudkhed',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2704,'Mukhed',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2705,'Mul',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2706,'Mulshi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2707,'Mumbai',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2708,'Murbad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2709,'Murgud',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2710,'Murtijapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2711,'Murud',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2712,'Nachane',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2713,'Nagardeole',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2714,'Nagothane',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2715,'Nagpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2716,'Nakoda',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2717,'Nalasopara',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2718,'Naldurg',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2719,'Nanded',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2720,'Nandgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2721,'Nandura',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2722,'Nandurbar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2723,'Narkhed',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2724,'Nashik',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2725,'Navapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2726,'Navi Mumbai',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2727,'Navi Mumbai Panvel',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2728,'Neral',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2729,'Nigdi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2730,'Nilanga',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2731,'Nildoh',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2732,'Nimbhore',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2733,'Ojhar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2734,'Osmanabad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2735,'Pachgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2736,'Pachora',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2737,'Padagha',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2738,'Paithan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2739,'Palghar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2740,'Pali',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2741,'Panchgani',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2742,'Pandhakarwada',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2743,'Pandharpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2744,'Panhala',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2745,'Panvel',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2746,'Paranda',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2747,'Parbhani',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2748,'Parli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2749,'Parola',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2750,'Partur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2751,'Pasthal',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2752,'Patan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2753,'Pathardi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2754,'Pathri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2755,'Patur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2756,'Pawni',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2757,'Pen',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2758,'Pethumri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2759,'Phaltan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2760,'Pimpri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2761,'Poladpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2762,'Pulgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2763,'Pune',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2764,'Pune Cantonment',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2765,'Purna',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2766,'Purushottamnagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2767,'Pusad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2768,'Rahimatpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2769,'Rahta Pimplas',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2770,'Rahuri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2771,'Raigad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2772,'Rajapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2773,'Rajgurunagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2774,'Rajur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2775,'Rajura',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2776,'Ramtek',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2777,'Ratnagiri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2778,'Ravalgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2779,'Raver',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2780,'Revadanda',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2781,'Risod',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2782,'Roha Ashtami',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2783,'Sakri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2784,'Sandor',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2785,'Sangamner',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2786,'Sangli',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2787,'Sangole',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2788,'Sasti',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2789,'Sasvad',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2790,'Satana',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2791,'Satara',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2792,'Savantvadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2793,'Savda',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2794,'Savner',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2795,'Sawari Jawharnagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2796,'Selu',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2797,'Shahada',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2798,'Shahapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2799,'Shegaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2800,'Shelar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2801,'Shendurjana',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2802,'Shirdi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2803,'Shirgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2804,'Shirpur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2805,'Shirur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2806,'Shirwal',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2807,'Shivatkar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2808,'Shrigonda',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2809,'Shrirampur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2810,'Shrirampur Rural',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2811,'Sillewada',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2812,'Sillod',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2813,'Sindhudurg',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2814,'Sindi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2815,'Sindi Turf Hindnagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2816,'Sindkhed Raja',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2817,'Singnapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2818,'Sinnar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2819,'Sirur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2820,'Sitasawangi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2821,'Solapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2822,'Sonai',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2823,'Sonegaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2824,'Soyagaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2825,'Srivardhan',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2826,'Surgana',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2827,'Talegaon Dabhade',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2828,'Taloda',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2829,'Taloja',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2830,'Talwade',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2831,'Tarapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2832,'Tasgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2833,'Tathavade',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2834,'Tekadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2835,'Telhara',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2836,'Thane',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2837,'Tirira',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2838,'Totaladoh',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2839,'Trimbak',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2840,'Tuljapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2841,'Tumsar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2842,'Uchgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2843,'Udgir',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2844,'Ulhasnagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2845,'Umarga',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2846,'Umarkhed',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2847,'Umarsara',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2848,'Umbar Pada Nandade',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2849,'Umred',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2850,'Umri Pragane Balapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2851,'Uran',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2852,'Uran Islampur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2853,'Utekhol',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2854,'Vada',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2855,'Vadgaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2856,'Vadgaon Kasba',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2857,'Vaijapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2858,'Vanvadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2859,'Varangaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2860,'Vasai',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2861,'Vasantnagar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2862,'Vashind',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2863,'Vengurla',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2864,'Virar',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2865,'Visapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2866,'Vite',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2867,'Vithalwadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2868,'Wadi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2869,'Waghapur',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2870,'Wai',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2871,'Wajegaon',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2872,'Walani',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2873,'Wanadongri',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2874,'Wani',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2875,'Wardha',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2876,'Warora',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2877,'Warthi',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2878,'Warud',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2879,'Washim',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2880,'Yaval',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2881,'Yavatmal',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2882,'Yeola',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2883,'Yerkheda',22,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2884,'Andro',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2885,'Bijoy Govinda',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2886,'Bishnupur',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2887,'Churachandpur',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2888,'Heriok',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2889,'Imphal',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2890,'Jiribam',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2891,'Kakching',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2892,'Kakching Khunou',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2893,'Khongman',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2894,'Kumbi',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2895,'Kwakta',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2896,'Lamai',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2897,'Lamjaotongba',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2898,'Lamshang',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2899,'Lilong',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2900,'Mayang Imphal',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2901,'Moirang',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2902,'Moreh',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2903,'Nambol',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2904,'Naoriya Pakhanglakpa',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2905,'Ningthoukhong',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2906,'Oinam',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2907,'Porompat',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2908,'Samurou',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2909,'Sekmai Bazar',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2910,'Senapati',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2911,'Sikhong Sekmai',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2912,'Sugnu',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2913,'Thongkhong Laxmi Bazar',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2914,'Thoubal',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2915,'Torban',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2916,'Wangjing',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2917,'Wangoi',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2918,'Yairipok',23,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2919,'Baghmara',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2920,'Cherrapunji',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2921,'Jawai',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2922,'Madanrting',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2923,'Mairang',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2924,'Mawlai',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2925,'Nongmynsong',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2926,'Nongpoh',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2927,'Nongstoin',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2928,'Nongthymmai',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2929,'Pynthorumkhrah',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2930,'Resubelpara',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2931,'Shillong',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2932,'Shillong Cantonment',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2933,'Tura',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2934,'Williamnagar',24,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2935,'Aizawl',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2936,'Bairabi',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2937,'Biate',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2938,'Champhai',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2939,'Darlawn',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2940,'Hnahthial',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2941,'Kawnpui',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2942,'Khawhai',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2943,'Khawzawl',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2944,'Kolasib',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2945,'Lengpui',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2946,'Lunglei',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2947,'Mamit',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2948,'North Vanlaiphai',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2949,'Saiha',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2950,'Sairang',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2951,'Saitul',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2952,'Serchhip',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2953,'Thenzawl',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2954,'Tlabung',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2955,'Vairengte',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2956,'Zawlnuam',25,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2957,'Chumukedima',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2958,'Dimapur',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2959,'Kohima',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2960,'Mokokchung',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2961,'Mon',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2962,'Phek',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2963,'Tuensang',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2964,'Wokha',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2965,'Zunheboto',26,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2966,'Anandapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2967,'Angul',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2968,'Aska',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2969,'Athgarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2970,'Athmallik',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2971,'Balagoda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2972,'Balangir',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2973,'Balasore',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2974,'Baleshwar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2975,'Balimeta',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2976,'Balugaon',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2977,'Banapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2978,'Bangura',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2979,'Banki',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2980,'Banposh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2981,'Barbil',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2982,'Bargarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2983,'Baripada',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2984,'Barpali',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2985,'Basudebpur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2986,'Baudh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2987,'Belagachhia',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2988,'Belaguntha',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2989,'Belpahar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2990,'Berhampur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2991,'Bhadrak',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2992,'Bhanjanagar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2993,'Bhawanipatna',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2994,'Bhuban',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2995,'Bhubaneswar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2996,'Binika',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2997,'Birmitrapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2998,'Bishama Katek',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(2999,'Bolangir',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3000,'Brahmapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3001,'Brajrajnagar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3002,'Buguda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3003,'Burla',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3004,'Byasanagar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3005,'Champua',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3006,'Chandapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3007,'Chandbali',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3008,'Chandili',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3009,'Charibatia',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3010,'Chatrapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3011,'Chikitigarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3012,'Chitrakonda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3013,'Choudwar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3014,'Cuttack',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3015,'Dadhapatna',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3016,'Daitari',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3017,'Damanjodi',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3018,'Deogarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3019,'Deracolliery',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3020,'Dhamanagar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3021,'Dhenkanal',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3022,'Digapahandi',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3023,'Dungamal',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3024,'Fertilizer Corporation of Indi',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3025,'Ganjam',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3026,'Ghantapada',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3027,'Gopalpur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3028,'Gudari',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3029,'Gunupur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3030,'Hatibandha',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3031,'Hinjilikatu',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3032,'Hirakud',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3033,'Jagatsinghapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3034,'Jajpur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3035,'Jalda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3036,'Jaleswar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3037,'Jatni',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3038,'Jaypur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3039,'Jeypore',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3040,'Jharsuguda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3041,'Jhumpura',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3042,'Joda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3043,'Junagarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3044,'Kamakhyanagar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3045,'Kantabanji',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3046,'Kantilo',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3047,'Karanja',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3048,'Kashinagara',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3049,'Kataka',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3050,'Kavisuryanagar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3051,'Kendrapara',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3052,'Kendujhar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3053,'Keonjhar',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3054,'Kesinga',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3055,'Khaliapali',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3056,'Khalikote',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3057,'Khandaparha',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3058,'Kharhial',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3059,'Kharhial Road',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3060,'Khatiguda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3061,'Khurda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3062,'Kochinda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3063,'Kodala',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3064,'Konark',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3065,'Koraput',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3066,'Kotaparh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3067,'Lanjigarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3068,'Lattikata',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3069,'Makundapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3070,'Malkangiri',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3071,'Mukhiguda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3072,'Nabarangpur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3073,'Nalco',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3074,'Naurangapur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3075,'Nayagarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3076,'Nilagiri',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3077,'Nimaparha',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3078,'Nuapada',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3079,'Nuapatna',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3080,'OCL Industrialship',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3081,'Padampur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3082,'Paradip',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3083,'Paradwip',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3084,'Parlakimidi',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3085,'Patamundai',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3086,'Patnagarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3087,'Phulabani',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3088,'Pipili',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3089,'Polasara',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3090,'Pratapsasan',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3091,'Puri',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3092,'Purushottampur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3093,'Rairangpur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3094,'Raj Gangpur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3095,'Rambha',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3096,'Raurkela',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3097,'Raurkela Civil Township',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3098,'Rayagada',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3099,'Redhakhol',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3100,'Remuna',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3101,'Rengali',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3102,'Rourkela',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3103,'Sambalpur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3104,'Sinapali',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3105,'Sonepur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3106,'Sorada',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3107,'Soro',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3108,'Sunabeda',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3109,'Sundargarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3110,'Talcher',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3111,'Talcher Thermal Power Station ',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3112,'Tarabha',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3113,'Tensa',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3114,'Titlagarh',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3115,'Udala',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3116,'Udayagiri',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3117,'Umarkot',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3118,'Vikrampur',29,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3119,'Ariankuppam',31,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3120,'Karaikal',31,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3121,'Kurumbapet',31,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3122,'Mahe',31,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3123,'Ozhukarai',31,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3124,'Pondicherry',31,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3125,'Villianur',31,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3126,'Yanam',31,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3127,'Abohar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3128,'Adampur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3129,'Ahmedgarh',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3130,'Ajnala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3131,'Akalgarh',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3132,'Alawalpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3133,'Amloh',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3134,'Amritsar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3135,'Amritsar Cantonment',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3136,'Anandpur Sahib',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3137,'Badhni Kalan',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3138,'Bagh Purana',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3139,'Balachaur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3140,'Banaur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3141,'Banga',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3142,'Banur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3143,'Baretta',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3144,'Bariwala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3145,'Barnala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3146,'Bassi Pathana',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3147,'Batala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3148,'Bathinda',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3149,'Begowal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3150,'Behrampur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3151,'Bhabat',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3152,'Bhadur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3153,'Bhankharpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3154,'Bharoli Kalan',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3155,'Bhawanigarh',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3156,'Bhikhi',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3157,'Bhikhiwind',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3158,'Bhisiana',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3159,'Bhogpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3160,'Bhuch',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3161,'Bhulath',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3162,'Budha Theh',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3163,'Budhlada',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3164,'Chima',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3165,'Chohal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3166,'Dasuya',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3167,'Daulatpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3168,'Dera Baba Nanak',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3169,'Dera Bassi',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3170,'Dhanaula',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3171,'Dharam Kot',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3172,'Dhariwal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3173,'Dhilwan',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3174,'Dhuri',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3175,'Dinanagar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3176,'Dirba',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3177,'Doraha',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3178,'Faridkot',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3179,'Fateh Nangal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3180,'Fatehgarh Churian',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3181,'Fatehgarh Sahib',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3182,'Fazilka',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3183,'Firozpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3184,'Firozpur Cantonment',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3185,'Gardhiwala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3186,'Garhshankar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3187,'Ghagga',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3188,'Ghanaur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3189,'Giddarbaha',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3190,'Gobindgarh',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3191,'Goniana',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3192,'Goraya',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3193,'Gurdaspur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3194,'Guru Har Sahai',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3195,'Hajipur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3196,'Handiaya',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3197,'Hariana',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3198,'Hoshiarpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3199,'Hussainpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3200,'Jagraon',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3201,'Jaitu',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3202,'Jalalabad',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3203,'Jalandhar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3204,'Jalandhar Cantonment',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3205,'Jandiala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3206,'Jugial',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3207,'Kalanaur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3208,'Kapurthala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3209,'Karoran',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3210,'Kartarpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3211,'Khamanon',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3212,'Khanauri',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3213,'Khanna',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3214,'Kharar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3215,'Khem Karan',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3216,'Kot Fatta',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3217,'Kot Isa Khan',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3218,'Kot Kapura',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3219,'Kotkapura',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3220,'Kurali',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3221,'Lalru',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3222,'Lehra Gaga',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3223,'Lodhian Khas',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3224,'Longowal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3225,'Ludhiana',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3226,'Machhiwara',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3227,'Mahilpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3228,'Majitha',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3229,'Makhu',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3230,'Malaut',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3231,'Malerkotla',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3232,'Maloud',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3233,'Mandi Gobindgarh',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3234,'Mansa',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3235,'Maur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3236,'Moga',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3237,'Mohali',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3238,'Moonak',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3239,'Morinda',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3240,'Mukerian',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3241,'Muktsar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3242,'Mullanpur Dakha',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3243,'Mullanpur Garibdas',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3244,'Munak',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3245,'Muradpura',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3246,'Nabha',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3247,'Nakodar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3248,'Nangal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3249,'Nawashahr',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3250,'Naya Nangal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3251,'Nehon',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3252,'Nurmahal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3253,'Pathankot',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3254,'Patiala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3255,'Patti',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3256,'Pattran',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3257,'Payal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3258,'Phagwara',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3259,'Phillaur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3260,'Qadian',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3261,'Rahon',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3262,'Raikot',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3263,'Raja Sansi',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3264,'Rajpura',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3265,'Ram Das',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3266,'Raman',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3267,'Rampura',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3268,'Rayya',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3269,'Rupnagar',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3270,'Rurki Kasba',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3271,'Sahnewal',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3272,'Samana',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3273,'Samrala',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3274,'Sanaur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3275,'Sangat',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3276,'Sangrur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3277,'Sansarpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3278,'Sardulgarh',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3279,'Shahkot',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3280,'Sham Churasi',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3281,'Shekhpura',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3282,'Sirhind',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3283,'Sri Hargobindpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3284,'Sujanpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3285,'Sultanpur Lodhi',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3286,'Sunam',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3287,'Talwandi Bhai',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3288,'Talwara',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3289,'Tappa',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3290,'Tarn Taran',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3291,'Urmar Tanda',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3292,'Zira',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3293,'Zirakpur',32,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3294,'Abu Road',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3295,'Ajmer',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3296,'Aklera',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3297,'Alwar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3298,'Amet',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3299,'Antah',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3300,'Anupgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3301,'Asind',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3302,'Bagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3303,'Bagru',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3304,'Bahror',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3305,'Bakani',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3306,'Bali',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3307,'Balotra',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3308,'Bandikui',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3309,'Banswara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3310,'Baran',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3311,'Bari',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3312,'Bari Sadri',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3313,'Barmer',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3314,'Basi',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3315,'Basni Belima',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3316,'Baswa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3317,'Bayana',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3318,'Beawar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3319,'Begun',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3320,'Bhadasar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3321,'Bhadra',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3322,'Bhalariya',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3323,'Bharatpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3324,'Bhasawar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3325,'Bhawani Mandi',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3326,'Bhawri',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3327,'Bhilwara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3328,'Bhindar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3329,'Bhinmal',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3330,'Bhiwadi',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3331,'Bijoliya Kalan',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3332,'Bikaner',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3333,'Bilara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3334,'Bissau',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3335,'Borkhera',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3336,'Budhpura',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3337,'Bundi',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3338,'Chatsu',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3339,'Chechat',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3340,'Chhabra',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3341,'Chhapar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3342,'Chhipa Barod',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3343,'Chhoti Sadri',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3344,'Chirawa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3345,'Chittaurgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3346,'Chittorgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3347,'Chomun',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3348,'Churu',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3349,'Daosa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3350,'Dariba',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3351,'Dausa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3352,'Deoli',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3353,'Deshnok',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3354,'Devgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3355,'Devli',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3356,'Dhariawad',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3357,'Dhaulpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3358,'Dholpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3359,'Didwana',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3360,'Dig',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3361,'Dungargarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3362,'Dungarpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3363,'Falna',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3364,'Fatehnagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3365,'Fatehpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3366,'Gajsinghpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3367,'Galiakot',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3368,'Ganganagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3369,'Gangapur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3370,'Goredi Chancha',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3371,'Gothra',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3372,'Govindgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3373,'Gulabpura',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3374,'Hanumangarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3375,'Hindaun',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3376,'Indragarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3377,'Jahazpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3378,'Jaipur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3379,'Jaisalmer',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3380,'Jaiselmer',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3381,'Jaitaran',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3382,'Jalore',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3383,'Jhalawar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3384,'Jhalrapatan',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3385,'Jhunjhunun',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3386,'Jobner',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3387,'Jodhpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3388,'Kaithun',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3389,'Kaman',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3390,'Kankroli',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3391,'Kanor',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3392,'Kapasan',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3393,'Kaprain',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3394,'Karanpura',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3395,'Karauli',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3396,'Kekri',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3397,'Keshorai Patan',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3398,'Kesrisinghpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3399,'Khairthal',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3400,'Khandela',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3401,'Khanpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3402,'Kherli',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3403,'Kherliganj',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3404,'Kherwara Chhaoni',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3405,'Khetri',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3406,'Kiranipura',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3407,'Kishangarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3408,'Kishangarh Ranwal',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3409,'Kolvi Rajendrapura',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3410,'Kot Putli',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3411,'Kota',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3412,'Kuchaman',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3413,'Kuchera',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3414,'Kumbhalgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3415,'Kumbhkot',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3416,'Kumher',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3417,'Kushalgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3418,'Lachhmangarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3419,'Ladnun',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3420,'Lakheri',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3421,'Lalsot',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3422,'Losal',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3423,'Madanganj',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3424,'Mahu Kalan',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3425,'Mahwa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3426,'Makrana',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3427,'Malpura',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3428,'Mandal',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3429,'Mandalgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3430,'Mandawar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3431,'Mandwa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3432,'Mangrol',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3433,'Manohar Thana',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3434,'Manoharpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3435,'Marwar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3436,'Merta',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3437,'Modak',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3438,'Mount Abu',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3439,'Mukandgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3440,'Mundwa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3441,'Nadbai',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3442,'Naenwa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3443,'Nagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3444,'Nagaur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3445,'Napasar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3446,'Naraina',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3447,'Nasirabad',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3448,'Nathdwara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3449,'Nawa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3450,'Nawalgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3451,'Neem Ka Thana',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3452,'Neemrana',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3453,'Newa Talai',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3454,'Nimaj',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3455,'Nimbahera',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3456,'Niwai',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3457,'Nohar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3458,'Nokha',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3459,'One SGM',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3460,'Padampur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3461,'Pali',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3462,'Partapur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3463,'Parvatsar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3464,'Pasoond',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3465,'Phalna',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3466,'Phalodi',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3467,'Phulera',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3468,'Pilani',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3469,'Pilibanga',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3470,'Pindwara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3471,'Pipalia Kalan',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3472,'Pipar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3473,'Pirawa',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3474,'Pokaran',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3475,'Pratapgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3476,'Pushkar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3477,'Raipur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3478,'Raisinghnagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3479,'Rajakhera',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3480,'Rajaldesar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3481,'Rajgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3482,'Rajsamand',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3483,'Ramganj Mandi',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3484,'Ramgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3485,'Rani',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3486,'Raniwara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3487,'Ratan Nagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3488,'Ratangarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3489,'Rawatbhata',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3490,'Rawatsar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3491,'Rikhabdev',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3492,'Ringas',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3493,'Sadri',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3494,'Sadulshahar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3495,'Sagwara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3496,'Salumbar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3497,'Sambhar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3498,'Samdari',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3499,'Sanchor',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3500,'Sangariya',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3501,'Sangod',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3502,'Sardarshahr',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3503,'Sarwar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3504,'Satal Kheri',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3505,'Sawai Madhopur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3506,'Sewan Kalan',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3507,'Shahpura',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3508,'Sheoganj',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3509,'Sikar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3510,'Sirohi',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3511,'Siwana',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3512,'Sogariya',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3513,'Sojat',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3514,'Sojat Road',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3515,'Sri Madhopur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3516,'Sriganganagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3517,'Sujangarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3518,'Suket',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3519,'Sumerpur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3520,'Sunel',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3521,'Surajgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3522,'Suratgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3523,'Swaroopganj',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3524,'Takhatgarh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3525,'Taranagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3526,'Three STR',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3527,'Tijara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3528,'Toda Bhim',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3529,'Toda Raisingh',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3530,'Todra',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3531,'Tonk',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3532,'Udaipur',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3533,'Udpura',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3534,'Uniara',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3535,'Vanasthali',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3536,'Vidyavihar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3537,'Vijainagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3538,'Viratnagar',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3539,'Wer',33,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3540,'Gangtok',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3541,'Gezing',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3542,'Jorethang',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3543,'Mangan',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3544,'Namchi',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3545,'Naya Bazar',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3546,'No City',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3547,'Rangpo',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3548,'Sikkim',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3549,'Singtam',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3550,'Upper Tadong',34,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3551,'Abiramam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3552,'Achampudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3553,'Acharapakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3554,'Acharipallam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3555,'Achipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3556,'Adikaratti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3557,'Adiramapattinam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3558,'Aduturai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3559,'Adyar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3560,'Agaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3561,'Agasthiswaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3562,'Akkaraipettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3563,'Alagappapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3564,'Alagapuri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3565,'Alampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3566,'Alandur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3567,'Alanganallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3568,'Alangayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3569,'Alangudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3570,'Alangulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3571,'Alanthurai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3572,'Alapakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3573,'Allapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3574,'Alur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3575,'Alwar Tirunagari',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3576,'Alwarkurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3577,'Ambasamudram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3578,'Ambur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3579,'Ammainaickanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3580,'Ammaparikuppam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3581,'Ammapettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3582,'Ammavarikuppam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3583,'Ammur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3584,'Anaimalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3585,'Anaiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3586,'Anakaputhur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3587,'Ananthapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3588,'Andanappettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3589,'Andipalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3590,'Andippatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3591,'Anjugramam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3592,'Annamalainagar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3593,'Annavasal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3594,'Annur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3595,'Anthiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3596,'Appakudal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3597,'Arachalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3598,'Arakandanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3599,'Arakonam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3600,'Aralvaimozhi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3601,'Arani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3602,'Arani Road',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3603,'Arantangi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3604,'Arasiramani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3605,'Aravakurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3606,'Aravankadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3607,'Arcot',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3608,'Arimalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3609,'Ariyalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3610,'Ariyappampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3611,'Ariyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3612,'Arni',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3613,'Arulmigu Thirumuruganpundi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3614,'Arumanai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3615,'Arumbavur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3616,'Arumuganeri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3617,'Aruppukkottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3618,'Ashokapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3619,'Athani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3620,'Athanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3621,'Athimarapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3622,'Athipattu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3623,'Athur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3624,'Attayyampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3625,'Attur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3626,'Auroville',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3627,'Avadattur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3628,'Avadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3629,'Avalpundurai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3630,'Avaniapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3631,'Avinashi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3632,'Ayakudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3633,'Ayanadaippu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3634,'Aygudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3635,'Ayothiapattinam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3636,'Ayyalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3637,'Ayyampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3638,'Ayyampettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3639,'Azhagiapandiapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3640,'Balakrishnampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3641,'Balakrishnapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3642,'Balapallam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3643,'Balasamudram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3644,'Bargur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3645,'Belur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3646,'Berhatty',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3647,'Bhavani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3648,'Bhawanisagar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3649,'Bhuvanagiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3650,'Bikketti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3651,'Bodinayakkanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3652,'Brahmana Periya Agraharam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3653,'Buthapandi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3654,'Buthipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3655,'Chatrapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3656,'Chembarambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3657,'Chengalpattu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3658,'Chengam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3659,'Chennai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3660,'Chennasamudram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3661,'Chennimalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3662,'Cheranmadevi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3663,'Cheruvanki',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3664,'Chetpet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3665,'Chettiarpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3666,'Chettipalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3667,'Chettipalayam Cantonment',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3668,'Chettithangal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3669,'Cheyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3670,'Cheyyar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3671,'Chidambaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3672,'Chinalapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3673,'Chinna Anuppanadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3674,'Chinna Salem',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3675,'Chinnakkampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3676,'Chinnammanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3677,'Chinnampalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3678,'Chinnasekkadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3679,'Chinnavedampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3680,'Chitlapakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3681,'Chittodu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3682,'Cholapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3683,'Coimbatore',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3684,'Coonoor',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3685,'Courtalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3686,'Cuddalore',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3687,'Dalavaipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3688,'Darasuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3689,'Denkanikottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3690,'Desur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3691,'Devadanapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3692,'Devakkottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3693,'Devakottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3694,'Devanangurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3695,'Devarshola',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3696,'Devasthanam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3697,'Dhalavoipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3698,'Dhali',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3699,'Dhaliyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3700,'Dharapadavedu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3701,'Dharapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3702,'Dharmapuri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3703,'Dindigul',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3704,'Dusi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3705,'Edaganasalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3706,'Edaikodu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3707,'Edakalinadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3708,'Elathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3709,'Elayirampannai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3710,'Elumalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3711,'Eral',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3712,'Eraniel',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3713,'Eriodu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3714,'Erode',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3715,'Erumaipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3716,'Eruvadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3717,'Ethapur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3718,'Ettaiyapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3719,'Ettimadai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3720,'Ezhudesam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3721,'Ganapathipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3722,'Gandhi Nagar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3723,'Gangaikondan',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3724,'Gangavalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3725,'Ganguvarpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3726,'Gingi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3727,'Gopalasamudram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3728,'Gopichettipalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3729,'Gudalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3730,'Gudiyattam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3731,'Guduvanchery',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3732,'Gummidipoondi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3733,'Hanumanthampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3734,'Harur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3735,'Harveypatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3736,'Highways',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3737,'Hosur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3738,'Hubbathala',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3739,'Huligal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3740,'Idappadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3741,'Idikarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3742,'Ilampillai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3743,'Ilanji',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3744,'Iluppaiyurani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3745,'Iluppur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3746,'Inam Karur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3747,'Injambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3748,'Irugur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3749,'Jaffrabad',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3750,'Jagathala',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3751,'Jalakandapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3752,'Jalladiampet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3753,'Jambai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3754,'Jayankondam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3755,'Jolarpet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3756,'Kadambur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3757,'Kadathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3758,'Kadayal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3759,'Kadayampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3760,'Kadayanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3761,'Kadiapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3762,'Kalakkad',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3763,'Kalambur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3764,'Kalapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3765,'Kalappanaickenpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3766,'Kalavai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3767,'Kalinjur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3768,'Kaliyakkavilai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3769,'Kallakkurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3770,'Kallakudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3771,'Kallidaikurichchi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3772,'Kallukuttam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3773,'Kallupatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3774,'Kalpakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3775,'Kalugumalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3776,'Kamayagoundanpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3777,'Kambainallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3778,'Kambam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3779,'Kamuthi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3780,'Kanadukathan',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3781,'Kanakkampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3782,'Kanam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3783,'Kanchipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3784,'Kandanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3785,'Kangayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3786,'Kangayampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3787,'Kangeyanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3788,'Kaniyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3789,'Kanjikoil',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3790,'Kannadendal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3791,'Kannamangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3792,'Kannampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3793,'Kannankurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3794,'Kannapalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3795,'Kannivadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3796,'Kanyakumari',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3797,'Kappiyarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3798,'Karaikkudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3799,'Karamadai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3800,'Karambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3801,'Karambakkudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3802,'Kariamangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3803,'Kariapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3804,'Karugampattur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3805,'Karumandi Chellipalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3806,'Karumathampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3807,'Karumbakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3808,'Karungal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3809,'Karunguzhi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3810,'Karuppur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3811,'Karur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3812,'Kasipalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3813,'Kasipalayam G',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3814,'Kathirvedu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3815,'Kathujuganapalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3816,'Katpadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3817,'Kattivakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3818,'Kattumannarkoil',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3819,'Kattupakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3820,'Kattuputhur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3821,'Kaveripakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3822,'Kaveripattinam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3823,'Kavundampalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3824,'Kavundampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3825,'Kayalpattinam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3826,'Kayattar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3827,'Kelamangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3828,'Kelambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3829,'Kembainaickenpalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3830,'Kethi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3831,'Kilakarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3832,'Kilampadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3833,'Kilkulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3834,'Kilkunda',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3835,'Killiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3836,'Killlai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3837,'Kilpennathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3838,'Kilvelur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3839,'Kinathukadavu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3840,'Kiramangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3841,'Kiranur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3842,'Kiripatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3843,'Kizhapavur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3844,'Kmarasamipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3845,'Kochadai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3846,'Kodaikanal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3847,'Kodambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3848,'Kodavasal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3849,'Kodumudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3850,'Kolachal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3851,'Kolappalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3852,'Kolathupalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3853,'Kolathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3854,'Kollankodu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3855,'Kollankoil',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3856,'Komaralingam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3857,'Komarapalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3858,'Kombai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3859,'Konakkarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3860,'Konavattam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3861,'Kondalampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3862,'Konganapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3863,'Koradacheri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3864,'Korampallam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3865,'Kotagiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3866,'Kothinallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3867,'Kottaiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3868,'Kottakuppam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3869,'Kottaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3870,'Kottivakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3871,'Kottur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3872,'Kovilpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3873,'Koyampattur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3874,'Krishnagiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3875,'Krishnarayapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3876,'Krishnasamudram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3877,'Kuchanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3878,'Kuhalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3879,'Kulasekarappattinam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3880,'Kulasekarapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3881,'Kulithalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3882,'Kumarapalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3883,'Kumarapalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3884,'Kumarapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3885,'Kumbakonam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3886,'Kundrathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3887,'Kuniyamuthur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3888,'Kunnathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3889,'Kunur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3890,'Kuraikundu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3891,'Kurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3892,'Kurinjippadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3893,'Kurudampalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3894,'Kurumbalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3895,'Kuthalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3896,'Kuthappar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3897,'Kuttalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3898,'Kuttanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3899,'Kuzhithurai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3900,'Labbaikudikadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3901,'Lakkampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3902,'Lalgudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3903,'Lalpet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3904,'Llayangudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3905,'Madambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3906,'Madanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3907,'Madathukulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3908,'Madhavaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3909,'Madippakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3910,'Madukkarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3911,'Madukkur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3912,'Madurai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3913,'Maduranthakam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3914,'Maduravoyal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3915,'Mahabalipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3916,'Makkinanpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3917,'Mallamuppampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3918,'Mallankinaru',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3919,'Mallapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3920,'Mallasamudram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3921,'Mallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3922,'Mamallapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3923,'Mamsapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3924,'Manachanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3925,'Manali',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3926,'Manalmedu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3927,'Manalurpet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3928,'Manamadurai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3929,'Manapakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3930,'Manapparai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3931,'Manavalakurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3932,'Mandaikadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3933,'Mandapam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3934,'Mangadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3935,'Mangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3936,'Mangalampet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3937,'Manimutharu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3938,'Mannargudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3939,'Mappilaiurani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3940,'Maraimalai Nagar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3941,'Marakkanam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3942,'Maramangalathupatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3943,'Marandahalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3944,'Markayankottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3945,'Marudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3946,'Marungur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3947,'Masinigudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3948,'Mathigiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3949,'Mattur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3950,'Mayiladuthurai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3951,'Mecheri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3952,'Melacheval',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3953,'Melachokkanathapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3954,'Melagaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3955,'Melamadai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3956,'Melamaiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3957,'Melanattam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3958,'Melathiruppanthuruthi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3959,'Melattur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3960,'Melmananbedu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3961,'Melpattampakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3962,'Melur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3963,'Melvisharam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3964,'Mettupalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3965,'Mettur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3966,'Meyyanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3967,'Milavittan',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3968,'Minakshipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3969,'Minambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3970,'Minjur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3971,'Modakurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3972,'Mohanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3973,'Mopperipalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3974,'Mudalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3975,'Mudichur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3976,'Mudukulathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3977,'Mukasipidariyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3978,'Mukkudal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3979,'Mulagumudu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3980,'Mulakaraipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3981,'Mulanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3982,'Mullakkadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3983,'Muruganpalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3984,'Musiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3985,'Muthupet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3986,'Muthur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3987,'Muttayyapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3988,'Muttupet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3989,'Muvarasampettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3990,'Myladi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3991,'Mylapore',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3992,'Nadukkuthagai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3993,'Naduvattam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3994,'Nagapattinam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3995,'Nagavakulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3996,'Nagercoil',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3997,'Nagojanahalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3998,'Nallampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(3999,'Nallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4000,'Namagiripettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4001,'Namakkal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4002,'Nambiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4003,'Nambutalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4004,'Nandambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4005,'Nandivaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4006,'Nangavalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4007,'Nangavaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4008,'Nanguneri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4009,'Nanjikottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4010,'Nannilam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4011,'Naranammalpuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4012,'Naranapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4013,'Narasimhanaickenpalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4014,'Narasingapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4015,'Narasojipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4016,'Naravarikuppam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4017,'Nasiyanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4018,'Natham',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4019,'Nathampannai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4020,'Natrampalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4021,'Nattam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4022,'Nattapettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4023,'Nattarasankottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4024,'Navalpattu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4025,'Nazarethpettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4026,'Nazerath',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4027,'Neikkarapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4028,'Neiyyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4029,'Nellikkuppam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4030,'Nelliyalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4031,'Nemili',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4032,'Nemilicheri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4033,'Neripperichal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4034,'Nerkunram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4035,'Nerkuppai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4036,'Nerunjipettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4037,'Neykkarappatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4038,'Neyveli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4039,'Nidamangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4040,'Nilagiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4041,'Nilakkottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4042,'Nilankarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4043,'Odaipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4044,'Odaiyakulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4045,'Oddanchatram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4046,'Odugathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4047,'Oggiyamduraipakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4048,'Olagadam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4049,'Omalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4050,'Ooty',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4051,'Orathanadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4052,'Othakadai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4053,'Othakalmandapam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4054,'Ottapparai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4055,'Pacode',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4056,'Padaividu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4057,'Padianallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4058,'Padirikuppam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4059,'Padmanabhapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4060,'Padririvedu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4061,'Palaganangudy',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4062,'Palaimpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4063,'Palakkodu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4064,'Palamedu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4065,'Palani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4066,'Palani Chettipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4067,'Palavakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4068,'Palavansathu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4069,'Palayakayal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4070,'Palayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4071,'Palayamkottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4072,'Palladam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4073,'Pallapalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4074,'Pallapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4075,'Pallattur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4076,'Pallavaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4077,'Pallikaranai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4078,'Pallikonda',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4079,'Pallipalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4080,'Pallipalaiyam Agraharam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4081,'Pallipattu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4082,'Pammal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4083,'Panagudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4084,'Panaimarathupatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4085,'Panapakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4086,'Panboli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4087,'Pandamangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4088,'Pannaikadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4089,'Pannaipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4090,'Pannuratti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4091,'Panruti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4092,'Papanasam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4093,'Pappankurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4094,'Papparapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4095,'Pappireddipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4096,'Paramakkudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4097,'Paramankurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4098,'Paramathi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4099,'Parangippettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4100,'Paravai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4101,'Pasur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4102,'Pathamadai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4103,'Pattinam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4104,'Pattiviranpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4105,'Pattukkottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4106,'Pazhugal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4107,'Pennadam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4108,'Pennagaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4109,'Pennathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4110,'Peraiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4111,'Peralam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4112,'Perambalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4113,'Peranamallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4114,'Peravurani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4115,'Periyakodiveri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4116,'Periyakulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4117,'Periyanayakkanpalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4118,'Periyanegamam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4119,'Periyapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4120,'Periyasemur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4121,'Pernambut',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4122,'Perumagalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4123,'Perumandi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4124,'Perumuchi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4125,'Perundurai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4126,'Perungalathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4127,'Perungudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4128,'Perungulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4129,'Perur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4130,'Perur Chettipalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4131,'Pethampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4132,'Pethanaickenpalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4133,'Pillanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4134,'Pirkankaranai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4135,'Polichalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4136,'Pollachi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4137,'Polur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4138,'Ponmani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4139,'Ponnamaravathi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4140,'Ponnampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4141,'Ponneri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4142,'Porur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4143,'Pothanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4144,'Pothatturpettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4145,'Pudukadai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4146,'Pudukkottai Cantonment',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4147,'Pudukottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4148,'Pudupalaiyam Aghraharam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4149,'Pudupalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4150,'Pudupatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4151,'Pudupattinam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4152,'Pudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4153,'Puduvayal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4154,'Pulambadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4155,'Pulampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4156,'Puliyampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4157,'Puliyankudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4158,'Puliyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4159,'Pullampadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4160,'Puluvapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4161,'Punamalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4162,'Punjai Puliyampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4163,'Punjai Thottakurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4164,'Punjaipugalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4165,'Puthalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4166,'Putteri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4167,'Puvalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4168,'Puzhal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4169,'Puzhithivakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4170,'Rajapalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4171,'Ramanathapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4172,'Ramapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4173,'Rameswaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4174,'Ranipet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4175,'Rasipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4176,'Rayagiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4177,'Rithapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4178,'Rosalpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4179,'Rudravathi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4180,'Sadayankuppam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4181,'Saint Thomas Mount',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4182,'Salangapalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4183,'Salem',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4184,'Samalapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4185,'Samathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4186,'Sambavar Vadagarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4187,'Sankaramanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4188,'Sankarankoil',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4189,'Sankarapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4190,'Sankari',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4191,'Sankarnagar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4192,'Saravanampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4193,'Sarcarsamakulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4194,'Sathiyavijayanagaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4195,'Sathuvachari',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4196,'Sathyamangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4197,'Sattankulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4198,'Sattur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4199,'Sayalgudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4200,'Sayapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4201,'Seithur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4202,'Sembakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4203,'Semmipalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4204,'Sennirkuppam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4205,'Senthamangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4206,'Sentharapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4207,'Senur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4208,'Sethiathoppu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4209,'Sevilimedu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4210,'Sevugampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4211,'Shenbakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4212,'Shencottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4213,'Shenkottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4214,'Sholavandan',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4215,'Sholinganallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4216,'Sholingur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4217,'Sholur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4218,'Sikkarayapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4219,'Singampuneri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4220,'Singanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4221,'Singaperumalkoil',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4222,'Sirapalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4223,'Sirkali',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4224,'Sirugamani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4225,'Sirumugai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4226,'Sithayankottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4227,'Sithurajapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4228,'Sivaganga',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4229,'Sivagiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4230,'Sivakasi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4231,'Sivanthipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4232,'Sivur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4233,'Soranjeri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4234,'South Kannanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4235,'South Kodikulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4236,'Srimushnam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4237,'Sriperumpudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4238,'Sriramapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4239,'Srirangam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4240,'Srivaikuntam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4241,'Srivilliputtur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4242,'Suchindram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4243,'Suliswaranpatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4244,'Sulur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4245,'Sundarapandiam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4246,'Sundarapandiapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4247,'Surampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4248,'Surandai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4249,'Suriyampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4250,'Swamimalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4251,'TNPL Pugalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4252,'Tambaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4253,'Taramangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4254,'Tattayyangarpettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4255,'Tayilupatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4256,'Tenkasi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4257,'Thadikombu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4258,'Thakkolam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4259,'Thalainayar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4260,'Thalakudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4261,'Thamaraikulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4262,'Thammampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4263,'Thanjavur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4264,'Thanthoni',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4265,'Tharangambadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4266,'Thedavur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4267,'Thenambakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4268,'Thengampudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4269,'Theni',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4270,'Theni Allinagaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4271,'Thenkarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4272,'Thenthamaraikulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4273,'Thenthiruperai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4274,'Thesur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4275,'Thevaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4276,'Thevur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4277,'Thiagadurgam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4278,'Thiagarajar Colony',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4279,'Thingalnagar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4280,'Thiruchirapalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4281,'Thirukarungudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4282,'Thirukazhukundram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4283,'Thirumalayampalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4284,'Thirumazhisai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4285,'Thirunagar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4286,'Thirunageswaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4287,'Thirunindravur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4288,'Thirunirmalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4289,'Thiruparankundram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4290,'Thiruparappu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4291,'Thiruporur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4292,'Thiruppanandal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4293,'Thirupuvanam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4294,'Thiruthangal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4295,'Thiruthuraipundi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4296,'Thiruvaivaru',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4297,'Thiruvalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4298,'Thiruvarur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4299,'Thiruvattaru',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4300,'Thiruvenkatam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4301,'Thiruvennainallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4302,'Thiruvithankodu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4303,'Thisayanvilai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4304,'Thittacheri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4305,'Thondamuthur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4306,'Thorapadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4307,'Thottipalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4308,'Thottiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4309,'Thudiyalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4310,'Thuthipattu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4311,'Thuvakudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4312,'Timiri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4313,'Tindivanam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4314,'Tinnanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4315,'Tiruchchendur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4316,'Tiruchengode',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4317,'Tirukkalukkundram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4318,'Tirukkattuppalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4319,'Tirukkoyilur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4320,'Tirumangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4321,'Tirumullaivasal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4322,'Tirumuruganpundi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4323,'Tirunageswaram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4324,'Tirunelveli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4325,'Tirupathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4326,'Tirupattur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4327,'Tiruppuvanam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4328,'Tirupur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4329,'Tirusulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4330,'Tiruttani',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4331,'Tiruvallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4332,'Tiruvannamalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4333,'Tiruverambur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4334,'Tiruverkadu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4335,'Tiruvethipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4336,'Tiruvidaimarudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4337,'Tiruvottiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4338,'Tittakudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4339,'Tondi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4340,'Turaiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4341,'Tuticorin',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4342,'Udagamandalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4343,'Udagamandalam Valley',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4344,'Udankudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4345,'Udayarpalayam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4346,'Udumalaipettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4347,'Udumalpet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4348,'Ullur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4349,'Ulundurpettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4350,'Unjalaur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4351,'Unnamalaikadai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4352,'Uppidamangalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4353,'Uppiliapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4354,'Urachikkottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4355,'Urapakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4356,'Usilampatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4357,'Uthangarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4358,'Uthayendram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4359,'Uthiramerur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4360,'Uthukkottai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4361,'Uttamapalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4362,'Uttukkuli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4363,'Vadakarai Kizhpadugai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4364,'Vadakkanandal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4365,'Vadakku Valliyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4366,'Vadalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4367,'Vadamadurai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4368,'Vadavalli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4369,'Vadipatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4370,'Vadugapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4371,'Vaithiswarankoil',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4372,'Valangaiman',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4373,'Valasaravakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4374,'Valavanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4375,'Vallam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4376,'Valparai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4377,'Valvaithankoshtam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4378,'Vanavasi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4379,'Vandalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4380,'Vandavasi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4381,'Vandiyur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4382,'Vaniputhur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4383,'Vaniyambadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4384,'Varadarajanpettai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4385,'Varadharajapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4386,'Vasudevanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4387,'Vathirairuppu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4388,'Vattalkundu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4389,'Vazhapadi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4390,'Vedapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4391,'Vedaranniyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4392,'Vedasandur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4393,'Velampalaiyam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4394,'Velankanni',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4395,'Vellakinar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4396,'Vellakoil',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4397,'Vellalapatti',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4398,'Vellalur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4399,'Vellanur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4400,'Vellimalai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4401,'Vellore',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4402,'Vellottamparappu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4403,'Velluru',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4404,'Vengampudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4405,'Vengathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4406,'Vengavasal',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4407,'Venghatur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4408,'Venkarai',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4409,'Vennanthur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4410,'Veppathur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4411,'Verkilambi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4412,'Vettaikaranpudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4413,'Vettavalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4414,'Vijayapuri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4415,'Vikramasingapuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4416,'Vikravandi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4417,'Vilangudi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4418,'Vilankurichi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4419,'Vilapakkam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4420,'Vilathikulam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4421,'Vilavur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4422,'Villukuri',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4423,'Villupuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4424,'Viraganur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4425,'Virakeralam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4426,'Virakkalpudur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4427,'Virapandi',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4428,'Virapandi Cantonment',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4429,'Virappanchatram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4430,'Viravanallur',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4431,'Virudambattu',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4432,'Virudhachalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4433,'Virudhunagar',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4434,'Virupakshipuram',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4435,'Viswanatham',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4436,'Vriddhachalam',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4437,'Walajabad',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4438,'Walajapet',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4439,'Wellington',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4440,'Yercaud',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4441,'Zamin Uthukuli',35,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4442,'Achampet',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4443,'Adilabad',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4444,'Armoor',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4445,'Asifabad',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4446,'Badepally',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4447,'Banswada',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4448,'Bellampalli',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4449,'Bhadrachalam',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4450,'Bhainsa',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4451,'Bhongir',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4452,'Bhupalpally',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4453,'Bodhan',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4454,'Bollaram',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4455,'Devarkonda',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4456,'Farooqnagar',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4457,'Gadwal',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4458,'Gajwel',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4459,'Ghatkesar',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4460,'Hyderabad',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4461,'Jagtial',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4462,'Jangaon',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4463,'Kagaznagar',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4464,'Kalwakurthy',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4465,'Kamareddy',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4466,'Karimnagar',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4467,'Khammam',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4468,'Kodada',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4469,'Koratla',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4470,'Kottagudem',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4471,'Kyathampalle',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4472,'Madhira',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4473,'Mahabubabad',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4474,'Mahbubnagar',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4475,'Mancherial',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4476,'Mandamarri',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4477,'Manuguru',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4478,'Medak',36,101,0.00,0,'2021-04-06 01:13:42','2021-04-06 01:13:42',NULL),(4479,'Medchal',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4480,'Miryalaguda',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4481,'Nagar Karnul',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4482,'Nakrekal',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4483,'Nalgonda',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4484,'Narayanpet',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4485,'Narsampet',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4486,'Nirmal',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4487,'Nizamabad',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4488,'Palwancha',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4489,'Peddapalli',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4490,'Ramagundam',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4491,'Ranga Reddy district',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4492,'Sadasivpet',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4493,'Sangareddy',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4494,'Sarapaka',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4495,'Sathupalle',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4496,'Secunderabad',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4497,'Siddipet',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4498,'Singapur',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4499,'Sircilla',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4500,'Suryapet',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4501,'Tandur',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4502,'Vemulawada',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4503,'Vikarabad',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4504,'Wanaparthy',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4505,'Warangal',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4506,'Yellandu',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4507,'Zahirabad',36,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4508,'Agartala',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4509,'Amarpur',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4510,'Ambassa',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4511,'Badharghat',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4512,'Belonia',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4513,'Dharmanagar',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4514,'Gakulnagar',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4515,'Gandhigram',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4516,'Indranagar',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4517,'Jogendranagar',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4518,'Kailasahar',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4519,'Kamalpur',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4520,'Kanchanpur',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4521,'Khowai',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4522,'Kumarghat',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4523,'Kunjaban',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4524,'Narsingarh',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4525,'Pratapgarh',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4526,'Ranir Bazar',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4527,'Sabrum',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4528,'Sonamura',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4529,'Teliamura',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4530,'Udaipur',37,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4531,'Achhalda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4532,'Achhnera',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4533,'Adari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4534,'Afzalgarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4535,'Agarwal Mandi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4536,'Agra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4537,'Agra Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4538,'Ahraura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4539,'Ailum',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4540,'Air Force Area',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4541,'Ajhuwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4542,'Akbarpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4543,'Alapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4544,'Aliganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4545,'Aligarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4546,'Allahabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4547,'Allahabad Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4548,'Allahganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4549,'Amanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4550,'Ambahta',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4551,'Amethi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4552,'Amila',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4553,'Amilo',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4554,'Aminagar Sarai',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4555,'Aminagar Urf Bhurbaral',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4556,'Amraudha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4557,'Amroha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4558,'Anandnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4559,'Anpara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4560,'Antu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4561,'Anupshahr',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4562,'Aonla',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4563,'Armapur Estate',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4564,'Ashokpuram',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4565,'Ashrafpur Kichhauchha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4566,'Atarra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4567,'Atasu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4568,'Atrauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4569,'Atraulia',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4570,'Auraiya',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4571,'Aurangabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4572,'Aurangabad Bangar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4573,'Auras',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4574,'Awagarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4575,'Ayodhya',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4576,'Azamgarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4577,'Azizpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4578,'Azmatgarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4579,'Babarpur Ajitmal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4580,'Baberu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4581,'Babina',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4582,'Babrala',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4583,'Babugarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4584,'Bachhiowan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4585,'Bachhraon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4586,'Bad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4587,'Badaun',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4588,'Baghpat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4589,'Bah',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4590,'Bahadurganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4591,'Baheri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4592,'Bahjoi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4593,'Bahraich',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4594,'Bahsuma',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4595,'Bahua',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4596,'Bajna',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4597,'Bakewar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4598,'Bakiabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4599,'Baldeo',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4600,'Ballia',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4601,'Balrampur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4602,'Banat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4603,'Banda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4604,'Bangarmau',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4605,'Banki',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4606,'Bansdih',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4607,'Bansgaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4608,'Bansi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4609,'Barabanki',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4610,'Baragaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4611,'Baraut',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4612,'Bareilly',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4613,'Bareilly Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4614,'Barhalganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4615,'Barhani',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4616,'Barhapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4617,'Barkhera',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4618,'Barsana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4619,'Barva Sagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4620,'Barwar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4621,'Basti',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4622,'Begumabad Budhana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4623,'Behat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4624,'Behta Hajipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4625,'Bela',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4626,'Belthara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4627,'Beniganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4628,'Beswan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4629,'Bewar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4630,'Bhadarsa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4631,'Bhadohi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4632,'Bhagwantnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4633,'Bharatganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4634,'Bhargain',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4635,'Bharthana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4636,'Bharuhana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4637,'Bharwari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4638,'Bhatni Bazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4639,'Bhatpar Rani',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4640,'Bhawan Bahadurnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4641,'Bhinga',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4642,'Bhojpur Dharampur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4643,'Bhokarhedi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4644,'Bhongaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4645,'Bhulepur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4646,'Bidhuna',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4647,'Bighapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4648,'Bijnor',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4649,'Bijpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4650,'Bikapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4651,'Bilari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4652,'Bilaspur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4653,'Bilgram',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4654,'Bilhaur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4655,'Bilram',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4656,'Bilrayaganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4657,'Bilsanda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4658,'Bilsi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4659,'Bindki',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4660,'Bisalpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4661,'Bisanda Buzurg',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4662,'Bisauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4663,'Bisharatganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4664,'Bisokhar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4665,'Biswan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4666,'Bithur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4667,'Budaun',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4668,'Bugrasi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4669,'Bulandshahar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4670,'Burhana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4671,'Chail',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4672,'Chak Imam Ali',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4673,'Chakeri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4674,'Chakia',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4675,'Chandauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4676,'Chandausi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4677,'Chandpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4678,'Charkhari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4679,'Charthawal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4680,'Chaumuhan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4681,'Chhaprauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4682,'Chhara Rafatpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4683,'Chharprauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4684,'Chhata',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4685,'Chhatari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4686,'Chhibramau',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4687,'Chhutmalpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4688,'Chilkana Sultanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4689,'Chirgaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4690,'Chit Baragaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4691,'Chitrakut Dham',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4692,'Chopan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4693,'Choubepur Kalan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4694,'Chunar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4695,'Churk Ghurma',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4696,'Colonelganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4697,'Dadri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4698,'Dalmau',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4699,'Dankaur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4700,'Dariyabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4701,'Dasna',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4702,'Dataganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4703,'Daurala',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4704,'Dayal Bagh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4705,'Deoband',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4706,'Deoranian',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4707,'Deoria',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4708,'Dewa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4709,'Dhampur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4710,'Dhanauha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4711,'Dhanauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4712,'Dhanaura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4713,'Dharoti Khurd',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4714,'Dhauratanda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4715,'Dhaurhra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4716,'Dibai',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4717,'Dibiyapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4718,'Dildarnagar Fatehpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4719,'Do Ghat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4720,'Dohrighat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4721,'Dostpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4722,'Dudhinagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4723,'Dulhipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4724,'Dundwaraganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4725,'Ekdil',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4726,'Erich',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4727,'Etah',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4728,'Etawah',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4729,'Faizabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4730,'Faizabad Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4731,'Faizganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4732,'Farah',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4733,'Faridnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4734,'Faridpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4735,'Faridpur Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4736,'Fariha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4737,'Farrukhabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4738,'Fatehabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4739,'Fatehganj Pashchimi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4740,'Fatehganj Purvi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4741,'Fatehgarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4742,'Fatehpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4743,'Fatehpur Chaurasi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4744,'Fatehpur Sikri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4745,'Firozabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4746,'Gajraula',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4747,'Ganga Ghat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4748,'Gangapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4749,'Gangoh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4750,'Ganj Muradabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4751,'Garautha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4752,'Garhi Pukhta',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4753,'Garhmukteshwar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4754,'Gaura Barahaj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4755,'Gauri Bazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4756,'Gausganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4757,'Gawan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4758,'Ghatampur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4759,'Ghaziabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4760,'Ghazipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4761,'Ghiror',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4762,'Ghorawal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4763,'Ghosi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4764,'Ghosia Bazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4765,'Ghughuli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4766,'Gohand',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4767,'Gokul',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4768,'Gola Bazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4769,'Gola Gokarannath',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4770,'Gonda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4771,'Gopamau',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4772,'Gopiganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4773,'Gorakhpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4774,'Gosainganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4775,'Govardhan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4776,'Greater Noida',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4777,'Gulaothi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4778,'Gulariya',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4779,'Gulariya Bhindara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4780,'Gunnaur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4781,'Gursahaiganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4782,'Gursarai',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4783,'Gyanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4784,'Hafizpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4785,'Haidergarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4786,'Haldaur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4787,'Hamirpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4788,'Handia',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4789,'Hapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4790,'Hardoi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4791,'Harduaganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4792,'Hargaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4793,'Hariharpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4794,'Harraiya',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4795,'Hasanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4796,'Hasayan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4797,'Hastinapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4798,'Hata',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4799,'Hathras',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4800,'Hyderabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4801,'Ibrahimpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4802,'Iglas',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4803,'Ikauna',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4804,'Iltifatganj Bazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4805,'Indian Telephone Industry Mank',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4806,'Islamnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4807,'Itaunja',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4808,'Itimadpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4809,'Jagner',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4810,'Jahanabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4811,'Jahangirabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4812,'Jahangirpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4813,'Jais',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4814,'Jaithara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4815,'Jalalabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4816,'Jalali',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4817,'Jalalpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4818,'Jalaun',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4819,'Jalesar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4820,'Jamshila',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4821,'Jangipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4822,'Jansath',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4823,'Jarwal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4824,'Jasrana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4825,'Jaswantnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4826,'Jatari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4827,'Jaunpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4828,'Jewar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4829,'Jhalu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4830,'Jhansi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4831,'Jhansi Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4832,'Jhansi Railway Settlement',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4833,'Jhinjhak',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4834,'Jhinjhana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4835,'Jhusi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4836,'Jhusi Kohna',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4837,'Jiyanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4838,'Joya',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4839,'Jyoti Khuria',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4840,'Jyotiba Phule Nagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4841,'Kabrai',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4842,'Kachhauna Patseni',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4843,'Kachhla',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4844,'Kachhwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4845,'Kadaura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4846,'Kadipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4847,'Kailashpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4848,'Kaimganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4849,'Kairana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4850,'Kakgaina',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4851,'Kakod',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4852,'Kakori',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4853,'Kakrala',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4854,'Kalinagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4855,'Kalpi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4856,'Kamalganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4857,'Kampil',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4858,'Kandhla',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4859,'Kandwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4860,'Kannauj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4861,'Kanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4862,'Kant',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4863,'Kanth',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4864,'Kaptanganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4865,'Karaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4866,'Karari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4867,'Karhal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4868,'Karnawal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4869,'Kasganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4870,'Katariya',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4871,'Katghar Lalganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4872,'Kathera',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4873,'Katra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4874,'Katra Medniganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4875,'Kauriaganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4876,'Kemri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4877,'Kerakat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4878,'Khadda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4879,'Khaga',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4880,'Khailar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4881,'Khair',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4882,'Khairabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4883,'Khairagarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4884,'Khalilabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4885,'Khamaria',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4886,'Khanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4887,'Kharela',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4888,'Khargupur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4889,'Khariya',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4890,'Kharkhoda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4891,'Khatauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4892,'Khatauli Rural',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4893,'Khekra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4894,'Kheri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4895,'Kheta Sarai',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4896,'Khudaganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4897,'Khurja',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4898,'Khutar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4899,'Kiraoli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4900,'Kiratpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4901,'Kishanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4902,'Kishni',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4903,'Kithaur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4904,'Koiripur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4905,'Konch',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4906,'Kopaganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4907,'Kora Jahanabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4908,'Korwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4909,'Kosi Kalan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4910,'Kota',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4911,'Kotra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4912,'Kotwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4913,'Kulpahar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4914,'Kunda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4915,'Kundarki',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4916,'Kunwargaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4917,'Kurara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4918,'Kurawali',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4919,'Kursath',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4920,'Kurthi Jafarpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4921,'Kushinagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4922,'Kusmara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4923,'Laharpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4924,'Lakhimpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4925,'Lakhna',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4926,'Lalganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4927,'Lalitpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4928,'Lar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4929,'Lawar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4930,'Ledwa Mahuwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4931,'Lohta',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4932,'Loni',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4933,'Lucknow',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4934,'Machhlishahr',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4935,'Madhoganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4936,'Madhogarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4937,'Maghar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4938,'Mahaban',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4939,'Maharajganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4940,'Mahmudabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4941,'Mahoba',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4942,'Maholi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4943,'Mahona',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4944,'Mahroni',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4945,'Mailani',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4946,'Mainpuri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4947,'Majhara Pipar Ehatmali',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4948,'Majhauli Raj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4949,'Malihabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4950,'Mallanwam',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4951,'Mandawar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4952,'Manikpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4953,'Maniyar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4954,'Manjhanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4955,'Mankapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4956,'Marehra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4957,'Mariahu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4958,'Maruadih',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4959,'Maswasi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4960,'Mataundh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4961,'Mathu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4962,'Mathura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4963,'Mathura Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4964,'Mau',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4965,'Mau Aima',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4966,'Maudaha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4967,'Mauranipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4968,'Maurawan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4969,'Mawana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4970,'Meerut',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4971,'Mehnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4972,'Mehndawal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4973,'Mendu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4974,'Milak',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4975,'Miranpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4976,'Mirat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4977,'Mirat Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4978,'Mirganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4979,'Mirzapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4980,'Misrikh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4981,'Modinagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4982,'Mogra Badshahpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4983,'Mohan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4984,'Mohanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4985,'Mohiuddinpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4986,'Moradabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4987,'Moth',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4988,'Mubarakpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4989,'Mughal Sarai',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4990,'Mughal Sarai Railway Settlemen',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4991,'Muhammadabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4992,'Muhammadi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4993,'Mukrampur Khema',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4994,'Mundia',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4995,'Mundora',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4996,'Muradnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4997,'Mursan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4998,'Musafirkhana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(4999,'Muzaffarnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5000,'Nadigaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5001,'Nagina',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5002,'Nagram',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5003,'Nai Bazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5004,'Nainana Jat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5005,'Najibabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5006,'Nakur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5007,'Nanaunta',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5008,'Nandgaon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5009,'Nanpara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5010,'Naraini',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5011,'Narauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5012,'Naraura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5013,'Naugawan Sadat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5014,'Nautanwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5015,'Nawabganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5016,'Nichlaul',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5017,'Nidhauli Kalan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5018,'Nihtaur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5019,'Nindaura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5020,'Niwari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5021,'Nizamabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5022,'Noida',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5023,'Northern Railway Colony',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5024,'Nurpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5025,'Nyoria Husenpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5026,'Nyotini',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5027,'Obra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5028,'Oel Dhakwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5029,'Orai',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5030,'Oran',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5031,'Ordinance Factory Muradnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5032,'Pachperwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5033,'Padrauna',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5034,'Pahasu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5035,'Paintepur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5036,'Pali',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5037,'Palia Kalan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5038,'Parasi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5039,'Parichha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5040,'Parichhatgarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5041,'Parsadepur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5042,'Patala',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5043,'Patiyali',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5044,'Patti',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5045,'Pawayan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5046,'Phalauda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5047,'Phaphund',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5048,'Phulpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5049,'Phulwaria',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5050,'Pihani',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5051,'Pilibhit',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5052,'Pilkana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5053,'Pilkhuwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5054,'Pinahat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5055,'Pipalsana Chaudhari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5056,'Pipiganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5057,'Pipraich',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5058,'Pipri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5059,'Pratapgarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5060,'Pukhrayan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5061,'Puranpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5062,'Purdil Nagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5063,'Purqazi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5064,'Purwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5065,'Qasimpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5066,'Rabupura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5067,'Radha Kund',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5068,'Rae Bareilly',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5069,'Raja Ka Rampur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5070,'Rajapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5071,'Ramkola',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5072,'Ramnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5073,'Rampur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5074,'Rampur Bhawanipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5075,'Rampur Karkhana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5076,'Rampur Maniharan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5077,'Rampura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5078,'Ranipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5079,'Rashidpur Garhi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5080,'Rasra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5081,'Rasulabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5082,'Rath',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5083,'Raya',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5084,'Renukut',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5085,'Reoti',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5086,'Richha',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5087,'Risia Bazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5088,'Rithora',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5089,'Robertsganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5090,'Roza',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5091,'Rudarpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5092,'Rudauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5093,'Rudayan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5094,'Rura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5095,'Rustamnagar Sahaspur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5096,'Sabatwar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5097,'Sadabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5098,'Sadat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5099,'Safipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5100,'Sahanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5101,'Saharanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5102,'Sahaspur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5103,'Sahaswan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5104,'Sahawar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5105,'Sahibabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5106,'Sahjanwa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5107,'Sahpau',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5108,'Saidpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5109,'Sainthal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5110,'Saiyadraja',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5111,'Sakhanu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5112,'Sakit',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5113,'Salarpur Khadar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5114,'Salimpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5115,'Salon',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5116,'Sambhal',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5117,'Sambhawali',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5118,'Samdhan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5119,'Samthar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5120,'Sandi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5121,'Sandila',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5122,'Sarai Mir',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5123,'Sarai akil',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5124,'Sarauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5125,'Sardhana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5126,'Sarila',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5127,'Sarsawan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5128,'Sasni',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5129,'Satrikh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5130,'Saunkh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5131,'Saurikh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5132,'Seohara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5133,'Sewal Khas',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5134,'Sewarhi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5135,'Shahabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5136,'Shahganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5137,'Shahi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5138,'Shahjahanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5139,'Shahjahanpur Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5140,'Shahpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5141,'Shamli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5142,'Shamsabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5143,'Shankargarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5144,'Shergarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5145,'Sherkot',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5146,'Shikarpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5147,'Shikohabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5148,'Shisgarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5149,'Shivdaspur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5150,'Shivli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5151,'Shivrajpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5152,'Shohratgarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5153,'Siddhanur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5154,'Siddharthnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5155,'Sidhauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5156,'Sidhpura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5157,'Sikandarabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5158,'Sikandarpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5159,'Sikandra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5160,'Sikandra Rao',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5161,'Singahi Bhiraura',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5162,'Sirathu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5163,'Sirsa',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5164,'Sirsaganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5165,'Sirsi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5166,'Sisauli',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5167,'Siswa Bazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5168,'Sitapur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5169,'Siyana',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5170,'Som',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5171,'Sonbhadra',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5172,'Soron',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5173,'Suar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5174,'Sukhmalpur Nizamabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5175,'Sultanpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5176,'Sumerpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5177,'Suriyawan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5178,'Swamibagh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5179,'Tajpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5180,'Talbahat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5181,'Talgram',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5182,'Tambaur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5183,'Tanda',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5184,'Tatarpur Lallu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5185,'Tetribazar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5186,'Thakurdwara',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5187,'Thana Bhawan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5188,'Thiriya Nizamat Khan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5189,'Tikaitnagar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5190,'Tikri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5191,'Tilhar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5192,'Tindwari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5193,'Tirwaganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5194,'Titron',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5195,'Tori Fatehpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5196,'Tulsipur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5197,'Tundla',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5198,'Tundla Kham',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5199,'Tundla Railway Colony',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5200,'Ugu',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5201,'Ujhani',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5202,'Ujhari',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5203,'Umri',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5204,'Umri Kalan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5205,'Un',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5206,'Unchahar',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5207,'Unnao',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5208,'Usaihat',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5209,'Usawan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5210,'Utraula',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5211,'Varanasi',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5212,'Varanasi Cantonment',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5213,'Vijaigarh',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5214,'Vrindavan',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5215,'Wazirganj',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5216,'Zafarabad',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5217,'Zaidpur',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5218,'Zamania',38,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5219,'Almora',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5220,'Almora Cantonment',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5221,'Badrinathpuri',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5222,'Bageshwar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5223,'Bah Bazar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5224,'Banbasa',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5225,'Bandia',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5226,'Barkot',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5227,'Bazpur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5228,'Bhim Tal',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5229,'Bhowali',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5230,'Chakrata',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5231,'Chamba',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5232,'Chamoli and Gopeshwar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5233,'Champawat',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5234,'Clement Town',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5235,'Dehra Dun Cantonment',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5236,'Dehradun',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5237,'Dehrakhas',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5238,'Devaprayag',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5239,'Dhaluwala',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5240,'Dhandera',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5241,'Dharchula',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5242,'Dharchula Dehat',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5243,'Didihat',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5244,'Dineshpur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5245,'Doiwala',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5246,'Dugadda',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5247,'Dwarahat',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5248,'Gadarpur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5249,'Gangotri',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5250,'Gauchar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5251,'Haldwani',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5252,'Haridwar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5253,'Herbertpur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5254,'Jaspur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5255,'Jhabrera',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5256,'Joshimath',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5257,'Kachnal Gosain',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5258,'Kaladungi',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5259,'Kalagarh',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5260,'Karnaprayang',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5261,'Kashipur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5262,'Kashirampur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5263,'Kausani',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5264,'Kedarnath',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5265,'Kelakhera',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5266,'Khatima',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5267,'Kichha',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5268,'Kirtinagar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5269,'Kotdwara',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5270,'Laksar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5271,'Lalkuan',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5272,'Landaura',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5273,'Landhaura Cantonment',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5274,'Lensdaun',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5275,'Logahat',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5276,'Mahua Dabra Haripura',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5277,'Mahua Kheraganj',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5278,'Manglaur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5279,'Masuri',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5280,'Mohanpur Mohammadpur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5281,'Muni Ki Reti',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5282,'Nagla',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5283,'Nainital',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5284,'Nainital Cantonment',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5285,'Nandaprayang',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5286,'Narendranagar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5287,'Pauri',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5288,'Pithoragarh',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5289,'Pratitnagar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5290,'Raipur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5291,'Raiwala',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5292,'Ramnagar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5293,'Ranikhet',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5294,'Ranipur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5295,'Rishikesh',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5296,'Rishikesh Cantonment',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5297,'Roorkee',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5298,'Rudraprayag',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5299,'Rudrapur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5300,'Rurki',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5301,'Rurki Cantonment',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5302,'Shaktigarh',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5303,'Sitarganj',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5304,'Srinagar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5305,'Sultanpur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5306,'Tanakpur',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5307,'Tehri',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5308,'Udham Singh Nagar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5309,'Uttarkashi',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5310,'Vikasnagar',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5311,'Virbhadra',39,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5312,'24 Parganas (n)',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5313,'24 Parganas (s)',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5314,'Adra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5315,'Ahmadpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5316,'Aiho',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5317,'Aistala',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5318,'Alipur Duar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5319,'Alipur Duar Railway Junction',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5320,'Alpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5321,'Amalhara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5322,'Amkula',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5323,'Amlagora',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5324,'Amodghata',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5325,'Amtala',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5326,'Andul',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5327,'Anksa',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5328,'Ankurhati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5329,'Anup Nagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5330,'Arambagh',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5331,'Argari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5332,'Arsha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5333,'Asansol',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5334,'Ashoknagar Kalyangarh',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5335,'Aurangabad',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5336,'Bablari Dewanganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5337,'Badhagachhi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5338,'Baduria',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5339,'Baghdogra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5340,'Bagnan',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5341,'Bagra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5342,'Bagula',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5343,'Baharampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5344,'Bahirgram',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5345,'Bahula',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5346,'Baidyabati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5347,'Bairatisal',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5348,'Baj Baj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5349,'Bakreswar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5350,'Balaram Pota',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5351,'Balarampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5352,'Bali Chak',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5353,'Ballavpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5354,'Bally',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5355,'Balurghat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5356,'Bamunari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5357,'Banarhat Tea Garden',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5358,'Bandel',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5359,'Bangaon',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5360,'Bankra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5361,'Bankura',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5362,'Bansbaria',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5363,'Banshra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5364,'Banupur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5365,'Bara Bamonia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5366,'Barakpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5367,'Barakpur Cantonment',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5368,'Baranagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5369,'Barasat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5370,'Barddhaman',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5371,'Barijhati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5372,'Barjora',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5373,'Barrackpore',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5374,'Baruihuda',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5375,'Baruipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5376,'Barunda',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5377,'Basirhat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5378,'Baska',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5379,'Begampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5380,'Beldanga',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5381,'Beldubi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5382,'Belebathan',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5383,'Beliator',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5384,'Bhadreswar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5385,'Bhandardaha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5386,'Bhangar Raghunathpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5387,'Bhangri Pratham Khanda',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5388,'Bhanowara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5389,'Bhatpara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5390,'Bholar Dabri',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5391,'Bidhannagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5392,'Bidyadharpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5393,'Biki Hakola',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5394,'Bilandapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5395,'Bilpahari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5396,'Bipra Noapara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5397,'Birlapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5398,'Birnagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5399,'Bisarpara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5400,'Bishnupur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5401,'Bolpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5402,'Bongaon',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5403,'Bowali',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5404,'Burdwan',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5405,'Canning',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5406,'Cart Road',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5407,'Chachanda',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5408,'Chak Bankola',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5409,'Chak Enayetnagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5410,'Chak Kashipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5411,'Chakalampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5412,'Chakbansberia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5413,'Chakdaha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5414,'Chakpara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5415,'Champahati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5416,'Champdani',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5417,'Chamrail',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5418,'Chandannagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5419,'Chandpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5420,'Chandrakona',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5421,'Chapari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5422,'Chapui',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5423,'Char Brahmanagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5424,'Char Maijdia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5425,'Charka',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5426,'Chata Kalikapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5427,'Chauhati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5428,'Checha Khata',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5429,'Chelad',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5430,'Chhora',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5431,'Chikrand',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5432,'Chittaranjan',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5433,'Contai',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5434,'Cooch Behar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5435,'Dainhat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5436,'Dakshin Baguan',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5437,'Dakshin Jhapardaha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5438,'Dakshin Rajyadharpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5439,'Dakshin Raypur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5440,'Dalkola',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5441,'Dalurband',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5442,'Darap Pur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5443,'Darjiling',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5444,'Daulatpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5445,'Debipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5446,'Defahat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5447,'Deora',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5448,'Deulia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5449,'Dhakuria',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5450,'Dhandadihi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5451,'Dhanyakuria',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5452,'Dharmapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5453,'Dhatri Gram',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5454,'Dhuilya',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5455,'Dhulagari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5456,'Dhulian',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5457,'Dhupgari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5458,'Dhusaripara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5459,'Diamond Harbour',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5460,'Digha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5461,'Dignala',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5462,'Dinhata',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5463,'Dubrajpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5464,'Dumjor',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5465,'Durgapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5466,'Durllabhganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5467,'Egra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5468,'Eksara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5469,'Falakata',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5470,'Farakka',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5471,'Fatellapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5472,'Fort Gloster',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5473,'Gabberia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5474,'Gadigachha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5475,'Gairkata',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5476,'Gangarampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5477,'Garalgachha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5478,'Garbeta Amlagora',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5479,'Garhbeta',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5480,'Garshyamnagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5481,'Garui',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5482,'Garulia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5483,'Gayespur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5484,'Ghatal',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5485,'Ghorsala',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5486,'Goaljan',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5487,'Goasafat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5488,'Gobardanga',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5489,'Gobindapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5490,'Gopalpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5491,'Gopinathpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5492,'Gora Bazar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5493,'Guma',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5494,'Gurdaha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5495,'Guriahati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5496,'Guskhara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5497,'Habra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5498,'Haldia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5499,'Haldibari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5500,'Halisahar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5501,'Haora',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5502,'Harharia Chak',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5503,'Harindanga',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5504,'Haringhata',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5505,'Haripur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5506,'Harishpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5507,'Hatgachha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5508,'Hatsimla',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5509,'Hijuli',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5510,'Hindustan Cables Town',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5511,'Hooghly',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5512,'Howrah',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5513,'Hugli-Chunchura',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5514,'Humaipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5515,'Ichha Pur Defence Estate',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5516,'Ingraj Bazar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5517,'Islampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5518,'Jafarpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5519,'Jagadanandapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5520,'Jagdishpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5521,'Jagtaj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5522,'Jala Kendua',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5523,'Jaldhaka',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5524,'Jalkhura',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5525,'Jalpaiguri',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5526,'Jamuria',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5527,'Jangipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5528,'Jaygaon',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5529,'Jaynagar-Majilpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5530,'Jemari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5531,'Jemari Township',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5532,'Jetia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5533,'Jhalida',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5534,'Jhargram',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5535,'Jhorhat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5536,'Jiaganj-Azimganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5537,'Joka',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5538,'Jot Kamal',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5539,'Kachu Pukur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5540,'Kajora',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5541,'Kakdihi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5542,'Kakdwip',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5543,'Kalaikunda',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5544,'Kalara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5545,'Kalimpong',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5546,'Kaliyaganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5547,'Kalna',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5548,'Kalyani',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5549,'Kamarhati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5550,'Kanaipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5551,'Kanchrapara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5552,'Kandi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5553,'Kanki',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5554,'Kankuria',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5555,'Kantlia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5556,'Kanyanagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5557,'Karimpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5558,'Karsiyang',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5559,'Kasba',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5560,'Kasimbazar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5561,'Katwa',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5562,'Kaugachhi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5563,'Kenda',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5564,'Kendra Khottamdi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5565,'Kendua',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5566,'Kesabpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5567,'Khagrabari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5568,'Khalia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5569,'Khalor',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5570,'Khandra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5571,'Khantora',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5572,'Kharagpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5573,'Kharagpur Railway Settlement',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5574,'Kharar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5575,'Khardaha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5576,'Khari Mala Khagrabari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5577,'Kharsarai',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5578,'Khatra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5579,'Khodarampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5580,'Kodalia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5581,'Kolaghat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5582,'Kolaghat Thermal Power Project',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5583,'Kolkata',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5584,'Konardihi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5585,'Konnogar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5586,'Krishnanagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5587,'Krishnapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5588,'Kshidirpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5589,'Kshirpai',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5590,'Kulihanda',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5591,'Kulti',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5592,'Kunustara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5593,'Kuperskem',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5594,'Madanpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5595,'Madhusudanpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5596,'Madhyamgram',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5597,'Maheshtala',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5598,'Mahiari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5599,'Mahikpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5600,'Mahira',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5601,'Mahishadal',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5602,'Mainaguri',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5603,'Makardaha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5604,'Mal',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5605,'Malda',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5606,'Mandarbani',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5607,'Mansinhapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5608,'Masila',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5609,'Maslandapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5610,'Mathabhanga',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5611,'Mekliganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5612,'Memari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5613,'Midnapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5614,'Mirik',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5615,'Monoharpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5616,'Mrigala',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5617,'Muragachha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5618,'Murgathaul',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5619,'Murshidabad',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5620,'Nabadhai Dutta Pukur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5621,'Nabagram',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5622,'Nabgram',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5623,'Nachhratpur Katabari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5624,'Nadia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5625,'Naihati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5626,'Nalhati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5627,'Nasra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5628,'Natibpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5629,'Naupala',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5630,'Navadwip',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5631,'Nebadhai Duttapukur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5632,'New Barrackpore',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5633,'Ni Barakpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5634,'Nibra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5635,'Noapara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5636,'Nokpul',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5637,'North Barakpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5638,'Odlabari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5639,'Old Maldah',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5640,'Ondal',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5641,'Pairagachha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5642,'Palashban',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5643,'Panchla',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5644,'Panchpara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5645,'Pandua',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5646,'Pangachhiya',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5647,'Paniara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5648,'Panihati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5649,'Panuhat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5650,'Par Beliya',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5651,'Parashkol',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5652,'Parasia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5653,'Parbbatipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5654,'Parui',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5655,'Paschim Jitpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5656,'Paschim Punro Para',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5657,'Patrasaer',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5658,'Pattabong Tea Garden',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5659,'Patuli',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5660,'Patulia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5661,'Phulia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5662,'Podara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5663,'Port Blair',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5664,'Prayagpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5665,'Pujali',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5666,'Purba Medinipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5667,'Purba Tajpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5668,'Purulia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5669,'Raghudebbati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5670,'Raghudebpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5671,'Raghunathchak',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5672,'Raghunathpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5673,'Raghunathpur-Dankuni',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5674,'Raghunathpur-Magra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5675,'Raigachhi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5676,'Raiganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5677,'Raipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5678,'Rajarhat Gopalpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5679,'Rajpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5680,'Ramchandrapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5681,'Ramjibanpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5682,'Ramnagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5683,'Rampur Hat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5684,'Ranaghat',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5685,'Raniganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5686,'Ratibati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5687,'Raypur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5688,'Rishra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5689,'Rishra Cantonment',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5690,'Ruiya',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5691,'Sahajadpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5692,'Sahapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5693,'Sainthia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5694,'Salap',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5695,'Sankarpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5696,'Sankrail',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5697,'Santoshpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5698,'Saontaidih',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5699,'Sarenga',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5700,'Sarpi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5701,'Satigachha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5702,'Serpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5703,'Shankhanagar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5704,'Shantipur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5705,'Shrirampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5706,'Siduli',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5707,'Siliguri',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5708,'Simla',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5709,'Singur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5710,'Sirsha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5711,'Siuri',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5712,'Sobhaganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5713,'Sodpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5714,'Sonamukhi',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5715,'Sonatikiri',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5716,'Srikantabati',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5717,'Srirampur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5718,'Sukdal',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5719,'Taherpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5720,'Taki',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5721,'Talbandha',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5722,'Tamluk',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5723,'Tarakeswar',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5724,'Tentulberia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5725,'Tentulkuli',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5726,'Thermal Power Project',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5727,'Tinsukia',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5728,'Titagarh',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5729,'Tufanganj',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5730,'Ukhra',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5731,'Ula',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5732,'Ulubaria',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5733,'Uttar Durgapur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5734,'Uttar Goara',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5735,'Uttar Kalas',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5736,'Uttar Kamakhyaguri',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5737,'Uttar Latabari',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5738,'Uttar Mahammadpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5739,'Uttar Pirpur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5740,'Uttar Raypur',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5741,'Uttarpara-Kotrung',41,101,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5742,'Abohar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5743,'Adampur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5744,'Ahmedgarh',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5745,'Ajnala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5746,'Akalgarh',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5747,'Alawalpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5748,'Amloh',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5749,'Amritsar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5750,'Amritsar Cantonment',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5751,'Anandpur Sahib',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5752,'Badhni Kalan',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5753,'Bagh Purana',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5754,'Balachaur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5755,'Banaur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5756,'Banga',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5757,'Banur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5758,'Baretta',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5759,'Bariwala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5760,'Barnala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5761,'Bassi Pathana',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5762,'Batala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5763,'Bathinda',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5764,'Begowal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5765,'Behrampur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5766,'Bhabat',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5767,'Bhadur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5768,'Bhankharpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5769,'Bharoli Kalan',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5770,'Bhawanigarh',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5771,'Bhikhi',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5772,'Bhikhiwind',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5773,'Bhisiana',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5774,'Bhogpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5775,'Bhuch',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5776,'Bhulath',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5777,'Budha Theh',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5778,'Budhlada',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5779,'Chima',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5780,'Chohal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5781,'Dasuya',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5782,'Daulatpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5783,'Dera Baba Nanak',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5784,'Dera Bassi',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5785,'Dhanaula',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5786,'Dharam Kot',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5787,'Dhariwal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5788,'Dhilwan',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5789,'Dhuri',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5790,'Dinanagar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5791,'Dirba',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5792,'Doraha',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5793,'Faridkot',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5794,'Fateh Nangal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5795,'Fatehgarh Churian',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5796,'Fatehgarh Sahib',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5797,'Fazilka',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5798,'Firozpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5799,'Firozpur Cantonment',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5800,'Gardhiwala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5801,'Garhshankar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5802,'Ghagga',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5803,'Ghanaur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5804,'Giddarbaha',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5805,'Gobindgarh',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5806,'Goniana',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5807,'Goraya',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5808,'Gurdaspur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5809,'Guru Har Sahai',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5810,'Hajipur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5811,'Handiaya',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5812,'Hariana',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5813,'Hoshiarpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5814,'Hussainpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5815,'Jagraon',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5816,'Jaitu',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5817,'Jalalabad',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5818,'Jalandhar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5819,'Jalandhar Cantonment',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5820,'Jandiala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5821,'Jugial',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5822,'Kalanaur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5823,'Kapurthala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5824,'Karoran',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5825,'Kartarpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5826,'Khamanon',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5827,'Khanauri',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5828,'Khanna',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5829,'Kharar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5830,'Khem Karan',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5831,'Kot Fatta',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5832,'Kot Isa Khan',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5833,'Kot Kapura',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5834,'Kotkapura',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5835,'Kurali',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5836,'Lalru',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5837,'Lehra Gaga',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5838,'Lodhian Khas',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5839,'Longowal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5840,'Ludhiana',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5841,'Machhiwara',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5842,'Mahilpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5843,'Majitha',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5844,'Makhu',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5845,'Malaut',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5846,'Malerkotla',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5847,'Maloud',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5848,'Mandi Gobindgarh',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5849,'Mansa',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5850,'Maur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5851,'Moga',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5852,'Mohali',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5853,'Moonak',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5854,'Morinda',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5855,'Mukerian',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5856,'Muktsar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5857,'Mullanpur Dakha',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5858,'Mullanpur Garibdas',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5859,'Munak',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5860,'Muradpura',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5861,'Nabha',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5862,'Nakodar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5863,'Nangal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5864,'Nawashahr',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5865,'Naya Nangal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5866,'Nehon',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5867,'Nurmahal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5868,'Pathankot',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5869,'Patiala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5870,'Patti',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5871,'Pattran',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5872,'Payal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5873,'Phagwara',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5874,'Phillaur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5875,'Qadian',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5876,'Rahon',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5877,'Raikot',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5878,'Raja Sansi',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5879,'Rajpura',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5880,'Ram Das',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5881,'Raman',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5882,'Rampura',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5883,'Rayya',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5884,'Rupnagar',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5885,'Rurki Kasba',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5886,'Sahnewal',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5887,'Samana',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5888,'Samrala',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5889,'Sanaur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5890,'Sangat',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5891,'Sangrur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5892,'Sansarpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5893,'Sardulgarh',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5894,'Shahkot',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5895,'Sham Churasi',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5896,'Shekhpura',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5897,'Sirhind',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5898,'Sri Hargobindpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5899,'Sujanpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5900,'Sultanpur Lodhi',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5901,'Sunam',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5902,'Talwandi Bhai',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5903,'Talwara',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5904,'Tappa',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5905,'Tarn Taran',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5906,'Urmar Tanda',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5907,'Zira',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5908,'Zirakpur',2728,166,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5909,'Eshkashem',42,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5910,'Fayzabad',42,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5911,'Jurm',42,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5912,'Khandud',42,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5913,'Qal\'eh-ye Panjeh',42,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5914,'Bala Morghab',43,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5915,'Qal\'eh-ye Naw',43,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5916,'Andarab',44,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5917,'Baghlan',44,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5918,'Dahaneh-ye Ghawri',44,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5919,'Nahrin',44,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5920,'Pol-e Khumri',44,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5921,'Balkh',45,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5922,'Dawlatabad',45,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5923,'Mazar-e Sharif',45,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5924,'Qarchi Gak',45,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5925,'Shulgara',45,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5926,'Tash Gozar',45,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5927,'Bamiyan',46,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5928,'Panjab',46,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5929,'Qil Qal\'eh',46,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5930,'Anar Darreh',47,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5931,'Farah',47,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5932,'Shindand',47,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5933,'Andkhvoy',48,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5934,'Darzi Ab',48,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5935,'Dawlatabad',48,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5936,'Maymanah',48,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5937,'Chaghcharan',49,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5938,'Shahrak',49,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5939,'Taywarah',49,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5940,'Ghazni',50,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5941,'Awbeh',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5942,'Eslam Qal\'eh',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5943,'Ghurian',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5944,'Herat',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5945,'Karukh',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5946,'Kuhestan',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5947,'Kushk',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5948,'Qarabagh',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5949,'Tawraghudi',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5950,'Tir Pol',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5951,'Zendejan',51,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5952,'Baghran',52,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5953,'Darwishan',52,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5954,'Deh Shu',52,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5955,'Gereshk',52,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5956,'Lashkar Gah',52,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5957,'Sangin',52,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5958,'Aqchah',53,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5959,'Qarqin',53,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5960,'Sang-e Charak',53,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5961,'Shibarghan',53,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5962,'Baghrami',54,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5963,'Kabul',54,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5964,'Mir Bachchekut',54,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5965,'Paghman',54,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5966,'Qarabagh',54,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5967,'Sarawbi',54,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5968,'Mahmud-e Raqi',55,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5969,'Taghab',55,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5970,'Khawst',56,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5971,'Asadabad',57,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5972,'Asmar',57,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5973,'Mehtar Lam',58,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5974,'Azraw',59,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5975,'Baraki Barak',59,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5976,'Pol-e Alam',59,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5977,'Achin',60,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5978,'Batsawul',60,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5979,'Hugyani',60,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5980,'Jalalabad',60,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5981,'Nader Shah Kawt',60,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5982,'Chahar Burjak',61,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5983,'Chakhansur',61,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5984,'Khash',61,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5985,'Mirabad',61,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5986,'Rudbar',61,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5987,'Zaranj',61,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5988,'Nuristan',62,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5989,'Orgun',63,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5990,'Zareh Sharan',63,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5991,'Zarghun Shahr',63,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5992,'\'Ali Khayl',64,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5993,'Ghardez',64,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5994,'Charikar',65,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5995,'Jabal-os-Saraj',65,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5996,'Qandahar',66,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5997,'Dasht-e Archa',67,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5998,'Emam Saheb',67,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(5999,'Hazart Imam',67,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6000,'Khanabad',67,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6001,'Qal\'eh-ye Zal',67,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6002,'Qunduz',67,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6003,'Aybak',68,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6004,'Kholm',68,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6005,'Chah Ab',70,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6006,'Eshkamesh',70,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6007,'Farkhar',70,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6008,'Khwajeh Ghar',70,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6009,'Rostaq',70,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6010,'Taloqan',70,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6011,'Yangi Qal\'eh',70,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6012,'Deh Rawud',71,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6013,'Gaz Ab',71,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6014,'Tarin Kawt',71,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6015,'Uruzgan',71,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6016,'Gardan Diwal',72,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6017,'Maydanshahr',72,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6018,'Qalat-e Ghilzay',73,1,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6019,'Berat',74,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6020,'Polican',74,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6021,'Ure Vajgurore',74,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6022,'Bulqize',75,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6023,'Delvine',76,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6024,'Bilisht',77,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6025,'Maqellare',78,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6026,'Peshkopi',78,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6027,'Durres',79,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6028,'Shijak',79,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6029,'Cerrik',80,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6030,'Elbasan',80,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6031,'Kerrabe',80,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6032,'Fier',81,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6033,'Patos',81,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6034,'Roskovec',81,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6035,'Gjirokaster',82,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6036,'Libohove',82,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6037,'Gramsh',83,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6038,'Krume',84,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6039,'Kavaje',85,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6040,'Erseke',86,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6041,'Leskovik',86,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6042,'Korce',87,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6043,'Maliq',87,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6044,'Fushe-Kruje',88,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6045,'Kruje',88,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6046,'Mamurras',88,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6047,'Milot',88,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6048,'Kucove',89,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6049,'Kukes',90,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6050,'Lac',91,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6051,'Lezhe',92,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6052,'Shengjin',92,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6053,'Librazhd',93,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6054,'Perrenjas',93,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6055,'Lushnje',94,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6056,'Rrogozhine',94,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6057,'Ballsh',95,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6058,'Burrel',97,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6059,'Klos',97,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6060,'Kraste',97,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6061,'Ulze',97,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6062,'Kurbnesh',98,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6063,'Rreshen',98,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6064,'Rubik',98,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6065,'Peqin',99,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6066,'Kelcyre',100,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6067,'Permet',100,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6068,'Pogradec',101,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6069,'Fierze',102,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6070,'Fushe-Arrez',102,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6071,'Puke',102,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6072,'Konispol',103,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6073,'Sarande',103,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6074,'Shkoder',104,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6075,'Corovode',105,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6076,'Memaliaj',106,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6077,'Tepelene',106,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6078,'Kamze',107,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6079,'Paskuqan',107,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6080,'Tirane',107,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6081,'Vore',107,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6082,'Bajram Curri',108,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6083,'Himare',109,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6084,'Orikum',109,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6085,'Selenice',109,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6086,'Vlore',109,2,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6087,'Adrar',112,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6088,'Awlaf',112,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6089,'Rijan',112,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6090,'Timimun',112,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6091,'Hydra',113,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6092,'Kouba',113,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6093,'Annabah',114,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6094,'Birrahhal',114,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6095,'Saraydih',114,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6096,'Sidi Amar',114,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6097,'al-Buni',114,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6098,'al-Hajar',114,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6099,'\'Abadlah',115,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6100,'Bani Wanif',115,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6101,'Bashshar',115,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6102,'Qanadsan',115,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6103,'Taghit',115,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6104,'\'Aris',116,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6105,'\'Ayn Tutah',116,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6106,'Barikah',116,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6107,'Batnah',116,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6108,'Marwanah',116,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6109,'Naghaus',116,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6110,'Ra\'s-al-\'Ayun',116,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6111,'Tazult',116,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6112,'\'Ayt Rizin',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6113,'Akbu',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6114,'Amizur',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6115,'Barbasha',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6116,'Bijayah',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6117,'Farrawn',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6118,'Ighram',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6119,'Sadduk',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6120,'Shamini',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6121,'Sidi \'Aysh',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6122,'Taskaryut',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6123,'Tazmalt',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6124,'Timazrit',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6125,'Uz-al-Laqin',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6126,'al-Qasr',117,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6127,'Awlad Jallal',118,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6128,'Biskrah',118,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6129,'Sidi Khalid',118,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6130,'Sidi Ukbah',118,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6131,'Tulja',118,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6132,'Um\'ash',118,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6133,'Zaribat-al-Wad',118,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6134,'Awlad Salam',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6135,'Awlad Yaysh',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6136,'Bani Khalil',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6137,'Bani Marad',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6138,'Bani Tamu',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6139,'Blidah',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6140,'Bu Arfa',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6141,'Bufarik',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6142,'Buinan',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6143,'Buqara',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6144,'Maftah',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6145,'Muzayah',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6146,'Shabli',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6147,'Shari\'ah',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6148,'Shiffa',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6149,'Sidi Mussa',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6150,'Suma',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6151,'Wadi al-Allagh',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6152,'al-\'Afrun',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6153,'al-Arba\'a',119,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6154,'\'Ayn Bissim',120,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6155,'Aghbalu',120,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6156,'Bi\'r Ghabalu',120,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6157,'Buirah',120,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6158,'Lakhdariyah',120,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6159,'Shurfa',120,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6160,'Sur-al-Ghuzlan',120,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6161,'\'Ayn Tayah',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6162,'Awlad Haddaj',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6163,'Awlad Mussa',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6164,'Bani Amran',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6165,'Budwawu',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6166,'Budwawu al-Bahri',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6167,'Bumardas',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6168,'Burj Minayal',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6169,'Dalis',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6170,'Hammadi',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6171,'Issar',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6172,'Khamis-al-Khashnah',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6173,'Nasiriyah',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6174,'Raghayah',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6175,'Sa\'abat',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6176,'Tinyah',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6177,'al-Arba\'a Tash',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6178,'ar-Ruwibah',121,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6179,'Ammi Mussa',123,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6180,'Ghalizan',123,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6181,'Jidiwiyah',123,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6182,'Mazunah',123,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6183,'Sidi Muhammad Ban \'Ali',123,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6184,'Wadi Rahiyu',123,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6185,'Zammurah',123,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6186,'Biryan',124,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6187,'Bu Nura',124,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6188,'Ghardaia',124,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6189,'Ghardayah',124,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6190,'Matlili',124,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6191,'al-Ghuli\'ah',124,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6192,'al-Qararah',124,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6193,'Ilizi',125,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6194,'Amir \'Abd-al-Qadar',126,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6195,'Jijili',126,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6196,'Shifka',126,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6197,'Tahar',126,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6198,'al-Miliyah',126,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6199,'\'Ayn Wissarah',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6200,'\'Ayn-al-Ibil',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6201,'Birin',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6202,'Dar Shiyukh',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6203,'Hassi Bahbah',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6204,'Jilfah',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6205,'Mis\'ad',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6206,'Sharif',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6207,'al-Idrisiyah',127,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6208,'Khanshalah',128,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6209,'Sharshar',128,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6210,'Tawziyanat',128,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6211,'al-Mahmal',128,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6212,'\'Ayn-al-Hajal',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6213,'\'Ayn-al-Milh',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6214,'Bu Sa\'adah',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6215,'Hammam Dhala\'a',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6216,'Ma\'adid',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6217,'Maghra',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6218,'Masilah',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6219,'Sidi \'Aysa',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6220,'Wanugha',129,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6221,'\'Ayn Bu Sif',130,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6222,'Birwaghiyah',130,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6223,'Midyah',130,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6224,'Qasr-al-Bukhari',130,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6225,'Shillalah',130,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6226,'Tablat',130,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6227,'Farjiwah',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6228,'Milah',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6229,'Qararam Quqa',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6230,'Ruwashad',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6231,'Salghum-al-\'Ayd',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6232,'Sidi Maruf',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6233,'Sidi Marwan',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6234,'Tajananah',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6235,'Talighmah',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6236,'Wadi Athmaniyah',131,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6237,'Bu Khanifiyah',132,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6238,'Muaskar',132,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6239,'Muhammadiyah',132,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6240,'Siq',132,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6241,'Tighinnif',132,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6242,'Wadi al-Abtal',132,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6243,'Zahana',132,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6244,'\'Ayn Tadalas',133,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6245,'Hassi Mamash',133,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6246,'Mazaghran',133,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6247,'Mustaghanam',133,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6248,'Sidi Ali',133,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6249,'\'Ayn Safra',134,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6250,'Mishriyah',134,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6251,'Naama',134,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6252,'Oran',135,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6253,'Ouargla',136,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6254,'\'Ayn Bardah',137,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6255,'Bumahra Ahmad',137,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6256,'Hamman Awlad \'Ali',137,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6257,'Qalmah',137,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6258,'Wadi Zinati',137,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6259,'\'Ayn Abid',138,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6260,'\'Ayn Samara',138,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6261,'Didush Murad',138,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6262,'Hamma Bu Ziyan',138,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6263,'Qustantinah',138,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6264,'Zighut Yusuf',138,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6265,'al-Khurub',138,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6266,'\'Azzabah',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6267,'Amjaz Adshish',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6268,'Fil Fila',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6269,'Karkira',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6270,'Ramadan Jamal',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6271,'Sakikdah',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6272,'Shataybih',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6273,'Tamalus',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6274,'al-Harush',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6275,'al-Qull',139,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6276,'\'Ayn \'Azl',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6277,'\'Ayn Arnat',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6278,'\'Ayn Taqrut',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6279,'\'Ayn Wilman',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6280,'\'Ayn-al-Khabira',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6281,'Bouira',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6282,'Buq\'ah',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6283,'Salah Bay',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6284,'Satif',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6285,'Setif',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6286,'Ziyama Mansuriyah',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6287,'al-\'Ulmah',140,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6288,'\'Ayn-al-Hajar',141,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6289,'Sayda\'',141,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6290,'\'Ayn Qazzan',144,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6291,'\'Ayn Salah',144,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6292,'Tamanghasat',144,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6293,'\'Ayn Binyan',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6294,'Bu Isma\'il',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6295,'Bu Midfar\'ah',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6296,'Damus',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6297,'Duwirah',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6298,'Hajut',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6299,'Hammam Righa',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6300,'Sawlah',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6301,'Shiragha',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6302,'Shirshall',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6303,'Sidi Farj',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6304,'Stawali',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6305,'Tibazah',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6306,'Ziralda',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6307,'al-Qull\'ah',145,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6308,'Bi\'r-al-\'Itir',146,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6309,'Hammamat',146,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6310,'Mursut',146,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6311,'Shariyah',146,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6312,'Tibissah',146,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6313,'Winzah',146,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6314,'al-\'Awaynat',146,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6315,'Awlad Mimun',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6316,'Bani Mastar',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6317,'Bani Sikran',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6318,'Ghazawat',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6319,'Hannayah',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6320,'Maghniyah',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6321,'Nidruma',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6322,'Ramsh',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6323,'Sabra',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6324,'Shatwan',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6325,'Sibdu',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6326,'Sidi \'Abdallah',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6327,'Tilimsan',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6328,'al-Mansurah',147,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6329,'Tinduf',148,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6330,'Thaniyat-al-Had',149,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6331,'Tisamsilt',149,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6332,'\'Ayn Dhahab',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6333,'Firindah',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6334,'Mahdiyah',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6335,'Mashra\'a Asfa',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6336,'Qasr Shillalah',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6337,'Rahuyah',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6338,'Sughar',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6339,'Takhamarat',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6340,'Tiyarat',150,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6341,'\'Ayn Bayda',152,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6342,'\'Ayn Fakrun',152,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6343,'\'Ayn Kirshah',152,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6344,'\'Ayn Malilah',152,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6345,'Bi\'r Shuhada',152,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6346,'Miskyanah',152,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6347,'Shamurah',152,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6348,'Umm-al-Bawaghi',152,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6349,'\'Ayn Biya',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6350,'\'Ayn-at-Turk',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6351,'Arzu',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6352,'Bi\'r-al-Jir',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6353,'Butlilis',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6354,'Hassi Bu Nif',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6355,'Mars-al-Kabir',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6356,'Qadayal',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6357,'Sidi ash-Shami',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6358,'Wadi Thalatha',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6359,'Wahran',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6360,'al-Ansur',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6361,'as-Saniyah',153,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6362,'Hassi Mas\'ud',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6363,'Nazla',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6364,'Ruwisiyat',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6365,'Tabisbast',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6366,'Tamalhat',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6367,'Tamasin',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6368,'Tayabat-al-Janubiyah',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6369,'Tughghurt',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6370,'Warqla',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6371,'al-Hajirah',154,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6372,'Aflu',158,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6373,'Hassi al-Raml',158,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6374,'al-Aghwat',158,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6375,'Brizyanah',159,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6376,'al-Abyad Sidi Shaykh',159,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6377,'al-Bayadh',159,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6378,'Bab Azwar',160,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6379,'Baraki',160,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6380,'Bir Murad Rais',160,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6381,'Birkhadam',160,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6382,'Burj-al-Kiffan',160,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6383,'Dar-al-Bayda',160,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6384,'al-Jaza\'ir',160,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6385,'Bayadha',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6386,'Dabilah',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6387,'Hassan \'Abd-al-Karim',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6388,'Hassi Halifa',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6389,'Jama\'a',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6390,'Maqran',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6391,'Qamar',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6392,'Raqiba',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6393,'Rubbah',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6394,'Sidi Amran',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6395,'al-Mighair',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6396,'al-Wad',161,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6397,'\'Ayn Maran',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6398,'Abu al-Hassan',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6399,'Bani Hawa',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6400,'Bu Qadir',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6401,'Sidi Ukaskah',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6402,'Tanas',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6403,'Wadi Sali',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6404,'Wadi al-Fiddah',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6405,'ash-Shalif',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6406,'ash-Shattiyah',162,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6407,'Ban Mahdi',163,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6408,'Bani Amar',163,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6409,'Basbas',163,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6410,'Dariyan',163,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6411,'Saba\'ita Muk',163,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6412,'al-Qal\'ah',163,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6413,'at-Tarif',163,3,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6414,'Afono',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6415,'Alao',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6416,'Alofau',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6417,'Amouli',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6418,'Aoa',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6419,'Atu\'u',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6420,'Aua',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6421,'Aunu\'u',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6422,'Faga\'alu',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6423,'Faga\'itua',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6424,'Fagasa',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6425,'Fagatogo',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6426,'Lauli\'i',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6427,'Leloaloa',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6428,'Nu\'uuli',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6429,'Pago Pago',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6430,'Tula',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6431,'Utulei',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6432,'Vatia',164,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6433,'Ofu',165,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6434,'Aoloau',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6435,'Faleniu',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6436,'Futiga',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6437,'Ili\'ili',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6438,'Leone',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6439,'Malaeimi',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6440,'Malaeloa-Aitulagi',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6441,'Malaeloa-Ituau',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6442,'Mapusagafou',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6443,'Mesepa',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6444,'Pava\'ia\'i',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6445,'Tafuna',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6446,'Taputimu',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6447,'Vailoatai',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6448,'Vaitogi',167,4,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6449,'Canillo',169,5,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6450,'Encamp',170,5,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6451,'Ordino',173,5,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6452,'Caxito',175,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6453,'Benguela',176,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6454,'Lobito',176,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6455,'Camacupa',177,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6456,'Catabola',177,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6457,'Catumbela',177,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6458,'Chissamba',177,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6459,'Kuito',177,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6460,'Cabinda',178,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6461,'Ondjiva',179,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6462,'Caala',180,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6463,'Catchiungo',180,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6464,'Huambo',180,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6465,'Longonjo',180,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6466,'Caconda',181,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6467,'Caluquembe',181,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6468,'Lubango',181,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6469,'Menongue',182,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6470,'Luanda',185,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6471,'Malanje',188,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6472,'Cazaje',189,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6473,'Leua',189,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6474,'Luau',189,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6475,'Luena',189,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6476,'Lumeje',189,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6477,'Namibe',190,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6478,'Camabatela',191,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6479,'Uige',191,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6480,'M\'banza-Kongo',192,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6481,'N\'zeto',192,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6482,'Soyo',192,6,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6483,'Codrington',201,9,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6484,'Catamarca',209,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6485,'Presidencia Roque Saenz Pena',210,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6486,'Resistencia',210,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6487,'Comodoro Rivadavia',211,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6488,'Puerto Madryn',211,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6489,'Rawson',211,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6490,'Trelew',211,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6491,'Alta Gracia',212,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6492,'Bell Ville',212,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6493,'Cordoba',212,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6494,'Rio Cuarto',212,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6495,'Rio Tercero',212,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6496,'San Francisco',212,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6497,'Villa Carlos Paz',212,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6498,'Villa Maria',212,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6499,'Corrientes',213,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6500,'Goya',213,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6501,'Mercedes',213,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6502,'San Lorenzo',213,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6503,'Formosa',216,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6504,'Jujuy',217,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6505,'Libertador General San Martin',217,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6506,'San Pedro',217,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6507,'Godoy Cruz',220,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6508,'Lujan',220,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6509,'Mendoza',220,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6510,'Rivadavia',220,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6511,'San Martin',220,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6512,'San Rafael',220,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6513,'Eldorado',221,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6514,'Obera',221,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6515,'Posadas',221,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6516,'Cutral Co',222,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6517,'Neuquen',222,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6518,'Salta',224,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6519,'San Ramon de la Nueva Oran',224,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6520,'Tartagal',224,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6521,'Tucuman',231,10,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6522,'Ashtarak',232,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6523,'Talin',232,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6524,'Ararat',233,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6525,'Artashat',233,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6526,'Armavir',234,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6527,'Vagharshapat',234,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6528,'Gavar',235,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6529,'Martuni',235,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6530,'Sevan',235,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6531,'Vardenis',235,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6532,'Abovyan',236,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6533,'Arzni',236,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6534,'Charentsavan',236,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6535,'Hrazdan',236,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6536,'Akhtala',237,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6537,'Alaverdi',237,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6538,'Spitak',237,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6539,'Stepanavan',237,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6540,'Tashir',237,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6541,'Vanadzor',237,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6542,'Artik',238,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6543,'Gyumri',238,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6544,'Stepanakert',239,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6545,'Angeghakot',240,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6546,'Goris',240,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6547,'Kajaran',240,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6548,'Kapan',240,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6549,'Meghri',240,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6550,'Sisian',240,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6551,'Dilijan',241,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6552,'Ijevan',241,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6553,'Yerevan',243,11,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6554,'Aruba',244,12,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6555,'Glenfield',245,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6556,'Henderson',245,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6557,'Milford',245,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6558,'Balgowlah',247,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6559,'Balmain',248,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6560,'Bankstown',249,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6561,'Camberwell',252,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6562,'Caulfield',255,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6563,'Chatswood',256,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6564,'Cheltenham',257,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6565,'Cherrybrook',258,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6566,'Clayton',259,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6567,'Collingwood',260,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6568,'Hawthorn',262,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6569,'Jannnali',263,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6570,'Knoxfield',264,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6571,'Melbourne',265,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6572,'South Oakleigh',265,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6573,'Cottesole',268,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6574,'Darch',268,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6575,'Mullaloo',268,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6576,'Noranda',268,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6577,'Osborne Park',268,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6578,'Willetton',268,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6579,'Acacia Ridge',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6580,'Aitkenvale',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6581,'Alderley',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6582,'Alexander Hills',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6583,'Archerfield',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6584,'Ashmore',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6585,'Atherton',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6586,'Ayr',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6587,'Beachmere',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6588,'Beenleigh',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6589,'Beerwah',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6590,'Bell',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6591,'Belmont',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6592,'Biloela',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6593,'Birkdale',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6594,'Blackwater',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6595,'Bongaree',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6596,'Bonogin',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6597,'Boonah',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6598,'Bowen',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6599,'Brendale',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6600,'Brisbane',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6601,'Buddina',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6602,'Buderim',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6603,'Bundaberg',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6604,'Bundall',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6605,'Burleigh Heads',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6606,'Burpengary',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6607,'Cabaland',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6608,'Caboolture',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6609,'Cairns',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6610,'Cairns Northern Beaches',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6611,'Caloundra',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6612,'Capalaba',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6613,'Charters Towers',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6614,'Childers',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6615,'Cleveland',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6616,'Coolum Beach',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6617,'Coopers Plain',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6618,'Dalby',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6619,'Deception Bay',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6620,'Eagle Farm',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6621,'Eagleby',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6622,'Emerald',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6623,'Emundi',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6624,'Forest Lake',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6625,'Gatton',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6626,'Gladstone',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6627,'Gold Coast',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6628,'Gowrie Junction',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6629,'Gympie',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6630,'Helensvale',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6631,'Hervey Bay',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6632,'Ingham',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6633,'Innisfail',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6634,'Ipswich',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6635,'Jindalee',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6636,'Julatten',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6637,'Kawana Waters',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6638,'Kingaroy',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6639,'Lawnton',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6640,'Loganholme',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6641,'Mackay',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6642,'Mareeba',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6643,'Maroochydore',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6644,'Maroochydore-Mooloolaba',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6645,'Maryborough',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6646,'Miami',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6647,'Milton',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6648,'Molendinar',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6649,'Moranbah',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6650,'Morayfield',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6651,'Mossman',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6652,'Mount Glorious',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6653,'Mount Isa',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6654,'Murarrie',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6655,'Nairand Kay',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6656,'Nambour',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6657,'Nerang',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6658,'Nobby Beach',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6659,'Noosa Heads',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6660,'Noosaville',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6661,'Paddington',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6662,'Port Douglas',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6663,'Robina',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6664,'Rockhampton',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6665,'Rocklea',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6666,'Roma',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6667,'Rubyvale',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6668,'Sanctuary Cove',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6669,'Slade Point',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6670,'Southport',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6671,'Suburb',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6672,'Sunshine Coast',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6673,'Tewantin-Noosa',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6674,'The Summit',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6675,'Toowong',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6676,'Toowoomba',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6677,'Townsville',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6678,'Victoria Point',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6679,'Warwick',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6680,'Willawong',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6681,'Yatala',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6682,'Yeppoon',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6683,'Zillmere',269,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6684,'Bridgewater-Gagebrook',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6685,'Burnie',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6686,'Burnie-Devonport',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6687,'Glenorchy',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6688,'Hobart',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6689,'Kingston-Blackmans Bay',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6690,'Launceston',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6691,'New Norfolk',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6692,'Rowella',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6693,'Sheffield',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6694,'Ulverstone',271,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6695,'Templestowe',272,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6696,'Albion',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6697,'Ararat',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6698,'Avenel',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6699,'Avondale Heights',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6700,'Baccus Marsh',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6701,'Bairnsdale',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6702,'Ballarat',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6703,'Balwyn',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6704,'Batman',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6705,'Bayswater',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6706,'Belmont',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6707,'Benalla',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6708,'Bendigo',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6709,'Bentleigh East',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6710,'Berwick',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6711,'Blackburn',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6712,'Blue Mountains',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6713,'Boonah',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6714,'Boronia',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6715,'Box Hill',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6716,'Brighton East',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6717,'Bundoora',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6718,'Campbellfield',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6719,'Carlton South',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6720,'Caroline Springs',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6721,'Castle Hill',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6722,'Castlemaine',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6723,'Caulfield',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6724,'Cheltenham',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6725,'Chester',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6726,'Clayton South',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6727,'Clifton Springs',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6728,'Coburg',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6729,'Colac',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6730,'Collingwood',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6731,'Craigieburn',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6732,'Cranbourne',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6733,'Crib Point',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6734,'Dandenong',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6735,'Devon Meadows',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6736,'Diamond Creek',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6737,'Doncaster East',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6738,'Doncester',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6739,'Donvale',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6740,'Echuca-Moama',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6741,'Elsternwick',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6742,'Eltham',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6743,'Fairfield',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6744,'Fitzroy',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6745,'Frnakston',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6746,'Geelong',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6747,'Glen Waverley',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6748,'Glenorchy',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6749,'Hallam',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6750,'Hamilton',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6751,'Hastings',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6752,'Healesville',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6753,'Horsham',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6754,'Hughesdale',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6755,'Ivanhoe',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6756,'Keilor',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6757,'Kensington',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6758,'Kerang',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6759,'Kilmore',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6760,'Kilsyth',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6761,'Kyabram',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6762,'Lakes Entrance',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6763,'Lalor',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6764,'Lara',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6765,'Laverton North',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6766,'Leopold',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6767,'Lower Templestowe',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6768,'Maidstone',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6769,'Malvern',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6770,'Maryborough',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6771,'Melbourne',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6772,'Melton',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6773,'Middle Park',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6774,'Mildura',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6775,'Mitcham',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6776,'Moe-Yallourn',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6777,'Moorabbin',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6778,'Mordialloc',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6779,'Morwell',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6780,'Mulgrave',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6781,'Murrumbeena',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6782,'Neerim South',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6783,'Noble Park North',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6784,'Notting Hill',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6785,'Oak Park',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6786,'Ocean Grove-Barwon Heads',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6787,'Olinda',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6788,'Pakenham',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6789,'Park Orchards',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6790,'Port Melbourne',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6791,'Portland',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6792,'Prahran',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6793,'Preston',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6794,'Pritbourne',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6795,'Queenscliff',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6796,'Reservoir',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6797,'Ringwood',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6798,'Rowville',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6799,'Sale',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6800,'Sandringham',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6801,'Scoresby',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6802,'Sebastopol',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6803,'Seymour',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6804,'Shepparton-Mooroopna',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6805,'Somerville',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6806,'South Yarra',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6807,'Southbank',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6808,'St. Albans',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6809,'St. Kilda East',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6810,'Stawell',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6811,'Sunbury',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6812,'Sunshine West',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6813,'Swan Hill',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6814,'Tatura',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6815,'Thomastown',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6816,'Thornbury',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6817,'Tongala',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6818,'Torquay',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6819,'Traralgon',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6820,'Tullamarine',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6821,'Vermont',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6822,'Wangaratta',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6823,'Wantirna',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6824,'Warragul',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6825,'Warrnambool',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6826,'Welshpool',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6827,'Wendouree',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6828,'Wonthaggi',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6829,'Woodend',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6830,'Yarrawonga-Mulwala',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6831,'Yea',273,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6832,'Wheeler',276,13,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6833,'Eisenstadt',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6834,'GroBpetersdorf',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6835,'Jennersdorf',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6836,'Kemeten',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6837,'Mattersburg',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6838,'Neudorfl',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6839,'Neusiedl am See',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6840,'Oberwart',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6841,'Pinkafeld',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6842,'Rust',280,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6843,'Maria Rain',281,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6844,'Poggersdorf',281,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6845,'Althofen',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6846,'Arnoldstein',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6847,'Bad Sankt Leonhard',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6848,'Bleiburg',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6849,'Ebenthal',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6850,'Eberndorf',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6851,'Feldkirchen',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6852,'Ferlach',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6853,'Finkenstein',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6854,'Friesach',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6855,'Hermagor',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6856,'Klagenfurt',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6857,'Klagenfurt ',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6858,'Lohnsburg',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6859,'Moosburg',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6860,'Paternion',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6861,'Radentheim',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6862,'Sankt Andra',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6863,'Sankt Jakob',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6864,'Sankt Veit',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6865,'Seeboden',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6866,'Spittal',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6867,'Velden am Worthersee',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6868,'Villach',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6869,'Volkermarkt',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6870,'Wernberg',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6871,'Wolfsberg',282,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6872,'Amstetten',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6873,'Bad Voslau',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6874,'Baden',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6875,'Berndorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6876,'Boheimkirchen',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6877,'Bruck an der Leitha',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6878,'Brunn',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6879,'Deutsch-Wagram',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6880,'Ebreichsdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6881,'Eggendorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6882,'Fischamend',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6883,'Gablitz',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6884,'Ganserndorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6885,'Gerasdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6886,'Gloggnitz',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6887,'Gmund',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6888,'Greifenstein',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6889,'GroB-Enzersdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6890,'GroB-Gerungs',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6891,'Guntramsdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6892,'Haag',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6893,'Hainburg',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6894,'Heidenreichstein',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6895,'Herzogenburg',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6896,'Himberg',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6897,'Hollabrunn',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6898,'Horn',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6899,'Klosterneuburg',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6900,'Korneuburg',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6901,'Kottingbrunn',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6902,'Krems',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6903,'Laa',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6904,'Langenlois',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6905,'Langenzersdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6906,'Leobendorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6907,'Leopoldsdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6908,'Lilienfeld',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6909,'Loipersdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6910,'Maria Enzersdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6911,'Melk',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6912,'Mistelbach',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6913,'Modling',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6914,'Neulengbach',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6915,'Neunkirchen',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6916,'Niederleis',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6917,'Ober-Grabendorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6918,'Perchtoldsdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6919,'Pernitz',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6920,'Pottendorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6921,'Poysdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6922,'Pressbaum',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6923,'Purgstall',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6924,'Purkersdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6925,'Reichenau',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6926,'Retz',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6927,'Sankt Andra-Wordern',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6928,'Sankt Peter in der Au',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6929,'Sankt Polten',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6930,'Sankt Valentin',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6931,'Scheibbs',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6932,'Schrems',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6933,'Schwechat',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6934,'Seitenstetten',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6935,'Sollenau',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6936,'Stockerau',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6937,'Strasshof',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6938,'Ternitz',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6939,'Traiskirchen',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6940,'Traismauer',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6941,'Tulln',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6942,'Vosendorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6943,'Waidhofen',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6944,'Wiener Neudorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6945,'Wiener Neustadt',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6946,'Wieselburg',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6947,'Wilhelmsburg',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6948,'Wolkersdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6949,'Ybbs',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6950,'Ybbsitz',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6951,'Zistersdorf',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6952,'Zwettl',285,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6953,'Alkoven',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6954,'Altheim',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6955,'Altmunster',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6956,'Andorf',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6957,'Ansfelden',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6958,'Asten',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6959,'Attnang-Puchheim',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6960,'Aurolzmunster',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6961,'Bad Goisern',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6962,'Bad Hall',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6963,'Bad Ischl',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6964,'Braunau',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6965,'Breitenfurt',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6966,'Ebensee',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6967,'Eferding',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6968,'Engerwitzdorf',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6969,'Enns',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6970,'Feldkirchen an der Donau',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6971,'Frankenburg',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6972,'Freistadt',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6973,'Gallneukirchen',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6974,'Garsten',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6975,'Gmunden',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6976,'Gramastetten',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6977,'Grieskirchen',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6978,'Gunskirchen',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6979,'Horsching',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6980,'Kirchdorf an der Krems',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6981,'Kremsmunster',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6982,'Krenglbach',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6983,'Laakirchen',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6984,'Lenzing',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6985,'Leonding',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6986,'Linz',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6987,'Loibichl',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6988,'Marchtrenk',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6989,'Mattighofen',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6990,'Mauthausen',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6991,'Micheldorf',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6992,'Neuhofen an der Krems',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6993,'Ohlsdorf',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6994,'Ottensheim',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6995,'Pasching',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6996,'Perg',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6997,'Pettenbach',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6998,'Pram',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(6999,'Pregarten',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7000,'Puchenau',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7001,'Regau',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7002,'Ried',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7003,'Rohrbach in Oberosterreich',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7004,'Rutzenmoos',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7005,'Sankt Florian',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7006,'Sankt Georgen',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7007,'Sankt Marien',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7008,'Scharding',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7009,'Scharnstein',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7010,'Schwertberg',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7011,'Seewalchen',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7012,'Sierning',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7013,'Stadl-Paura',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7014,'Steyr',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7015,'Steyregg',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7016,'Steyrermuhl',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7017,'Thalheim',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7018,'Timelkam',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7019,'Traun',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7020,'Vocklabruck',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7021,'Vocklamarkt',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7022,'Vorchdorf',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7023,'Wels',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7024,'Wilhering',286,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7025,'Abtenau',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7026,'Anif',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7027,'Bad Gastein',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7028,'Bad Hofgastein',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7029,'Bergheim',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7030,'Bischofshofen',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7031,'Bruck an der GroBglocknerstraB',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7032,'Burmoos',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7033,'Elsbethen',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7034,'Eugendorf',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7035,'Forstau',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7036,'Grodig',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7037,'Hallein',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7038,'Hallwang',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7039,'Henndorf',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7040,'Kuchl',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7041,'Mayrhofen',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7042,'Mittersill',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7043,'Neumarkt',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7044,'Oberndorf',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7045,'Obertrum am See',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7046,'Piesendorf',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7047,'Puch',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7048,'Radstadt',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7049,'Saalfelden',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7050,'Salzburg',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7051,'Sankt Johann im Pongau',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7052,'Seekirchen',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7053,'Sieghartskirchen',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7054,'StraBwalchen',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7055,'Strobl',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7056,'Tamsweg',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7057,'Thalgau',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7058,'Wals-Siezenheim',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7059,'Wolfgangsee',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7060,'Zell am See',287,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7061,'Albersdorf',288,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7062,'Bad Aussee',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7063,'Barnbach',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7064,'Bruck an der Mur',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7065,'Deutschlandsberg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7066,'Eisenerz',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7067,'Feldbach',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7068,'Feldkirchen bei Graz',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7069,'Fohnsdorf',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7070,'Frohnleiten',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7071,'Furstenfeld',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7072,'Gleisdorf',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7073,'Gratkorn',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7074,'Graz',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7075,'Hartberg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7076,'Judenburg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7077,'Judendorf-StraBengel',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7078,'Kapfenberg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7079,'Karlsdorf',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7080,'Kindberg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7081,'Knittelfeld',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7082,'Koflach',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7083,'Krieglach',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7084,'Lannach',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7085,'Leibnitz',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7086,'Leoben',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7087,'Liezen',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7088,'Murzzuschlag',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7089,'Rottenmann',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7090,'Schladming',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7091,'Seiersberg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7092,'Spielberg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7093,'Trofaiach',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7094,'Voitsberg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7095,'Wagna',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7096,'Weiz',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7097,'Zeltweg',289,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7098,'Deutschfeistritz',290,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7099,'Liezen',290,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7100,'Sankt Bartholoma',290,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7101,'Absam',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7102,'Axams',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7103,'Ebbs',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7104,'Fugen',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7105,'Hall',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7106,'Haselgehr',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7107,'Hopfgarten',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7108,'Imst',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7109,'Innsbruck',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7110,'Jenbach',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7111,'Kirchberg',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7112,'Kirchbichl',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7113,'Kitzbuhel',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7114,'Kramsach',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7115,'Kufstein',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7116,'Landeck',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7117,'Lienz',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7118,'Matrei',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7119,'Neustift im Stubaital',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7120,'Reutte',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7121,'Rum',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7122,'Sankt Johann in Tirol',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7123,'Scheffau',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7124,'Schwaz',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7125,'St. Johann Am Walde',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7126,'Telfs',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7127,'Vols',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7128,'Vomp',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7129,'Wattens',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7130,'Worgl',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7131,'Zirl',291,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7132,'Altach',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7133,'Bludenz',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7134,'Bregenz',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7135,'Chassieu',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7136,'Dietmannsried',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7137,'Dornbirn',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7138,'Feldkirch',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7139,'Frastanz',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7140,'Gotzis',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7141,'Hard',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7142,'Hochst',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7143,'Hohenems',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7144,'Horbranz',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7145,'Hufingen',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7146,'Lauterach',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7147,'Lochau',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7148,'Lustenau',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7149,'Mittelberg',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7150,'Nenzing',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7151,'Nuziders',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7152,'Rankweil',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7153,'Schruns',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7154,'Thuringen',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7155,'Wolfurt',293,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7156,'Vienna',294,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7157,'Wien',294,14,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7158,'Alat',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7159,'Artyom',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7160,'Baki',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7161,'Bakixanov',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7162,'Balaxani',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7163,'Bilacari',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7164,'Bilqax',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7165,'Bina',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7166,'Buzovna',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7167,'Haci Zeynalabdin',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7168,'Hovsan',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7169,'Lokbatan',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7170,'Mastaga',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7171,'Puta',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7172,'Qarasuxur',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7173,'Qobustan',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7174,'Rasulzada',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7175,'Sabuncu',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7176,'Sanqacal',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7177,'Sumqayit',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7178,'Suraxani',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7179,'Xirdalan',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7180,'Zirya',295,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7181,'Daskasan',297,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7182,'Ganca',297,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7183,'Xanlar',297,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7184,'Ganja',298,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7185,'Cabrayil',299,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7186,'Kalbacar',299,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7187,'Lacin',299,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7188,'Astara',300,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7189,'Goytapa',300,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7190,'Lankaran',300,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7191,'Masalli',300,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7192,'Neftcala',300,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7193,'Agcabadi',301,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7194,'Agdam',301,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7195,'Barda',301,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7196,'Mingacevir',301,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7197,'Tartar',301,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7198,'Yevlax',301,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7199,'Ali Bayramli',302,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7200,'Bilasuvar',302,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7201,'Calilabad',302,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7202,'Qarasu',302,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7203,'Qazimammad',302,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7204,'Saatli',302,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7205,'Sabirabad',302,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7206,'Salyan',302,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7207,'Susa',303,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7208,'Xankandi',303,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7209,'Xocavand',303,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7210,'Culfa',304,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7211,'Naxcivan',304,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7212,'Ordubad',304,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7213,'Sadarak',304,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7214,'Sarur',304,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7215,'Beylaqan',305,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7216,'Fuzuli',305,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7217,'Imisli',305,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7218,'Agstafa',306,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7219,'Gadabay',306,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7220,'Kovlar',306,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7221,'Qaracamirli',306,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7222,'Qazax',306,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7223,'Samkir',306,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7224,'Tovuz',306,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7225,'Amircan',307,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7226,'Balakan',307,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7227,'Katex',307,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7228,'Oguz',307,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7229,'Qabala',307,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7230,'Qax',307,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7231,'Saki',307,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7232,'Zaqatala',307,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7233,'Agdas',308,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7234,'Agsu',308,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7235,'Goycay',308,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7236,'Ismayilli',308,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7237,'Kurdamir',308,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7238,'Samaxi',308,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7239,'Ucar',308,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7240,'Zardab',308,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7241,'Davaci',309,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7242,'Quba',309,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7243,'Qusar',309,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7244,'Siyazan',309,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7245,'Xacmaz',309,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7246,'Xudat',309,15,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7247,'Coopers Town',310,16,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7248,'Marsh Harbour',310,16,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7249,'Andros Town',312,16,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7250,'Nicholls Town',312,16,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7251,'Alice Town',314,16,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7252,'Freetown',317,16,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7253,'Rock Sound',317,16,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7254,'Pirates Well',322,16,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7255,'\'Isa',327,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7256,'Badiyah',328,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7257,'Hidd',329,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7258,'Mahama',331,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7259,'Manama',332,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7260,'Sitrah',333,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7261,'al-Manamah',334,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7262,'al-Muharraq',335,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7263,'ar-Rifa\'a',336,17,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7264,'Bandarban',338,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7265,'Barguna',339,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7266,'Barisal',340,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7267,'Gaurnadi',340,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7268,'Mehendiganj',340,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7269,'Nalchiti',340,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7270,'Bhola',341,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7271,'Burhanuddin',341,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7272,'Char Fasson',341,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7273,'Lalmohan',341,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7274,'Adamighi',342,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7275,'Bogora',342,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7276,'Sherpur',342,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7277,'Chandpur',344,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7278,'Hajiganj',344,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7279,'Boalkhali',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7280,'Chattagam',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7281,'Fatikchhari',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7282,'Lohagara',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7283,'Patiya',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7284,'Rangunia',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7285,'Raozan',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7286,'Sandip',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7287,'Satkaniya',345,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7288,'Alamdanga',347,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7289,'Chuadanga',347,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7290,'Damurhuda',347,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7291,'Dhaka',348,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7292,'Dhamrai',348,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7293,'Dohar',348,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7294,'Bochanganj',349,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7295,'Dinajpur',349,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7296,'Fulbari',349,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7297,'Parbatipur',349,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7298,'Bhanga',350,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7299,'Char Bhadrasan',350,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7300,'Faridpur',350,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7301,'Chhagalnaiya',351,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7302,'Feni',351,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7303,'Gaybanda',352,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7304,'Gazipur',353,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7305,'Tungi',353,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7306,'Gopalganj',354,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7307,'Tungi Para',354,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7308,'Baniachang',355,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7309,'Habiganj',355,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7310,'Jamalpur',357,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7311,'Sarishabari',357,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7312,'Abhaynagar',358,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7313,'Jessor',358,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7314,'Jhikargachha',358,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7315,'Keshabpur',358,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7316,'Jhalakati',359,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7317,'Jhanaydah',360,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7318,'Kaliganj',360,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7319,'Kotchandpur',360,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7320,'Shailkupa',360,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7321,'Khagrachari',361,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7322,'Manikchhari',361,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7323,'Ramgarh',361,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7324,'Khulna',362,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7325,'Phultala',362,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7326,'Bajitpur',363,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7327,'Bhairab Bazar',363,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7328,'Itna',363,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7329,'Kishorganj',363,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7330,'Komilla',365,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7331,'Laksham',365,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7332,'Chilmari',366,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7333,'Kurigram',366,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7334,'Nageshwari',366,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7335,'Ulipur',366,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7336,'Bheramara',367,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7337,'Kushtiya',367,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7338,'Lakshmipur',368,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7339,'Ramganj',368,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7340,'Ramgati',368,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7341,'Raypur',368,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7342,'Madaripur',370,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7343,'Magura',371,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7344,'Bhaluka',372,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7345,'Fulbaria',372,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7346,'Gafargaon',372,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7347,'Ishwarganj',372,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7348,'Maimansingh',372,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7349,'Muktagachha',372,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7350,'Trishal',372,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7351,'Manikganj',373,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7352,'Meherpur',375,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7353,'Munshiganj',376,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7354,'Kalia',377,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7355,'Naral',377,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7356,'Narayanganj',378,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7357,'Rupganj',378,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7358,'Narsingdi',379,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7359,'Roypura',379,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7360,'Gurudaspur',380,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7361,'Nator',380,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7362,'Naugaon',381,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7363,'Gomastapur',382,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7364,'Nawabganj',382,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7365,'Shibganj',382,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7366,'Netrakona',383,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7367,'Domar',384,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7368,'Nilphamari',384,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7369,'Sa\'idpur',384,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7370,'Begamganj',385,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7371,'Noakhali',385,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7372,'Senbagh',385,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7373,'Bera',386,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7374,'Bhangura',386,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7375,'Ishurdi',386,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7376,'Pabna',386,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7377,'Panchagarh',387,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7378,'Patuakhali',388,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7379,'Bhandaria',389,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7380,'Mathbaria',389,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7381,'Nesarabad',389,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7382,'Pirojpur',389,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7383,'Pangsha',390,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7384,'Rajbari',390,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7385,'Rajshahi',391,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7386,'Kaptai',392,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7387,'Rangamati',392,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7388,'Badarganj',393,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7389,'Kaunia',393,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7390,'Rangpur',393,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7391,'Satkhira',394,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7392,'Palang',395,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7393,'Nalitabari',396,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7394,'Sherpur',396,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7395,'Silhat',397,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7396,'Shahjadpur',398,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7397,'Sirajganj',398,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7398,'Chhatak',399,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7399,'Sunamganj',399,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7400,'Gopalpur',400,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7401,'Mirzapur',400,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7402,'Sakhipur',400,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7403,'Tangayal',400,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7404,'Pirganj',401,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7405,'Thakurgaon',401,18,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7406,'Baranavichy',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7407,'Bjaroza',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7408,'Bjeloozersk',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7409,'Brest',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7410,'David-Haradok',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7411,'Drahichyn',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7412,'Hancavichy',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7413,'Ivacevichy',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7414,'Ivanava',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7415,'Kamjenec',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7416,'Kobryn',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7417,'Kosava',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7418,'Ljahavichy',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7419,'Luninjec',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7420,'Malaryta',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7421,'Mikashevichy',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7422,'Pinsk',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7423,'Pruzhany',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7424,'Stolin',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7425,'Vysokoje',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7426,'Zhabinka',413,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7427,'Buda Kosheljovo',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7428,'Chechersk',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7429,'Dobrush',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7430,'Hojniki',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7431,'Homjel\'',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7432,'Jel\'sk',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7433,'Kalinkavichy',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7434,'Kascjukovka',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7435,'Mazyr',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7436,'Narovlja',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7437,'Pjetrykav',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7438,'Rahachow',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7439,'Rechyca',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7440,'Svetlahorsk',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7441,'Vasilevichy',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7442,'Vjetka',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7443,'Zhlobin',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7444,'Zhytkavichy',414,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7445,'Ashmjany',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7446,'Berjozovka',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7447,'Hrodna',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7448,'Lida',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7449,'Masty',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7450,'Navahrudak',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7451,'Shchuchyn',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7452,'Skidel\'',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7453,'Slonim',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7454,'Smarhon\'',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7455,'Vawkavysk',415,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7456,'Asipovichy',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7457,'Babrujsk',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7458,'Byhau',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7459,'Chausy',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7460,'Cherikov',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7461,'Horki',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7462,'Kascjukovichy',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7463,'Klimavichy',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7464,'Krychaw',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7465,'Mahiljow',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7466,'Mstislav',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7467,'Shklov',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7468,'Slaeuharad',416,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7469,'Minsk',418,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7470,'Petrikov',420,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7471,'Baran\'',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7472,'Braslav',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7473,'Chashniki',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7474,'Disna',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7475,'Dokshicy',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7476,'Dubrovna',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7477,'Haradok',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7478,'Hlybokaje',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7479,'Ljepjel\'',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7480,'Mjory',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7481,'Navapolack',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7482,'Novalukoml\'',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7483,'Orsha',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7484,'Pastavy',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7485,'Polack',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7486,'Polotsk',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7487,'Senno',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7488,'Talachyn',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7489,'Verhnjadzvimsk',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7490,'Vicebsk',421,20,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7491,'Aartselaar',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7492,'Antwerpen',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7493,'Arendonk',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7494,'Baarle-Hertog',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7495,'Balen',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7496,'Beerse',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7497,'Berlaar',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7498,'Boechout',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7499,'Bonheiden',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7500,'Boom',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7501,'Bornem',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7502,'Borsbeek',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7503,'Brasschaat',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7504,'Brecht',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7505,'Dessel',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7506,'Deurne',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7507,'Duffel',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7508,'Edegem',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7509,'Ekeren',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7510,'Essen',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7511,'Geel',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7512,'Geluvele',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7513,'Grobbendonk',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7514,'Heist-op-den-Berg',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7515,'Hemiksem',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7516,'Herentals',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7517,'Herenthout',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7518,'Herselt',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7519,'Hoogstraten',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7520,'Hove',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7521,'Hulshout',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7522,'Kalmpthout',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7523,'Kalmthout',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7524,'Kapellen',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7525,'Kasterlee',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7526,'Kontich',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7527,'Laakdal',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7528,'Lier',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7529,'Lille',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7530,'Lint',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7531,'Malle',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7532,'Mechelen',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7533,'Meerhout',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7534,'Merksplas',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7535,'Mol',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7536,'Mortsel',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7537,'Niel',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7538,'Nijlen',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7539,'Olen',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7540,'Oud-Turnhout',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7541,'Putte',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7542,'Puurs',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7543,'Ranst',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7544,'Ravels',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7545,'Retie',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7546,'Rijkevorsel',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7547,'Robrechts',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7548,'Rumst',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7549,'Schelle',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7550,'Schilde',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7551,'Schoten',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7552,'Sint-Amands',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7553,'Sint-Katelijne-Waver',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7554,'Stabroek',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7555,'Turnhout',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7556,'Vorselaar',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7557,'Vosselaar',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7558,'Westerlo',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7559,'Wijnegem',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7560,'Willebroek',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7561,'Wilrijk',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7562,'Wommelgem',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7563,'Wuustwezel',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7564,'Zandhoven',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7565,'Zoersel',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7566,'Zwijndrecht',422,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7567,'Berchem',423,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7568,'Alsemberg',424,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7569,'Asse Zellik',424,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7570,'Brussels',424,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7571,'Bruxelles',424,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7572,'Diegem',424,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7573,'Alsemberg',425,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7574,'Asse Zellik',425,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7575,'Brussels',425,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7576,'Bruxelles',425,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7577,'Diegem',425,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7578,'Brussel',426,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7579,'Aiseau-Presles',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7580,'Anderlues',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7581,'Antoing',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7582,'Ath',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7583,'Beaumont',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7584,'Beloeil',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7585,'Bernissart',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7586,'Binche',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7587,'Boussu',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7588,'Braine-le-Comte',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7589,'Brugelette',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7590,'Brunehaut',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7591,'Celles',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7592,'Chapelle-lez-Herlaimont',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7593,'Charleroi',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7594,'Chatelet',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7595,'Chievres',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7596,'Chimay',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7597,'Colfontaine',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7598,'Comines-Warneton',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7599,'Courcelles',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7600,'Dour',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7601,'Ecaussinnes',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7602,'Ellezelles',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7603,'Enghien',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7604,'Erquelinnes',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7605,'Estaimpuis',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7606,'Estinnes',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7607,'Farciennes',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7608,'Fleurus',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7609,'Flobecq',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7610,'Fontaine-l\'Eveque',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7611,'Frameries',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7612,'Frasnes-lez-Anvaing',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7613,'Froidchapelle',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7614,'Gerpinnes',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7615,'Haine-Saint-Pierre',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7616,'Ham-sur-Heure-Nalinnes',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7617,'Hensies',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7618,'Honnelles',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7619,'Jurbise',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7620,'La Louviere',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7621,'Le Roeulx',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7622,'Lens',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7623,'Les Bons Villers',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7624,'Lessines',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7625,'Leuze-en-Hainaut',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7626,'Lobbes',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7627,'Manage',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7628,'Merbes-le-Chateau',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7629,'Momignies',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7630,'Mons',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7631,'Mont-de-l\'Enclus',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7632,'Montigny-le-Tilleul',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7633,'Morlanwelz',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7634,'Mouscron',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7635,'Pecq',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7636,'Peruwelz',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7637,'Pont-a-Celles',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7638,'Quaregnon',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7639,'Quevy',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7640,'Quievrain',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7641,'Rumes',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7642,'Saint-Ghislain',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7643,'Seneffe',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7644,'Silly',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7645,'Sivry-Rance',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7646,'Soignies',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7647,'Thuin',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7648,'Tournai',428,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7649,'Amay',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7650,'Amel',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7651,'Angleur',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7652,'Ans',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7653,'Anthisnes',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7654,'Aubel',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7655,'Awans',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7656,'Aywaille',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7657,'Baelen',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7658,'Bassenge',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7659,'Berloz',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7660,'Beyne-Heusay',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7661,'Blegny',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7662,'Braives',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7663,'Bullingen',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7664,'Burdinne',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7665,'Burg-Reuland',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7666,'Butgenbach',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7667,'Chaudfontaine',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7668,'Clavier',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7669,'Comblain-au-Pont',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7670,'Crisnee',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7671,'Dalhem',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7672,'Dison',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7673,'Donceel',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7674,'Engis',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7675,'Esneux',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7676,'Eupen',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7677,'Faimes',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7678,'Ferrieres',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7679,'Fexhe-le-Haut-Clocher',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7680,'Flemalle',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7681,'Fleron',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7682,'Geer',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7683,'Grace-Hollogne',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7684,'Hamoir',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7685,'Hannut',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7686,'Heron',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7687,'Herstal',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7688,'Herve',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7689,'Huy',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7690,'Jalhay',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7691,'Juprelle',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7692,'Kelmis',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7693,'Liege',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7694,'Lierneux',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7695,'Limbourg',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7696,'Lincent',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7697,'Lontzen',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7698,'Malmedy',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7699,'Marchin',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7700,'Modave',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7701,'Montzen',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7702,'Nandrin',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7703,'Neupre',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7704,'Olne',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7705,'Oreye',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7706,'Ouffet',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7707,'Oupeye',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7708,'Pepinster',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7709,'Plombieres',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7710,'Racour',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7711,'Raeren',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7712,'Remicourt',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7713,'Saint-Georges-sur-Meuse',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7714,'Saint-Nicolas',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7715,'Sankt Vith',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7716,'Seraing',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7717,'Soumagne',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7718,'Spa',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7719,'Sprimont',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7720,'Stavelot',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7721,'Stoumont',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7722,'Theux',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7723,'Thimister-Clermont',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7724,'Tinlot',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7725,'Trois-Ponts',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7726,'Trooz',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7727,'Verlaine',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7728,'Verviers',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7729,'Villers-le-Bouillet',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7730,'Vise',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7731,'Waimes',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7732,'Wanze',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7733,'Waremme',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7734,'Wasseiges',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7735,'Welkenraedt',429,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7736,'Alken',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7737,'As',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7738,'Beringen',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7739,'Bilzen',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7740,'Bocholt',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7741,'Borgloon',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7742,'Bree',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7743,'Diepenbeek',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7744,'Dilsen-Stokkem',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7745,'Genk',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7746,'Gingelom',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7747,'Halen',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7748,'Ham',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7749,'Hamont-Achel',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7750,'Hasselt',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7751,'Hechtel-Eksel',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7752,'Heers',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7753,'Herk-de-Stad',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7754,'Herstappe',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7755,'Heusden-Zolder',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7756,'Hoeselt',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7757,'Houthalen-Helchteren',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7758,'Kinrooi',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7759,'Kortessem',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7760,'Kuringen',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7761,'Lanaken',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7762,'Leopoldsburg',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7763,'Lommel',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7764,'Lummen',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7765,'Maaseik',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7766,'Maasmechelen',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7767,'Meeuwen-Gruitrode',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7768,'Neerpelt',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7769,'Nieuwerkerken',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7770,'Opglabbeek',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7771,'Overpelt',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7772,'Peer',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7773,'Riemst',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7774,'Sint-Truiden',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7775,'Tessenderlo',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7776,'Tongeren',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7777,'Voeren',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7778,'Wellen',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7779,'Zonhoven',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7780,'Zutendaal',430,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7781,'Arlon',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7782,'Attert',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7783,'Aubange',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7784,'Bastogne',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7785,'Bertogne',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7786,'Bertrix',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7787,'Bouillon',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7788,'Chiny',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7789,'Daverdisse',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7790,'Durbuy',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7791,'Erezee',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7792,'Etalle',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7793,'Fauvillers',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7794,'Florenville',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7795,'Gouvy',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7796,'Grapfontaine',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7797,'Habay',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7798,'Herbeumont',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7799,'Hotton',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7800,'Houffalize',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7801,'La Roche-en-Ardenne',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7802,'Leglise',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7803,'Libin',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7804,'Libramont-Chevigny',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7805,'Manhay',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7806,'Marche-en-Famenne',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7807,'Marloie',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7808,'Martelange',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7809,'Meix-devant-Virton',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7810,'Messancy',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7811,'Musson',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7812,'Nassogne',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7813,'Neufchateau',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7814,'Paliseul',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7815,'Rendeux',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7816,'Rouvroy',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7817,'Saint-Hubert',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7818,'Saint-Leger',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7819,'Sainte-Ode',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7820,'Tellin',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7821,'Tenneville',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7822,'Tintigny',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7823,'Vaux-sur-Sure',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7824,'Vielsalm',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7825,'Virton',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7826,'Wellin',431,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7827,'Andenne',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7828,'Anhee',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7829,'Assesse',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7830,'Beauraing',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7831,'Bievre',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7832,'Cerfontaine',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7833,'Ciney',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7834,'Couvin',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7835,'Dinant',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7836,'Doische',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7837,'Eghezee',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7838,'Fernelmont',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7839,'Floreffe',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7840,'Florennes',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7841,'Fosses-la-Ville',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7842,'Gedinne',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7843,'Gembloux',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7844,'Gesves',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7845,'Hamois',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7846,'Hastiere',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7847,'Havelange',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7848,'Houyet',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7849,'Jambes',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7850,'Jemeppe-sur-Sambre',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7851,'La Bruyere',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7852,'Malonne',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7853,'Mettet',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7854,'Namur',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7855,'Ohey',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7856,'Onhaye',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7857,'Philippeville',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7858,'Profondeville',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7859,'Rochefort',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7860,'Sambreville',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7861,'Sombreffe',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7862,'Somme-Leuze',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7863,'Suarlee',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7864,'Viroinval',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7865,'Vresse-sur-Semois',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7866,'Walcourt',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7867,'Yvoir',432,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7868,'Gullegem',433,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7869,'Langdorp',433,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7870,'Aalst',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7871,'Aalter',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7872,'Assenede',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7873,'Berlare',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7874,'Beveren',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7875,'Brakel',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7876,'Buggenhout',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7877,'De Pinte',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7878,'Deinze',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7879,'Denderleeuw',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7880,'Dendermonde',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7881,'Destelbergen',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7882,'Drongen',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7883,'Eeklo',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7884,'Erembodegem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7885,'Erpe-Mere',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7886,'Evergem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7887,'Gavere',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7888,'Gent',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7889,'Geraardsbergen',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7890,'Ghent',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7891,'Haaltert',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7892,'Hamme',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7893,'Herzele',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7894,'Horebeke',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7895,'Kaprijke',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7896,'Kerksken',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7897,'Kluisbergen',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7898,'Knesselare',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7899,'Kruibeke',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7900,'Kruishoutem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7901,'Laarne',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7902,'Lebbeke',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7903,'Lede',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7904,'Lierde',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7905,'Lochristi',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7906,'Lokeren',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7907,'Lovendegem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7908,'Maarkedal',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7909,'Maldegem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7910,'Melle',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7911,'Merelbeke',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7912,'Moerbeke',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7913,'Nazareth',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7914,'Nevele',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7915,'Ninove',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7916,'Oosterzele',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7917,'Oudenaarde',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7918,'Ronse',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7919,'Semmerzake',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7920,'Sint-Gillis-Waas',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7921,'Sint-Laureins',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7922,'Sint-Lievens-Houtem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7923,'Sint-Martens-Latem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7924,'Sint-Niklaas',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7925,'Stekene',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7926,'Temse',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7927,'Waarschoot',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7928,'Waasmunster',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7929,'Wachtebeke',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7930,'Wetteren',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7931,'Wichelen',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7932,'Wortegem-Petegem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7933,'Zele',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7934,'Zelzate',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7935,'Zingem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7936,'Zomergem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7937,'Zottegem',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7938,'Zulte',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7939,'Zwalm',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7940,'Zwijnaarde',434,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7941,'Aarschot',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7942,'Affligem',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7943,'Asse',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7944,'Beersel',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7945,'Begijnendijk',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7946,'Bekkevoort',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7947,'Bertem',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7948,'Bever',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7949,'Bierbeek',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7950,'Boortmeerbeek',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7951,'Boutersem',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7952,'Diest',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7953,'Dilbeek',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7954,'Drogenbos',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7955,'Galmaarden',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7956,'Geetbets',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7957,'Glabbeek',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7958,'Gooik',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7959,'Grimbergen',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7960,'Haacht',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7961,'Halle',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7962,'Herent',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7963,'Herne',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7964,'Hoegaarden',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7965,'Hoeilaart',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7966,'Holsbeek',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7967,'Huldenberg',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7968,'Kampenhout',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7969,'Kapelle-op-den-Bos',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7970,'Keerbergen',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7971,'Kortenaken',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7972,'Kortenberg',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7973,'Kraainem',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7974,'Landen',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7975,'Lennik',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7976,'Leuven',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7977,'Liedekerke',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7978,'Linkebeek',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7979,'Linter',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7980,'Londerzeel',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7981,'Lubbeek',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7982,'Machelen',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7983,'Meise',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7984,'Merchtem',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7985,'Opwijk',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7986,'Oud-Heverlee',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7987,'Overijse',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7988,'Pepingen',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7989,'Roosdaal',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7990,'Rotselaar',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7991,'Scherpenheuvel-Zichem',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7992,'Sint-Genesius-Rode',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7993,'Sint-Pieters-Leeuw',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7994,'Steenokkerzeel',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7995,'Ternat',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7996,'Tervuren',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7997,'Tielt-Winge',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7998,'Tienen',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(7999,'Tremelo',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8000,'Vilvoorde',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8001,'Wemmel',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8002,'Wezembeek-Oppem',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8003,'Zaventem',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8004,'Zemst',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8005,'Zoutleeuw',436,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8006,'Callenelle',437,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8007,'Marcinelle',437,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8008,'Strepy-Bracquegnies',437,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8009,'Alveringem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8010,'Anzegem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8011,'Ardooie',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8012,'Avelgem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8013,'Beernem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8014,'Blankenberge',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8015,'Bredene',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8016,'Brugge',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8017,'Damme',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8018,'De Haan',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8019,'De Panne',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8020,'Deerlijk',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8021,'Dentergem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8022,'Diksmuide',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8023,'Geluveld',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8024,'Gistel',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8025,'Harelbeke',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8026,'Heuvelland',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8027,'Hooglede',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8028,'Houthulst',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8029,'Ichtegem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8030,'Ieper',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8031,'Ingelmunster',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8032,'Ingooigem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8033,'Izegem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8034,'Jabbeke',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8035,'Knokke-Heist',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8036,'Koekelare',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8037,'Koksijde',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8038,'Kortemark',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8039,'Kortrijk',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8040,'Kuurne',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8041,'Langemark-Poelkapelle',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8042,'Ledegem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8043,'Lendelede',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8044,'Lichtervelde',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8045,'Lo-Reninge',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8046,'Menen',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8047,'Mesen',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8048,'Meulebeke',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8049,'Middelkerke',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8050,'Moorslede',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8051,'Nieuwpoort',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8052,'Oostende',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8053,'Oostkamp',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8054,'Oostrozebeke',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8055,'Oudenburg',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8056,'Pittem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8057,'Poperinge',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8058,'Roeselare',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8059,'Ruiselede',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8060,'Spiere-Helkijn',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8061,'Staden',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8062,'Tielt',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8063,'Torhout',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8064,'Veurne',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8065,'Vleteren',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8066,'Waregem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8067,'Wervik',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8068,'Wevelgem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8069,'Wielsbeke',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8070,'Wingene',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8071,'Zedelgem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8072,'Zeebrugge',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8073,'Zonnebeke',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8074,'Zuienkerke',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8075,'Zwevegem',438,21,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8076,'Belize',439,22,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8077,'San Pedro',439,22,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8078,'Belmopan',440,22,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8079,'Benque Viejo',440,22,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8080,'San Ignacio',440,22,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8081,'Corozal',441,22,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8082,'Punta Gorda',444,22,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8083,'Kandi',445,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8084,'Malanville',445,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8085,'Batia',446,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8086,'Boukombe',446,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8087,'Kouande',446,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8088,'Natitingou',446,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8089,'Allada',447,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8090,'Cotonou',447,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8091,'Ouidah',447,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8092,'Tanguiete',447,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8093,'Bembereke',448,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8094,'Nikki',448,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8095,'Parakou',448,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8096,'Tchaourou',448,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8097,'Dassa',449,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8098,'Savalou',449,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8099,'Save',449,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8100,'Aplahoue',450,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8101,'Dogbo',450,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8102,'Djougou',451,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8103,'Cotonou',452,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8104,'Athieme',453,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8105,'Come',453,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8106,'Grand Popo',453,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8107,'Lokossa',453,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8108,'Adjohoun',454,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8109,'Porto Novo',454,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8110,'Ketou',455,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8111,'Pobe',455,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8112,'Sakete',455,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8113,'Abomey',456,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8114,'Bohicon',456,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8115,'Cove',456,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8116,'Zagnanado',456,23,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8117,'Hamilton',457,24,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8118,'Jakar',459,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8119,'Chhukha',460,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8120,'Phuentsholing',460,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8121,'Damphu',461,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8122,'Taga Dzong',462,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8123,'Geylegphug',463,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8124,'Ha',464,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8125,'Lhuntshi',465,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8126,'Mongar',466,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8127,'Pemagatsel',467,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8128,'Gasa',468,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8129,'Punakha',468,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8130,'Paro',469,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8131,'Phuntsholing',470,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8132,'Samchi',470,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8133,'Shemgang',472,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8134,'Tashigang',473,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8135,'Thimphu',474,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8136,'Timphu',474,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8137,'Tongsa',475,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8138,'Wangdiphodrang',476,25,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8139,'Guayaramerin',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8140,'Magdalena',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8141,'Reyes',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8142,'Riberalta',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8143,'Rurrenabaque',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8144,'San Borja',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8145,'San Ignacio',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8146,'San Ramon',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8147,'Santa Ana',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8148,'Santa Rosa',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8149,'Trinidad',477,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8150,'Camargo',478,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8151,'Monteagudo',478,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8152,'Muyupampa',478,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8153,'Padilla',478,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8154,'Sucre',478,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8155,'Tarabuco',478,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8156,'Villa Serano',478,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8157,'Aiquile',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8158,'Arani',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8159,'Capinota',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8160,'Chimore',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8161,'Cliza',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8162,'Cochabamba',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8163,'Colomi',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8164,'Entre Rios',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8165,'Irpa Irpa',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8166,'Ivirgarzama',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8167,'Mizque',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8168,'Punata',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8169,'Shinahota',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8170,'Sipe Sipe',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8171,'Tarata',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8172,'Ucurena',479,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8173,'Caracollo',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8174,'Challapata',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8175,'Eucaliptus',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8176,'Huanuni',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8177,'Machacamarca',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8178,'Oruro',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8179,'Poopo',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8180,'Santiago de Huari',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8181,'Totoral',481,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8182,'Cobija',482,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8183,'Atocha',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8184,'Betanzos',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8185,'Colquechaca',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8186,'Llallagua',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8187,'Potosi',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8188,'Santa Barbara',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8189,'Tupiza',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8190,'Uncia',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8191,'Uyuni',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8192,'Villazon',483,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8193,'Bermejo',485,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8194,'Entre Rios',485,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8195,'San Lorenzo',485,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8196,'Tarija',485,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8197,'Villamontes',485,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8198,'Yacuiba',485,26,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8199,'Kachikau',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8200,'Kasane',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8201,'Kavimba',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8202,'Kazungula',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8203,'Lesoma',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8204,'Muchinje-Mabale',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8205,'Pandamatenga',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8206,'Pandamatenga Botswana Defence ',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8207,'Parakarungu',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8208,'Satau',493,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8209,'Francistown',494,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8210,'Gaborone',495,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8211,'Bere',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8212,'Charles Hill',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8213,'Chobokwane',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8214,'Dekar',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8215,'East Hanahai',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8216,'Ghanzi',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8217,'Groote Laagte',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8218,'Kacgae',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8219,'Karakobis',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8220,'Kuke Quarantine Camp',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8221,'Kule',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8222,'Makunda',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8223,'Ncojane',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8224,'New Xade',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8225,'New Xanagas',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8226,'Qabo',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8227,'Tsootsha',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8228,'West Hanahai',496,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8229,'Jwaneng',497,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8230,'Artisia',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8231,'Bokaa',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8232,'Dikgonye',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8233,'Dikwididi',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8234,'Kgomodiatshaba',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8235,'Khurutshe',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8236,'Leshibitse',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8237,'Mabalane',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8238,'Malolwane',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8239,'Malotwana Siding',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8240,'Matebeleng',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8241,'Mmamashia',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8242,'Mmathubudukwane',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8243,'Mochudi',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8244,'Modipane',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8245,'Morwa',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8246,'Oliphants Drift',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8247,'Oodi',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8248,'Pilane',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8249,'Ramonaka',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8250,'Ramotlabaki',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8251,'Rasesa',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8252,'Sikwane',500,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8253,'Boatlaname',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8254,'Botlhapatlou',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8255,'Diagane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8256,'Diphudugodu',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8257,'Diremogolo Lands',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8258,'Ditshegwane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8259,'Ditshukudu',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8260,'Dumadumane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8261,'Dutlwe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8262,'Gabane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8263,'Gakgatla',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8264,'Gakuto',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8265,'Galekgatshwane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8266,'Gamodubu',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8267,'Gaphatshwa',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8268,'Hatsalatladi',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8269,'Kamenakwe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8270,'Kaudwane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8271,'Kgaphamadi',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8272,'Kgope',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8273,'Khekhenya-Chepetese',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8274,'Khudumelapye',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8275,'Kopong',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8276,'Kotolaname',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8277,'Kubung',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8278,'Kumakwane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8279,'Kweneng',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8280,'Lentsweletau',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8281,'Lephepe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8282,'Lesirane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8283,'Letlhakeng',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8284,'Losilakgokong',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8285,'Maboane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8286,'Mahetlwe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8287,'Makabanyane-Dikgokong',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8288,'Malwelwe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8289,'Mamhiko',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8290,'Manaledi',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8291,'Mantshwabisi',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8292,'Marejwane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8293,'Masebele',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8294,'Medie',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8295,'Metsibotlhoko',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8296,'Metsimotlhaba',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8297,'Mmakanke',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8298,'Mmankgodi',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8299,'Mmanoko',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8300,'Mmokolodi',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8301,'Mmopane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8302,'Mmopane Lands',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8303,'Mogoditshane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8304,'Mogoditshane Botswana Defence ',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8305,'Mogoditshane Lands',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8306,'Mogonono',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8307,'Molepolole',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8308,'Mononyane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8309,'Monwane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8310,'Morabane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8311,'Morope',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8312,'Moshaweng',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8313,'Mosokotswe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8314,'Motokwe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8315,'Ngware',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8316,'Nkoyaphiri',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8317,'Ramaphatlhe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8318,'Salajwe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8319,'Serinane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8320,'Sesung',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8321,'Shadishadi',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8322,'Sojwe',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8323,'Sorilatholo',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8324,'Suping',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8325,'Takatokwane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8326,'Thamaga',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8327,'Thebephatshwa',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8328,'Tlowaneng',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8329,'Tsetseng',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8330,'Tswaane',501,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8331,'Lobatse',502,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8332,'Bodibeng',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8333,'Boro',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8334,'Botlhatlogo',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8335,'Chanoga',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8336,'Chuchubega',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8337,'Daonara',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8338,'Ditshiping',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8339,'Habu',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8340,'Jao',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8341,'Kareng',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8342,'Katamaga',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8343,'Kgakge',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8344,'Khwai Camp',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8345,'Komana',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8346,'Legotlhwana',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8347,'Mababe',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8348,'Makalamabedi',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8349,'Matlapana',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8350,'Matsaudi',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8351,'Mawana',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8352,'Mokgalo-Haka',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8353,'Morutsha',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8354,'Nxharaga',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8355,'Phuduhudu',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8356,'Samodupi',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8357,'Sankuyo',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8358,'Sehithwa',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8359,'Semboyo',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8360,'Sexaxa',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8361,'Shakawe',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8362,'Shorobe',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8363,'Somela',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8364,'Toteng',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8365,'Tsanekona',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8366,'Tsao',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8367,'Xaxaba',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8368,'Xhobe',503,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8369,'Bethel',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8370,'Borobadilepe',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8371,'Diabo',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8372,'Digawana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8373,'Dikhukhung',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8374,'Dinatshana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8375,'Dipotsana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8376,'Ditlharapa',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8377,'Gamajalela',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8378,'Gasita',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8379,'Gathwane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8380,'Good Hope',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8381,'Goora-seno',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8382,'Gopong',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8383,'Hebron',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8384,'Itholoke',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8385,'Kanaku',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8386,'Kangwe',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8387,'Kanye',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8388,'Keng',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8389,'Kgomokasitwa',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8390,'Kgoro',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8391,'Khakhea',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8392,'Khonkhwa',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8393,'Kokong',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8394,'Lehoko',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8395,'Lejwana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8396,'Lekgolobotlo',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8397,'Leporung',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8398,'Logagane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8399,'Lorolwana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8400,'Lorwana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8401,'Lotlhakane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8402,'Lotlhakane West',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8403,'Mabule',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8404,'Mabutsane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8405,'Madingwana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8406,'Magoriapitse',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8407,'Magotlhawane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8408,'Mahotshwane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8409,'Maisane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8410,'Makokwe',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8411,'Malokaganyane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8412,'Manyana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8413,'Maokane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8414,'Marojane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8415,'Maruswa',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8416,'Metlobo',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8417,'Metlojane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8418,'Mmakgori',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8419,'Mmathethe',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8420,'Mogojogojo',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8421,'Mogonye',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8422,'Mogwalale',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8423,'Mokatako',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8424,'Mokgomane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8425,'Mokhomba',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8426,'Molapowabojang',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8427,'Molete',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8428,'Morwamosu',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8429,'Moshaneng',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8430,'Moshupa',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8431,'Motlhwatse',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8432,'Motsentshe',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8433,'Musi',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8434,'Ngwatsau',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8435,'Ntlhantlhe',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8436,'Papatlo',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8437,'Phihitshwane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8438,'Pitsana-Potokwe',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8439,'Pitsane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8440,'Pitseng-Ralekgetho',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8441,'Pitshane Molopo',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8442,'Rakhuna',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8443,'Ralekgetho',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8444,'Ramatlabama',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8445,'Ranaka',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8446,'Sedibeng',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8447,'Segakwana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8448,'Segwagwa',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8449,'Seherelela',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8450,'Sekhutlane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8451,'Sekoma',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8452,'Selokolela',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8453,'Semane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8454,'Sese',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8455,'Sesung',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8456,'Sheep Farm',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8457,'Tlhankane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8458,'Tlhareseleele',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8459,'Tshidilamolomo',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8460,'Tshwaane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8461,'Tsonyane',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8462,'Tswaaneng',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8463,'Tswagare-Lothoje-Lokalana',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8464,'Tswanyaneng',504,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8465,'Beetsha',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8466,'Eretsha',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8467,'Etsha 1',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8468,'Etsha 13',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8469,'Etsha 6',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8470,'Etsha 8',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8471,'Etsha 9',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8472,'Gane',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8473,'Gonutsuga',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8474,'Gowe',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8475,'Gudingwa',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8476,'Gumare',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8477,'Ikoga',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8478,'Kajaja',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8479,'Kapotora Lands',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8480,'Kauxwhi',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8481,'Matswee',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8482,'Maun',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8483,'Moaha',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8484,'Mohembo East',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8485,'Mohembo West',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8486,'Mokgacha',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8487,'Ngarange',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8488,'Nokaneng',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8489,'Nxamasere',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8490,'Nxaunxau',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8491,'Nxwee',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8492,'Qangwa',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8493,'Roye',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8494,'Samochema',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8495,'Sekondomboro',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8496,'Sepopa',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8497,'Seronga',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8498,'Shaowe',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8499,'Tobere Lands',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8500,'Tubu',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8501,'Tubu Lands',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8502,'Xadau',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8503,'Xakao',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8504,'Xaxa',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8505,'Xhauga',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8506,'Xurube',506,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8507,'Orapa',507,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8508,'Sowa',510,28,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8509,'Acrelandia',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8510,'Brasileia',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8511,'Cruzeiro do Sul',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8512,'Epitaciolandia',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8513,'Feijo',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8514,'Mancio Lima',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8515,'Manoel Urbano',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8516,'Marechal Thaumaturgo',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8517,'Placido de Castro',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8518,'Porto Walter',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8519,'Rio Branco',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8520,'Rodrigues Alves',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8521,'Sena Madureira',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8522,'Senador Guiomard',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8523,'Tarauaca',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8524,'Xapuri',512,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8525,'Agua Branca',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8526,'Anadia',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8527,'Arapiraca',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8528,'Atalaia',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8529,'Barra de Santo Antonio',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8530,'Batalha',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8531,'Boca da Mata',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8532,'Cacimbinhas',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8533,'Cajueiro',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8534,'Campo Alegre',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8535,'Campo Grande',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8536,'Canapi',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8537,'Capela',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8538,'Coite do Noia',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8539,'Colonia Leopoldina',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8540,'Coruripe',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8541,'Craibas',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8542,'Delmiro Gouveia',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8543,'Dois Riachos',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8544,'Estrela de Alagoas',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8545,'Feira Grande',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8546,'Flexeiras',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8547,'Girau do Ponciano',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8548,'Ibateguara',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8549,'Igaci',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8550,'Igreja Nova',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8551,'Inhapi',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8552,'Joaquim Gomes',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8553,'Jundia',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8554,'Junqueiro',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8555,'Lagoa da Canoa',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8556,'Limoeiro de Anadia',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8557,'Maceio',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8558,'Major Isidoro',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8559,'Maragogi',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8560,'Maravilha',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8561,'Marechal Deodoro',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8562,'Maribondo',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8563,'Mata Grande',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8564,'Matriz de Camaragibe',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8565,'Messias',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8566,'Minador do Negrao',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8567,'Murici',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8568,'Novo Lino',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8569,'Olho d\'Agua das Flores',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8570,'Olivenca',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8571,'Palmeira dos Indios',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8572,'Pao de Acucar',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8573,'Passo de Camaragibe',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8574,'Penedo',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8575,'Piacabucu',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8576,'Pilar',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8577,'Piranhas',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8578,'Poco das Trincheiras',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8579,'Porto Calvo',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8580,'Porto Real do Colegio',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8581,'Quebrangulo',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8582,'Rio Largo',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8583,'Santana do Ipanema',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8584,'Santana do Mundau',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8585,'Sao Jose da Laje',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8586,'Sao Jose da Tapera',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8587,'Sao Luis do Quitunde',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8588,'Sao Miguel dos Campos',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8589,'Sao Sebastiao',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8590,'Satuba',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8591,'Senador Rui Palmeira',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8592,'Taquarana',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8593,'Teotonio Vilela',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8594,'Traipu',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8595,'Uniao dos Palmares',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8596,'Vicosa',513,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8597,'Amapa',514,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8598,'Laranjal do Jari',514,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8599,'Macapa',514,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8600,'Mazagao',514,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8601,'Oiapoque',514,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8602,'Santana',514,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8603,'Alvaraes',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8604,'Anori',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8605,'Apui',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8606,'Autazes',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8607,'Barcelos',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8608,'Barreirinha',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8609,'Benjamin Constant',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8610,'Boca do Acre',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8611,'Borba',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8612,'Canutama',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8613,'Carauari',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8614,'Careiro',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8615,'Careiro da Varzea',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8616,'Coari',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8617,'Codajas',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8618,'Eirunepe',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8619,'Envira',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8620,'Fonte Boa',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8621,'Guajara',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8622,'Humaita',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8623,'Ipixuna',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8624,'Iranduba',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8625,'Itacoatiara',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8626,'Japura',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8627,'Jutai',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8628,'Labrea',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8629,'Manacapuru',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8630,'Manaquiri',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8631,'Manaus',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8632,'Manicore',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8633,'Maraa',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8634,'Maues',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8635,'Nhamunda',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8636,'Nova Olinda do Norte',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8637,'Novo Airao',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8638,'Novo Aripuana',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8639,'Parintins',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8640,'Pauini',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8641,'Rio Preto da Eva',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8642,'Santa Isabel do Rio Negro',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8643,'Santo Antonio do Ica',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8644,'Sao Gabriel da Cachoeira',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8645,'Sao Paulo de Olivenca',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8646,'Tabatinga',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8647,'Tapaua',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8648,'Tefe',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8649,'Tonantins',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8650,'Uarini',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8651,'Urucara',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8652,'Urucurituba',515,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8653,'Acajutiba',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8654,'Alagoinhas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8655,'Amargosa',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8656,'Amelia Rodrigues',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8657,'America Dourada',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8658,'Anage',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8659,'Araci',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8660,'Aurelino Leal',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8661,'Baixa Grande',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8662,'Barra',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8663,'Barra da Estiva',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8664,'Barra do Choca',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8665,'Barreiras',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8666,'Belmonte',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8667,'Boa Vista do Tupim',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8668,'Bom Jesus da Lapa',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8669,'Boquira',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8670,'Brumado',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8671,'Buerarema',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8672,'Cachoeira',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8673,'Cacule',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8674,'Caetite',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8675,'Cafarnaum',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8676,'Camacan',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8677,'Camacari',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8678,'Camamu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8679,'Campo Alegre de Lourdes',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8680,'Campo Formoso',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8681,'Canarana',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8682,'Canavieiras',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8683,'Candeias',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8684,'Candido Sales',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8685,'Cansancao',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8686,'Capim Grosso',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8687,'Caravelas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8688,'Carinhanha',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8689,'Casa Nova',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8690,'Castro Alves',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8691,'Catu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8692,'Cicero Dantas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8693,'Cipo',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8694,'Coaraci',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8695,'Conceicao da Feira',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8696,'Conceicao do Almeida',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8697,'Conceicao do Coite',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8698,'Conceicao do Jacuipe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8699,'Conde',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8700,'Coracao de Maria',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8701,'Coronel Joao Sa',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8702,'Correntina',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8703,'Cruz das Almas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8704,'Curaca',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8705,'Dias d\'Avila',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8706,'Encruzilhada',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8707,'Entre Rios',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8708,'Esplanada',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8709,'Euclides da Cunha',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8710,'Eunapolis',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8711,'Feira de Santana',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8712,'Filadelfia',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8713,'Formosa do Rio Preto',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8714,'Gandu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8715,'Guanambi',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8716,'Guaratinga',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8717,'Iacu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8718,'Ibicarai',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8719,'Ibicui',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8720,'Ibipeba',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8721,'Ibirapitanga',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8722,'Ibirataia',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8723,'Ibotirama',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8724,'Iguai',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8725,'Ilheus',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8726,'Inhambupe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8727,'Ipiau',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8728,'Ipira',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8729,'Iraquara',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8730,'Irara',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8731,'Irece',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8732,'Itabela',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8733,'Itaberaba',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8734,'Itabuna',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8735,'Itacare',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8736,'Itagi',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8737,'Itagiba',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8738,'Itajuipe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8739,'Itamaraju',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8740,'Itambe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8741,'Itanhem',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8742,'Itaparica',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8743,'Itapetinga',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8744,'Itapicuru',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8745,'Itarantim',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8746,'Itirucu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8747,'Itiuba',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8748,'Itororo',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8749,'Ituacu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8750,'Itubera',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8751,'Jacobina',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8752,'Jaguaquara',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8753,'Jaguarari',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8754,'Jequie',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8755,'Jeremoabo',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8756,'Jitauna',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8757,'Joao Dourado',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8758,'Juazeiro',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8759,'Jussara',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8760,'Laje',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8761,'Lapao',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8762,'Lauro de Freitas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8763,'Livramento',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8764,'Macarani',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8765,'Macaubas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8766,'Madre de Deus',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8767,'Mairi',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8768,'Maracas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8769,'Maragogipe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8770,'Marau',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8771,'Mascote',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8772,'Mata de Sao Joao',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8773,'Medeiros Neto',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8774,'Miguel Calmon',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8775,'Milagres',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8776,'Monte Santo',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8777,'Morro de Chapeu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8778,'Mucuri',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8779,'Mundo Novo',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8780,'Muritiba',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8781,'Mutuipe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8782,'Nazare',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8783,'Nova Soure',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8784,'Nova Vicosa',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8785,'Olindina',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8786,'Oliveira dos Brejinhos',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8787,'Palmas de Monte Alto',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8788,'Paramirim',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8789,'Paratinga',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8790,'Paripiranga',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8791,'Pau Brasil',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8792,'Paulo Afonso',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8793,'Pilao Arcado',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8794,'Pindobacu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8795,'Piritiba',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8796,'Planalto',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8797,'Pocoes',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8798,'Pojuca',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8799,'Ponto Novo',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8800,'Porto Seguro',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8801,'Prado',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8802,'Presidente Tancredo Neves',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8803,'Queimadas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8804,'Quijingue',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8805,'Rafael Jambeiro',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8806,'Remanso',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8807,'Riachao das Neves',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8808,'Riachao do Jacuipe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8809,'Riacho de Santana',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8810,'Ribeira do Pombal',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8811,'Rio Real',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8812,'Ruy Barbosa',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8813,'Salvador',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8814,'Santa Cruz Cabralia',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8815,'Santa Ines',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8816,'Santa Maria da Vitoria',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8817,'Santa Rita de Cassia',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8818,'Santaluz',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8819,'Santana',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8820,'Santo Amaro',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8821,'Santo Antonio de Jesus',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8822,'Santo Estevao',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8823,'Sao Desiderio',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8824,'Sao Felipe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8825,'Sao Francisco do Conde',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8826,'Sao Gabriel',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8827,'Sao Goncalo dos Campos',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8828,'Sao Sebastiao do Passe',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8829,'Saubara',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8830,'Seabra',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8831,'Senhor do Bonfim',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8832,'Sento Se',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8833,'Serra Dourada',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8834,'Serra do Ramalho',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8835,'Serrinha',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8836,'Simoes Filho',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8837,'Sobradinho',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8838,'Souto Soares',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8839,'Tanhacu',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8840,'Taperoa',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8841,'Tapiramuta',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8842,'Teixeira de Freitas',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8843,'Teofilandia',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8844,'Terra Nova',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8845,'Tremedal',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8846,'Tucano',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8847,'Uaua',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8848,'Ubaira',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8849,'Ubaitaba',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8850,'Ubata',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8851,'Una',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8852,'Urucuca',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8853,'Utinga',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8854,'Valenca',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8855,'Valente',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8856,'Vera Cruz',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8857,'Vitoria da Conquista',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8858,'Wenceslau Guimaraes',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8859,'Xique-Xique',516,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8860,'Acarau',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8861,'Acopiara',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8862,'Amontada',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8863,'Aquiraz',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8864,'Aracati',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8865,'Aracoiaba',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8866,'Araripe',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8867,'Assare',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8868,'Aurora',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8869,'Barbalha',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8870,'Barro',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8871,'Barroquinha',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8872,'Baturite',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8873,'Beberibe',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8874,'Bela Cruz',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8875,'Boa Viagem',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8876,'Brejo Santo',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8877,'Camocim',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8878,'Campos Sales',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8879,'Caninde',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8880,'Carire',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8881,'Caririacu',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8882,'Cascavel',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8883,'Caucaia',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8884,'Cedro',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8885,'Chorozinho',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8886,'Coreau',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8887,'Crateus',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8888,'Crato',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8889,'Cruz',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8890,'Eusebio',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8891,'Farias Brito',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8892,'Forquilha',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8893,'Fortaleza',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8894,'Granja',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8895,'Guaiuba',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8896,'Guaraciaba do Norte',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8897,'Hidrolandia',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8898,'Horizonte',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8899,'Ibiapina',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8900,'Ico',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8901,'Iguatu',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8902,'Independencia',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8903,'Ipu',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8904,'Ipueiras',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8905,'Iraucuba',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8906,'Itaitinga',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8907,'Itapage',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8908,'Itapipoca',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8909,'Itarema',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8910,'Jaguaribe',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8911,'Jaguaruana',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8912,'Jardim',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8913,'Juazeiro do Norte',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8914,'Jucas',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8915,'Lavras da Mangabeira',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8916,'Limoeiro do Norte',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8917,'Maracanau',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8918,'Maranguape',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8919,'Marco',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8920,'Massape',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8921,'Mauriti',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8922,'Milagres',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8923,'Missao Velha',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8924,'Mombaca',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8925,'Morada Nova',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8926,'Nova Russas',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8927,'Novo Oriente',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8928,'Ocara',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8929,'Oros',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8930,'Pacajus',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8931,'Pacatuba',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8932,'Paracuru',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8933,'Paraipaba',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8934,'Parambu',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8935,'Pedra Branca',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8936,'Pentecoste',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8937,'Quixada',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8938,'Quixeramobim',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8939,'Quixere',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8940,'Redencao',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8941,'Reriutaba',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8942,'Russas',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8943,'Santa Quiteria',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8944,'Santana do Acarau',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8945,'Sao Benedito',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8946,'Sao Goncalo do Amarante',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8947,'Senador Pompeu',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8948,'Sobral',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8949,'Tabuleiro do Norte',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8950,'Tamboril',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8951,'Taua',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8952,'Tiangua',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8953,'Trairi',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8954,'Ubajara',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8955,'Umirim',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8956,'Uruburetama',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8957,'Varjota',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8958,'Varzea Alegre',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8959,'Vicosa do Ceara',517,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8960,'Abadiania',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8961,'Acreuna',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8962,'Aguas Lindas de Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8963,'Alexania',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8964,'Anapolis',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8965,'Anicuns',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8966,'Aparecida de Goiania',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8967,'Aragarcas',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8968,'Bela Vista de Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8969,'Bom Jesus de Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8970,'Buriti Alegre',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8971,'Cacu',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8972,'Caiaponia',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8973,'Caldas Novas',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8974,'Campos Belos',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8975,'Campos Verdes',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8976,'Carmo do Rio Verde',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8977,'Catalao',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8978,'Cavalcante',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8979,'Ceres',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8980,'Cidade Ocidental',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8981,'Cocalzinho de Coias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8982,'Cristalina',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8983,'Crixas',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8984,'Doverlandia',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8985,'Edeia',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8986,'Firminopolis',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8987,'Formosa',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8988,'Goianapolis',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8989,'Goianesia',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8990,'Goiania',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8991,'Goianira',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8992,'Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8993,'Goiatuba',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8994,'Guapo',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8995,'Hidrolandia',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8996,'Iaciara',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8997,'Indiara',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8998,'Inhumas',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(8999,'Ipameri',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9000,'Ipora',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9001,'Itaberai',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9002,'Itapaci',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9003,'Itapirapua',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9004,'Itapuranga',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9005,'Itumbiara',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9006,'Jaragua',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9007,'Jatai',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9008,'Jussara',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9009,'Luziania',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9010,'Mara Rosa',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9011,'Minacu',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9012,'Mineiros',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9013,'Morrinhos',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9014,'Mozarlandia',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9015,'Neropolis',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9016,'Niquelandia',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9017,'Nova Crixas',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9018,'Novo Gama',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9019,'Orizona',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9020,'Padre Bernardo',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9021,'Palmeiras de Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9022,'Parauna',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9023,'Petrolina de Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9024,'Piracanjuba',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9025,'Piranhas',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9026,'Pirenopolis',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9027,'Pires do Rio',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9028,'Planaltina',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9029,'Pontalina',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9030,'Porangatu',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9031,'Posse',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9032,'Quirinopolis',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9033,'Rialma',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9034,'Rio Verde',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9035,'Rubiataba',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9036,'Santa Helena de Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9037,'Santa Terezinha de Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9038,'Santo Antonio do Descoberto',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9039,'Sao Domingos',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9040,'Sao Luis de Montes Belos',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9041,'Sao Miguel do Araguaia',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9042,'Sao Simao',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9043,'Senador Canedo',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9044,'Silvania',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9045,'Trindade',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9046,'Uruacu',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9047,'Uruana',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9048,'Valparaiso de Goias',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9049,'Vianopolis',521,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9050,'Acailandia',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9051,'Alcantara',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9052,'Aldeias Altas',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9053,'Alto Alegre do Pindare',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9054,'Amarante do Maranhao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9055,'Anajatuba',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9056,'Araioses',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9057,'Arame',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9058,'Arari',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9059,'Bacabal',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9060,'Balsas',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9061,'Barra do Corda',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9062,'Barreirinhas',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9063,'Bequimao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9064,'Bom Jardim',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9065,'Brejo',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9066,'Buriti',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9067,'Buriti Bravo',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9068,'Buriticupu',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9069,'Candido Mendes',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9070,'Cantanhede',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9071,'Carolina',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9072,'Carutapera',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9073,'Caxias',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9074,'Chapadinha',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9075,'Codo',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9076,'Coelho Neto',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9077,'Colinas',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9078,'Coroata',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9079,'Cururupu',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9080,'Davinopolis',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9081,'Dom Pedro',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9082,'Esperantinopolis',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9083,'Estreito',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9084,'Fortuna',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9085,'Godofredo Viana',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9086,'Governador Eugenio Barros',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9087,'Governador Nunes Freire',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9088,'Grajau',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9089,'Humberto de Campos',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9090,'Icatu',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9091,'Imperatriz',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9092,'Itapecuru Mirim',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9093,'Itinga do Maranhao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9094,'Joao Lisboa',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9095,'Lago da Pedra',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9096,'Lago do Junco',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9097,'Maracacume',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9098,'Matinha',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9099,'Matoes',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9100,'Mirador',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9101,'Miranda do Norte',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9102,'Moncao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9103,'Montes Altos',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9104,'Morros',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9105,'Nova Olinda do Maranhao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9106,'Olho d\'Agua das Cunhas',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9107,'Paco do Lumiar',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9108,'Paraibano',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9109,'Parnarama',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9110,'Passagem Franca',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9111,'Pastos Bons',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9112,'Paulo Ramos',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9113,'Pedreiras',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9114,'Penalva',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9115,'Pindare Mirim',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9116,'Pinheiro',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9117,'Pio XII',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9118,'Pirapemas',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9119,'Pocao de Pedras',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9120,'Porto Franco',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9121,'Presidente Dutra',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9122,'Raposa',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9123,'Riachao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9124,'Rosario',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9125,'Santa Helena',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9126,'Santa Ines',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9127,'Santa Luzia',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9128,'Santa Luzia do Parua',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9129,'Santa Quiteria do Maranhao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9130,'Santa Rita',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9131,'Sao Benedito do Rio Preto',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9132,'Sao Bento',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9133,'Sao Bernardo',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9134,'Sao Domingos do Maranhao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9135,'Sao Joao Batista',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9136,'Sao Joao dos Patos',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9137,'Sao Jose de Ribamar',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9138,'Sao Luis',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9139,'Sao Luis Gonzaga do Maranhao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9140,'Sao Mateus do Maranhao',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9141,'Sao Pedro da Agua Branca',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9142,'Sao Raimundo das Mangabeiras',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9143,'Timbiras',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9144,'Timon',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9145,'Trizidela do Vale',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9146,'Tuntum',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9147,'Turiacu',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9148,'Tutoia',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9149,'Urbano Santos',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9150,'Vargem Grande',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9151,'Viana',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9152,'Vitoria do Mearim',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9153,'Vitorino Freire',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9154,'Ze Doca',522,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9155,'Abaetetuba',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9156,'Acara',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9157,'Afua',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9158,'Agua Azul do Norte',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9159,'Alenquer',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9160,'Almeirim',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9161,'Altamira',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9162,'Ananindeua',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9163,'Augusto Correa',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9164,'Baiao',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9165,'Barcarena',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9166,'Belem',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9167,'Benevides',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9168,'Braganca',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9169,'Breu Branco',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9170,'Breves',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9171,'Bujaru',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9172,'Cameta',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9173,'Capanema',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9174,'Capitao Poco',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9175,'Castanhal',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9176,'Conceicao do Araguaia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9177,'Concordia do Para',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9178,'Curionopolis',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9179,'Curuca',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9180,'Dom Eliseu',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9181,'Eldorado dos Carajas',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9182,'Garrafao do Norte',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9183,'Goianesia do Para',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9184,'Gurupa',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9185,'Igarape-Acu',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9186,'Igarape-Miri',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9187,'Irituia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9188,'Itaituba',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9189,'Itupiranga',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9190,'Jacareacanga',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9191,'Jacunda',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9192,'Juruti',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9193,'Limoeiro do Ajuru',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9194,'Mae do Rio',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9195,'Maraba',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9196,'Maracana',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9197,'Marapanim',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9198,'Marituba',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9199,'Medicilandia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9200,'Mocajuba',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9201,'Moju',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9202,'Monte Alegre',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9203,'Muana',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9204,'Novo Progresso',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9205,'Novo Repartimento',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9206,'Obidos',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9207,'Oeiras do Para',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9208,'Oriximina',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9209,'Ourem',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9210,'Ourilandia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9211,'Pacaja',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9212,'Paragominas',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9213,'Parauapebas',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9214,'Portel',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9215,'Porto de Moz',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9216,'Prainha',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9217,'Redencao',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9218,'Rio Maria',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9219,'Rondon do Para',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9220,'Ruropolis',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9221,'Salinopolis',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9222,'Santa Isabel do Para',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9223,'Santa Luzia do Para',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9224,'Santa Maria do Para',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9225,'Santana do Araguaia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9226,'Santarem',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9227,'Santo Antonio do Taua',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9228,'Sao Caetano de Odivelas',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9229,'Sao Domingos do Araguaia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9230,'Sao Domingos do Capim',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9231,'Sao Felix do Xingu',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9232,'Sao Geraldo do Araguaia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9233,'Sao Joao de Pirabas',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9234,'Sao Miguel do Guama',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9235,'Senador Jose Porfirio',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9236,'Soure',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9237,'Tailandia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9238,'Terra Santa',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9239,'Tome-Acu',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9240,'Tucuma',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9241,'Tucurui',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9242,'Ulianopolis',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9243,'Uruara',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9244,'Vigia',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9245,'Viseu',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9246,'Xinguara',526,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9247,'Alagoa Grande',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9248,'Alagoa Nova',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9249,'Alagoinha',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9250,'Alhandra',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9251,'Aracagi',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9252,'Arara',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9253,'Araruna',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9254,'Areia',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9255,'Aroeiras',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9256,'Bananeiras',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9257,'Barra de Santa Rosa',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9258,'Bayeux',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9259,'Belem',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9260,'Boqueirao',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9261,'Brejo do Cruz',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9262,'Caapora',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9263,'Cabedelo',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9264,'Cacimba de Dentro',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9265,'Cajazeiras',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9266,'Campina Grande',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9267,'Catole do Rocha',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9268,'Conceicao',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9269,'Conde',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9270,'Coremas',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9271,'Cruz do Espirito Santo',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9272,'Cuite',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9273,'Desterro',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9274,'Dona Ines',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9275,'Esperanca',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9276,'Fagundes',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9277,'Guarabira',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9278,'Gurinhem',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9279,'Imaculada',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9280,'Inga',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9281,'Itabaiana',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9282,'Itaporanga',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9283,'Itapororoca',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9284,'Itatuba',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9285,'Jacarau',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9286,'Joao Pessoa',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9287,'Juazeirinho',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9288,'Juripiranga',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9289,'Juru',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9290,'Lagoa Seca',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9291,'Mamanguape',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9292,'Manaira',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9293,'Mari',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9294,'Massaranduba',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9295,'Mogeiro',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9296,'Monteiro',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9297,'Mulungu',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9298,'Natuba',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9299,'Nova Floresta',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9300,'Patos',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9301,'Paulista',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9302,'Pedras de Fogo',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9303,'Pianco',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9304,'Picui',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9305,'Pilar',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9306,'Pirpirituba',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9307,'Pitimbu',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9308,'Pocinhos',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9309,'Pombal',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9310,'Princesa Isabel',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9311,'Puxinana',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9312,'Queimadas',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9313,'Remigio',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9314,'Rio Tinto',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9315,'Salgado de Sao Felix',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9316,'Santa Luzia',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9317,'Santa Rita',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9318,'Sao Bento',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9319,'Sao Joao do Rio do Peixe',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9320,'Sao Jose de Piranhas',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9321,'Sao Sebastiao de Lagoa de Roca',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9322,'Sape',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9323,'Serra Branca',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9324,'Solanea',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9325,'Soledade',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9326,'Sousa',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9327,'Sume',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9328,'Taperoa',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9329,'Tavares',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9330,'Teixeira',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9331,'Triunfo',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9332,'Uirauna',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9333,'Umbuzeiro',527,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9334,'Almirante Tamandare',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9335,'Alto Parana',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9336,'Alto Piquiri',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9337,'Altonia',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9338,'Ampere',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9339,'Andira',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9340,'Antonina',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9341,'Apucarana',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9342,'Arapongas',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9343,'Arapoti',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9344,'Araucaria',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9345,'Assai',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9346,'Assis Chateaubriand',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9347,'Astorga',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9348,'Bandeirantes',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9349,'Barbosa Ferraz',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9350,'Bela Vista do Paraiso',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9351,'Cambara',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9352,'Cambe',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9353,'Campina Grande do Sul',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9354,'Campina da Lagoa',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9355,'Campo Largo',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9356,'Campo Murao',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9357,'Candido de Abreu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9358,'Capitao Leonidas Marques',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9359,'Carambei',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9360,'Cascavel',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9361,'Castro',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9362,'Centenario do Sul',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9363,'Chopinzinho',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9364,'Cianorte',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9365,'Clevelandia',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9366,'Colombo',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9367,'Colorado',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9368,'Contenda',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9369,'Corbelia',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9370,'Cornelio Procopio',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9371,'Coronel Vivida',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9372,'Cruzeiro do Oeste',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9373,'Curitiba',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9374,'Dois Vizinhos',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9375,'Engenheiro Beltrao',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9376,'Faxinal',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9377,'Fazenda Rio Grande',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9378,'Florestopolis',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9379,'Foz do Iguacu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9380,'Francisco Beltrao',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9381,'Goioere',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9382,'Guaira',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9383,'Guaraniacu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9384,'Guarapuava',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9385,'Guaratuba',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9386,'Ibaiti',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9387,'Ibipora',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9388,'Imbituva',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9389,'Ipora',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9390,'Irati',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9391,'Itaperucu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9392,'Ivaipora',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9393,'Jacarezinho',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9394,'Jaguariaiva',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9395,'Jandaia do Sul',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9396,'Jataizinho',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9397,'Lapa',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9398,'Laranjeiras do Sul',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9399,'Loanda',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9400,'Londrina',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9401,'Mandaguacu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9402,'Mandaguari',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9403,'Marechal Candido Rondon',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9404,'Marialva',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9405,'Maringa',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9406,'Matelandia',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9407,'Matinhos',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9408,'Medianeira',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9409,'Moreira Sales',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9410,'Nova Aurora',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9411,'Nova Esperanca',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9412,'Nova Londrina',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9413,'Ortigueira',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9414,'Paicandu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9415,'Palmas',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9416,'Palmeira',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9417,'Palotina',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9418,'Paranagua',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9419,'Paranavai',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9420,'Pato Branco',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9421,'Peabiru',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9422,'Pinhais',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9423,'Pinhao',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9424,'Pirai do Sul',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9425,'Piraquara',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9426,'Pitanga',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9427,'Ponta Grossa',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9428,'Pontal do Parana',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9429,'Porecatu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9430,'Primero de Maio',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9431,'Prudentopolis',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9432,'Quatro Barras',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9433,'Quedas do Iguacu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9434,'Realeza',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9435,'Reserva',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9436,'Ribeirao do Pinhal',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9437,'Rio Branco do Sul',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9438,'Rio Negro',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9439,'Rolandia',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9440,'Santa Helena',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9441,'Santa Terezinha de Itaipu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9442,'Santo Antonio da Platina',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9443,'Santo Antonio do Sudoeste',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9444,'Sao Joao do Ivai',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9445,'Sao Jose dos Pinhais',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9446,'Sao Mateus do Sul',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9447,'Sao Miguel do Iguacu',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9448,'Sarandi',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9449,'Senges',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9450,'Sertanopolis',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9451,'Siquera Campos',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9452,'Tapejara',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9453,'Telemaco Borba',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9454,'Terra Boa',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9455,'Terra Rica',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9456,'Terra Roxa',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9457,'Tibagi',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9458,'Toledo',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9459,'Ubirata',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9460,'Umuarama',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9461,'Uniao da Victoria',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9462,'Wenceslau Braz',528,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9463,'Abreu e Lima',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9464,'Afogados da Ingazeira',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9465,'Agrestina',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9466,'Agua Preta',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9467,'Aguas Belas',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9468,'Alianca',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9469,'Altinho',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9470,'Amaraji',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9471,'Aracoiaba',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9472,'Araripina',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9473,'Arcoverde',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9474,'Barra de Guabiraba',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9475,'Barreiros',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9476,'Belem de Sao Francisco',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9477,'Belo Jardim',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9478,'Bezerros',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9479,'Bodoco',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9480,'Bom Conselho',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9481,'Bom Jardim',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9482,'Bonito',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9483,'Brejo da Madre de Deus',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9484,'Buique',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9485,'Cabo de Santo Agostinho',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9486,'Cabrobo',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9487,'Cachoeirinha',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9488,'Caetes',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9489,'Camaragibe',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9490,'Camocim de Sao Felix',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9491,'Canhotinho',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9492,'Capoeiras',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9493,'Carnaiba',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9494,'Carpina',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9495,'Caruaru',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9496,'Catende',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9497,'Cha Grande',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9498,'Condado',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9499,'Cumaru',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9500,'Cupira',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9501,'Custodia',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9502,'Escada',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9503,'Exu',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9504,'Feira Nova',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9505,'Fernando de Noronha',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9506,'Flores',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9507,'Floresta',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9508,'Gameleira',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9509,'Garanhuns',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9510,'Gloria do Goita',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9511,'Goiana',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9512,'Gravata',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9513,'Ibimirim',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9514,'Igarassu',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9515,'Inaja',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9516,'Ipojuca',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9517,'Ipubi',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9518,'Itaiba',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9519,'Itamaraca',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9520,'Itambe',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9521,'Itapissuma',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9522,'Itaquitinga',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9523,'Jaboatao',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9524,'Joao Alfredo',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9525,'Joaquim Nabuco',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9526,'Lagoa do Itaenga',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9527,'Lajedo',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9528,'Limoeiro',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9529,'Macaparana',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9530,'Maraial',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9531,'Moreno',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9532,'Nazare da Mata',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9533,'Olinda',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9534,'Orobo',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9535,'Ouricuri',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9536,'Palmares',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9537,'Panelas',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9538,'Parnamirim',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9539,'Passira',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9540,'Paudalho',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9541,'Paulista',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9542,'Pedra',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9543,'Pesqueira',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9544,'Petrolandia',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9545,'Petrolina',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9546,'Pombos',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9547,'Quipapa',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9548,'Recife',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9549,'Ribeirao',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9550,'Rio Formoso',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9551,'Salgueiro',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9552,'Santa Cruz do Capibaribe',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9553,'Santa Maria da Boa Vista',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9554,'Sao Bento do Una',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9555,'Sao Caitano',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9556,'Sao Joao',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9557,'Sao Joaquim do Monte',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9558,'Sao Jose da Coroa Grande',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9559,'Sao Jose do Belmonte',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9560,'Sao Jose do Egito',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9561,'Sao Lourenco da Mata',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9562,'Serra Talhada',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9563,'Sertania',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9564,'Sirinhaem',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9565,'Surubim',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9566,'Tabira',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9567,'Tamandare',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9568,'Taquaritinga do Norte',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9569,'Timbauba',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9570,'Toritama',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9571,'Trindade',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9572,'Triunfo',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9573,'Tupanatinga',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9574,'Vicencia',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9575,'Vitoria de Santo Antao',529,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9576,'Agua Branca',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9577,'Alto Longa',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9578,'Altos',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9579,'Amarante',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9580,'Avelino Lopes',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9581,'Barras',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9582,'Batalha',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9583,'Beneditinos',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9584,'Bom Jesus',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9585,'Buriti dos Lopes',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9586,'Campo Maior',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9587,'Canto do Buriti',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9588,'Castelo do Piaui',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9589,'Cocal',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9590,'Corrente',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9591,'Demerval Lobao',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9592,'Elesbao Veloso',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9593,'Esperantina',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9594,'Floriano',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9595,'Gilbues',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9596,'Guadalupe',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9597,'Inhuma',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9598,'Itainopolis',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9599,'Itaueira',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9600,'Jaicos',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9601,'Joaquim Pires',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9602,'Jose de Freitas',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9603,'Luis Correia',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9604,'Luzilandia',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9605,'Matias Olimpio',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9606,'Miguel Alves',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9607,'Monsenhor Gil',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9608,'Oeiras',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9609,'Palmeirais',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9610,'Parnaiba',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9611,'Pedro II',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9612,'Picos',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9613,'Pimenteiras',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9614,'Pio IX',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9615,'Piracuruca',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9616,'Piripiri',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9617,'Porto',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9618,'Regeneracao',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9619,'Sao Joao do Piaui',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9620,'Sao Miguel do Tapuio',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9621,'Sao Pedro do Piaui',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9622,'Sao Raimundo Nonato',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9623,'Simoes',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9624,'Simplicio Mendes',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9625,'Teresina',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9626,'Uniao',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9627,'Urucui',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9628,'Valenca do Piaui',530,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9629,'Alta Floresta d\'Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9630,'Alto Alegre do Parecis',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9631,'Alto Paraiso',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9632,'Alvorada d\'Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9633,'Ariquemes',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9634,'Buritis',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9635,'Cacoal',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9636,'Candeias do Jamari',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9637,'Cerejeiras',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9638,'Colorado do Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9639,'Corumbiara',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9640,'Espigao d\'Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9641,'Governador Jorge Teixeira',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9642,'Guajara-Mirim',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9643,'Jaru',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9644,'Ji-Parana',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9645,'Machadinho d\'Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9646,'Ministro Andreazza',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9647,'Mirante da Serra',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9648,'Nova Brasilandia d\'Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9649,'Nova Mamore',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9650,'Novo Horizonte do Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9651,'Ouro Preto do Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9652,'Pimenta Bueno',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9653,'Porto Velho',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9654,'Presidente Medici',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9655,'Rolim de Moura',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9656,'Santa Luzia d\'Oeste',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9657,'Sao Miguel do Guapore',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9658,'Urupa',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9659,'Vale do Paraiso',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9660,'Vilhena',534,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9661,'Alto Alegre',535,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9662,'Boa Vista',535,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9663,'Bonfim',535,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9664,'Caracarai',535,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9665,'Mucajai',535,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9666,'Normandia',535,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9667,'Sao Joao da Baliza',535,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9668,'Sao Luiz',535,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9669,'Aquidaba',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9670,'Aracaju',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9671,'Araua',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9672,'Areia Branca',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9673,'Barra dos Coqueiros',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9674,'Boquim',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9675,'Campo do Brito',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9676,'Caninde de Sao Francisco',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9677,'Capela',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9678,'Carira',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9679,'Cristinapolis',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9680,'Estancia',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9681,'Frei Paulo',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9682,'Gararu',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9683,'Indiaroba',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9684,'Itabaiana',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9685,'Itabaianinha',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9686,'Itaporanga d\'Ajuda',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9687,'Japaratuba',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9688,'Japoata',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9689,'Lagarto',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9690,'Laranjeiras',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9691,'Malhador',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9692,'Maruim',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9693,'Moita Bonita',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9694,'Monte Alegre de Sergipe',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9695,'Neopolis',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9696,'Nossa Senhora da Gloria',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9697,'Nossa Senhora das Dores',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9698,'Nossa Senhora do Socorro',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9699,'Pacatuba',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9700,'Poco Verde',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9701,'Porto da Folha',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9702,'Propria',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9703,'Riachao do Dantas',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9704,'Ribeiropolis',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9705,'Salgado',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9706,'Santa Luzia do Itanhy',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9707,'Santo Amaro das Brotas',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9708,'Sao Cristovao',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9709,'Simao Dias',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9710,'Tobias Barreto',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9711,'Tomar do Geru',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9712,'Umbauba',538,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9713,'Alvorada',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9714,'Ananas',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9715,'Araguacu',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9716,'Araguaina',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9717,'Araguatins',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9718,'Arraias',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9719,'Augustinopolis',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9720,'Axixa do Tocantins',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9721,'Colinas do Tocantins',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9722,'Dianopolis',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9723,'Formoso do Araguaia',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9724,'Goiatins',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9725,'Guarai',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9726,'Gurupi',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9727,'Miracema do Tocantins',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9728,'Miranorte',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9729,'Palmas',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9730,'Paraiso',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9731,'Parana',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9732,'Porto Nacional',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9733,'Sitio Novo do Tocantins',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9734,'Taguatinga',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9735,'Tocantinopolis',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9736,'Wanderlandia',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9737,'Xambioa',539,30,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9738,'Kuala Belait',541,32,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9739,'Seria',541,32,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9740,'Bandar Seri Begawan',542,32,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9741,'Bangar',543,32,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9742,'Tutong',544,32,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9743,'Bansko',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9744,'Belica',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9745,'Blagoevgrad',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9746,'Goce Delchev',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9747,'Hadzhidimovo',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9748,'Jakoruda',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9749,'Kresna',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9750,'Melnik',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9751,'Petrich',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9752,'Razlog',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9753,'Sandanski',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9754,'Simitli',545,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9755,'Ahtopol',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9756,'Ajtos',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9757,'Balgarovo',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9758,'Bourgas',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9759,'Burgas',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9760,'Carevo',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9761,'Kableshkovo',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9762,'Kameno',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9763,'Karnobat',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9764,'Malko Tarnovo',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9765,'Nesebar',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9766,'Obzor',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9767,'Pomorie',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9768,'Primorsko',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9769,'Sozopol',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9770,'Sredec',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9771,'Sungurlare',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9772,'Tvardica',546,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9773,'Balchik',547,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9774,'Dobrich',547,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9775,'General-Toshevo',547,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9776,'Kavarna',547,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9777,'Loznica',547,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9778,'Shabla',547,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9779,'Tervel',547,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9780,'Drjanovo',548,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9781,'Gabrovo',548,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9782,'Plachkovci',548,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9783,'Sevlievo',548,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9784,'Trjavna',548,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9785,'Dimitrovgrad',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9786,'Harmanli',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9787,'Haskovo',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9788,'Ivajlovgrad',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9789,'Ljubimec',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9790,'Madzharovo',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9791,'Merichleri',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9792,'Simeonovgrad',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9793,'Svilengrad',549,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9794,'Boljarovo',550,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9795,'Elhovo',550,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9796,'Jambol',550,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9797,'Straldzha',550,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9798,'Topolovgrad',550,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9799,'Ardino',551,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9800,'Dzhebel',551,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9801,'Kardzhali',551,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9802,'Krumovgrad',551,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9803,'Momchilgrad',551,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9804,'Boboshevo',552,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9805,'Bobovdol',552,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9806,'Dupnica',552,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9807,'Kjustendil',552,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9808,'Kocherinovo',552,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9809,'Rila',552,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9810,'Sapareva Banja',552,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9811,'Zemen',552,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9812,'Aprilci',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9813,'Jablanica',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9814,'Letnica',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9815,'Lovech',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9816,'Lukovit',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9817,'Sopot',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9818,'Teteven',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9819,'Trojan',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9820,'Ugarchin',553,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9821,'Berkovica',554,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9822,'Bojchinovci',554,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9823,'Brusarci',554,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9824,'Chiprovci',554,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9825,'Lom',554,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9826,'Montana',554,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9827,'Valchedram',554,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9828,'Varshec',554,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9829,'Batak',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9830,'Belovo',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9831,'Bracigovo',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9832,'Koprivshtica',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9833,'Panagjurishte',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9834,'Pazardzhik',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9835,'Peshtera',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9836,'Rakitovo',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9837,'Septemvri',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9838,'Strelcha',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9839,'Velingrad',556,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9840,'Bankja',557,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9841,'Batanovci',557,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9842,'Breznik',557,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9843,'Pernik',557,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9844,'Radomir',557,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9845,'Tran',557,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9846,'Belene',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9847,'Cherven Brjag',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9848,'Dolna Mitropolija',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9849,'Dolni Dabnik',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9850,'Guljanci',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9851,'Levski',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9852,'Nikopol',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9853,'Pleven',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9854,'Pordim',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9855,'Slavjanovo',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9856,'Trashtenik',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9857,'Varbica',558,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9858,'Asenovgrad',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9859,'Brezovo',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9860,'Car Kalojan',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9861,'Hisarja',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9862,'Kalofer',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9863,'Karlovo',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9864,'Klisura',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9865,'Krichim',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9866,'Parvomaj',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9867,'Perushtica',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9868,'Plovdiv',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9869,'Rakovski',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9870,'Sadovo',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9871,'Saedinenie',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9872,'Stambolijski',559,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9873,'Isperih',560,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9874,'Kubrat',560,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9875,'Razgrad',560,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9876,'Senovo',560,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9877,'Zavet',560,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9878,'Bjala',561,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9879,'Borovo',561,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9880,'Dve Mogili',561,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9881,'Ruse',561,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9882,'Russe',561,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9883,'Vetovo',561,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9884,'Kaolinovo',562,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9885,'Kaspichan',562,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9886,'Novi Pazar',562,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9887,'Pliska',562,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9888,'Shumen',562,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9889,'Smjadovo',562,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9890,'Veliki Preslav',562,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9891,'Alfatar',563,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9892,'Dulovo',563,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9893,'Glavinica',563,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9894,'Silistra',563,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9895,'Tutrakan',563,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9896,'Kermen',564,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9897,'Kotel',564,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9898,'Nova Zagora',564,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9899,'Shivachevo',564,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9900,'Sliven',564,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9901,'Chepelare',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9902,'Devin',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9903,'Dospat',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9904,'Laki',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9905,'Madan',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9906,'Nedelino',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9907,'Rudozem',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9908,'Smoljan',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9909,'Zlatograd',565,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9910,'Antonovo',569,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9911,'Omurtag',569,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9912,'Opaka',569,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9913,'Popovo',569,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9914,'Targovishte',569,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9915,'Beloslav',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9916,'Bjala',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9917,'Dalgopol',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9918,'Devnja',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9919,'Iskar',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9920,'Provadija',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9921,'Suvorovo',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9922,'Valchi Dol',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9923,'Varna',570,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9924,'Belogradchik',572,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9925,'Bregovo',572,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9926,'Dimovo',572,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9927,'Dolni Chiflik',572,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9928,'Dunavci',572,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9929,'Gramada',572,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9930,'Kula',572,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9931,'Vidin',572,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9932,'Bjala Slatina',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9933,'Knezha',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9934,'Kojnare',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9935,'Kozloduj',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9936,'Krivodol',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9937,'Mezdra',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9938,'Mizija',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9939,'Orjahovo',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9940,'Roman',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9941,'Vraca',573,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9942,'Yablaniza',574,33,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9943,'Boromo',575,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9944,'Kongoussi',576,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9945,'Kombissiri',577,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9946,'Diebougou',578,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9947,'Pa',578,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9948,'Garango',579,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9949,'Tenkodogo',579,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9950,'Koudougou',580,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9951,'Banfora',581,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9952,'Zorgo',582,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9953,'Bogande',583,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9954,'Fada N\'gourma',584,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9955,'Bekuy',585,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9956,'Bobo Dioulasso',585,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9957,'Dano',586,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9958,'Ouagadougou',587,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9959,'Koalla',588,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9960,'Koloko',588,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9961,'Orodara',588,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9962,'Gayeri',589,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9963,'Pama',590,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9964,'Nouna',591,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9965,'Koupela',592,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9966,'Bousse',593,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9967,'Sindou',594,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9968,'Dedougou',595,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9969,'Po',596,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9970,'Boulsa',597,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9971,'Batie',598,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9972,'Ziniare',599,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9973,'Gorom-Gorom',600,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9974,'Yako',601,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9975,'Gaoua',602,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9976,'Kampti',602,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9977,'Loropeni',602,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9978,'Reo',603,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9979,'Kaya',604,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9980,'Dori',605,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9981,'Gao',606,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9982,'Leo',606,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9983,'Aribinda',607,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9984,'Djibo',607,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9985,'Louta',608,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9986,'Tougan',608,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9987,'Diapaga',609,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9988,'Kantchari',609,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9989,'Hounde',610,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9990,'Ouahigouya',611,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9991,'Gourcy',612,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9992,'Manga',613,34,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9993,'Bubanza',614,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9994,'Bujumbura',615,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9995,'Bururi',616,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9996,'Cankuzo',617,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9997,'Cibitoke',618,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9998,'Gitega',619,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(9999,'Karuzi',620,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10000,'Kayanza',621,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10001,'Kirundo',622,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10002,'Makamba',623,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10003,'Muramvya',624,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10004,'Muyinga',625,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10005,'Ngozi',626,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10006,'Rutana',627,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10007,'Ruyigi',628,35,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10008,'Kampot',635,36,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10009,'Ta Khmau',636,36,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10010,'Kracheh',638,36,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10011,'Pousat',645,36,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10012,'Phumi Takaev',652,36,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10013,'Banyo',653,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10014,'Meiganga',653,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10015,'Ngaoundere',653,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10016,'Tibati',653,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10017,'Tignere',653,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10018,'Akonolinga',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10019,'Bafia',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10020,'Eseka',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10021,'Mbalmayo',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10022,'Mfou',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10023,'Monatele',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10024,'Nanga Eboko',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10025,'Obala',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10026,'Ombesa',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10027,'Saa',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10028,'Yaounde',654,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10029,'Abong Mbang',655,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10030,'Batouri',655,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10031,'Bertoua',655,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10032,'Betare Oya',655,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10033,'Djoum',655,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10034,'Doume',655,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10035,'Lomie',655,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10036,'Yokadouma',655,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10037,'Bonaberi',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10038,'Dibombari',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10039,'Douala',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10040,'Edea',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10041,'Loum',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10042,'Manjo',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10043,'Mbanga',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10044,'Nkongsamba',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10045,'Yabassi',656,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10046,'Figuif',657,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10047,'Garoua',657,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10048,'Guider',657,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10049,'Lagdo',657,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10050,'Poli',657,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10051,'Rey Bouba',657,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10052,'Tchollire',657,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10053,'Figuif',658,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10054,'Garoua',658,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10055,'Guider',658,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10056,'Lagdo',658,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10057,'Poli',658,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10058,'Rey Bouba',658,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10059,'Tchollire',658,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10060,'Bamenda',659,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10061,'Kumbo',659,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10062,'Mbengwi',659,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10063,'Mme',659,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10064,'Njinikom',659,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10065,'Nkambe',659,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10066,'Wum',659,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10067,'Bafang',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10068,'Bafoussam',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10069,'Bafut',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10070,'Bali',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10071,'Bana',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10072,'Bangangte',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10073,'Djang',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10074,'Fontem',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10075,'Foumban',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10076,'Foumbot',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10077,'Mbouda',660,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10078,'Akom',661,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10079,'Ambam',661,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10080,'Ebolowa',661,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10081,'Kribi',661,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10082,'Lolodorf',661,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10083,'Moloundou',661,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10084,'Mvangue',661,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10085,'Sangmelima',661,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10086,'Buea',662,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10087,'Idenao',662,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10088,'Kumba',662,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10089,'Limbe',662,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10090,'Mamfe',662,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10091,'Muyuka',662,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10092,'Tiko',662,37,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10093,'Airdrie',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10094,'Athabasca',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10095,'Banff',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10096,'Barrhead',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10097,'Bassano',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10098,'Beaumont',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10099,'Beaverlodge',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10100,'Black Diamond',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10101,'Blackfalds',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10102,'Blairmore',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10103,'Bon Accord',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10104,'Bonnyville',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10105,'Bow Island',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10106,'Brooks',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10107,'Calgary',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10108,'Calmar',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10109,'Camrose',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10110,'Canmore',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10111,'Cardston',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10112,'Carstairs',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10113,'Chateau Lake Louise',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10114,'Chestermere',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10115,'Clairmont',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10116,'Claresholm',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10117,'Coaldale',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10118,'Coalhurst',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10119,'Cochrane',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10120,'Crossfield',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10121,'Devon',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10122,'Didsbury',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10123,'Drayton Valley',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10124,'Drumheller',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10125,'Edmonton',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10126,'Edson',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10127,'Elk Point',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10128,'Fairview',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10129,'Falher',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10130,'Fort MacLeod',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10131,'Fox Creek',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10132,'Gibbons',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10133,'Grand Centre',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10134,'Grande Cache',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10135,'Grande Prairie',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10136,'Grimshaw',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10137,'Hanna',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10138,'High Level',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10139,'High Prairie',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10140,'High River',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10141,'Hinton',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10142,'Irricana',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10143,'Jasper',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10144,'Killam',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10145,'La Crete',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10146,'Lac la Biche',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10147,'Lacombe',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10148,'Lamont',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10149,'Leduc',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10150,'Lethbridge',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10151,'Lloydminster',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10152,'Magrath',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10153,'Manning',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10154,'Mayerthorpe',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10155,'McMurray',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10156,'Medicine Hat',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10157,'Millet',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10158,'Morinville',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10159,'Nanton',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10160,'Okotoks',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10161,'Olds',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10162,'Peace River',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10163,'Penhold',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10164,'Picture Butte',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10165,'Pincher Creek',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10166,'Ponoka',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10167,'Provost',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10168,'Raymond',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10169,'Red Deer',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10170,'Redwater',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10171,'Rimbey',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10172,'Rocky Mountain House',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10173,'Rocky View',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10174,'Saint Paul',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10175,'Sexsmith',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10176,'Sherwood Park',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10177,'Slave Lake',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10178,'Smoky Lake',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10179,'Spirit River',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10180,'Spruce Grove',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10181,'Stettler',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10182,'Stony Plain',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10183,'Strathmore',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10184,'Sundre',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10185,'Swan Hills',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10186,'Sylvan Lake',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10187,'Taber',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10188,'Three Hills',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10189,'Tofield',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10190,'Two Hills',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10191,'Valleyview',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10192,'Vegreville',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10193,'Vermilion',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10194,'Viking',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10195,'Vulcan',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10196,'Wainwright',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10197,'Wembley',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10198,'Westlock',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10199,'Wetaskiwin',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10200,'Whitecourt',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10201,'Wood Buffalo',663,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10202,'Altona',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10203,'Beausejour',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10204,'Boissevain',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10205,'Brandon',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10206,'Carberry',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10207,'Carman',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10208,'Dauphin',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10209,'Deloraine',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10210,'Dugald',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10211,'Flin Flon',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10212,'Gimli',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10213,'Hamiota',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10214,'Killarney',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10215,'Lac du Bonnet',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10216,'Leaf Rapids',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10217,'Lorette',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10218,'Melita',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10219,'Minnedosa',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10220,'Morden',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10221,'Morris',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10222,'Neepawa',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10223,'Niverville',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10224,'Pinawa',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10225,'Portage la Prairie',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10226,'Ritchot',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10227,'Rivers',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10228,'Roblin',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10229,'Saint Adolphe',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10230,'Sainte Anne',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10231,'Sainte Rose du Lac',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10232,'Selkirk',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10233,'Shilo',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10234,'Snow Lake',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10235,'Souris',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10236,'Springfield',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10237,'Steinbach',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10238,'Stonewall',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10239,'Stony Mountain',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10240,'Swan River',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10241,'The Pas',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10242,'Thompson',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10243,'Virden',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10244,'Winkler',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10245,'Winnipeg',665,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10246,'Clyde River',670,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10247,'Iqaluit',670,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10248,'Kangerdlinerk',670,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10249,'Oqsuqtooq',670,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10250,'Pangnirtung',670,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10251,'Tununirusiq',670,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10252,'Acton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10253,'Ajax',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10254,'Alexandria',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10255,'Alfred',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10256,'Alliston',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10257,'Almonte',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10258,'Amherstburg',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10259,'Amigo Beach',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10260,'Angus-Borden',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10261,'Arnprior',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10262,'Arthur',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10263,'Athens',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10264,'Atikokan',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10265,'Attawapiskat',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10266,'Aurora',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10267,'Aylmer',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10268,'Ayr',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10269,'Barrie',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10270,'Barry\'s Bay',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10271,'Beamsville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10272,'Beaverton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10273,'Beeton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10274,'Belleville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10275,'Belmont',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10276,'Blenheim',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10277,'Blind River',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10278,'Bobcaygeon',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10279,'Bolton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10280,'Bourget',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10281,'Bowmanville-Newcastle',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10282,'Bracebridge',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10283,'Bradford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10284,'Brampton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10285,'Brantford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10286,'Bridgenorth-Chemong Park Area',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10287,'Brighton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10288,'Brockville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10289,'Brooklin',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10290,'Brussels',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10291,'Burford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10292,'Burlington',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10293,'Caledon',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10294,'Caledon East',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10295,'Caledonia',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10296,'Cambridge',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10297,'Campbellford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10298,'Campbellville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10299,'Cannington',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10300,'Capreol',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10301,'Cardinal',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10302,'Carleton Place',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10303,'Carlisle',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10304,'Casselman',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10305,'Cayuga',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10306,'Chalk River',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10307,'Chapleau',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10308,'Chatham',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10309,'Chesley',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10310,'Chesterville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10311,'Clinton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10312,'Cobourg',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10313,'Cochrane',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10314,'Colborne',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10315,'Colchester',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10316,'Collingwood',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10317,'Concord',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10318,'Constance Bay',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10319,'Cookstown',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10320,'Cornwall',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10321,'Creemore',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10322,'Crystal Beach',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10323,'Deep River',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10324,'Delhi',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10325,'Deseronto',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10326,'Downsview',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10327,'Drayton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10328,'Dresden',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10329,'Dryden',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10330,'Dundalk',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10331,'Dunnville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10332,'Durham',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10333,'Dutton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10334,'Eganville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10335,'Elliot Lake',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10336,'Elmira',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10337,'Elmvale',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10338,'Embrun',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10339,'Englehart',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10340,'Erin',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10341,'Espanola',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10342,'Essex',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10343,'Etobicoke',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10344,'Everett',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10345,'Exeter',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10346,'Fenelon Falls',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10347,'Fergus',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10348,'Forest',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10349,'Fort Erie',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10350,'Fort Frances',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10351,'Frankford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10352,'Gananoque',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10353,'Georgetown',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10354,'Georgina',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10355,'Geraldton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10356,'Glencoe',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10357,'Goderich',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10358,'Golden',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10359,'Gormley',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10360,'Grand Bend',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10361,'Grand Valley',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10362,'Gravenhurst',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10363,'Guelph',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10364,'Hagersville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10365,'Haileybury',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10366,'Hamilton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10367,'Hanover',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10368,'Harriston',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10369,'Harrow',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10370,'Hastings',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10371,'Havelock',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10372,'Hawkesbury',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10373,'Hearst',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10374,'Hensall',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10375,'Hillsburgh',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10376,'Hornepayne',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10377,'Huntsville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10378,'Ingersoll',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10379,'Innisfil',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10380,'Iroquois',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10381,'Iroquois Falls',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10382,'Jarvis',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10383,'Kanata',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10384,'Kapuskasing',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10385,'Kars',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10386,'Kemptville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10387,'Kenora',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10388,'Kincardine',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10389,'Kingston',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10390,'Kirkland Lake',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10391,'Kitchener',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10392,'L\'Original',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10393,'Lakefield',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10394,'Lanark',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10395,'Leamington',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10396,'Lindsay',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10397,'Listowel',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10398,'Little Current',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10399,'Lively',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10400,'London',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10401,'Longlac',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10402,'Lucan',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10403,'Lucknow',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10404,'Madoc',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10405,'Manitouwadge',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10406,'Maple',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10407,'Marathon',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10408,'Markdale',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10409,'Markham',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10410,'Marmora',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10411,'Mattawa',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10412,'Meaford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10413,'Metcalfe',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10414,'Midland',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10415,'Mildmay',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10416,'Millbrook',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10417,'Milton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10418,'Milverton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10419,'Mississauga',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10420,'Mississauga Beach',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10421,'Mitchell',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10422,'Moose Factory',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10423,'Morrisburg',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10424,'Mount Albert',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10425,'Mount Brydges',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10426,'Mount Forest',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10427,'Munster',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10428,'Nanticoke',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10429,'Napanee',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10430,'Nepean',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10431,'New Hamburg',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10432,'Newmarket',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10433,'Newtonville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10434,'Nobleton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10435,'North Bay',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10436,'North Gower',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10437,'North York',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10438,'Norwich',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10439,'Norwood',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10440,'Oakville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10441,'Omemee',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10442,'Onaping-Levack',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10443,'Ontario',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10444,'Orangeville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10445,'Orillia',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10446,'Orono',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10447,'Osgoode',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10448,'Oshawa',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10449,'Ottawa',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10450,'Owen Sound',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10451,'Paisley',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10452,'Palmerston',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10453,'Paris',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10454,'Parkhill',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10455,'Parry Sound',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10456,'Pembroke',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10457,'Perth',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10458,'Petawawa',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10459,'Peterborough',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10460,'Petrolia',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10461,'Pickering',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10462,'Picton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10463,'Porcupine',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10464,'Port Credit',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10465,'Port Dover',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10466,'Port Elgin',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10467,'Port Hope',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10468,'Port Perry',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10469,'Port Stanley',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10470,'Powassan',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10471,'Prescott',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10472,'Queensville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10473,'Renfrew',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10474,'Richmond',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10475,'Richmond Hill',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10476,'Ridgetown',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10477,'Rockland',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10478,'Rockwood',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10479,'Rodney',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10480,'Saint Catharines',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10481,'Saint Catharines-Niagara',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10482,'Saint George',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10483,'Saint Jacobs',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10484,'Saint Marys',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10485,'Saint Thomas',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10486,'Sarnia',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10487,'Sault Sainte Marie',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10488,'Scarborough',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10489,'Schomberg',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10490,'Seaforth',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10491,'Shelburne',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10492,'Simcoe',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10493,'Sioux Lookout',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10494,'Smiths Falls',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10495,'Smithville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10496,'South River',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10497,'Southampton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10498,'Stayner',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10499,'Stirling',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10500,'Stoney Creek',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10501,'Stoney Point',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10502,'Stouffville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10503,'Stratford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10504,'Strathroy',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10505,'Sturgeon Falls',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10506,'Sudbury',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10507,'Sutton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10508,'Tavistock',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10509,'Teeswater',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10510,'Terrace Bay',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10511,'Thamesford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10512,'Thessalon',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10513,'Thornbury',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10514,'Thornhill',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10515,'Thunder Bay',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10516,'Tilbury',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10517,'Tilsonburg',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10518,'Timmins',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10519,'Toronto',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10520,'Tory Hill',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10521,'Tottenham',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10522,'Tweed',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10523,'Uxbridge',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10524,'Valley East',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10525,'Vankleek Hill',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10526,'Vaughan',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10527,'Vineland',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10528,'Walkerton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10529,'Wallaceburg',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10530,'Wasaga Beach',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10531,'Waterdown',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10532,'Waterford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10533,'Waterloo',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10534,'Watford',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10535,'Wawa',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10536,'Welland',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10537,'Wellesley',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10538,'Wellington',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10539,'West Lorne',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10540,'Wheatley',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10541,'Whitby',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10542,'Whitchurch-Stouffville',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10543,'Wiarton',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10544,'Wikwemikong',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10545,'Willowdale',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10546,'Winchester',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10547,'Windsor',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10548,'Wingham',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10549,'Woodbridge',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10550,'Woodstock',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10551,'Wyoming',671,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10552,'Acton Vale',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10553,'Albanel',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10554,'Alencon',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10555,'Alma',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10556,'Amos',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10557,'Amqui',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10558,'Anjou',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10559,'Asbestos',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10560,'Bagotville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10561,'Baie-Comeau',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10562,'Baie-Saint-Paul',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10563,'Barraute',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10564,'Beauceville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10565,'Beaupre',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10566,'Bedford',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10567,'Beloeil',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10568,'Bernierville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10569,'Berthierville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10570,'Betsiamites',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10571,'Boisbriand',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10572,'Bonaventure',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10573,'Boucherville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10574,'Bromont',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10575,'Brossard',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10576,'Brownsburg',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10577,'Buckingham',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10578,'Cabano',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10579,'Candiac',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10580,'Cap-Chat',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10581,'Cap-aux-Meules',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10582,'Carleton',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10583,'Causapscal',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10584,'Chandler',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10585,'Chapais',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10586,'Charlesbourg',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10587,'Chateau-Richer',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10588,'Chibougamou',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10589,'Chicoutimi-Jonquiere',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10590,'Chisasibi',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10591,'Chute-aux-Outardes',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10592,'Clermont',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10593,'Coaticook',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10594,'Coleraine',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10595,'Contrecoeur',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10596,'Cookshire',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10597,'Cowansville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10598,'Crabtree',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10599,'Danville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10600,'Daveluyville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10601,'Degelis',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10602,'Desbiens',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10603,'Disraeli',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10604,'Dolbeau',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10605,'Donnacona',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10606,'Dorval',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10607,'Drummondville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10608,'East Angus',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10609,'East Broughton',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10610,'Farnham',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10611,'Ferme-Neuve',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10612,'Fermont',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10613,'Filion',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10614,'Forestville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10615,'Fort-Coulonge',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10616,'Gaspe',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10617,'Gentilly',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10618,'Granby',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10619,'Grande-Riviere',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10620,'Grenville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10621,'Ham Nord',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10622,'Hampstead',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10623,'Hauterive',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10624,'Havre-Saint-Pierre',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10625,'Hebertville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10626,'Huntingdon',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10627,'Joliette',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10628,'Kingsey Falls',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10629,'L\'Annonciation',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10630,'L\'Ascension-de-Notre-Seigneur',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10631,'L\'Epiphanie',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10632,'La Malbaie',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10633,'La Pocatiere',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10634,'La Sarre',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10635,'La Tuque',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10636,'Labelle',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10637,'Lac-Etchemin',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10638,'Lac-Lapierre',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10639,'Lac-Megantic',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10640,'Lac-au-Saumon',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10641,'Lachine',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10642,'Lachute',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10643,'Lacolle',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10644,'Lasalle',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10645,'Laurentides',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10646,'Laurier-Station',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10647,'Laval',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10648,'Lavaltrie',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10649,'Le Bic',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10650,'Lebel-sur-Quevillon',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10651,'Les Cedres',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10652,'Les Coteaux',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10653,'Les Escoumins',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10654,'Liniere',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10655,'Longueuil',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10656,'Louiseville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10657,'Luceville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10658,'Macamic',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10659,'Magog',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10660,'Malartic',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10661,'Maniwaki',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10662,'Marieville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10663,'Maskinonge',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10664,'Matagami',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10665,'Matane',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10666,'Metabetchouan',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10667,'Mirabel',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10668,'Mistissini',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10669,'Mont-Joli',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10670,'Mont-Laurier',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10671,'Montmagny',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10672,'Montreal',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10673,'Murdochville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10674,'Napierville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10675,'New Richmond',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10676,'Nicolet',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10677,'Normandin',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10678,'Notre-Dame-du-Bon-Conseil',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10679,'Notre-Dame-du-Lac',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10680,'Notre-Dame-du-Mont-Carmel',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10681,'Oka-Kanesatake',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10682,'Ormstown',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10683,'Papineauville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10684,'Pierreville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10685,'Plessisville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10686,'Pointe-Claire',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10687,'Pont-Rouge',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10688,'Port-Alfred-Bagotville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10689,'Port-Cartier',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10690,'Portneuf',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10691,'Price',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10692,'Princeville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10693,'Quebec',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10694,'Rawdon',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10695,'Repentigny',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10696,'Richmond',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10697,'Rigaud',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10698,'Rimouski',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10699,'Riviere-au-Renard',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10700,'Riviere-du-Loup',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10701,'Roberval',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10702,'Rougemont',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10703,'Rouyn-Noranda',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10704,'Saint-Agapit',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10705,'Saint-Alexandre',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10706,'Saint-Alexis-des-Monts',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10707,'Saint-Ambroise',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10708,'Saint-Andre-Avellin',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10709,'Saint-Anselme',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10710,'Saint-Apollinaire',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10711,'Saint-Augustin',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10712,'Saint-Basile-Sud',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10713,'Saint-Bruno',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10714,'Saint-Canut',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10715,'Saint-Cesaire',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10716,'Saint-Cyrill-de-Wendover',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10717,'Saint-Damase',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10718,'Saint-Damien-de-Buckland',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10719,'Saint-Denis',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10720,'Saint-Donat-de-Montcalm',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10721,'Saint-Ephrem-de-Tring',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10722,'Saint-Fabien',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10723,'Saint-Felicien',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10724,'Saint-Felix-de-Valois',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10725,'Saint-Gabriel',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10726,'Saint-Gedeon',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10727,'Saint-Georges',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10728,'Saint-Germain-de-Grantham',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10729,'Saint-Gregoire',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10730,'Saint-Henri-de-Levis',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10731,'Saint-Honore',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10732,'Saint-Hyacinthe',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10733,'Saint-Jacques',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10734,'Saint-Jean-Port-Joli',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10735,'Saint-Jean-de-Dieu',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10736,'Saint-Jean-sur-Richelieu',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10737,'Saint-Jerome',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10738,'Saint-Josephe-de-Beauce',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10739,'Saint-Josephe-de-Lanoraie',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10740,'Saint-Josephe-de-la-Riviere-Bl',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10741,'Saint-Jovite',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10742,'Saint-Laurent',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10743,'Saint-Liboire',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10744,'Saint-Marc-des-Carrieres',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10745,'Saint-Martin',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10746,'Saint-Michel-des-Saints',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10747,'Saint-Pacome',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10748,'Saint-Pascal',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10749,'Saint-Pie',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10750,'Saint-Prosper',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10751,'Saint-Raphael',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10752,'Saint-Raymond',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10753,'Saint-Remi',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10754,'Saint-Roch-de-l\'Achigan',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10755,'Saint-Sauveur-des-Monts',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10756,'Saint-Tite',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10757,'Sainte-Adele',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10758,'Sainte-Agathe-des-Monts',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10759,'Sainte-Anne-des-Monts',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10760,'Sainte-Anne-des-Plaines',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10761,'Sainte-Catherine',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10762,'Sainte-Claire',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10763,'Sainte-Julienne',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10764,'Sainte-Justine',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10765,'Sainte-Madeleine',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10766,'Sainte-Marie',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10767,'Sainte-Martine',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10768,'Sainte-Sophie',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10769,'Sainte-Thecle',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10770,'Sainte-Therese',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10771,'Salaberry-de-Valleyfield',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10772,'Sayabec',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10773,'Senneterre',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10774,'Sept-Iles',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10775,'Shawinigan',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10776,'Shawville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10777,'Sherbrooke',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10778,'Sorel',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10779,'St Faustin',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10780,'St. Hubert',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10781,'St. Jean Chrysostome',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10782,'Temiscaming',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10783,'Terrebonne',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10784,'Thetford Mines',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10785,'Thurso',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10786,'Trois-Pistoles',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10787,'Trois-Rivieres',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10788,'Val-David',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10789,'Val-d\'Or',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10790,'Valcourt',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10791,'Vallee-Jonction',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10792,'Vaudreuil',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10793,'Vercheres',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10794,'Victoriaville',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10795,'Ville-Marie',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10796,'Warwick',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10797,'Waterloo',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10798,'Weedon Centre',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10799,'Westmount',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10800,'Wickham',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10801,'Windsor',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10802,'Yamachiche',673,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10803,'Assiniboia',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10804,'Biggar',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10805,'Canora',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10806,'Carlyle',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10807,'Carnduff',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10808,'Caronport',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10809,'Carrot',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10810,'Dalmeny',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10811,'Davidson',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10812,'Esterhazy',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10813,'Estevan',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10814,'Eston',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10815,'Foam Lake',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10816,'Fort Qu\'Appelle',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10817,'Gravelbourg',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10818,'Grenfell',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10819,'Gull Lake',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10820,'Hudson Bay',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10821,'Humboldt',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10822,'Indian Head',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10823,'Kamsack',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10824,'Kelvington',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10825,'Kerrobert',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10826,'Kindersley',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10827,'Kipling',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10828,'La Ronge',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10829,'Langenburg',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10830,'Langham',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10831,'Lanigan',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10832,'Lloydminster',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10833,'Lumsden',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10834,'Macklin',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10835,'Maple Creek',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10836,'Martensville',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10837,'Meadow Lake',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10838,'Melfort',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10839,'Melville',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10840,'Moose Jaw',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10841,'Moosomin',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10842,'Nipawin',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10843,'North Battleford',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10844,'Outlook',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10845,'Oxbow',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10846,'Pilot Butte',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10847,'Preeceville',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10848,'Prince Albert',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10849,'Regina',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10850,'Rosetown',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10851,'Rosthem',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10852,'Saskatoon',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10853,'Shaunavon',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10854,'Shellbrook',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10855,'Swift Current',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10856,'Tisdale',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10857,'Unity',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10858,'Wadena',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10859,'Warman',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10860,'Watrous',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10861,'Weyburn',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10862,'White City',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10863,'Wilkie',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10864,'Wynyard',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10865,'Yorkton',674,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10866,'Haines Junction',675,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10867,'Mayo',675,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10868,'Whitehorse',675,38,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10869,'Sal Rei',676,39,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10870,'Nova Sintra',677,39,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10871,'Mosteiros',678,39,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10872,'Sao Filipe',678,39,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10873,'Vila do Maio',679,39,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10874,'Santa Maria',680,39,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10875,'Ndele',686,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10876,'Bangui',687,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10877,'Alindao',688,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10878,'Kembe',688,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10879,'Mobaye',688,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10880,'Obo',689,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10881,'Zemio',689,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10882,'Bria',690,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10883,'Ouadda',690,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10884,'Dekoa',691,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10885,'Sibut',691,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10886,'Boda',692,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10887,'Mbaiki',692,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10888,'Mongoumba',692,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10889,'Berberati',693,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10890,'Carnot',693,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10891,'Gamboula',693,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10892,'Bangassou',694,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10893,'Gambo',694,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10894,'Ouango',694,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10895,'Rafai',694,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10896,'Kaga-Bandoro',695,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10897,'Baboua',696,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10898,'Baoro',696,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10899,'Bouar',696,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10900,'Bambari',698,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10901,'Grimari',698,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10902,'Ippy',698,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10903,'Kouango',698,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10904,'Batangafo',699,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10905,'Bossangoa',699,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10906,'Bouca',699,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10907,'Kabo',699,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10908,'Bocaranga',700,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10909,'Bozoum',700,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10910,'Paoua',700,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10911,'Nola',701,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10912,'Birao',702,41,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10913,'Ati',703,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10914,'Oum Hadjer',703,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10915,'Biltine',704,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10916,'Aouzou',705,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10917,'Bardai',705,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10918,'Fada',705,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10919,'Faya',705,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10920,'Bokoro',706,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10921,'Bousso',706,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10922,'Dourbali',706,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10923,'Massaguet',706,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10924,'Massakory',706,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10925,'Massenya',706,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10926,'N\'Djamena',706,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10927,'Ngama',706,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10928,'Bitkine',707,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10929,'Melfi',707,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10930,'Mongo',707,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10931,'Mao',708,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10932,'Moussoro',708,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10933,'Rig-Rig',708,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10934,'Bol',709,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10935,'Bongor',712,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10936,'Fianga',712,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10937,'Gounou Gaya',712,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10938,'Guelengdeng',712,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10939,'Lere',712,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10940,'Pala',712,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10941,'Goundi',713,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10942,'Koumra',713,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10943,'Kyabe',713,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10944,'Moissala',713,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10945,'Sarh',713,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10946,'Abeche',714,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10947,'Adre',714,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10948,'Am Dam',714,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10949,'Abou Deia',715,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10950,'Am Timan',715,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10951,'Mangueigne',715,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10952,'Benoy',716,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10953,'Bere',716,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10954,'Kelo',716,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10955,'Lai',716,42,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10956,'Aisen',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10957,'Chile Chico',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10958,'Cisnes',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10959,'Cochrane',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10960,'Coihaique',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10961,'Guaitecas',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10962,'Lago Verde',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10963,'O\'Higgins',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10964,'Rio Ibanez',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10965,'Tortel',717,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10966,'Antofagasta',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10967,'Calama',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10968,'Maria Elena',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10969,'Mejilones',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10970,'Ollague',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10971,'San Pedro de Atacama',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10972,'Sierra Gorda',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10973,'Taltal',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10974,'Tocopilla',718,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10975,'Angol',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10976,'Carahue',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10977,'Collipulli',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10978,'Cunco',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10979,'Curacautin',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10980,'Curarrehue',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10981,'Ercilla',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10982,'Freire',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10983,'Galvarino',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10984,'Gorbea',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10985,'Lautaro',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10986,'Loncoche',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10987,'Lonquimay',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10988,'Los Sauces',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10989,'Lumaco',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10990,'Melipeuco',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10991,'Nueva Imperial',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10992,'Padre las Casas',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10993,'Perquenco',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10994,'Pitrufquen',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10995,'Pucon',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10996,'Puren',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10997,'Renaico',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10998,'Saavedra',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(10999,'Temuco',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11000,'Teodoro Schmidt',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11001,'Tolten',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11002,'Traiguen',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11003,'Victoria',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11004,'Vilcun',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11005,'Villarica',719,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11006,'Alto del Carmen',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11007,'Caldera',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11008,'Chanaral',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11009,'Copiapo',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11010,'Diego de Almagro',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11011,'Freirina',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11012,'Huasco',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11013,'Tierra Amarilla',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11014,'Vallenar',720,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11015,'Andacollo',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11016,'Canela',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11017,'Combarbala',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11018,'Coquimbo',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11019,'Illapel',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11020,'La Higuera',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11021,'La Serena',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11022,'Los Vilos',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11023,'Monte Patria',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11024,'Ovalle',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11025,'Paiguano',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11026,'Punitaci',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11027,'Rio Hurtado',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11028,'Salamanca',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11029,'Vicuna',722,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11030,'Cabo de Horno',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11031,'Laguna Blanca',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11032,'Natales',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11033,'Porvenir',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11034,'Primavera',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11035,'Punta Arenas',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11036,'Rio Verde',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11037,'San Gregorio',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11038,'Timaukel',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11039,'Torres del Paine',725,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11040,'Cauquenes',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11041,'Chanco',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11042,'Colbun',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11043,'Constitucion',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11044,'Curepto',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11045,'Curico',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11046,'Empedrado',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11047,'Hualane',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11048,'Licanten',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11049,'Linares',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11050,'Longavi',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11051,'Maule',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11052,'Molina',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11053,'Parral',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11054,'Pelarco',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11055,'Pelluhue',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11056,'Pencahue',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11057,'Rauco',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11058,'Retiro',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11059,'Rio Claro',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11060,'Romeral',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11061,'Sagrada Familia',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11062,'San Clemente',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11063,'San Javier',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11064,'San Rafael',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11065,'Talca',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11066,'Teno',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11067,'Vichuquen',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11068,'Villa Alegre',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11069,'Yerbas Buenas',726,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11070,'Alhue',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11071,'Buin',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11072,'Calera de Tango',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11073,'Colina',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11074,'Curacavi',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11075,'El Monte',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11076,'Isla de Maipo',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11077,'Lampa',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11078,'Maria Pinto',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11079,'Melipilla',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11080,'Padre Hurtado',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11081,'Paine',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11082,'Penaflor',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11083,'Pirque',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11084,'Puente Alto',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11085,'Quilicura',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11086,'San Bernardo',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11087,'San Jose de Maipo',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11088,'San Pedro',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11089,'Santiago',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11090,'Talagante',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11091,'Tiltil',727,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11092,'Alhue',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11093,'Buin',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11094,'Calera de Tango',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11095,'Colina',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11096,'Curacavi',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11097,'El Monte',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11098,'Isla de Maipo',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11099,'Lampa',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11100,'Maria Pinto',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11101,'Melipilla',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11102,'Padre Hurtado',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11103,'Paine',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11104,'Penaflor',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11105,'Pirque',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11106,'Puente Alto',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11107,'Quilicura',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11108,'San Bernardo',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11109,'San Jose de Maipo',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11110,'San Pedro',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11111,'Santiago',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11112,'Talagante',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11113,'Tiltil',728,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11114,'Arica',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11115,'Camarones',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11116,'Camina',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11117,'Colchane',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11118,'General Lagos',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11119,'Huara',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11120,'Iquique',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11121,'Pica',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11122,'Pozo Almonte',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11123,'Putre',729,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11124,'Algarrobo',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11125,'Cabildo',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11126,'Calera',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11127,'Calle Larga',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11128,'Cartagena',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11129,'Casablanca',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11130,'Catemu',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11131,'Concon',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11132,'El Quisco',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11133,'El Tabo',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11134,'Hijuelas',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11135,'La Cruz',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11136,'La Ligua',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11137,'Limache',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11138,'Llaillay',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11139,'Los Andes',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11140,'Nogales',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11141,'Olmue',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11142,'Panquehue',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11143,'Papudo',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11144,'Petorca',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11145,'Puchuncavi',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11146,'Putaendeo',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11147,'Quillota',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11148,'Quilpue',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11149,'Quintero',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11150,'Rinconada',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11151,'San Antonio',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11152,'San Esteban',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11153,'San Felipe',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11154,'Santa Maria',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11155,'Santo Domingo',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11156,'Valparaiso',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11157,'Villa Alemana',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11158,'Vina del Mar',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11159,'Zapallar',730,43,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11160,'Fengyang',731,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11161,'Guangde',731,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11162,'Liuan',731,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11163,'Ningguo',731,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11164,'Shucheng',731,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11165,'Xinchang',731,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11166,'Xuancheng',731,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11181,'Aomen',734,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11182,'Beijing',735,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11183,'Changping',735,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11184,'Fangshan',735,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11185,'Huangcun',735,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11186,'Liangxiang',735,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11187,'Mentougou',735,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11188,'Shunyi',735,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11189,'Tongzhou',735,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11190,'Beijing',736,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11191,'Changping',736,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11192,'Fangshan',736,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11193,'Huangcun',736,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11194,'Liangxiang',736,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11195,'Mentougou',736,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11196,'Shunyi',736,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11197,'Tongzhou',736,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11198,'Beibei',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11199,'Chongqing',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11200,'Fuling',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11201,'Longhua',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11202,'Nantongkuang',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11203,'Wanxian',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11204,'Xiuma',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11205,'Yubei',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11206,'Yudong',737,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11207,'Bantou',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11208,'Dongshan',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11209,'Fuan',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11210,'Fujian',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11211,'Fuqing',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11212,'Fuzhou',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11213,'Gantou',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11214,'Hanyang',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11215,'Jiangkou',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11216,'Jiaocheng',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11217,'Jinjiang',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11218,'Jinshang',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11219,'Longhai',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11220,'Longyan',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11221,'Luoyang',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11222,'Nanan',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11223,'Nanping',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11224,'Nanpu',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11225,'Putian',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11226,'Qingyang',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11227,'Quanzhou',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11228,'Rongcheng',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11229,'Sanming',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11230,'Shaowu',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11231,'Shima',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11232,'Shishi',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11233,'Tantou',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11234,'Tongshan',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11235,'Xiamen',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11236,'Xiapu',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11237,'Xiapu Ningde',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11238,'Ximei',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11239,'Yongan',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11240,'Zhangzhou',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11241,'Zhicheng',738,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11277,'Baiyin',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11278,'Baoji',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11279,'Beidao',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11280,'Jiayuguan',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11281,'Jinchang',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11282,'Jiuquan',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11283,'Lanzhou',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11284,'Linxia',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11285,'Pingliang',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11286,'Qincheng',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11287,'Wuwei',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11288,'Yaojie',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11289,'Yumen',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11290,'Zhangye',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11291,'Zhuanglang',740,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11292,'Anbu',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11293,'Chaozhou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11294,'Chenghai',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11295,'Chuncheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11296,'Daliang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11297,'Danshui',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11298,'Dongguan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11299,'Donghai',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11300,'Dongli',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11301,'Dongzhen',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11302,'Ducheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11303,'Encheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11304,'Foahn',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11305,'Foshan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11306,'Gaozhou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11307,'Guangdong',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11308,'Guangzhou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11309,'Guanjiao',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11310,'Haicheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11311,'Haimen',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11312,'Hepo',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11313,'Houpu',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11314,'Huaicheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11315,'Huanggang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11316,'Huangpu',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11317,'Huazhou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11318,'Huicheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11319,'Huizhou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11320,'Humen',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11321,'Jiangmen',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11322,'Jiazi',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11323,'Jieshi',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11324,'Jieyang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11325,'Lecheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11326,'Leicheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11327,'Liancheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11328,'Lianzhou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11329,'Licheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11330,'Liusha',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11331,'Longgang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11332,'Lubu',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11333,'Luocheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11334,'Luohu',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11335,'Luoyang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11336,'Maba',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11337,'Maoming',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11338,'Mata',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11339,'Meilu',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11340,'Meizhou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11341,'Mianchang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11342,'Nanfeng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11343,'Nanhai',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11344,'Pingshan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11345,'Qingtang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11346,'Qingyuan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11347,'Rongcheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11348,'Sanbu',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11349,'Shantou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11350,'Shanwei',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11351,'Shaoguan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11352,'Shaping',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11353,'Shenzhen',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11354,'Shilong',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11355,'Shiqiao',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11356,'Shiwan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11357,'Shuizhai',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11358,'Shunde',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11359,'Suicheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11360,'Taicheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11361,'Tangping',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11362,'Xiaolan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11363,'Xinan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11364,'Xingcheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11365,'Xiongzhou',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11366,'Xucheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11367,'Yangjiang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11368,'Yingcheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11369,'Yuancheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11370,'Yuncheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11371,'Yunfu',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11372,'Zengcheng',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11373,'Zhanjiang',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11374,'Zhaoqing',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11375,'Zhilong',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11376,'Zhongshan',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11377,'Zhuhai',741,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11464,'Babu',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11465,'Baihe',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11466,'Baise',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11467,'Beihai',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11468,'Binzhou',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11469,'Bose',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11470,'Fangchenggang',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11471,'Guicheng',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11472,'Guilin',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11473,'Guiping',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11474,'Jinchengjiang',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11475,'Jinji',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11476,'Laibin',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11477,'Lianzhou',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11478,'Liuzhou',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11479,'Luorong',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11480,'Matong',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11481,'Nandu',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11482,'Nanning',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11483,'Pingnan',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11484,'Pumiao',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11485,'Qinzhou',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11486,'Songhua',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11487,'Wuzhou',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11488,'Yashan',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11489,'Yulin',743,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11490,'Anshun',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11491,'Bijie',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11492,'Caohai',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11493,'Duyun',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11494,'Guiyang',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11495,'Kaili',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11496,'Liupanshui',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11497,'Luoyang',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11498,'Pingzhai',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11499,'Tongren',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11500,'Tongzi',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11501,'Xiaoweizhai',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11502,'Xingyi',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11503,'Zunyi',744,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11504,'Chengmai',745,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11505,'Dingan',745,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11506,'Haikou',745,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11507,'Lingao',745,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11508,'Qiongshan',745,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11509,'Sansha ',745,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11510,'Sanya',745,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11511,'Wanning',745,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11512,'Anping',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11513,'Baoding',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11514,'Botou',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11515,'Cangzhou',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11516,'Changli',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11517,'Chengde',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11518,'Dingzhou',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11519,'Fengfeng',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11520,'Fengrun',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11521,'Guye',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11522,'Handan',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11523,'Hebei',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11524,'Hecun',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11525,'Hejian',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11526,'Hengshui',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11527,'Huanghua',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11528,'Jingxingkuang',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11529,'Jinzhou',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11530,'Langfang',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11531,'Lianzhou',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11532,'Linshui',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11533,'Linxi',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11534,'Longyao County',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11535,'Nangong',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11536,'Pengcheng',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11537,'Qinhuangdao',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11538,'Renqiu',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11539,'Shahe',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11540,'Shijiazhuang',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11541,'Tangjiazhuang',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11542,'Tangshan',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11543,'Wuan',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11544,'Xian County',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11545,'Xingtai',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11546,'Xinji',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11547,'Xinle',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11548,'Xuanhua',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11549,'Zhangjiakou',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11550,'Zhaogezhuang',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11551,'Zhuozhou',746,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11552,'Acheng',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11553,'Anda',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11554,'Angangxi',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11555,'Baiquan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11556,'Bamiantong',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11557,'Baoqing',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11558,'Baoshan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11559,'Bayan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11560,'Beian',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11561,'Binzhou',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11562,'Boli',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11563,'Chaihe',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11564,'Chengzihe',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11565,'Cuiluan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11566,'Daqing',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11567,'Didao',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11568,'Dongning',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11569,'Fujin',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11570,'Fuli',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11571,'Fulitun',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11572,'Fuyu',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11573,'Gannan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11574,'Hailin',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11575,'Hailun',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11576,'Harbin',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11577,'Hegang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11578,'Heihe',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11579,'Hengshan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11580,'Honggang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11581,'Huanan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11582,'Hulan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11583,'Hulan Ergi',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11584,'Jiamusi',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11585,'Jidong',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11586,'Jixi',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11587,'Keshan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11588,'Langxiang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11589,'Lanxi',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11590,'Lingdong',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11591,'Linkou',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11592,'Lishu',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11593,'Longfeng',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11594,'Longjiang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11595,'Mingshui',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11596,'Mishan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11597,'Mudanjiang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11598,'Nancha',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11599,'Nehe',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11600,'Nenjiang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11601,'Nianzishan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11602,'Ningan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11603,'Qingan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11604,'Qinggang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11605,'Qiqihar',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11606,'Qitaihe',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11607,'Ranghulu',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11608,'Saertu',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11609,'Shangzhi',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11610,'Shanhetun',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11611,'Shuangcheng',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11612,'Shuangyashan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11613,'Sifantan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11614,'Suifenhe',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11615,'Suihua',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11616,'Suileng',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11617,'Tahe',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11618,'Taikang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11619,'Tailai',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11620,'Tieli',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11621,'Wangkui',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11622,'Weihe',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11623,'Wuchang',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11624,'Xinglongzhen',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11625,'Xinqing',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11626,'Yian',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11627,'Yichun',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11628,'Yilan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11629,'Youhao',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11630,'Zhaodong',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11631,'Zhaoyuan',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11632,'Zhaozhou',747,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11633,'Anyang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11634,'Changying',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11635,'Dancheng',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11636,'Daokou',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11637,'Dengzhou',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11638,'Gongyi',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11639,'Gushi',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11640,'Hebi',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11641,'Huaidian',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11642,'Huangchuan',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11643,'Huangzhai',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11644,'Jiaozuo',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11645,'Jishui',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11646,'Kaifeng',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11647,'Liupen',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11648,'Luohe',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11649,'Luoyang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11650,'Luyang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11651,'Mengzhou',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11652,'Minggang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11653,'Nandun',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11654,'Nanyang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11655,'Pingdingshan',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11656,'Puyang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11657,'Sanmenxia',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11658,'Shangqiu',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11659,'Tanghe',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11660,'Xiaoyi',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11661,'Xihua',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11662,'Xinxiang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11663,'Xinyang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11664,'Xinye',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11665,'Xixiang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11666,'Xuanwu',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11667,'Xuchang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11668,'Yigou',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11669,'Yima',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11670,'Yinzhuang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11671,'Yunyang',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11672,'Yuzhou',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11673,'Zhecheng',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11674,'Zhengzhou',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11675,'Zhenping',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11676,'Zhoukou',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11677,'Zhumadian',748,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11678,'Anlu',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11679,'Baisha',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11680,'Buhe',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11681,'Caidian',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11682,'Caohe',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11683,'Danjiangkou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11684,'Daye',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11685,'Duobao',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11686,'Enshi',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11687,'Ezhou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11688,'Fengkou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11689,'Guangshui',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11690,'Gucheng',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11691,'Hanchuan',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11692,'Hongan',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11693,'Honghu',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11694,'Huangmei',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11695,'Huangpi',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11696,'Huangshi',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11697,'Huangzhou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11698,'Jingmen',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11699,'Jingzhou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11700,'Laohekou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11701,'Lichuan',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11702,'Macheng',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11703,'Nanhai',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11704,'Nanzhang',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11705,'Puqi',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11706,'Qianjiang',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11707,'Qingquan',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11708,'Qixingtai',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11709,'Rongcheng',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11710,'Shashi',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11711,'Shishou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11712,'Shiyan',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11713,'Suizhou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11714,'Tianmen',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11715,'Tongcheng',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11716,'Wuhan',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11717,'Wuxue',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11718,'Xiangfan',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11719,'Xianning',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11720,'Xiantao',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11721,'Xiaogan',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11722,'Xiaoxita',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11723,'Xiaxindian',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11724,'Xihe',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11725,'Xinpu',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11726,'Xinshi',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11727,'Xinzhou',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11728,'Yichang',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11729,'Yicheng',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11730,'Yingcheng',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11731,'Yingzhong',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11732,'Zaoyang',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11733,'Zhengchang',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11734,'Zhicheng',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11735,'Zhifang',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11736,'Zhongxiang',749,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11737,'Anjiang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11738,'Anxiang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11739,'Changde',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11740,'Changsha',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11741,'Chenzhou',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11742,'Dayong',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11743,'Hengyang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11744,'Hongjiang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11745,'Huaihua',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11746,'Jinshi',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11747,'Jishou',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11748,'Leiyang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11749,'Lengshuijiang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11750,'Lengshuitan',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11751,'Lianyuan',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11752,'Liling',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11753,'Liuyang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11754,'Loudi',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11755,'Matian',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11756,'Nanzhou',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11757,'Ningxiang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11758,'Qidong',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11759,'Qiyang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11760,'Shaoyang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11761,'Xiangtan',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11762,'Xiangxiang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11763,'Xiangyin',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11764,'Xinhua',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11765,'Yiyang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11766,'Yongfeng',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11767,'Yongzhou',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11768,'Yuanjiang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11769,'Yueyang',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11770,'Zhuzhou',750,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11771,'Baoying',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11772,'Changzhou',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11773,'Dachang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11774,'Dafeng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11775,'Danyang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11776,'Dingshu',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11777,'Dongkan',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11778,'Dongtai',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11779,'Fengxian',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11780,'Gaogou',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11781,'Gaoyou',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11782,'Guiren',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11783,'Haian',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11784,'Haizhou',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11785,'Hede',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11786,'Huaicheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11787,'Huaiyin',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11788,'Huilong',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11789,'Hutang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11790,'Jiangdu',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11791,'Jiangyan',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11792,'Jiangyin',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11793,'Jiangyuan',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11794,'Jianhu',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11795,'Jingcheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11796,'Jinsha',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11797,'Jintan',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11798,'Juegang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11799,'Jurong',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11800,'Kunshan',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11801,'Lianyungang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11802,'Liucheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11803,'Liyang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11804,'Luodu',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11805,'Mudu',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11806,'Nanjing',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11807,'Nantong',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11808,'Pecheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11809,'Pukou',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11810,'Qidong',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11811,'Qinnan',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11812,'Qixia',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11813,'Rucheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11814,'Songling',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11815,'Sucheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11816,'Suicheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11817,'Suqian',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11818,'Suzhou',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11819,'Taicang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11820,'Taixing',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11821,'Wujiang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11822,'Wuxi',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11823,'Xiaolingwei',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11824,'Xiaoshi',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11825,'Xinan',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11826,'Xinpu',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11827,'Xuzhou',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11828,'Yancheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11829,'Yangshe',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11830,'Yangzhou',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11831,'Yizheng',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11832,'Yunhe',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11833,'Yunyang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11834,'Yushan',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11835,'Zhangjiagang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11836,'Zhangjiangang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11837,'Zhaoyang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11838,'Zhenjiang',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11839,'Zhongxing',751,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11909,'Fengxin',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11910,'Fenyi',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11911,'Ganzhou',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11912,'Jian',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11913,'Jiangguang',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11914,'Jingdezhen',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11915,'Jiujiang',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11916,'Leping',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11917,'Linchuan',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11918,'Nanchang',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11919,'Pingxiang',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11920,'Poyang',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11921,'Shangrao',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11922,'Xiangdong',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11923,'Xingan',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11924,'Xinjian',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11925,'Xinyu',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11926,'Xiongshi',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11927,'Yichun',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11928,'Yingtai',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11929,'Yingtan',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11930,'Zhangshui',753,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11931,'Badaojiang',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11932,'Baicheng',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11933,'Baishishan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11934,'Changchun',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11935,'Changling',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11936,'Chaoyang',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11937,'Daan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11938,'Dashitou',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11939,'Dehui',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11940,'Dongchang',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11941,'Dongfeng',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11942,'Dunhua',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11943,'Erdaojiang',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11944,'Fuyu',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11945,'Gongzhuling',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11946,'Helong',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11947,'Hongmei',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11948,'Huadian',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11949,'Huangnihe',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11950,'Huinan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11951,'Hunchun',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11952,'Jiaohe',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11953,'Jilin',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11954,'Jishu',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11955,'Jiutai',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11956,'Kaitong',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11957,'Kouqian',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11958,'Liaoyuan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11959,'Linjiang',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11960,'Lishu',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11961,'Liuhe',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11962,'Longjing',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11963,'Meihekou',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11964,'Mingyue',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11965,'Nongan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11966,'Panshi',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11967,'Pizhou',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11968,'Qianan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11969,'Qianguo',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11970,'Sanchazi',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11971,'Shuangyang',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11972,'Shulan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11973,'Siping',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11974,'Songjianghe',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11975,'Taonan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11976,'Tumen',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11977,'Wangou',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11978,'Wangqing',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11979,'Xinglongshan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11980,'Yanji',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11981,'Yantongshan',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11982,'Yushu',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11983,'Zhengjiatun',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11984,'Zhenlai',754,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11985,'Anshan',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11986,'Beipiao',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11987,'Benxi',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11988,'Changtu',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11989,'Chaoyang',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11990,'Dalian',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11991,'Dalianwan',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11992,'Dalinghe',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11993,'Dandong',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11994,'Dashiqiao',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11995,'Dongling',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11996,'Fengcheng',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11997,'Fushun',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11998,'Fuxin',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(11999,'Haicheng',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12000,'Heishan',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12001,'Huanren',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12002,'Huludao',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12003,'Hushitai',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12004,'Jinxi',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12005,'Jinzhou',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12006,'Jiupu',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12007,'Kaiyuan',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12008,'Kuandian',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12009,'Langtou',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12010,'Liaoyang',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12011,'Liaozhong',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12012,'Lingyuan',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12013,'Liuerbao',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12014,'Lushunkou',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12015,'Nantai',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12016,'Panjin',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12017,'Pulandian',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12018,'Shenyang',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12019,'Sujiatun',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12020,'Tieling',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12021,'Wafangdian',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12022,'Xiaoshi',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12023,'Xifeng',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12024,'Xinchengxi',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12025,'Xingcheng',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12026,'Xinmin',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12027,'Xiongyue',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12028,'Xiuyan',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12029,'Yebaishou',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12030,'Yingkou',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12031,'Yuhong',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12032,'Zhuanghe',755,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12081,'Qiatou',759,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12082,'Xining',759,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12083,'Ankang',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12084,'Baoji',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12085,'Guozhen',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12086,'Hancheng',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12087,'Hanzhong',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12088,'Lishan',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12089,'Qili',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12090,'Tongchuan',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12091,'Weinan',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12092,'Xian',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12093,'Xianyang',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12094,'Yanan',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12095,'Yanliang',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12096,'Yulin',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12097,'Yuxia',760,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12098,'Anqiu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12099,'Bianzhuang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12100,'Binzhou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12101,'Boshan',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12102,'Boxing County',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12103,'Caocheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12104,'Changqing',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12105,'Chengyang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12106,'Dengzhou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12107,'Dezhou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12108,'Dingtao',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12109,'Dongcun',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12110,'Dongdu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12111,'Donge County',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12112,'Dongying',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12113,'Feicheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12114,'Fushan',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12115,'Gaomi',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12116,'Haiyang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12117,'Hanting',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12118,'Hekou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12119,'Heze',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12120,'Jiaonan',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12121,'Jiaozhou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12122,'Jiehu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12123,'Jimo',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12124,'Jinan',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12125,'Jining',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12126,'Juxian',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12127,'Juye',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12128,'Kunlun',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12129,'Laiwu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12130,'Laiyang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12131,'Laizhou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12132,'Leling',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12133,'Liaocheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12134,'Licung',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12135,'Linqing',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12136,'Linqu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12137,'Linshu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12138,'Linyi',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12139,'Longkou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12140,'Mengyin',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12141,'Mingshui',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12142,'Nanchou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12143,'Nanding',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12144,'Nanma',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12145,'Ninghai',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12146,'Ningyang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12147,'Pingdu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12148,'Pingyi',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12149,'Pingyin',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12150,'Qingdao',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12151,'Qingzhou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12152,'Qixia',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12153,'Qufu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12154,'Rizhao',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12155,'Rongcheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12156,'Shancheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12157,'Shanting',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12158,'Shengzhuang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12159,'Shenxian',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12160,'Shizilu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12161,'Shouguang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12162,'Shuiji',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12163,'Sishui',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12164,'Suozhen',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12165,'Taian',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12166,'Tancheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12167,'Taozhuang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12168,'Tengzhou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12169,'Weifang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12170,'Weihai',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12171,'Wencheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12172,'Wendeng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12173,'Wenshang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12174,'Wudi',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12175,'Xiazhen',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12176,'Xincheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12177,'Xindian',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12178,'Xintai',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12179,'Yanggu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12180,'Yangshan',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12181,'Yantai',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12182,'Yanzhou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12183,'Yatou',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12184,'Yidu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12185,'Yishui',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12186,'Yucheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12187,'Yuncheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12188,'Zaozhuang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12189,'Zhangdian',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12190,'Zhangjiawa',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12191,'Zhangqiu',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12192,'Zhaocheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12193,'Zhoucheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12194,'Zhoucun',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12195,'Zhucheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12196,'Zhuwang',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12197,'Zicheng',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12198,'Zouping',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12199,'Zouxian',761,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12302,'Jiading',763,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12303,'Minhang',763,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12304,'Shanghai',763,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12305,'Songjiang',763,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12306,'Trencin',763,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12307,'Changzhi',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12308,'Datong',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12309,'Houma',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12310,'Jiexiu',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12311,'Jincheng',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12312,'Linfen',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12313,'Taiyuan',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12314,'Xian',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12315,'Xinzhi',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12316,'Xinzhou',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12317,'Yangquan',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12318,'Yuanping',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12319,'Yuci',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12320,'Yuncheng',764,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12321,'Anju',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12322,'Baoning',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12323,'Chengdu',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12324,'Daan',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12325,'Dawan',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12326,'Daxian',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12327,'Deyang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12328,'Dujiangyan City',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12329,'Guangkou',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12330,'Guangyuan',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12331,'Guihu',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12332,'Heyang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12333,'Huayang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12334,'Jiancheng',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12335,'Jiangyou',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12336,'Jijiang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12337,'Leshan',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12338,'Linqiong',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12339,'Luocheng',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12340,'Luzhou',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12341,'Mianyang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12342,'Nanchong',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12343,'Nanlong',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12344,'Neijiang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12345,'Panzhihua',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12346,'Shifang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12347,'Suining',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12348,'Taihe',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12349,'Tianpeng',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12350,'Tongchuan',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12351,'Xichang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12352,'Xunchang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12353,'Yaan',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12354,'Yibin',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12355,'Yongchang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12356,'Zhonglong',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12357,'Zigong',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12358,'Ziyang',765,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12359,'Beichen',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12360,'Gangdong',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12361,'Hangu',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12362,'Jinghai',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12363,'Nankai',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12364,'Tanggu',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12365,'Tianjin',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12366,'Xianshuigu',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12367,'Yangcun',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12368,'Yangliuqing',766,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12369,'Guiqing',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12370,'Jiulong',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12371,'Quanwan',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12372,'Saigong',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12373,'Shatin',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12374,'Taipo',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12375,'Tuanmun',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12376,'Xianggang',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12377,'Yuanlong',767,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12378,'Aksu',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12379,'Baijiantan',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12380,'Changji',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12381,'Dongshan',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12382,'Hami',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12383,'Hetian',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12384,'Karamay',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12385,'Kashi',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12386,'Korla',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12387,'Kuche',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12388,'Kuytun',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12389,'Shache',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12390,'Shihezi',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12391,'Shuimogou',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12392,'Toutunhe',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12393,'Urumqi',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12394,'Yining',768,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12395,'Lasa',769,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12396,'Dali',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12397,'Gejiu',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12398,'Haikou',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12399,'Heilin',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12400,'Jinma',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12401,'Kaihua',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12402,'Kaiyuan',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12403,'Kunming',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12404,'Lianran',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12405,'Longquan',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12406,'Lucheng',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12407,'Mabai',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12408,'Majie',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12409,'Miyang',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12410,'Qujing',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12411,'Rongcheng',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12412,'Simao',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12413,'Wufeng',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12414,'Yunjinghong',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12415,'Yuxi Municipal',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12416,'Zhaotong',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12417,'Zhenhai',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12418,'Zhongshu',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12419,'Zhoucheng',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12420,'Zhuocheng',770,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12421,'Aojiang',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12422,'Choucheng',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12423,'Cixi',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12424,'Daqiao',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12425,'Deqing',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12426,'Dinghai',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12427,'Dongyang',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12428,'Fuyang',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12429,'Haining',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12430,'Haiyan',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12431,'Hangzhou',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12432,'Huangyan',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12433,'Hushan',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12434,'Huzhou',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12435,'Jiaojiang',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12436,'Jiaxing',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12437,'Jinhua',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12438,'Jinxiang',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12439,'Kaihua',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12440,'Kunyang',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12441,'Lanxi',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12442,'Linan City',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12443,'Linhai',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12444,'Linping',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12445,'Lishui',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12446,'Liushi',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12447,'Ningbo',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12448,'Ninghai',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12449,'Pinghu',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12450,'Quzhou',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12451,'Ruian',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12452,'Shangyu',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12453,'Shaoxing',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12454,'Shenjiamen',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12455,'Taizhou City',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12456,'Tonglu',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12457,'Wenling',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12458,'Wenzhou',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12459,'Wuning',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12460,'Wuyi',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12461,'Xianju',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12462,'Xiaoshan',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12463,'Xiashi',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12464,'Xushan',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12465,'Yiwu',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12466,'Yongkang',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12467,'Yueqing',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12468,'Yuhuan',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12469,'Yuyao',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12470,'Zhejiang',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12471,'Zhenhai',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12472,'Zhicheng',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12473,'Zhuji',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12474,'fenghua',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12475,'jiashan',771,44,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12531,'Leticia',775,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12532,'Puerto Narino',775,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12533,'Abejorral',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12534,'Abriaqui',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12535,'Alejandria',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12536,'Amaga',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12537,'Amalfi',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12538,'Andes',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12539,'Angelopolis',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12540,'Angostura',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12541,'Anori',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12542,'Antioquia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12543,'Anza',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12544,'Apartado',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12545,'Arboletes',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12546,'Argelia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12547,'Armenia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12548,'Barbosa',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12549,'Bello',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12550,'Belmira',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12551,'Betania',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12552,'Betulia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12553,'Bolivar',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12554,'Briceno',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12555,'Buritica',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12556,'Caceres',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12557,'Caicedo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12558,'Caldas',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12559,'Campamento',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12560,'Canasgordas',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12561,'Caracoli',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12562,'Caramanta',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12563,'Carepa',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12564,'Carmen de Viboral',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12565,'Carolina',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12566,'Caucasia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12567,'Chigorodo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12568,'Cisneros',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12569,'Cocorna',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12570,'Concepcion',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12571,'Concordia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12572,'Copacabana',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12573,'Dabeiba',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12574,'Don Matias',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12575,'Ebejico',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12576,'El Bagre',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12577,'Entrerrios',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12578,'Envigado',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12579,'Fredonia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12580,'Frontino',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12581,'Giraldo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12582,'Girardota',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12583,'Gomez Plata',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12584,'Granada',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12585,'Guadalupe',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12586,'Guarne',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12587,'Guatape',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12588,'Heliconia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12589,'Hispania',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12590,'Itagui',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12591,'Ituango',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12592,'Jardin',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12593,'Jerico',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12594,'La Ceja',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12595,'La Estrella',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12596,'La Pintada',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12597,'La Union',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12598,'Liborina',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12599,'Maceo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12600,'Marinilla',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12601,'Medellin',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12602,'Montebello',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12603,'Murindo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12604,'Mutata',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12605,'Narino',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12606,'Nechi',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12607,'Necocli',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12608,'Olaya',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12609,'Penol',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12610,'Peque',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12611,'Pueblorrico',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12612,'Puerto Berrio',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12613,'Puerto Nare',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12614,'Puerto Triunfo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12615,'Remedios',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12616,'Retiro',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12617,'Rionegro',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12618,'Sabanalarga',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12619,'Sabaneta',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12620,'Salgar',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12621,'San Andres',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12622,'San Carlos',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12623,'San Francisco',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12624,'San Jeronimo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12625,'San Jose de la Montana',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12626,'San Juan de Uraba',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12627,'San Luis',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12628,'San Pedro',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12629,'San Pedro de Uraba',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12630,'San Rafael',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12631,'San Roque',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12632,'San Vicente',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12633,'Santa Barbara',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12634,'Santa Rosa de Osos',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12635,'Santo Domingo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12636,'Santuario',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12637,'Segovia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12638,'Sonson',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12639,'Sopetran',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12640,'Tamesis',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12641,'Taraza',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12642,'Tarso',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12643,'Titiribi',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12644,'Toledo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12645,'Turbo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12646,'Uramita',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12647,'Urrao',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12648,'Valdivia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12649,'Valparaiso',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12650,'Vegachi',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12651,'Venecia',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12652,'Vigia del Fuerte',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12653,'Yali',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12654,'Yarumal',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12655,'Yolombo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12656,'Yondo',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12657,'Zaragoza',776,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12658,'Arauca',777,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12659,'Arauquita',777,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12660,'Cravo Norte',777,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12661,'Fortul',777,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12662,'Puerto Rondon',777,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12663,'Saravena',777,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12664,'Tame',777,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12665,'Baranoa',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12666,'Barranquilla',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12667,'Campo de la Cruz',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12668,'Candelaria',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12669,'Galapa',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12670,'Juan de Acosta',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12671,'Luruaco',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12672,'Malambo',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12673,'Manati',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12674,'Palmar de Varela',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12675,'Piojo',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12676,'Polo Nuevo',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12677,'Ponedera',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12678,'Puerto Colombia',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12679,'Repelon',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12680,'Sabanagrande',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12681,'Sabanalarga',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12682,'Santa Lucia',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12683,'Santo Tomas',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12684,'Soledad',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12685,'Suan',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12686,'Tubara',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12687,'Usiacuri',778,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12688,'Bogota',779,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12689,'Achi',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12690,'Altos del Rosario',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12691,'Arenal',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12692,'Arjona',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12693,'Arroyohondo',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12694,'Barranco de Loba',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12695,'Calamar',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12696,'Cantagallo',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12697,'Cartagena',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12698,'Cicuco',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12699,'Clemencia',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12700,'Cordoba',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12701,'El Carmen de Bolivar',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12702,'El Guamo',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12703,'El Penon',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12704,'Hatillo de Loba',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12705,'Magangue',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12706,'Mahates',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12707,'Margarita',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12708,'Maria la Baja',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12709,'Mompos',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12710,'Montecristo',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12711,'Morales',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12712,'Pinillos',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12713,'Regidor',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12714,'Rio Viejo',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12715,'San Cristobal',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12716,'San Estanislao',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12717,'San Fernando',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12718,'San Jacinto',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12719,'San Jacinto del Cauca',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12720,'San Juan Nepomuceno',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12721,'San Martin de Loba',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12722,'San Pablo',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12723,'Santa Catalina',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12724,'Santa Rosa',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12725,'Santa Rosa del Sur',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12726,'Simiti',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12727,'Soplaviento',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12728,'Talaigua Nuevo',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12729,'Tiquisio',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12730,'Turbaco',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12731,'Turbana',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12732,'Villanueva',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12733,'Zambrano',780,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12734,'Almeida',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12735,'Aquitania',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12736,'Arcabuco',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12737,'Belen',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12738,'Berbeo',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12739,'Beteitiva',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12740,'Boavita',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12741,'Boyaca',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12742,'Briceno',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12743,'Buenavista',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12744,'Busbanza',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12745,'Caldas',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12746,'Campohermoso',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12747,'Cerinza',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12748,'Chinavita',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12749,'Chiquinquira',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12750,'Chiquiza',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12751,'Chiscas',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12752,'Chita',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12753,'Chitaraque',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12754,'Chivata',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12755,'Chivor',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12756,'Cienega',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12757,'Combita',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12758,'Coper',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12759,'Corrales',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12760,'Covarachia',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12761,'Cubara',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12762,'Cucaita',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12763,'Cuitiva',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12764,'Duitama',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12765,'El Cocuy',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12766,'El Espino',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12767,'Firavitoba',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12768,'Floresta',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12769,'Gachantiva',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12770,'Gameza',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12771,'Garagoa',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12772,'Guacamayas',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12773,'Guateque',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12774,'Guayata',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12775,'Guican',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12776,'Iza',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12777,'Jenesano',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12778,'Jerico',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12779,'La Capilla',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12780,'La Uvita',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12781,'La Victoria',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12782,'Labranzagrande',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12783,'Leiva',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12784,'Macanal',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12785,'Maripi',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12786,'Miraflores',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12787,'Mongua',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12788,'Mongui',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12789,'Moniquira',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12790,'Motavita',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12791,'Muzo',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12792,'Nobsa',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12793,'Nuevo Colon',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12794,'Oicata',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12795,'Otanche',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12796,'Pachavita',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12797,'Paez',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12798,'Paipa',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12799,'Pajarito',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12800,'Panqueba',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12801,'Pauna',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12802,'Paya',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12803,'Paz del Rio',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12804,'Pesca',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12805,'Pisba',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12806,'Puerto Boyaca',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12807,'Quipama',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12808,'Ramiriqui',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12809,'Raquira',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12810,'Rondon',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12811,'Saboya',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12812,'Sachica',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12813,'Samaca',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12814,'San Eduardo',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12815,'San Jose de Pare',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12816,'San Luis de Gaceno',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12817,'San Mateo',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12818,'San Miguel de Sema',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12819,'San Pablo de Borbur',781,47,0.00,0,'2021-04-06 01:13:43','2021-04-06 01:13:43',NULL),(12820,'Santa Maria',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12821,'Santa Rosa de Viterbo',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12822,'Santa Sofia',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12823,'Santana',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12824,'Sativanorte',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12825,'Sativasur',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12826,'Siachoque',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12827,'Soata',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12828,'Socha',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12829,'Socota',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12830,'Sogamoso',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12831,'Somondoco',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12832,'Sora',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12833,'Soraca',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12834,'Sotaquira',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12835,'Susacon',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12836,'Sutamarchan',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12837,'Sutatenza',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12838,'Tasco',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12839,'Tenza',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12840,'Tibana',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12841,'Tibasosa',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12842,'Tinjaca',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12843,'Tipacoque',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12844,'Toca',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12845,'Togui',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12846,'Topaga',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12847,'Tota',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12848,'Tunja',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12849,'Tunungua',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12850,'Turmeque',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12851,'Tuta',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12852,'Tutasa',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12853,'Umbita',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12854,'Ventaquemada',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12855,'Viracacha',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12856,'Zetaquira',781,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12857,'Aguadas',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12858,'Anserma',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12859,'Aranzazu',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12860,'Belalcazar',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12861,'Chinchina',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12862,'Filadelfia',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12863,'La Dorada',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12864,'La Merced',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12865,'Manizales',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12866,'Manzanares',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12867,'Marmato',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12868,'Marquetalia',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12869,'Marulanda',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12870,'Neira',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12871,'Norcasia',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12872,'Pacora',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12873,'Palestina',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12874,'Pensilvania',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12875,'Riosucio',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12876,'Risaralda',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12877,'Salamina',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12878,'Samana',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12879,'San Jose',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12880,'Supia',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12881,'Victoria',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12882,'Villamaria',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12883,'Viterbo',782,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12884,'Albania',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12885,'Belen Andaquies',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12886,'Cartagena del Chaira',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12887,'Curillo',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12888,'El Doncello',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12889,'El Paujil',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12890,'Florencia',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12891,'La Montanita',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12892,'Milan',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12893,'Morelia',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12894,'Puerto Rico',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12895,'San Jose de Fragua',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12896,'San Vicente del Caguan',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12897,'Solano',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12898,'Solita',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12899,'Valparaiso',783,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12900,'Aguazul',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12901,'Chameza',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12902,'Hato Corozal',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12903,'La Salina',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12904,'Mani',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12905,'Monterrey',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12906,'Nunchia',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12907,'Orocue',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12908,'Paz de Ariporo',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12909,'Pore',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12910,'Recetor',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12911,'Sabanalarga',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12912,'Sacama',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12913,'San Luis de Palenque',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12914,'Tamara',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12915,'Tauramena',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12916,'Trinidad',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12917,'Villanueva',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12918,'Yopal',784,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12919,'Almaguer',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12920,'Argelia',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12921,'Balboa',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12922,'Bolivar',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12923,'Buenos Aires',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12924,'Cajibio',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12925,'Caldono',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12926,'Caloto',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12927,'Corinto',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12928,'El Bordo',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12929,'El Tambo',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12930,'Florencia',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12931,'Guapi',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12932,'Inza',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12933,'Jambalo',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12934,'La Sierra',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12935,'La Vega',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12936,'Lopez',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12937,'Mercaderes',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12938,'Miranda',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12939,'Morales',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12940,'Padilla',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12941,'Paez',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12942,'Piamonte',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12943,'Piendamo',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12944,'Popayan',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12945,'Puerto Tejada',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12946,'Purace',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12947,'Rosas',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12948,'San Sebastian',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12949,'Santa Rosa',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12950,'Santander de Quilichao',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12951,'Silvia',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12952,'Sotara',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12953,'Suarez',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12954,'Sucre',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12955,'Timbio',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12956,'Timbiqui',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12957,'Toribio',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12958,'Totoro',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12959,'Villa Rica',785,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12960,'Aguachica',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12961,'Agustin Codazzi',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12962,'Astrea',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12963,'Becerril',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12964,'Bosconia',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12965,'Chimichagua',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12966,'Chiriguana',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12967,'Curumani',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12968,'El Copey',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12969,'El Paso',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12970,'Gamarra',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12971,'Gonzalez',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12972,'La Gloria',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12973,'La Jagua Ibirico',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12974,'Manaure',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12975,'Pailitas',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12976,'Pelaya',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12977,'Pueblo Bello',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12978,'Rio de Oro',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12979,'Robles la Paz',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12980,'San Alberto',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12981,'San Diego',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12982,'San Martin',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12983,'Tamalameque',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12984,'Valledupar',786,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12985,'Acandi',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12986,'Alto Baudo',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12987,'Atrato',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12988,'Bagado',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12989,'Bahia Solano',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12990,'Bajo Baudo',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12991,'Bojaya',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12992,'Canton de San Pablo',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12993,'Carmen del Darien',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12994,'Certegui',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12995,'Condoto',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12996,'El Carmen',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12997,'Istmina',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12998,'Jurado',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(12999,'Litoral del San Juan',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13000,'Lloro',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13001,'Medio Atrato',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13002,'Medio Baudo',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13003,'Medio San Juan',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13004,'Novita',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13005,'Nuqui',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13006,'Quibdo',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13007,'Rio Iro',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13008,'Rio Quito',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13009,'Riosucio',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13010,'San Jose del Palmar',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13011,'Sipi',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13012,'Tado',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13013,'Unguia',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13014,'Union Panamericana',787,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13015,'Ayapel',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13016,'Buenavista',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13017,'Canalete',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13018,'Cerete',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13019,'Chima',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13020,'Chinu',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13021,'Cienaga de Oro',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13022,'Cotorra',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13023,'La Apartada',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13024,'Lorica',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13025,'Los Cordobas',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13026,'Momil',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13027,'Monitos',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13028,'Montelibano',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13029,'Monteria',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13030,'Planeta Rica',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13031,'Pueblo Nuevo',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13032,'Puerto Escondido',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13033,'Puerto Libertador',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13034,'Purisima',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13035,'Sahagun',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13036,'San Andres Sotavento',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13037,'San Antero',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13038,'San Bernardo Viento',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13039,'San Carlos',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13040,'San Pelayo',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13041,'Tierralta',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13042,'Valencia',788,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13043,'Agua de Dios',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL); INSERT INTO `cities` VALUES (13044,'Alban',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13045,'Anapoima',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13046,'Anolaima',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13047,'Arbelaez',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13048,'Beltran',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13049,'Bituima',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13050,'Bojaca',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13051,'Cabrera',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13052,'Cachipay',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13053,'Cajica',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13054,'Caparrapi',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13055,'Caqueza',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13056,'Carmen de Carupa',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13057,'Chaguani',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13058,'Chia',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13059,'Chipaque',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13060,'Choachi',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13061,'Choconta',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13062,'Cogua',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13063,'Cota',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13064,'Cucunuba',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13065,'El Colegio',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13066,'El Penon',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13067,'El Rosal',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13068,'Facatativa',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13069,'Fomeque',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13070,'Fosca',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13071,'Funza',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13072,'Fuquene',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13073,'Fusagasuga',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13074,'Gachala',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13075,'Gachancipa',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13076,'Gacheta',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13077,'Gama',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13078,'Girardot',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13079,'Granada',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13080,'Guacheta',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13081,'Guaduas',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13082,'Guasca',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13083,'Guataqui',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13084,'Guatavita',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13085,'Guayabal de Siquima',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13086,'Guayabetal',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13087,'Gutierrez',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13088,'Jerusalen',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13089,'Junin',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13090,'La Calera',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13091,'La Mesa',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13092,'La Palma',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13093,'La Pena',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13094,'La Vega',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13095,'Lenguazaque',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13096,'Macheta',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13097,'Madrid',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13098,'Manta',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13099,'Medina',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13100,'Mosquera',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13101,'Narino',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13102,'Nemocon',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13103,'Nilo',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13104,'Nimaima',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13105,'Nocaima',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13106,'Ospina Perez',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13107,'Pacho',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13108,'Paime',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13109,'Pandi',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13110,'Paratebueno',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13111,'Pasca',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13112,'Puerto Salgar',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13113,'Puli',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13114,'Quebradanegra',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13115,'Quetame',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13116,'Quipile',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13117,'Rafael Reyes',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13118,'Ricaurte',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13119,'San Antonio del Tequendama',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13120,'San Bernardo',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13121,'San Cayetano',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13122,'San Francisco',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13123,'San Juan de Rioseco',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13124,'Sasaima',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13125,'Sesquile',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13126,'Sibate',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13127,'Silvania',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13128,'Simijaca',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13129,'Soacha',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13130,'Sopo',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13131,'Subachoque',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13132,'Suesca',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13133,'Supata',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13134,'Susa',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13135,'Sutatausa',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13136,'Tabio',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13137,'Tausa',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13138,'Tena',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13139,'Tenjo',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13140,'Tibacuy',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13141,'Tibirita',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13142,'Tocaima',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13143,'Tocancipa',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13144,'Topaipi',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13145,'Ubala',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13146,'Ubaque',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13147,'Ubate',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13148,'Une',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13149,'Utica',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13150,'Vergara',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13151,'Viani',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13152,'Villagomez',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13153,'Villapinzon',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13154,'Villeta',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13155,'Viota',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13156,'Yacopi',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13157,'Zipacon',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13158,'Zipaquira',789,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13159,'Inirida',790,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13160,'Calamar',791,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13161,'El Retorno',791,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13162,'Miraflores',791,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13163,'San Jose del Guaviare',791,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13164,'Acevedo',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13165,'Agrado',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13166,'Aipe',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13167,'Algeciras',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13168,'Altamira',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13169,'Baraya',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13170,'Campoalegre',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13171,'Colombia',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13172,'Elias',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13173,'Garzon',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13174,'Gigante',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13175,'Guadalupe',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13176,'Hobo',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13177,'Iquira',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13178,'Isnos',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13179,'La Argentina',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13180,'La Plata',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13181,'Nataga',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13182,'Neiva',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13183,'Oporapa',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13184,'Paicol',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13185,'Palermo',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13186,'Palestina',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13187,'Pital',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13188,'Pitalito',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13189,'Rivera',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13190,'Saladoblanco',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13191,'San Agustin',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13192,'Santa Maria',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13193,'Suaza',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13194,'Tarqui',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13195,'Tello',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13196,'Teruel',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13197,'Tesalia',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13198,'Timana',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13199,'Villavieja',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13200,'Yaguara',792,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13201,'Algarrobo',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13202,'Aracataca',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13203,'Ariguani',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13204,'Cerro San Antonio',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13205,'Chivolo',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13206,'Cienaga',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13207,'Concordia',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13208,'El Banco',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13209,'El Pinon',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13210,'El Reten',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13211,'Fundacion',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13212,'Guamal',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13213,'Nueva Granada',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13214,'Pedraza',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13215,'Pijino del Carmen',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13216,'Pivijay',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13217,'Plato',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13218,'Puebloviejo',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13219,'Remolino',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13220,'Sabanas de San Angel',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13221,'Salamina',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13222,'San Sebastian',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13223,'San Zenon',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13224,'Santa Ana',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13225,'Santa Barbara de Pinto',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13226,'Santa Marta',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13227,'Sitionuevo',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13228,'Tenerife',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13229,'Zapayan',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13230,'Zona Bananera',794,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13231,'Acacias',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13232,'Barranca de Upia',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13233,'Cabuyaro',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13234,'Castilla la Nueva',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13235,'Cubarral',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13236,'Cumaral',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13237,'El Calvario',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13238,'El Castillo',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13239,'El Dorado',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13240,'Fuente de Oro',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13241,'Granada',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13242,'Guamal',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13243,'La Macarena',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13244,'La Uribe',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13245,'Lejanias',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13246,'Mapiripan',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13247,'Mesetas',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13248,'Puerto Concordia',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13249,'Puerto Gaitan',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13250,'Puerto Lleras',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13251,'Puerto Lopez',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13252,'Puerto Rico',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13253,'Restrepo',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13254,'San Carlos Guaroa',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13255,'San Juan de Arama',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13256,'San Juanito',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13257,'San Martin',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13258,'Villavicencio',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13259,'Vista Hermosa',795,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13260,'Alban',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13261,'Aldana',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13262,'Ancuya',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13263,'Arboleda',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13264,'Barbacoas',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13265,'Belen',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13266,'Buesaco',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13267,'Chachagui',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13268,'Colon',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13269,'Consaca',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13270,'Contadero',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13271,'Cordoba',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13272,'Cuaspud',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13273,'Cumbal',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13274,'Cumbitara',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13275,'El Charco',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13276,'El Penol',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13277,'El Rosario',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13278,'El Tablon',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13279,'El Tambo',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13280,'Funes',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13281,'Guachucal',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13282,'Guaitarilla',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13283,'Gualmatan',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13284,'Iles',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13285,'Imues',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13286,'Ipiales',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13287,'La Cruz',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13288,'La Florida',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13289,'La Llanada',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13290,'La Tola',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13291,'La Union',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13292,'Leiva',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13293,'Linares',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13294,'Los Andes',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13295,'Magui',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13296,'Mallama',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13297,'Mosquera',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13298,'Narino',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13299,'Olaya Herrera',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13300,'Ospina',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13301,'Pasto',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13302,'Pizarro',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13303,'Policarpa',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13304,'Potosi',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13305,'Providencia',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13306,'Puerres',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13307,'Pupiales',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13308,'Ricaurte',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13309,'Roberto Payan',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13310,'Samaniego',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13311,'San Bernardo',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13312,'San Lorenzo',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13313,'San Pablo',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13314,'San Pedro de Cartago',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13315,'Sandona',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13316,'Santa Barbara',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13317,'Santacruz',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13318,'Sapuyes',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13319,'Taminango',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13320,'Tangua',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13321,'Tumaco',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13322,'Tuquerres',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13323,'Yacuanquer',796,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13324,'Colon',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13325,'Mocoa',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13326,'Orito',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13327,'Puerto Asis',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13328,'Puerto Caycedo',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13329,'Puerto Guzman',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13330,'Puerto Leguizamo',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13331,'San Francisco',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13332,'San Miguel',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13333,'Santiago',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13334,'Sibundoy',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13335,'Valle del Guamuez',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13336,'Villagarzon',798,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13337,'Armenia',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13338,'Buenavista',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13339,'Calarca',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13340,'Circasia',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13341,'Cordoba',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13342,'Filandia',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13343,'Genova',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13344,'La Tebaida',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13345,'Montenegro',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13346,'Pijao',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13347,'Quimbaya',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13348,'Salento',799,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13349,'Apia',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13350,'Balboa',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13351,'Belen de Umbria',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13352,'Dos Quebradas',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13353,'Guatica',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13354,'La Celia',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13355,'La Virginia',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13356,'Marsella',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13357,'Mistrato',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13358,'Pereira',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13359,'Pueblo Rico',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13360,'Quinchia',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13361,'Santa Rosa de Cabal',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13362,'Santuario',800,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13363,'Aguada',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13364,'Albania',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13365,'Aratoca',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13366,'Barbosa',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13367,'Barichara',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13368,'Barrancabermeja',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13369,'Betulia',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13370,'Bolivar',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13371,'Bucaramanga',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13372,'Cabrera',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13373,'California',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13374,'Capitanejo',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13375,'Carcasi',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13376,'Cepita',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13377,'Cerrito',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13378,'Charala',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13379,'Charta',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13380,'Chima',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13381,'Chipata',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13382,'Cimitarra',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13383,'Concepcion',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13384,'Confines',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13385,'Contratacion',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13386,'Coromoro',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13387,'Curiti',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13388,'El Carmen',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13389,'El Guacamayo',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13390,'El Penon',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13391,'El Playon',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13392,'Encino',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13393,'Enciso',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13394,'Florian',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13395,'Floridablanca',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13396,'Galan',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13397,'Gambita',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13398,'Giron',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13399,'Guaca',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13400,'Guadalupe',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13401,'Guapota',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13402,'Guavata',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13403,'Guepsa',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13404,'Hato',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13405,'Jesus Maria',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13406,'Jordan',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13407,'La Belleza',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13408,'La Paz',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13409,'Landazuri',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13410,'Lebrija',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13411,'Los Santos',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13412,'Macaravita',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13413,'Malaga',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13414,'Matanza',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13415,'Mogotes',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13416,'Molagavita',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13417,'Ocamonte',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13418,'Oiba',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13419,'Onzaga',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13420,'Palmar',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13421,'Palmas del Socorro',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13422,'Paramo',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13423,'Piedecuesta',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13424,'Pinchote',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13425,'Puente Nacional',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13426,'Puerto Parra',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13427,'Puerto Wilches',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13428,'Rionegro',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13429,'Sabana de Torres',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13430,'San Andres',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13431,'San Benito',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13432,'San Gil',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13433,'San Joaquin',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13434,'San Jose de Miranda',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13435,'San Miguel',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13436,'San Vicente de Chucuri',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13437,'Santa Barbara',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13438,'Santa Helena',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13439,'Simacota',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13440,'Socorro',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13441,'Suaita',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13442,'Sucre',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13443,'Surata',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13444,'Tona',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13445,'Valle San Jose',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13446,'Velez',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13447,'Vetas',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13448,'Villanueva',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13449,'Zapatoca',802,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13450,'Buenavista',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13451,'Caimito',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13452,'Chalan',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13453,'Coloso',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13454,'Corozal',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13455,'El Roble',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13456,'Galeras',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13457,'Guaranda',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13458,'La Union',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13459,'Los Palmitos',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13460,'Majagual',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13461,'Morroa',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13462,'Ovejas',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13463,'Palmito',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13464,'Sampues',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13465,'San Benito Abad',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13466,'San Juan de Betulia',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13467,'San Marcos',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13468,'San Onofre',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13469,'San Pedro',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13470,'Since',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13471,'Sincelejo',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13472,'Sucre',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13473,'Tolu',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13474,'Toluviejo',803,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13475,'Alpujarra',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13476,'Alvarado',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13477,'Ambalema',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13478,'Anzoategui',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13479,'Ataco',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13480,'Cajamarca',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13481,'Carmen de Apicala',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13482,'Casabianca',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13483,'Chaparral',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13484,'Coello',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13485,'Coyaima',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13486,'Cunday',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13487,'Dolores',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13488,'Espinal',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13489,'Falan',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13490,'Flandes',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13491,'Fresno',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13492,'Guamo',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13493,'Guayabal',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13494,'Herveo',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13495,'Honda',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13496,'Ibague',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13497,'Icononzo',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13498,'Lerida',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13499,'Libano',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13500,'Mariquita',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13501,'Melgar',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13502,'Murillo',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13503,'Natagaima',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13504,'Ortega',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13505,'Palocabildo',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13506,'Piedras',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13507,'Planadas',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13508,'Prado',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13509,'Purificacion',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13510,'Rioblanco',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13511,'Roncesvalles',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13512,'Rovira',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13513,'Saldana',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13514,'San Antonio',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13515,'San Luis',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13516,'Santa Isabel',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13517,'Suarez',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13518,'Valle de San Juan',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13519,'Venadillo',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13520,'Villahermosa',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13521,'Villarrica',804,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13522,'Acaricuara',806,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13523,'Mitu',806,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13524,'Papunaua',806,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13525,'Taraira',806,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13526,'Villa Fatima',806,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13527,'Yavarate',806,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13528,'Cumaribo',807,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13529,'La Primavera',807,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13530,'Puerto Carreno',807,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13531,'Santa Rosalia',807,47,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13532,'Fomboni',808,48,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13533,'Mitsamiouli',809,48,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13534,'Moroni',809,48,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13535,'Domoni',810,48,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13536,'Mutsamudu',810,48,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13537,'Loudima',811,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13538,'Madingou',811,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13539,'Nkayi',811,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13540,'Brazzaville',812,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13541,'Ewo',813,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13542,'Kelle',813,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13543,'Makoua',813,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13544,'Mossaka',813,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13545,'Owando',813,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13546,'Loandjili',814,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13547,'Ngamaba-Mfilou',814,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13548,'Pointe Noire',814,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13549,'Sibiti',815,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13550,'Zanaga',815,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13551,'Dongou',816,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13552,'Epena',816,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13553,'Impfondo',816,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13554,'Kibangou',817,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13555,'Loubomo',817,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13556,'Matsanga',817,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13557,'Mossendjo',817,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13558,'Djambala',818,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13559,'Gamboma',818,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13560,'Boko',819,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13561,'Kinkala',819,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13562,'Mindouli',819,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13563,'Ikelemba',820,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13564,'Ouesso',820,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13565,'Sembe',820,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13566,'Souanke',820,49,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13567,'Bandundu',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13568,'Bolobo',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13569,'Bulungu',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13570,'Gungu',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13571,'Idiofa',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13572,'Inongo',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13573,'Kahemba',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13574,'Kasongo-Lunda',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13575,'Kenge',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13576,'Kikwit',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13577,'Kiri',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13578,'Kutu',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13579,'Lusanga',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13580,'Mangai',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13581,'Mushie',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13582,'Nioki',821,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13583,'Boma',822,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13584,'Kasangulu',822,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13585,'Kimpese',822,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13586,'Madimba',822,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13587,'Matadi',822,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13588,'Mbanza-Ngungu',822,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13589,'Muanda',822,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13590,'Tshela',822,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13591,'Basankusu',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13592,'Binga',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13593,'Bodalangi',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13594,'Boende',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13595,'Bongandanga',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13596,'Bosobolo',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13597,'Bumba',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13598,'Businga',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13599,'Gbadolite',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13600,'Gemena',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13601,'Ikela',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13602,'Libenge',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13603,'Lisala',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13604,'Makanza',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13605,'Mbandaka',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13606,'Mobayi-Mbongo',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13607,'Yakoma',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13608,'Yandongi',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13609,'Yumbi',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13610,'Zongo',823,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13611,'Aba',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13612,'Aketi',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13613,'Bafwasende',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13614,'Banalia',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13615,'Basoko',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13616,'Bondo',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13617,'Bunia',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13618,'Buta',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13619,'Djugu',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13620,'Faradje',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13621,'Gwane',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13622,'Isiro',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13623,'Itoko',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13624,'Kisangani',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13625,'Mambasa',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13626,'Mongbwalu',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13627,'Niangara',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13628,'Poko',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13629,'Simba',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13630,'Titule',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13631,'Ubundu',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13632,'Wamba',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13633,'Watsa',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13634,'Yangambi',824,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13635,'Demba',825,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13636,'Dibaya',825,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13637,'Ilebo',825,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13638,'Kananga',825,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13639,'Kazumba',825,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13640,'Luebo',825,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13641,'Mweka',825,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13642,'Tshikapa',825,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13643,'Gandajika',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13644,'Kabinda',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13645,'Katako-Kombe',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13646,'Kole',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13647,'Lodja',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13648,'Lubao',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13649,'Lubefu',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13650,'Lusambo',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13651,'Mbuji-Mayi',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13652,'Mwene-Ditu',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13653,'Tshilenge',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13654,'Tshofa',826,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13655,'Bukama',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13656,'Dilolo',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13657,'Kabalo',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13658,'Kalemie',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13659,'Kambove',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13660,'Kamina',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13661,'Kaniama',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13662,'Kikondjo',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13663,'Kipushi',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13664,'Kolwezi',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13665,'Kongolo',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13666,'Le Marinel',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13667,'Likasi',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13668,'Lubudi',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13669,'Lubumbashi',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13670,'Malemba-Nkulu',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13671,'Manono',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13672,'Moba',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13673,'Mulongo',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13674,'Mwanza',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13675,'Nyunzu',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13676,'Sakania',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13677,'Shinkolobwe',827,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13678,'Kinshasa',828,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13679,'Kalima',829,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13680,'Kasongo',829,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13681,'Kindu',829,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13682,'Beni',830,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13683,'Butembo',830,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13684,'Goma',830,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13685,'Bukavu',831,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13686,'Kabare',831,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13687,'Kama',831,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13688,'Kampene',831,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13689,'Kibombo',831,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13690,'Uvira',831,50,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13691,'Amuri',832,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13692,'Atiu',833,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13693,'Mangaia',834,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13694,'Tauhunu',835,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13695,'Mauke',836,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13696,'Mitiaro',837,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13697,'Nassau',838,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13698,'Roto',839,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13699,'Rakahanga',840,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13700,'Avarua',841,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13701,'Omoka',842,51,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13702,'Alajuela',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13703,'Atenas',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13704,'Bijagua',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13705,'Buenos Aires',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13706,'Carrillos',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13707,'Desemparados',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13708,'Dos Rios',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13709,'Esquipulas',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13710,'Florencia',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13711,'Fortuna',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13712,'Grecia',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13713,'Guacimo',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13714,'Laguna',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13715,'Los Chiles',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13716,'Mastate',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13717,'Naranjo',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13718,'Orotina',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13719,'Palmares',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13720,'Piedades Norte',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13721,'Pital',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13722,'Pocosol',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13723,'Quesada',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13724,'Rio Segundo',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13725,'Sabanilla',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13726,'San Antonio',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13727,'San Jose',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13728,'San Juan',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13729,'San Mateo',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13730,'San Pedro',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13731,'San Rafael',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13732,'San Ramon',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13733,'San Roque',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13734,'Santiago',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13735,'Sarchi Norte',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13736,'Sarchi Sur',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13737,'Tigra',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13738,'Turricares',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13739,'Upala',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13740,'Venado',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13741,'Zarcero',843,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13742,'Aguacaliente',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13743,'Capellades',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13744,'Carmen',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13745,'Cartago',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13746,'Concepcion',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13747,'Cot',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13748,'Dulce Nombre',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13749,'El Tejar',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13750,'Guadalupe',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13751,'Juan Vinas',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13752,'La Suiza',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13753,'Orosi',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13754,'Pacayas',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13755,'Paraiso',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13756,'Pejibaye',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13757,'San Diego',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13758,'San Isidro',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13759,'San Juan',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13760,'San Nicolas',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13761,'San Rafael',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13762,'San Ramon',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13763,'Tierra Blanca',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13764,'Tobosi',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13765,'Tres Rios',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13766,'Tucurrique',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13767,'Turrialba',844,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13768,'Bagaces',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13769,'Belen',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13770,'Canas',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13771,'Filadeldia',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13772,'Fortuna',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13773,'Hojancha',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13774,'Juntas',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13775,'La Cruz',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13776,'Liberia',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13777,'Mogote',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13778,'Nandayure',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13779,'Nicoya',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13780,'Samara',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13781,'Santa Cruz',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13782,'Sardinal',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13783,'Tilaran',845,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13784,'Angeles',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13785,'Asuncion',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13786,'Barrantes',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13787,'Barva',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13788,'Heredia',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13789,'Horquetas',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13790,'Llorente',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13791,'Mercedes',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13792,'Puerto Viejo',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13793,'Rivera',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13794,'San Antonio',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13795,'San Francisco',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13796,'San Isidro',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13797,'San Joaquin',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13798,'San Jose',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13799,'San Josecito',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13800,'San Juan',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13801,'San Miguel',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13802,'San Pablo',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13803,'San Pedro',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13804,'San Rafael',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13805,'San Roque',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13806,'San Vicente',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13807,'Santa Barbara',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13808,'Santa Lucia',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13809,'Santa Rosa',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13810,'Santiago',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13811,'Santo Domingo',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13812,'Santo Tomas',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13813,'Ulloa',846,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13814,'Batan',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13815,'Cahuita',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13816,'Cariari',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13817,'Guacimo',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13818,'Guapiles',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13819,'Jimenez',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13820,'Limon',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13821,'Matina',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13822,'Pocora',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13823,'Rita',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13824,'Roxana',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13825,'Siquirres',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13826,'Sixaola',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13827,'Valle la Estrella',847,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13828,'Buenos Aires',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13829,'Canoas',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13830,'Chacarita',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13831,'Corredor',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13832,'Esparta',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13833,'Espiritu Santo',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13834,'Golfito',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13835,'Guaycara',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13836,'Jaco',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13837,'La Cuesta',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13838,'Macacona',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13839,'Manzanillo',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13840,'Miramar',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13841,'Palmar',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13842,'Paquera',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13843,'Parrita',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13844,'Puerto Cortes',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13845,'Puerto Jimenez',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13846,'Puntarenas',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13847,'Quepos',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13848,'San Vito',848,52,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13849,'Marcory',850,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13850,'Adzope',851,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13851,'Affery',851,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13852,'Agboville',851,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13853,'Akoupe',851,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13854,'Rubino',851,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13855,'Touba',852,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13856,'Bako',853,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13857,'Odienne',853,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13858,'Gagnoa',855,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13859,'Guiberoua',855,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13860,'Hire',855,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13861,'Ndouci',855,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13862,'Oume',855,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13863,'Ouragahio',855,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13864,'Daloa',856,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13865,'Issia',856,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13866,'Vavoua',856,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13867,'Ndiekro',857,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13868,'Tiebissou',857,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13869,'Toumodi',857,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13870,'Yamoussoukro',857,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13871,'Abidjan',858,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13872,'Alepe',858,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13873,'Anyama',858,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13874,'Bingerville',858,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13875,'Dabou',858,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13876,'Grand-Lahou',858,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13877,'Jacqueville',858,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13878,'Tiassale',858,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13879,'Bouafle',859,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13880,'Sinfra',859,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13881,'Zuenoula',859,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13882,'Duekoue',860,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13883,'Guiglo',860,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13884,'Toulepleu',860,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13885,'Abengourou',861,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13886,'Agnibilekrou',861,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13887,'Arrah',862,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13888,'Bocanda',862,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13889,'Bongouanou',862,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13890,'Daoukro',862,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13891,'Dimbokro',862,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13892,'M\'bahiakro',862,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13893,'Mbatto',862,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13894,'N\'zi-Comoe',862,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13895,'San-Pedro',863,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13896,'Sassandra',863,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13897,'Soubre',863,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13898,'Tabou',863,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13899,'Boundiali',864,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13900,'Dikodougou',864,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13901,'Ferkessedougou',864,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13902,'Korhogo',864,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13903,'Tingrela',864,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13904,'Divo',865,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13905,'Fresco',865,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13906,'Lakota',865,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13907,'Aboisso',866,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13908,'Adiake',866,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13909,'Ayame',866,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13910,'Bonoua',866,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13911,'Grand Bassam',866,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13912,'Kani',868,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13913,'Mankono',868,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13914,'Seguela',868,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13915,'Bondoukou',869,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13916,'Bouna',869,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13917,'Tanda',869,53,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13918,'Bjelovar',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13919,'Brezovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13920,'Chazma',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13921,'Daruvar',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13922,'Daruvarski Brestovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13923,'Dezhanovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13924,'Dhulovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13925,'Gareshnica',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13926,'Gareshnichki Brestovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13927,'Grubishno Polje',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13928,'Gudovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13929,'Hercegovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13930,'Ivanska',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13931,'Klokochevac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13932,'Konchanica',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13933,'Predavac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13934,'Rovishce',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13935,'Shandrovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13936,'Sirach',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13937,'Trojstveni Markovac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13938,'Velika Pisanica',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13939,'Veliki Grdhevac',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13940,'Veliki Zdenci',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13941,'Veliko Trojstvo',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13942,'Zhdralovi',870,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13943,'Blato',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13944,'Cavtat',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13945,'Chibacha',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13946,'Chilipi',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13947,'Dubrovnik',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13948,'Komin',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13949,'Korchula',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13950,'Lumbarda',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13951,'Metkovic',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13952,'Mlini',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13953,'Mokoshica',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13954,'Nova Mokoshica',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13955,'Opuzen',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13956,'Orebic',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13957,'Otrich-Seoci',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13958,'Ploche',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13959,'Smokvica',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13960,'Stashevica',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13961,'Vela Luka',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13962,'Zaton',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13963,'Zhrnovo',871,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13964,'Bale',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13965,'Banjole',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13966,'Brtonigla',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13967,'Buje',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13968,'Buzet',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13969,'Fazhana',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13970,'Funtana',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13971,'Galizhana',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13972,'Labin',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13973,'Lizhnjan',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13974,'Marchana',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13975,'Medulin',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13976,'Novigrad',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13977,'Pazin',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13978,'Porech',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13979,'Premantura',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13980,'Pula',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13981,'Rabac',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13982,'Rasha',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13983,'Rovinj',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13984,'Sveti Petar u Shumi',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13985,'Tar',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13986,'Umag',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13987,'Vinezh',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13988,'Vodnjan',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13989,'Vrsar',873,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13990,'Cerovac Vukmansichki',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13991,'Draganic',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13992,'Duga Resa',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13993,'Josipdol',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13994,'Karlovac',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13995,'Mrezhnichki Varosh',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13996,'Ogulin',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13997,'Oshtarije',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13998,'Ozalj',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(13999,'Plashki',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14000,'Slunj',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14001,'Vojnic',874,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14002,'Dhelekovec',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14003,'Dhurdhevac',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14004,'Drnje',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14005,'Ferdinandovac',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14006,'Glogovac',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14007,'Gola',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14008,'Hlebine',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14009,'Kalinovac',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14010,'Kloshtar Podravski',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14011,'Koprivnica',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14012,'Koprivnichki Bregi',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14013,'Koprivnichki Ivanec',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14014,'Krizhevci',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14015,'Legrad',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14016,'Molve',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14017,'Novigrad Podravski',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14018,'Novo Virje',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14019,'Peteranec',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14020,'Podravske Sesvete',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14021,'Rasinja',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14022,'Reka',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14023,'Sigetec',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14024,'Starigrad',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14025,'Sveti Ivan Zhabno',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14026,'Trema',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14027,'Virje',875,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14028,'Andrashevec',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14029,'Bedekovchina',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14030,'Dhurmanec',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14031,'Donja Pachetina',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14032,'Donja Shemnica',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14033,'Donja Stubica',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14034,'Dubrovchan',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14035,'Gornja Stubica',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14036,'Hum na Sutli',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14037,'Klanjec',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14038,'Konjishchina',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14039,'Krapina',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14040,'Krapinske Toplice',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14041,'Laz Bistrichki',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14042,'Marija Bistrica',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14043,'Mihovljan',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14044,'Oroslavje',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14045,'Podgorje Bistrichko',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14046,'Poznanovec',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14047,'Pregrada',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14048,'Radoboj',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14049,'Shkaricevo',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14050,'Shpichkovina',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14051,'Stubichke Toplice',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14052,'Sveti Krizh Zachretje',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14053,'Veliko Trgovishce',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14054,'Zabok',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14055,'Zlatar',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14056,'Zlatar-Bistrica',876,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14057,'Brinje',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14058,'Donji Lapac',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14059,'Gospic',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14060,'Korenica',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14061,'Lichki Osik',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14062,'Lichko Leshce',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14063,'Novalja',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14064,'Otochac',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14065,'Perushic',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14066,'Prozor',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14067,'Senj',877,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14068,'Belica',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14069,'Chakovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14070,'Cirkovljan',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14071,'Dekanovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14072,'Domashinec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14073,'Donja Dubrava',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14074,'Donji Kraljevec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14075,'Donji Vidovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14076,'Drzhimurec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14077,'Dunjkovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14078,'Gardinovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14079,'Gorichan',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14080,'Gornji Hrashcan',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14081,'Hodoshan',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14082,'Ivanovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14083,'Kotoriba',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14084,'Kurshanec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14085,'Lopatinec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14086,'Machkovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14087,'Mala Subotica',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14088,'Mihovljan',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14089,'Mursko Sredishce',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14090,'Nedelishce',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14091,'Novakovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14092,'Novo Selo Rok',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14093,'Orehovica',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14094,'Palovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14095,'Peklenica',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14096,'Podturen',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14097,'Prelog',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14098,'Pribislavec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14099,'Pushcine',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14100,'Savska Ves',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14101,'Selnica',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14102,'Shenkovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14103,'Strahoninec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14104,'Sveta Marija',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14105,'Trnovec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14106,'Vratishinec',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14107,'Zasadbreg',878,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14108,'Antunovac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14109,'Batina',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14110,'Beli Manastir',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14111,'Belishce',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14112,'Beljevina',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14113,'Bijelo Brdo',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14114,'Bilje',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14115,'Bistrinci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14116,'Bizovac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14117,'Branjin Vrh',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14118,'Brijeshce',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14119,'Brijest',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14120,'Ceminac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14121,'Chepin',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14122,'Crnkovci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14123,'Dalj',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14124,'Darda',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14125,'Dhakovo',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14126,'Dhurdhenovac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14127,'Donja Motichina',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14128,'Donji Miholac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14129,'Erdut',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14130,'Ernestinovo',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14131,'Ferichanci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14132,'Gashinci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14133,'Gorjani',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14134,'Grabovac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14135,'Ivanovac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14136,'Ivanovci Gorjanski',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14137,'Jagodnjak',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14138,'Jelisavac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14139,'Josipovac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14140,'Josipovac Punitovachki',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14141,'Karanac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14142,'Keshinci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14143,'Knezhevi Vinogradi',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14144,'Knezhevo',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14145,'Koritna',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14146,'Koshka',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14147,'Kushevac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14148,'Ladimirevci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14149,'Laslovo',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14150,'Lug',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14151,'Marijanci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14152,'Markovac Nashichki',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14153,'Martin',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14154,'Mece',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14155,'Moslavina Podravska',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14156,'Nashice',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14157,'Osijek',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14158,'Ovchara',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14159,'Petlovac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14160,'Petrijevci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14161,'Pishkorevci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14162,'Podgorach',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14163,'Popvac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14164,'Rakitovica',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14165,'Sarvash',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14166,'Satnica Dhakovachka',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14167,'Selci Dhakovacki',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14168,'Semeljci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14169,'Shiroko Polje',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14170,'Strizivojna',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14171,'Sveti Dhuradh',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14172,'Tenja',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14173,'Valpovo',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14174,'Velimirovac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14175,'Viljevo',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14176,'Vishkovci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14177,'Vishnjevac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14178,'Vladislavci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14179,'Vuka',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14180,'Vukojevci',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14181,'Zmajevac',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14182,'Zoljan',880,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14183,'Badljevina',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14184,'Brodski Drenovac',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14185,'Dervishaga',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14186,'Gradac',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14187,'Jakshic',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14188,'Kaptol',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14189,'Kutjevo',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14190,'Lipik',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14191,'Pakrac',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14192,'Pleternica',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14193,'Pozhega',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14194,'Prekopkra',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14195,'Trenkovo',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14196,'Velika',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14197,'Vetovo',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14198,'Vidovci',882,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14199,'Bilice',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14200,'Brodarica',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14201,'Drnish',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14202,'Dubrava kod Shibenika',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14203,'Grebashtica',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14204,'Jezera',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14205,'Kistanje',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14206,'Knin',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14207,'Kovachic',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14208,'Murter',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14209,'Pirovac',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14210,'Primoshten',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14211,'Rogoznica',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14212,'Shibenik',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14213,'Skradin',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14214,'Tisno',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14215,'Tribunj',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14216,'Vodice',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14217,'Vrpolje',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14218,'Zaton',884,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14219,'Brestacha',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14220,'Brochice',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14221,'Budashevo',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14222,'Donja Grachenica',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14223,'Dvor',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14224,'Glina',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14225,'Gornja Grachenica',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14226,'Gornja Jelenska',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14227,'Greda',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14228,'Gvozd',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14229,'Hrastelnica',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14230,'Hrvatska Dubica',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14231,'Hrvatska Kostajnica',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14232,'Husain',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14233,'Ilova',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14234,'Kutina',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14235,'Lekenik',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14236,'Lipovljani',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14237,'Moshchenica',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14238,'Novska',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14239,'Odra Sisachka',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14240,'Osekovo',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14241,'Peshcenica',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14242,'Petrinja',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14243,'Popovacha',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14244,'Potok',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14245,'Rajic',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14246,'Repushnica',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14247,'Sisak',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14248,'Staro Prachno',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14249,'Sunja',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14250,'Topolovac',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14251,'Voloder',885,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14252,'Bashka Voda',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14253,'Bol',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14254,'Brela',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14255,'Brnaze',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14256,'Cista Velika',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14257,'Donji Prolozhac',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14258,'Donji Vinjani',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14259,'Duce',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14260,'Dugi Rat',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14261,'Dugopolje',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14262,'Gala',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14263,'Glavice',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14264,'Glavina Donja',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14265,'Gornji Vincjani',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14266,'Gradac',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14267,'Grubine',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14268,'Hrvace',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14269,'Hvar',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14270,'Imotski',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14271,'Jelsa',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14272,'Jesenice',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14273,'Kamen',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14274,'Kashtel Gambelovac',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14275,'Kashtel Gomilica',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14276,'Kashtel Lukshic',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14277,'Kashtel Novi',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14278,'Kashtel Shtafilic',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14279,'Kashtel Stari',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14280,'Kashtel Sucurac',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14281,'Katuni',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14282,'Klis',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14283,'Komizha',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14284,'Koshute',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14285,'Lovrec',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14286,'Makarska',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14287,'Marina',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14288,'Mastrinka',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14289,'Milna',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14290,'Mravince',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14291,'Neoric',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14292,'Obrovac Sinjski',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14293,'Okrug Gornji',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14294,'Omish',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14295,'Otok',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14296,'Podgora',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14297,'Podstrana',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14298,'Poljica',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14299,'Postira',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14300,'Postranje',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14301,'Potravlje',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14302,'Primorski Dolac',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14303,'Puchishca',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14304,'Ruda',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14305,'Runovic',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14306,'Seget Donji',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14307,'Seget Vranjica',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14308,'Selca',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14309,'Sinj',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14310,'Slatine',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14311,'Solin',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14312,'Split',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14313,'Srinjine',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14314,'Stari Grad',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14315,'Stobrech',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14316,'Supetar',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14317,'Trilj',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14318,'Trogir',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14319,'Tuchepi',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14320,'Turjaci',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14321,'Vinishce',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14322,'Vis',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14323,'Vranjic',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14324,'Vrgorac',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14325,'Vrlika',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14326,'Zagvozd',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14327,'Zhrnovnica',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14328,'Zmijavci',887,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14329,'Bedenec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14330,'Beletinec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14331,'Beretinec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14332,'Breznica',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14333,'Chreshnjevo',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14334,'Donja Voca',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14335,'Donje Ladanje',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14336,'Gornje Ladanje',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14337,'Gornje Vratno',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14338,'Gornji Kneginec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14339,'Gornji Kucan',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14340,'Hrashcica',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14341,'Hrastovsko',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14342,'Hrzhenica',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14343,'Ivanec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14344,'Jalkovec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14345,'Jalzhabet',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14346,'Jerovec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14347,'Klenovnik',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14348,'Kljuch',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14349,'Kucan Marof',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14350,'Lepoglava',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14351,'Ljubeshcica',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14352,'Ludbreg',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14353,'Madzharevo',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14354,'Mali Bukovec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14355,'Nedeljanec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14356,'Nova Ves Petrijanec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14357,'Novi Marof',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14358,'Petrijanec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14359,'Podevchevo',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14360,'Presechno',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14361,'Remetinec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14362,'Selnik',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14363,'Shemovec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14364,'Srachinec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14365,'Sveti Petar',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14366,'Svibovec Podravski',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14367,'Trnovec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14368,'Turchin',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14369,'Tuzhno',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14370,'Varazhdin',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14371,'Varazhdin Breg',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14372,'Varazhdinske Toplice',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14373,'Vidovec',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14374,'Vinica',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14375,'Zavrshje Podbelsko',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14376,'Zharovnica',888,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14377,'Borova',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14378,'Busetina',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14379,'Cabuna',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14380,'Chachinci',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14381,'Gradina',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14382,'Korija',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14383,'Mikleush',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14384,'Milanovac',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14385,'Nova Bukovica',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14386,'Orahovica',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14387,'Pitomacha',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14388,'Podgorje',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14389,'Rezovac',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14390,'Shpishic Bukovica',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14391,'Slatina',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14392,'Suhopolje',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14393,'Turanovac',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14394,'Virovitica',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14395,'Vocin',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14396,'Zdenci',889,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14397,'Andrijashevci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14398,'Antin',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14399,'Babina Greda',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14400,'Bapska',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14401,'Bobota',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14402,'Bogdanovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14403,'Borovo',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14404,'Boshnjaci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14405,'Brshadin',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14406,'Ceric',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14407,'Cerna',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14408,'Drenovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14409,'Gradishte',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14410,'Gunja',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14411,'Ilacha',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14412,'Ilok',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14413,'Ivankovo',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14414,'Jarmina',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14415,'Komletinci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14416,'Lipovac',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14417,'Lovas',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14418,'Markushica',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14419,'Mirkovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14420,'Negoslavci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14421,'Nijemci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14422,'Novi Jankovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14423,'Nushtar',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14424,'Otok',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14425,'Petrovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14426,'Posavski Podgajci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14427,'Privlaka',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14428,'Rachinovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14429,'Rajevo Selo',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14430,'Retkovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14431,'Rokovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14432,'Sharengrad',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14433,'Shishkovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14434,'Shtitar',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14435,'Slakovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14436,'Soljani',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14437,'Sotin',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14438,'Stari Jankovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14439,'Stari Mikanovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14440,'Tordinci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14441,'Tovarnik',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14442,'Trpinja',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14443,'Vinkovci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14444,'Vodhinci',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14445,'Vrbanja',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14446,'Vukovar',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14447,'Zhupanja',890,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14448,'Benkovac',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14449,'Bibinje',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14450,'Biograd na Moru',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14451,'Debeljak',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14452,'Galovac',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14453,'Gorica',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14454,'Gornji Karin',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14455,'Grachac',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14456,'Jasenice',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14457,'Kali',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14458,'Krushevo',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14459,'Nin',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14460,'Obrovac',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14461,'Pag',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14462,'Pakoshtane',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14463,'Polacha',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14464,'Polichnik',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14465,'Poljica',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14466,'Posedarje',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14467,'Preko',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14468,'Pridraga',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14469,'Privlaka',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14470,'Razhanac',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14471,'Shkabrnja',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14472,'Slivnica',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14473,'Starigrad',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14474,'Sukoshan',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14475,'Sveti Filip i Jakov',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14476,'Turanj',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14477,'Ugljan',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14478,'Vir',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14479,'Vrsi',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14480,'Zadar',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14481,'Zemunik Donji',891,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14482,'Bestovje',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14483,'Bishkupec Zelinski',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14484,'Brckovljani',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14485,'Brdovec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14486,'Bregana',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14487,'Brezje',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14488,'Bushevec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14489,'Celine',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14490,'Domaslovec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14491,'Donja Bistra',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14492,'Donja Kupchina',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14493,'Donja Lomnica',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14494,'Donja Zdenchina',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14495,'Donji Desinec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14496,'Donji Stupnik',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14497,'Dubrava',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14498,'Dugo Selo',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14499,'Gornja Bistra',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14500,'Gornji Laduch',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14501,'Gornji Stupnik',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14502,'Grachec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14503,'Gradici',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14504,'Ivan Bistranski',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14505,'Ivanic-Grad',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14506,'Jablanovec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14507,'Jakovlje',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14508,'Jastrebarsko',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14509,'Kerestinec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14510,'Klincha Sela',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14511,'Kloshtar Ivanic',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14512,'Kozinshchak',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14513,'Krizh',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14514,'Kuche',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14515,'Kupinec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14516,'Lonjica',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14517,'Luka',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14518,'Lukarishce',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14519,'Lukavec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14520,'Lupoglav',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14521,'Michevec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14522,'Mraclin',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14523,'Novaki',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14524,'Novo Chiche',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14525,'Novoselec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14526,'Oborovo Bistranski',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14527,'Oreshje',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14528,'Pojatno',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14529,'Poljanica Bistranska',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14530,'Prigorje Brdovechko',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14531,'Rakitje',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14532,'Rakov Potok',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14533,'Rude',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14534,'Samobor',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14535,'Strmec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14536,'Sveta Nedelja',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14537,'Sveti Ivan Zelina',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14538,'Turopolje',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14539,'Velika Gorica',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14540,'Velika Mlaka',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14541,'Velika Ostrna',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14542,'Vrbovec',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14543,'Vukovina',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14544,'Zapreshic',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14545,'Zdenci Brdovechki',892,54,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14546,'Camaguey',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14547,'Caney',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14548,'Carlos Manuel de Cespedes',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14549,'Esmeralda',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14550,'Florida',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14551,'Guaimaro',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14552,'Minas',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14553,'Nuevitas',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14554,'Santa Cruz del Sur',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14555,'Sibanicu',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14556,'Vertientes',893,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14557,'Cienfuegos',895,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14558,'Cruces',895,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14559,'Cumanayagua',895,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14560,'Palmira',895,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14561,'Rodas',895,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14562,'Bayamo',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14563,'Campechuela',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14564,'Guisa',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14565,'Jiguani',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14566,'Manzanillo',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14567,'Media Luna',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14568,'Niquero',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14569,'Pilon',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14570,'Rio Cauto',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14571,'Yara',897,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14572,'Baracoa',898,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14573,'Guantanamo',898,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14574,'Yateras',898,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14575,'Havana',899,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14576,'Antilla',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14577,'Baguanos',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14578,'Banes',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14579,'Cacocum',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14580,'Cauto Cristo',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14581,'Cueto',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14582,'Gibara',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14583,'Holguin',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14584,'Jobabo',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14585,'Moa',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14586,'Sagua de Tanamo',900,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14587,'Abreus',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14588,'Agramonte',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14589,'Aguacate',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14590,'Aguada de Pasajeros',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14591,'Alacranes',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14592,'Bolondron',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14593,'Calimete',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14594,'Cardenas',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14595,'Carlos Rojas',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14596,'Colon',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14597,'Corralillo',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14598,'Jaguey Grande',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14599,'Jovellanos',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14600,'Juan Gualberto Gomez',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14601,'Los Arabos',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14602,'Manguito',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14603,'Marti',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14604,'Matanzas',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14605,'Maximo Gomez',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14606,'Pedro Betancourt',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14607,'Perico',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14608,'Union de Reyes',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14609,'Varadero',904,55,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14610,'Limassol',910,56,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14611,'Paphos',912,56,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14612,'Frycovice',915,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14613,'Bechyne',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14614,'Blatna',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14615,'Cheske Budejovice',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14616,'Chesky Krumlov',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14617,'Dachice',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14618,'Jindrichuv Hradec',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14619,'Kaplice',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14620,'Milevsko',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14621,'Pisek',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14622,'Prachatice',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14623,'Protivin',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14624,'Sezimovo Usti',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14625,'Sobeslav',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14626,'Strakonice',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14627,'Tabor',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14628,'Trebon',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14629,'Tyn nad Vltavou',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14630,'Veseli nad Luzhnici',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14631,'Vimperk',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14632,'Vodnany',917,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14633,'Adamov',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14634,'Blansko',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14635,'Boskovice',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14636,'Breclav',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14637,'Brno',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14638,'Buchovice',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14639,'Dubnany',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14640,'Hodonin',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14641,'Hrusky',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14642,'Hustopeche',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14643,'Ivanchice',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14644,'Kurim',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14645,'Kyjov',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14646,'Letovice',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14647,'Mikulov',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14648,'Moravsky Krumlov',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14649,'Namesht\' nad Oslavou',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14650,'Rosice',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14651,'Shlapanice',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14652,'Slavkov u Brna',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14653,'Tishnov',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14654,'Vyshkov',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14655,'Znojmo',918,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14656,'Ash',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14657,'Bozicany',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14658,'Cheb',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14659,'Chodov',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14660,'Frantishkovy Lazne',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14661,'Horni Slavkov',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14662,'Karlovy Vary',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14663,'Kraslice',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14664,'Kynshperk nad Ohri',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14665,'Marianske Lazne',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14666,'Nejdek',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14667,'Ostrov',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14668,'Sokolov',919,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14669,'Klecany',920,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14670,'Broumov',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14671,'Cherveny Kostelec',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14672,'Cheska Skalice',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14673,'Chlumec nad Cidlinou',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14674,'Dobrushka',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14675,'Dvur Kralove',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14676,'Habartov',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14677,'Holice',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14678,'Horice',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14679,'Hostinne',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14680,'Hradec Kralove',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14681,'Hronov',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14682,'Jaromer',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14683,'Jichin',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14684,'Kostelec nad Orlici',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14685,'Nachod',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14686,'Nova Paka',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14687,'Nove Mesto nad Metuji',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14688,'Novy Bydzhov',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14689,'Rychnov nad Knezhnou',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14690,'Trebechovice pod Orebem',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14691,'Trutnov',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14692,'Tynishte nad Orlici',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14693,'Upice',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14694,'Vrchlabi',921,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14695,'Ceska Lipa',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14696,'Cheska Kamenice',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14697,'Cheska Lipa',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14698,'Chrastava',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14699,'Doksy',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14700,'Frydlant',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14701,'Hradek',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14702,'Jablonec',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14703,'Jilemnice',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14704,'Liberec',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14705,'Lomnice nad Popelkou',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14706,'Mimon',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14707,'Novy Bor',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14708,'Semily',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14709,'Tanvald',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14710,'Turnov',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14711,'Zhelezny Brod',922,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14712,'Lipov',923,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14713,'Bilovec',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14714,'Bohumin',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14715,'Bruntal',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14716,'Chesky Teshin',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14717,'Frenshtat',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14718,'Frydek-Mistek',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14719,'Frydlant nad Ostravici',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14720,'Fulnek',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14721,'Havirov',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14722,'Hluchin',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14723,'Hradec nad Moravice',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14724,'Jablunkov',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14725,'Karvina',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14726,'Koprivnice',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14727,'Kravare',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14728,'Krnov',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14729,'Novy Jichin',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14730,'Odry',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14731,'Opava',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14732,'Orlova',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14733,'Ostrava',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14734,'Petrvald',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14735,'Pribor',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14736,'Rychvald',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14737,'Rymarov',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14738,'Shenov',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14739,'Studenka',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14740,'Trinec',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14741,'Vitkov',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14742,'Vratimov',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14743,'Vrbno pod Pradedem',924,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14744,'Hranice',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14745,'Jesenik',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14746,'Kojetin',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14747,'Lipnik nad Becvou',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14748,'Litovel',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14749,'Mohelnice',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14750,'Olomouc',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14751,'Prerov',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14752,'Prostejov',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14753,'Shternberk',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14754,'Shumperk',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14755,'Unichov',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14756,'Zabreh',925,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14757,'Hranice',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14758,'Jesenik',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14759,'Kojetin',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14760,'Lipnik nad Becvou',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14761,'Litovel',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14762,'Mohelnice',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14763,'Olomouc',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14764,'Prerov',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14765,'Prostejov',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14766,'Shternberk',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14767,'Shumperk',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14768,'Unichov',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14769,'Zabreh',926,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14770,'Cheska Trebova',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14771,'Chocen',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14772,'Chrudim',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14773,'Chvaletice',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14774,'Hermanuv Mestec',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14775,'Hlinsko',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14776,'Lanshkroun',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14777,'Letohrad',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14778,'Litomyshl',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14779,'Moravska Trebova',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14780,'Pardubice',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14781,'Polichka',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14782,'Policka',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14783,'Prelouch',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14784,'Skutech',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14785,'Svitavy',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14786,'Usti nad Orlici',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14787,'Vysoke Myto',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14788,'Zhamberk',927,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14789,'Dobrany',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14790,'Domazhlice',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14791,'Horazhd\'ovice',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14792,'Horshovky Tyn',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14793,'Kdyne',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14794,'Klatovy',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14795,'Nyrany',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14796,'Nyrsko',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14797,'Plana',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14798,'Plzen',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14799,'Preshtice',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14800,'Radnice',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14801,'Rokycany',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14802,'Stribro',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14803,'Sushice',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14804,'Tachov',928,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14805,'Prague',929,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14806,'Praha',929,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14807,'Rajhrad',930,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14808,'Smirice',931,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14809,'Benatky nad Jizerou',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14810,'Beneshov',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14811,'Beroun',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14812,'Brandys nad Labem-Stara Bolesl',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14813,'Chaslav',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14814,'Chavaletice',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14815,'Chelakovice',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14816,'Chesky Brod',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14817,'Dobrish',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14818,'Horovice',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14819,'Kladno',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14820,'Kolin',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14821,'Kralupy nad Vltavou',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14822,'Kutna Hora',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14823,'Lysa nad Labem',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14824,'Melnik',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14825,'Mlada Boleslav',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14826,'Mnichovo Hradishte',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14827,'Neratovice',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14828,'Nove Strasheci',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14829,'Nymburk',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14830,'Podebrady',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14831,'Pribram',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14832,'Rakovnik',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14833,'Richany',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14834,'Rousinov',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14835,'Roztoky',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14836,'Sedlcany',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14837,'Slany',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14838,'Stochov',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14839,'Vlashim',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14840,'Zruch nad Sazavou',934,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14841,'Unicov',935,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14842,'Bilina',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14843,'Chomutov',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14844,'Dechin',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14845,'Dubi',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14846,'Duchcov',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14847,'Jilove',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14848,'Jirkov',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14849,'Kadan',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14850,'Klasterec nad Ohri',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14851,'Krupka',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14852,'Litomerice',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14853,'Litvinov',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14854,'Louny',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14855,'Lovosice',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14856,'Mezibori',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14857,'Most',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14858,'Osek',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14859,'Podborany',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14860,'Roudnice',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14861,'Rumburk',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14862,'Shluknov',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14863,'Shteti',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14864,'Teplice',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14865,'Usti',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14866,'Varnsdorf',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14867,'Zatec',936,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14868,'Valletta',937,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14869,'Velesin',938,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14870,'Bystrice nad Pernshtejnem',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14871,'Chotebor',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14872,'Havlichkuv Brod',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14873,'Humpolec',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14874,'Jihlava',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14875,'Ledech',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14876,'Moravske Budejovice',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14877,'Nove Mesto na Morave',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14878,'Okrisky',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14879,'Pacov',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14880,'Pelhrimov',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14881,'Polna',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14882,'Svetla nad Sazavou',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14883,'Telch',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14884,'Trebich',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14885,'Tresht\'',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14886,'Velke Mezirichi',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14887,'Zhd\'ar',939,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14888,'Brumov',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14889,'Bystrice pod Hostynem',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14890,'Chropyne',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14891,'Holeshov',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14892,'Hulin',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14893,'Kromerizh',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14894,'Kunovice',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14895,'Napajedla',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14896,'Otrokovice',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14897,'Rozhnov',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14898,'Roznov pod Radhostem',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14899,'Slavicin',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14900,'Slusovice',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14901,'Stare Mesto',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14902,'Strazhnice',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14903,'Uherske Hradishte',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14904,'Uhersky Brod',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14905,'Valashske Klobouky',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14906,'Valashske Mezirichi',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14907,'Veseli nad Moravou',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14908,'Vsetin',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14909,'Zborovice',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14910,'Zlin',940,57,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14911,'Aarhus',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14912,'Allingabro',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14913,'Arhus',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14914,'Assentoft',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14915,'Auning',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14916,'Beder',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14917,'Brabrand',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14918,'Ebeltoft',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14919,'Framlev',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14920,'Galten',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14921,'Grenaa',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14922,'Hadsten',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14923,'Hammel',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14924,'Hinnerup',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14925,'Hjortshoj',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14926,'Horning',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14927,'Hornslet',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14928,'Kolt',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14929,'Langa',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14930,'Logten',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14931,'Lystrup',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14932,'Malling',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14933,'Mariager',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14934,'Marslet',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14935,'Odder',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14936,'Randers',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14937,'Risskov',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14938,'Ronde',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14939,'Ry',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14940,'Ryomgard',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14941,'Sabro',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14942,'Silkeborg',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14943,'Skanderborg',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14944,'Skovby',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14945,'Soften',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14946,'Solbjerg',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14947,'Spentrup',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14948,'Stavtrup',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14949,'Stilling',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14950,'Svejbak',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14951,'Tranbjerg',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14952,'Trige',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14953,'Virklund',941,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14954,'Aakirkeby',942,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14955,'Allinge-Sandvig',942,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14956,'Nexo',942,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14957,'Ronne',942,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14958,'Allerod',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14959,'Birkerod',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14960,'Blovstrod',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14961,'Espergarde',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14962,'Farum',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14963,'Fredensborg',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14964,'Frederikssund',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14965,'Frederiksvark',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14966,'Ganlose',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14967,'Gilleleje',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14968,'Grasted',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14969,'Hellebak',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14970,'Helsinge',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14971,'Helsingor',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14972,'Hillerod',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14973,'Hornbak',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14974,'Horsholm',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14975,'Humlebak',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14976,'Hundested',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14977,'Jagerspris',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14978,'Kvistgaard',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14979,'Lillerod',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14980,'Liseleje',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14981,'Lynge',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14982,'Niva',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14983,'Nodebo',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14984,'Olstykke',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14985,'Skibby',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14986,'Slangerup',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14987,'Stavnsholt',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14988,'Stenlose',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14989,'Valby',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14990,'Vekso',943,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14991,'Aarup',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14992,'Arslev',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14993,'Assens',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14994,'Bellinge',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14995,'Blommenslyst',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14996,'Bogense',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14997,'Brenderup',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14998,'Broby',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(14999,'Bullerup',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15000,'Ejby',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15001,'Faaborg',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15002,'Glamsbjerg',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15003,'Haarby',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15004,'Hojby',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15005,'Kerteminde',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15006,'Langeskov',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15007,'Marstal',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15008,'Middelfart',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15009,'Munkebo',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15010,'Neder Holluf',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15011,'Norre Aaby',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15012,'Nyborg',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15013,'Odense',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15014,'Otterup',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15015,'Ringe',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15016,'Rudkobing',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15017,'Sankt Klemens',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15018,'Seden',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15019,'Sonderso',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15020,'Stige',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15021,'Strib',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15022,'Svendborg',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15023,'Thuro',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15024,'Tommerup',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15025,'Ullerslev',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15026,'Vindeby',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15027,'Vissenbjerg',944,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15028,'Ballerup',945,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15029,'Brondby',945,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15030,'Stenlose',945,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15031,'Vallensbaek',945,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15032,'Dragor',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15033,'Flong',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15034,'Gentofte',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15035,'Glostrup',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15036,'Herlev',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15037,'Hvidovre',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15038,'Ishoj',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15039,'Kastrup',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15040,'Lyngby',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15041,'Malov',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15042,'Smorumnedre',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15043,'Taastrup',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15044,'Trorod',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15045,'Vanlose',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15046,'Varlose',946,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15047,'Aabybro',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15048,'Aalborg',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15049,'Aars',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15050,'Arden',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15051,'Bindslev',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15052,'Bronderslev',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15053,'Brovst',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15054,'Dronninglund',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15055,'Farso',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15056,'Fjerritslev',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15057,'Frederikshavn',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15058,'Frejlev',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15059,'Gistrup',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15060,'Gorlose',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15061,'Hadsund',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15062,'Hals',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15063,'Hirtshals',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15064,'Hjallerup',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15065,'Hjorring',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15066,'Hobro',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15067,'Kas',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15068,'Klarup',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15069,'Logstor',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15070,'Nibe',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15071,'Norresundby',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15072,'N%�^%�%�^%�%����%�,%U%rresundby',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15073,'Pandrup',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15074,'Saby',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15075,'Sindal',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15076,'Skagen',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15077,'Skorping',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15078,'Storvorde',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15079,'Stovring',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15080,'Strandby',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15081,'Sulsted',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15082,'Svenstrup',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15083,'Tars',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15084,'Tranekaer',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15085,'Vadum',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15086,'Vestbjerg',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15087,'Vester Hassing',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15088,'Vodskov',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15089,'Vra',949,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15090,'Ansager',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15091,'Billund',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15092,'Bramming',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15093,'Brorup',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15094,'Esbjerg',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15095,'Grindsted',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15096,'Holsted',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15097,'Nordby',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15098,'Oksbol',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15099,'Olgod',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15100,'Ribe',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15101,'Tjareborg',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15102,'Varde',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15103,'Vejen',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15104,'Vorbasse',950,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15105,'Aulum',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15106,'Bording',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15107,'Brande',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15108,'Gjellerup Kirkeby',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15109,'Hammerum',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15110,'Harboore',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15111,'Herning',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15112,'Holstebro',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15113,'Hvide Sande',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15114,'Ikast',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15115,'Kibak',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15116,'Lemvig',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15117,'Lind',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15118,'Ringkobing',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15119,'Skaerbaek',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15120,'Skjern',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15121,'Snejbjerg',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15122,'Struer',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15123,'Sunds',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15124,'Tarm',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15125,'Thyboron',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15126,'Ulfborg',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15127,'Videbak',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15128,'Vildbjerg',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15129,'Vinderup',951,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15130,'Roervig',952,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15131,'Bjaverskov',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15132,'Borup',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15133,'Ejby',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15134,'Greve Strand',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15135,'Gundsomagle',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15136,'Harlev',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15137,'Havdrup',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15138,'Hvalso',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15139,'Jyllinge',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15140,'Koge',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15141,'Lejre',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15142,'Osted',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15143,'Roskilde',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15144,'Solrod',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15145,'Stroby Egede',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15146,'Svogerslev',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15147,'Tune',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15148,'Viby',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15149,'Vindinge',953,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15150,'Glyngore',954,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15151,'Karise',955,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15152,'Naestved',955,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15153,'Soeborg',956,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15154,'Aabenraa',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15155,'Aarsleve',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15156,'Augustenborg',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15157,'Broager',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15158,'Christiansfeld',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15159,'Dybbol',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15160,'Gram',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15161,'Grasten',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15162,'Guderup',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15163,'Haderslev',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15164,'Horuphav',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15165,'Krusa',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15166,'Logumkloster',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15167,'Lojt Kirkeby',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15168,'Nordborg',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15169,'Padborg',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15170,'Rodding',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15171,'Rodekro',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15172,'Skarbak',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15173,'Sonderborg',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15174,'Starup',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15175,'Tinglev',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15176,'Toftlund',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15177,'Tonder',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15178,'Vojens',957,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15179,'Fakse',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15180,'Fakse Ladeplads',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15181,'Fensmark',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15182,'Holeby',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15183,'Maribo',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15184,'Nakskov',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15185,'Nastved',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15186,'Neder Vindinge',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15187,'Norre Alslev',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15188,'Nykobing',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15189,'Nyrad',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15190,'Orslev',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15191,'Prasto',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15192,'Rodby',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15193,'Rodbyhavn',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15194,'Ronnede',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15195,'Sakskobing',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15196,'Stege',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15197,'Store Heddinge',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15198,'Stubbekobing',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15199,'Sundby',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15200,'Vordingborg',958,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15201,'Bylderup-Bov',959,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15202,'Fovling',959,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15203,'Toelloese',960,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15204,'Borkop',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15205,'Bradstrup',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15206,'Brejning',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15207,'Egtved',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15208,'Fredericia',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15209,'Give',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15210,'Hedensted',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15211,'Horsens',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15212,'Jelling',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15213,'Juelsminde',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15214,'Kolding',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15215,'Lunderskov',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15216,'Snoghoj',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15217,'Sonder Bjert',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15218,'Taulov',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15219,'Torring',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15220,'Vamdrup',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15221,'Vejle',961,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15222,'Asnas',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15223,'Dianalund',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15224,'Forlev',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15225,'Frederiksberg',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15226,'Fuglebjerg',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15227,'Gorlev',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15228,'Haslev',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15229,'Holbaek',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15230,'Hong',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15231,'Horve',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15232,'Jyderup',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15233,'Kalundborg',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15234,'Korsor',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15235,'Nykobing',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15236,'Ringsted',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15237,'Skalskor',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15238,'Slagelse',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15239,'Soro',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15240,'Svebolle',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15241,'Svinninge',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15242,'Tollose',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15243,'Vipperod',962,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15244,'Aalestrup',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15245,'Bjerringbro',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15246,'Hanstholm',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15247,'Hojslev',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15248,'Hurup',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15249,'Karup',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15250,'Kjellerup',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15251,'Nykobing',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15252,'Skive',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15253,'Stoholm',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15254,'Thisted',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15255,'Ulstrup',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15256,'Viborg',963,58,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15257,'Dikhil',965,59,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15258,'Jibuti',966,59,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15259,'Tajurah',967,59,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15260,'Ubuk',968,59,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15261,'Azua',979,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15262,'Sabana Yegua',979,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15263,'Neyba',980,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15264,'Tamayo',980,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15265,'Barahona',981,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15266,'Cabral',981,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15267,'El Penon',981,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15268,'Dajabon',982,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15269,'Las Guaranas',984,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15270,'Pimentel',984,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15271,'San Francisco de Macoris',984,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15272,'Moca',987,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15273,'Duverge',989,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15274,'Jimani',989,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15275,'Pedernales',997,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15276,'Bani',998,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15277,'Ocoa',998,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15278,'Salcedo',1000,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15279,'Samana',1001,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15280,'Sanchez',1001,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15281,'Santiago',1006,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15282,'Tamboril',1006,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15283,'Villa Bisono',1006,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15284,'Santiago',1007,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15285,'Tamboril',1007,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15286,'Villa Bisono',1007,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15287,'Esperanza',1008,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15288,'Mao',1008,61,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15289,'Aileu',1009,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15290,'Ainaro',1010,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15291,'Pante Macassar',1011,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15292,'Baucau',1012,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15293,'Auba',1013,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15294,'Lolotoi',1013,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15295,'Maliana',1013,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15296,'Dare',1015,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15297,'Dili',1015,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15298,'Metinaro',1015,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15299,'Ermera',1016,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15300,'Lautem',1017,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15301,'Los Palos',1017,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15302,'Bazartete',1018,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15303,'Liquica',1018,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15304,'Manatuto',1019,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15305,'Same',1020,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15306,'Viqueque',1021,62,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15307,'Cuenca',1022,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15308,'Gualaceo',1022,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15309,'Guaranda',1023,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15310,'San Miguel',1023,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15311,'Azogues',1024,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15312,'Canar',1024,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15313,'La Troncal',1024,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15314,'El Angel',1025,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15315,'San Gabriel',1025,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15316,'Tulcan',1025,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15317,'Alausi',1026,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15318,'Guano',1026,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15319,'Riobamba',1026,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15320,'La Mana',1027,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15321,'Latacunga',1027,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15322,'Pujili',1027,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15323,'San Miguel',1027,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15324,'Saquisili',1027,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15325,'Esmeraldas',1029,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15326,'Muisne',1029,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15327,'Rosa Zarate',1029,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15328,'San Lorenzo',1029,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15329,'Valdez',1029,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15330,'Puerto Ayora',1030,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15331,'Puerto Baquerizo Moreno',1030,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15332,'San Cristobal',1030,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15333,'Alfredo Baquerizo Moreno',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15334,'Balao',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15335,'Balzar',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15336,'Colimes',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15337,'Coronel Mariduena',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15338,'Daule',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15339,'El Salitre',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15340,'El Triunfo',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15341,'Eloy Alfaro',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15342,'Guayaquil',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15343,'La Libertad',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15344,'Lomas de Sargentillo',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15345,'Mapasingue',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15346,'Milagro',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15347,'Naranjal',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15348,'Naranjito',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15349,'Palestina',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15350,'Pedro Carbo',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15351,'Playas',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15352,'Salinas',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15353,'Samborondon',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15354,'Santa Elena',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15355,'Santa Lucia',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15356,'Velasco Ibarra',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15357,'Yaguachi',1031,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15358,'Atuntaqui',1032,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15359,'Cotacachi',1032,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15360,'Ibarra',1032,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15361,'Otavalo',1032,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15362,'Pimampiro',1032,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15363,'Alamor',1033,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15364,'Cariamanga',1033,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15365,'Catacocha',1033,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15366,'Catamayo',1033,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15367,'Celica',1033,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15368,'Loja',1033,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15369,'Macara',1033,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15370,'Bahia de Caraquez',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15371,'Calceta',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15372,'Chone',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15373,'El Carmen',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15374,'Jipijapa',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15375,'Junin',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15376,'Manta',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15377,'Montecristi',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15378,'Pajan',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15379,'Pedernales',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15380,'Portoviejo',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15381,'Rocafuerte',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15382,'Santa Ana',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15383,'Sucre',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15384,'Tosagua',1035,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15385,'Archidona',1037,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15386,'Tena',1037,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15387,'Orellana',1038,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15388,'Puyo',1039,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15389,'Cayambe',1040,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15390,'Machachi',1040,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15391,'Quito',1040,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15392,'Sangolqui',1040,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15393,'Santo Domingo',1040,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15394,'Nueva Loja',1041,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15395,'Shushufindi',1041,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15396,'Ambato',1042,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15397,'Banos',1042,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15398,'Pelileo',1042,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15399,'Pillaro',1042,63,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15400,'Aswan',1044,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15401,'Daraw',1044,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15402,'Kawm Umbu',1044,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15403,'an-Nasir',1044,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15404,'Abnub',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15405,'Abu Tij',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15406,'Asyut',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15407,'Bani Muhammadiyat',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15408,'Dayrut',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15409,'Dayrut-ash-Sharif',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15410,'Manfalut',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15411,'Musha',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15412,'Sahil Salim',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15413,'Sanabu',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15414,'Umm-al-Qusur',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15415,'al-Badari',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15416,'al-Qusiyah',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15417,'an-Nukhaylah',1045,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15418,'6th of October City',1048,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15419,'Ataba',1048,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15420,'Cairo',1048,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15421,'Nasr',1048,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15422,'Nasr City',1048,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15423,'Obour City',1048,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15424,'\'Izbat-al-Burj',1049,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15425,'Damietta',1049,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15426,'Dumyat',1049,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15427,'El-Zarka',1049,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15428,'Faraskur',1049,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15429,'Kafr Sa\'d',1049,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15430,'Kafr-al-Battikh',1049,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15431,'az-Zarqa',1049,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15432,'Biyala',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15433,'Disuq',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15434,'Fuwah',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15435,'Kafr-al-Jara\'idah',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15436,'Kafr-ash-Shaykh',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15437,'Mutubis',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15438,'Qallin',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15439,'Sidi Salim',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15440,'al-Burj',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15441,'al-Burullus',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15442,'al-Haddadi',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15443,'al-Hamul',1050,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15444,'Marsa Matruh',1051,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15445,'Nasr',1051,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15446,'Sidi Barrani',1051,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15447,'Zawiyat Shammas',1051,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15448,'ad-Da\'ba',1051,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15449,'Armant',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15450,'Asfun-al-Mata\'inah',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15451,'Dandarah',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15452,'Dishna',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15453,'Farshut',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15454,'Hijazah',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15455,'Hiw',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15456,'Idfu',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15457,'Isna',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15458,'Kiman-al-Mata\'inah',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15459,'Naj\' Hammadi',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15460,'Naqadah',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15461,'Qift',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15462,'Qina',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15463,'Qus',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15464,'ad-Dabbiyah',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15465,'ad-Dayr',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15466,'al-Ballas',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15467,'al-Karnak',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15468,'al-Waqf',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15469,'ar-Radisiyat-al-Bahriyah',1057,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15470,'Akhmim',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15471,'Awlad Tawq Sharq',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15472,'Dar-as-Salam',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15473,'Jirja',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15474,'Juhaynah',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15475,'Sawhaj',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15476,'Tahta',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15477,'Tima',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15478,'al-Balyana',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15479,'al-Manshah',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15480,'al-Maragah',1058,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15481,'Aja',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15482,'Bahut',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15483,'Bilqas',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15484,'Dikirnis',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15485,'Minyat-an-Nasr',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15486,'Mit Gamr',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15487,'Shirbin',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15488,'Talkha',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15489,'al-Jamaliyah',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15490,'al-Ma\'sarah',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15491,'al-Mansurah',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15492,'al-Manzilah',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15493,'al-Matariyah',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15494,'as-Sinbillawayn',1061,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15495,'Ras Gharib',1062,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15496,'Safaja',1062,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15497,'al-Ghardaqah',1062,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15498,'al-Qusayr',1062,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15499,'Abu Hummus',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15500,'Abu al-Matamir',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15501,'Buturis',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15502,'Damanhur',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15503,'Edfina',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15504,'Hawsh \'Isa',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15505,'Idku',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15506,'Ityay-al-Barud',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15507,'Kafr Salim',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15508,'Kafr-ad-Dawwar',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15509,'Kawm Hamada',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15510,'Nubaria',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15511,'Rashid',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15512,'Shubra Khit',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15513,'Zawiyat Sidi Gazi',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15514,'ad-Dilinjat',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15515,'al-Kawm-al-Akhdar',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15516,'al-Mahmudiyah',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15517,'ar-Rahmaniyah',1063,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15518,'Fidimin',1064,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15519,'Ibshaway',1064,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15520,'Itsa',1064,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15521,'Qasr Qarun',1064,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15522,'Sanhur',1064,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15523,'Sinnuris',1064,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15524,'Tamiyah',1064,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15525,'al-Fayyum',1064,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15526,'Abyar',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15527,'Basyun',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15528,'Kafr-az-Zayyat',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15529,'Mahallat Marhum',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15530,'Nisf Thani Bashbish',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15531,'Qutur',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15532,'Samannud',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15533,'Tanta',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15534,'Zifta',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15535,'ad-Daljamun',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15536,'al-Mahallah al-Kubra',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15537,'as-Santah',1065,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15538,'Agamy',1066,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15539,'al-Iskandariyah',1066,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15540,'al-Maks',1066,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15541,'Fa\'id',1067,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15542,'Sarabiyum',1067,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15543,'al-Ismailiyah',1067,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15544,'Atfih',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15545,'Awsim',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15546,'Giza',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15547,'Madinat Sittah Uktubar',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15548,'Nahya',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15549,'Saqqarah',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15550,'al-\'Ayyat',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15551,'al-Badrashayn',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15552,'al-Hawamidiyah',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15553,'al-Jizah',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15554,'al-Mansuriyah',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15555,'al-Wahat-al-Bahriyah',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15556,'as-Saff',1068,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15557,'Ashmun',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15558,'Birkat-as-Sab\'',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15559,'Milij',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15560,'Minuf',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15561,'Quwaysina',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15562,'Shibin-al-Kawm',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15563,'Sirs-al-Layyanah',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15564,'Tala',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15565,'al-Bajur',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15566,'al-Batanun',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15567,'ash-Shuhada',1069,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15568,'Abu Qurqas',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15569,'Bani Mazar',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15570,'Dayr Mawas',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15571,'Magagah',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15572,'Mallawi',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15573,'Matay',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15574,'Samalut',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15575,'Tallah',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15576,'Tandah',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15577,'al-Anayim',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15578,'al-Fikriyah',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15579,'al-Minya',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15580,'ar-Rawdah',1070,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15581,'Badr City',1071,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15582,'Heliopolis',1071,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15583,'al-Qahira',1071,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15584,'Abu Za\'bal',1072,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15585,'Banha',1072,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15586,'Qalyub',1072,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15587,'Shubra al-Khaymah',1072,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15588,'Sibin-al-Qanatir',1072,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15589,'Tukh',1072,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15590,'al-Khankah',1072,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15591,'al-Qanatir-al-Khayriyah',1072,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15592,'al-Uqsur',1073,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15593,'as-Suways',1075,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15594,'Abu Hammad',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15595,'Abu Kabir',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15596,'Bilbays',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15597,'Diyarb Najm',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15598,'Faqus',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15599,'Hihya',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15600,'Kafr Saqr',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15601,'Mashtul-as-Suq',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15602,'Minyat-al-Qamh',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15603,'al-Ashir mir-Ramadan',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15604,'al-Husayniyah',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15605,'al-Ibrahimiyah',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15606,'al-Qanayat',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15607,'al-Qassasin',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15608,'al-Qurayn',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15609,'as-Salihiyah',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15610,'at-Tall-al-Kabir',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15611,'az-Zaqaziq',1076,64,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15612,'Ahuachapan',1077,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15613,'Atiquizaya',1077,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15614,'Concepcion de Ataco',1077,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15615,'Guaymango',1077,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15616,'Jujutla',1077,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15617,'San Francisco Menendez',1077,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15618,'Tacuba',1077,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15619,'Ilobasco',1078,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15620,'Sensuntepeque',1078,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15621,'Victoria',1078,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15622,'Chalatenango',1079,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15623,'La Palma',1079,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15624,'Nueva Concepcion',1079,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15625,'San Francisco Morazan',1079,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15626,'Cojutepeque',1080,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15627,'San Pedro Perulapan',1080,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15628,'Suchitoto',1080,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15629,'Tecoluca',1080,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15630,'Tenancingo',1080,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15631,'Cacaopera',1084,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15632,'Corinto',1084,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15633,'Gotera',1084,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15634,'Guatajiagua',1084,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15635,'Jocoro',1084,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15636,'Sociedad',1084,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15637,'Acajutla',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15638,'Armenia',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15639,'Izalco',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15640,'Juayua',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15641,'Nahuizalco',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15642,'San Antonio del Monte',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15643,'San Julian',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15644,'Sonsonate',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15645,'Sonzacate',1089,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15646,'Berlin',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15647,'Concepcion Batres',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15648,'Estanzuelas',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15649,'Jiquilisco',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15650,'Jucuapa',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15651,'Jucuaran',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15652,'Ozatlan',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15653,'Puerto El Triunfo',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15654,'San Agustin',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15655,'Santa Elena',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15656,'Santiago de Maria',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15657,'Usulutan',1090,65,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15658,'Pale',1091,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15659,'Ebebiyin',1095,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15660,'Mikomeseng',1095,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15661,'Bata',1096,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15662,'Mbini',1096,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15663,'Aconibe',1097,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15664,'Anisoc',1097,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15665,'Mongomo',1097,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15666,'Nsok',1097,66,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15667,'Keren',1098,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15668,'Addi Kwala',1099,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15669,'Addi Ugri',1099,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15670,'Asseb',1100,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15671,'Beylul',1100,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15672,'Edd',1100,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15673,'Mersa Fatma',1100,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15674,'Ak\'ordat',1101,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15675,'Barentu',1101,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15676,'Teseney',1101,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15677,'Asmara',1102,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15678,'Ginda',1102,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15679,'Himbirti',1102,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15680,'Nefasit',1102,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15681,'Addi K\'eyih',1103,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15682,'Dek\'emhare',1103,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15683,'Mitsiwa',1103,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15684,'Sen\'afe',1103,67,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15685,'Aasmae',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15686,'Aaviku',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15687,'Aegviidu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15688,'Aigrumae',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15689,'Aila',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15690,'Alavere',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15691,'Alliku',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15692,'Amari',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15693,'Anija',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15694,'Ardu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15695,'Arukula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15696,'Aruvalla',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15697,'Assaku',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15698,'Ellamaa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15699,'Haabneeme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15700,'Habaja',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15701,'Haiba',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15702,'Haljava',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15703,'Hara',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15704,'Harju-Risti',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15705,'Harku',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15706,'Harkujarve',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15707,'Harma',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15708,'Huuru',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15709,'Ilmandu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15710,'Iru',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15711,'Jagala',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15712,'Jalgimae',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15713,'Jarsi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15714,'Jarvekula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15715,'Jogisoo',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15716,'Juri',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15717,'Kaasiku',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15718,'Kaberneeme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15719,'Kahala',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15720,'Kalesi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15721,'Kallavere',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15722,'Karjakula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15723,'Karla',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15724,'Kasepere',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15725,'Kasispea',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15726,'Kehra',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15727,'Keila',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15728,'Keila-Joa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15729,'Kelvingi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15730,'Kiia',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15731,'Kiili',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15732,'Kiisa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15733,'Kiiu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15734,'Klooga',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15735,'Kloogaranna',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15736,'Kohatu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15737,'Kolga',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15738,'Kolga-Aabla',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15739,'Kolgakula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15740,'Konnu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15741,'Kose',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15742,'Kose-Uuemoisa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15743,'Kostivere',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15744,'Krei',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15745,'Kuivajoe',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15746,'Kumna',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15747,'Kurtna',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15748,'Kuusalu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15749,'Laabi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15750,'Laagri',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15751,'Lagedi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15752,'Laitse',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15753,'Laulasmaa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15754,'Lehetu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15755,'Lehola',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15756,'Lehtmetsa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15757,'Leppneeme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15758,'Liikva',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15759,'Lilli',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15760,'Lohusalu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15761,'Loksa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15762,'Lokuti',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15763,'Loo',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15764,'Lubja',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15765,'Luige',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15766,'Maardu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15767,'Maidla',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15768,'Manniku',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15769,'Metsakasti',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15770,'Metsanurme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15771,'Miiduranna',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15772,'Munalaskme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15773,'Muraste',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15774,'Muuga',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15775,'Nabala',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15776,'Neeme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15777,'Ohtu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15778,'Ojasoo',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15779,'Oru',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15780,'Padise',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15781,'Pae',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15782,'Paekna',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15783,'Pajupea',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15784,'Paldiski',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15785,'Palvere',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15786,'Parispea',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15787,'Patika',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15788,'Paunkula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15789,'Peetri',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15790,'Peningi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15791,'Perila',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15792,'Pikva',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15793,'Pillapalu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15794,'Pringi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15795,'Puunsi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15796,'Raasiku',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15797,'Rae',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15798,'Randvere',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15799,'Rannamoisa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15800,'Ravila',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15801,'Riisipere',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15802,'Rohuneeme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15803,'Roobuka',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15804,'Ruila',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15805,'Rummu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15806,'Saha',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15807,'Saku',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15808,'Saue',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15809,'Saula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15810,'Saunja',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15811,'Suurpea',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15812,'Suurupi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15813,'Tabasalu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15814,'Tagadi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15815,'Tagametsa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15816,'Tallinn',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15817,'Tammneeme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15818,'Tiskre',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15819,'Todva',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15820,'Turba',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15821,'Turisalu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15822,'Tutermaa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15823,'Tuula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15824,'Tuulna',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15825,'Uksnurme',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15826,'Ulejoe',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15827,'Uuri',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15828,'Uuskula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15829,'Vaana',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15830,'Vaana-Joesuu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15831,'Vaida',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15832,'Vaidasoo',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15833,'Valingu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15834,'Valkla',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15835,'Vanamoisa',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15836,'Vardja',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15837,'Vasalemma',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15838,'Vaskjala',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15839,'Vatsla',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15840,'Veskikula',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15841,'Vihasoo',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15842,'Viimsi',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15843,'Viinistu',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15844,'Viti',1104,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15845,'Emmaste',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15846,'Jausa',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15847,'Kaina',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15848,'Kardla',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15849,'Korgessaare',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15850,'Lauka',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15851,'Lope',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15852,'Mannamaa',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15853,'Putkaste',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15854,'Suuremoisa',1105,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15855,'Aa',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15856,'Alajoe',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15857,'Aseri',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15858,'Avinurme',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15859,'Edise',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15860,'Erra',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15861,'Iisaku',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15862,'Jarve',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15863,'Johvi',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15864,'Kahula',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15865,'Kiikla',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15866,'Kivioli',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15867,'Kohtla-Jarve',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15868,'Kohtla-Nomme',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15869,'Konju',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15870,'Kose',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15871,'Kuremae',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15872,'Kurtna',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15873,'Lohusuu',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15874,'Luganuse',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15875,'Maetaguse',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15876,'Maidla',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15877,'Narva',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15878,'Narva-Joesuu',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15879,'Olgina',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15880,'Pagari',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15881,'Puhajoe',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15882,'Purtse',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15883,'Pussi',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15884,'Rannu',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15885,'Saka',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15886,'Savala',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15887,'Sillamae',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15888,'Sinimae',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15889,'Soldina',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15890,'Sompa',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15891,'Sonda',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15892,'Tammiku',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15893,'Toila',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15894,'Tudulinna',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15895,'Ulvi',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15896,'Vaivara',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15897,'Varja',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15898,'Vasavere',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15899,'Voka',1106,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15900,'Ahula',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15901,'Aiamaa',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15902,'Albu',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15903,'Ambla',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15904,'Anari',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15905,'Anna',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15906,'Aravete',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15907,'Ervita',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15908,'Imavere',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15909,'Janeda',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15910,'Jarva-Jaani',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15911,'Jogisoo',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15912,'Jootme',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15913,'Kaalepi',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15914,'Kabala',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15915,'Kahala',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15916,'Karavete',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15917,'Karevere',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15918,'Karinu',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15919,'Kasukonna',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15920,'Kirna',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15921,'Koeru',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15922,'Koigi',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15923,'Kolu',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15924,'Kuksema',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15925,'Laupa',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15926,'Lehtse',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15927,'Lokuta',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15928,'Loola',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15929,'Muusleri',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15930,'Oisu',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15931,'Paide',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15932,'Painurme',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15933,'Peetri',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15934,'Poikva',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15935,'Reopalu',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15936,'Retla',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15937,'Roa',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15938,'Roosna',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15939,'Roosna-Alliku',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15940,'Sarevere',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15941,'Sargvere',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15942,'Taikse',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15943,'Tarbja',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15944,'Turi',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15945,'Turi-Alliku',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15946,'Vaatsa',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15947,'Vahukula',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15948,'Vao',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15949,'Viisu',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15950,'Villevere',1107,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15951,'Adavere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15952,'Esku',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15953,'Harjanurme',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15954,'Jogeva',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15955,'Kaarepere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15956,'Kalana',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15957,'Kalme',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15958,'Kamari',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15959,'Karde',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15960,'Kasepaa',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15961,'Kassinurme',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15962,'Konnu',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15963,'Kudina',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15964,'Kukita',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15965,'Kuremaa',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15966,'Kurista',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15967,'Lahavere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15968,'Laiuse',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15969,'Laiusevalja',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15970,'Leedi',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15971,'Lustivere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15972,'Luua',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15973,'Maarja',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15974,'Mallikvere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15975,'Metsakula',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15976,'Mohkula',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15977,'Mustvee',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15978,'Neanurme',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15979,'Nova',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15980,'Omedu',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15981,'Ouna',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15982,'Painkula',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15983,'Pajusi',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15984,'Pala',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15985,'Palamuse',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15986,'Pataste',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15987,'Pauastvere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15988,'Pikkjarve',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15989,'Pikknurme',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15990,'Pisisaare',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15991,'Poltsamaa',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15992,'Poora',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15993,'Puurmani',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15994,'Raabise',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15995,'Raja',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15996,'Saare',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15997,'Sadala',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15998,'Sadukula',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(15999,'Siimusti',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16000,'Tabivere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16001,'Tahkvere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16002,'Tiheda',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16003,'Toikvere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16004,'Torma',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16005,'Umbusi',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16006,'Vagari',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16007,'Vaiatu',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16008,'Vaike-Kamari',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16009,'Vaimastvere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16010,'Valgma',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16011,'Visusti',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16012,'Voduvere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16013,'Vohmanomme',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16014,'Voisiku',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16015,'Voldi',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16016,'Voore',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16017,'Votikvere',1108,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16018,'Haapsalu',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16019,'Hullo',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16020,'Joodre',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16021,'Kirbla',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16022,'Kirimae',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16023,'Koluvere',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16024,'Komsi',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16025,'Kullamaa',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16026,'Lihula',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16027,'Liivi',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16028,'Linnamae',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16029,'Martna',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16030,'Nigula',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16031,'Nova',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16032,'Palivere',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16033,'Palli',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16034,'Panga',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16035,'Paralepa',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16036,'Piirsalu',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16037,'Purksi',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16038,'Rannakula',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16039,'Risti',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16040,'Roude',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16041,'Sutlepa',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16042,'Taebla',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16043,'Tuudi',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16044,'Uuemoisa',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16045,'Variku',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16046,'Vatla',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16047,'Virtsu',1109,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16048,'Aaspere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16049,'Ama',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16050,'Arkna',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16051,'Assamalla',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16052,'Avanduse',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16053,'Avispea',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16054,'Ebavere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16055,'Eipri',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16056,'Essu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16057,'Haljala',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16058,'Hulja',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16059,'Imastu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16060,'Inju',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16061,'Kadapiku',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16062,'Kadila',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16063,'Kadrina',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16064,'Kakumae',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16065,'Karitsa',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16066,'Karu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16067,'Kasmu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16068,'Kihlevere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16069,'Kiku',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16070,'Kiltsi',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16071,'Kohala',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16072,'Kunda',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16073,'Kuti',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16074,'Laekvere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16075,'Lasila',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16076,'Lepna',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16077,'Levala',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16078,'Liigvalla',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16079,'Modriku',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16080,'Moe',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16081,'Moora',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16082,'Muuga',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16083,'Napi',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16084,'Paasvere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16085,'Pajusti',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16086,'Pandivere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16087,'Piira',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16088,'Pikevere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16089,'Podrangu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16090,'Podruse',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16091,'Porkuni',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16092,'Rahkla',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16093,'Rakke',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16094,'Rakvere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16095,'Ridakula',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16096,'Roela',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16097,'Roodevalja',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16098,'Saase',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16099,'Salda',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16100,'Salla',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16101,'Simuna',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16102,'Someru',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16103,'Taaravainu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16104,'Tamsalu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16105,'Tapa',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16106,'Torma',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16107,'Torremae',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16108,'Triigi',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16109,'Tudu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16110,'Ubja',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16111,'Udriku',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16112,'Uhtna',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16113,'Ulvi',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16114,'Undla',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16115,'Ussimae',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16116,'Uudekula',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16117,'Vaekula',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16118,'Vahakulmu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16119,'Vaiatu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16120,'Vaike-Maarja',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16121,'Vajangu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16122,'Vao',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16123,'Veltsi',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16124,'Venevere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16125,'Vergi',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16126,'Vetiku',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16127,'Vihula',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16128,'Viitna',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16129,'Vinni',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16130,'Viru-Jaagupi',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16131,'Viru-Kabala',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16132,'Viru-Nigula',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16133,'Vohnja',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16134,'Vosu',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16135,'Vosupere',1110,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16136,'Ahaste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16137,'Aluste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16138,'Are',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16139,'Arumetsa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16140,'Audru',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16141,'Eametsa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16142,'Haademeeste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16143,'Halinga',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16144,'Ikla',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16145,'Ilvese',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16146,'Jaamakula',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16147,'Jaarja',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16148,'Joesuu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16149,'Joopre',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16150,'Kaansoo',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16151,'Kabli',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16152,'Kadjaste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16153,'Kaisma',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16154,'Kalita',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16155,'Kanakula',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16156,'Kergu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16157,'Kihlepa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16158,'Kilingi-Nomme',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16159,'Kilksama',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16160,'Koima',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16161,'Koonga',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16162,'Krundikula',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16163,'Laadi',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16164,'Langerma',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16165,'Lavassaare',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16166,'Leipste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16167,'Lemmetsa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16168,'Lemsi',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16169,'Libatse',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16170,'Linakula',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16171,'Lindi',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16172,'Liu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16173,'Lodja',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16174,'Lope',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16175,'Malda',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16176,'Mannikuste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16177,'Massiaru',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16178,'Metsaaare',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16179,'Metsapoole',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16180,'Moisakula',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16181,'Muraka',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16182,'Niidu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16183,'Nurme',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16184,'Oara',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16185,'Oidrema',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16186,'Paikuse',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16187,'Papsaare',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16188,'Parnjoe',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16189,'Parnu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16190,'Parnu-Jaagupi',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16191,'Penu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16192,'Piistaoja',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16193,'Pohara',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16194,'Poldeotsa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16195,'Pootsi',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16196,'Pulli',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16197,'Rannametsa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16198,'Ratsepa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16199,'Reiu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16200,'Ridalepa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16201,'Rootsikula',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16202,'Saarde',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16203,'Saare',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16204,'Sauga',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16205,'Seliste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16206,'Selja',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16207,'Seljametsa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16208,'Silla',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16209,'Sindi',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16210,'Soeva',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16211,'Soometsa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16212,'Suigu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16213,'Surju',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16214,'Suurejoe',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16215,'Taali',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16216,'Tahkuranna',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16217,'Tali',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16218,'Tammiste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16219,'Tammuru',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16220,'Tihemetsa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16221,'Tolla',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16222,'Tootsi',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16223,'Tori',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16224,'Tostamaa',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16225,'Tousi',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16226,'Treimani',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16227,'Urge',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16228,'Uulu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16229,'Vahenurme',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16230,'Vaki',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16231,'Vandra',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16232,'Varbla',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16233,'Veelikse',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16234,'Vihtra',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16235,'Voidu',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16236,'Voiste',1111,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16237,'Aarna',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16238,'Ahja',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16239,'Erastvere',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16240,'Himma',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16241,'Himmaste',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16242,'Holvandi',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16243,'Ihamaru',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16244,'Jaanimoisa',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16245,'Kanepi',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16246,'Karilatsi',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16247,'Karsa',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16248,'Karste',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16249,'Kauksi',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16250,'Kiidjarve',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16251,'Kostrimae',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16252,'Krootuse',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16253,'Leevaku',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16254,'Leevi',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16255,'Leevijoe',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16256,'Linte',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16257,'Lootvina',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16258,'Maaritsa',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16259,'Mammaste',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16260,'Metste',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16261,'Mikitamae',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16262,'Mooste',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16263,'Naha',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16264,'Orava',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16265,'Pahtpaa',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16266,'Partsi',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16267,'Peri',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16268,'Piigandi',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16269,'Polgaste',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16270,'Polva',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16271,'Prangli',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16272,'Puuri',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16273,'Raadama',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16274,'Rahumae',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16275,'Raigla',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16276,'Rapina',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16277,'Rasina',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16278,'Ristipalo',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16279,'Rosma',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16280,'Ruusa',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16281,'Saverna',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16282,'Sillapaa',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16283,'Soodoma',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16284,'Suurkula',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16285,'Taevaskoja',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16286,'Tannassilma',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16287,'Tilsi',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16288,'Treski',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16289,'Vaike-Rosna',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16290,'Valgjarve',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16291,'Vana-Koiola',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16292,'Vardja',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16293,'Varska',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16294,'Vastse-Kuuste',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16295,'Veriora',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16296,'Viluste',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16297,'Voopsu',1112,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16298,'Aespa',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16299,'Alu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16300,'Eidapere',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16301,'Hageri',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16302,'Hagudi',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16303,'Haimre',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16304,'Hertu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16305,'Iira',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16306,'Ingliste',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16307,'Jarlepa',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16308,'Jarvakandi',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16309,'Juuru',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16310,'Kaerepere',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16311,'Kaiu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16312,'Kalbu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16313,'Karu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16314,'Kasti',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16315,'Keava',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16316,'Kehtna',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16317,'Kivi-Vigala',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16318,'Kodila',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16319,'Kohila',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16320,'Kuimetsa',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16321,'Kuusiku',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16322,'Laukna',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16323,'Lelle',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16324,'Lipa',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16325,'Lohu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16326,'Lokuta',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16327,'Maidla',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16328,'Marjamaa',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16329,'Masti',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16330,'Moisamaa',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16331,'Naravere',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16332,'Orgita',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16333,'Paardu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16334,'Pae',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16335,'Pahkla',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16336,'Pihali',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16337,'Pirgu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16338,'Prillimae',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16339,'Purila',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16340,'Purku',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16341,'Rabivere',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16342,'Raikkula',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16343,'Rangu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16344,'Rapla',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16345,'Salutaguse',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16346,'Sipa',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16347,'Sotke',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16348,'Sutlema',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16349,'Tamme',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16350,'Teenuse',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16351,'Uuskula',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16352,'Vahastu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16353,'Valgu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16354,'Valtu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16355,'Vana-Kaiu',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16356,'Vana-Vigala',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16357,'Varbola',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16358,'Vilivere',1113,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16359,'Arandi',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16360,'Aste',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16361,'Eikla',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16362,'Hellamaa',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16363,'Kao',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16364,'Karja',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16365,'Karla',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16366,'Kihelkonna',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16367,'Koimla',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16368,'Koljala',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16369,'Korkkula',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16370,'Korkvere',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16371,'Kudjape',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16372,'Kuressaare',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16373,'Laatsa',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16374,'Lahekula',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16375,'Laimjala',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16376,'Leisi',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16377,'Liiva',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16378,'Lumanda',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16379,'Metskula',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16380,'Mustjala',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16381,'Nasva',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16382,'Nommkula',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16383,'Orissaare',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16384,'Pahkla',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16385,'Parsama',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16386,'Pihtla',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16387,'Sakla',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16388,'Salme',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16389,'Sandla',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16390,'Tagavere',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16391,'Tornimae',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16392,'Valjala',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16393,'Vohma',1114,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16394,'Aardla',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16395,'Aksi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16396,'Alasoo',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16397,'Alatskivi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16398,'Annikoru',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16399,'Aravu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16400,'Elva',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16401,'Erala',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16402,'Ervu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16403,'Haage',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16404,'Haaslava',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16405,'Ignase',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16406,'Illi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16407,'Ilmatsalu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16408,'Kaagvere',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16409,'Kaardi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16410,'Kaarlijarve',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16411,'Kallaste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16412,'Kalme',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16413,'Kambja',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16414,'Kandikula',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16415,'Karevere',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16416,'Karkna',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16417,'Kasepaa',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16418,'Kavastu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16419,'Kirepi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16420,'Kodukula',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16421,'Kokora',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16422,'Kolkja',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16423,'Konguta',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16424,'Koosa',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16425,'Koruste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16426,'Korvekula',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16427,'Kulitse',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16428,'Kurekula',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16429,'Kurista',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16430,'Laaniste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16431,'Laeva',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16432,'Lahte',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16433,'Lalli',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16434,'Lapetukme',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16435,'Lemmatsi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16436,'Lohkva',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16437,'Lossimae',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16438,'Luke',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16439,'Luunja',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16440,'Maksa',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16441,'Maramaa',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16442,'Marja',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16443,'Meeksi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16444,'Meeri',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16445,'Mehikoorma',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16446,'Melliste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16447,'Metsakivi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16448,'Metsalaane',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16449,'Moisanurme',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16450,'Nina',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16451,'Nogiaru',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16452,'Noo',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16453,'Pilka',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16454,'Poka',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16455,'Pooritsa',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16456,'Puhja',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16457,'Rahinge',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16458,'Raigaste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16459,'Ramsi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16460,'Rani',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16461,'Rannu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16462,'Rebase',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16463,'Reola',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16464,'Rohu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16465,'Roiu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16466,'Rongu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16467,'Saadjarve',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16468,'Sinikula',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16469,'Sirgu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16470,'Soinaste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16471,'Sojamaa',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16472,'Tahtvere',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16473,'Tammiste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16474,'Tammistu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16475,'Tartu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16476,'Teedla',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16477,'Tilga',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16478,'Toravere',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16479,'Torvandi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16480,'Tuki',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16481,'Uderna',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16482,'Uhti',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16483,'Ulenurme',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16484,'Ulila',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16485,'Unikula',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16486,'Vahi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16487,'Vaike-Rakke',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16488,'Valguta',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16489,'Vana-Kuuste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16490,'Vara',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16491,'Varnja',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16492,'Vasula',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16493,'Vedu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16494,'Vesneri',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16495,'Vissi',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16496,'Voibla',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16497,'Voika',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16498,'Vonnu',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16499,'Voopste',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16500,'Vorbuse',1115,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16501,'Aakre',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16502,'Ala',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16503,'Hargla',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16504,'Hellenurme',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16505,'Helme',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16506,'Hummuli',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16507,'Jeti',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16508,'Jogeveste',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16509,'Kaagjarve',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16510,'Kalme',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16511,'Karjatnurme',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16512,'Karula',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16513,'Keeni',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16514,'Koikkula',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16515,'Laanemetsa',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16516,'Laatre',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16517,'Laukula',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16518,'Leebiku',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16519,'Linna',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16520,'Lossikula',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16521,'Lullemae',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16522,'Moldre',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16523,'Nouni',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16524,'Nupli',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16525,'Oru',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16526,'Oruste',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16527,'Otepaa',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16528,'Paidla',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16529,'Paju',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16530,'Palupera',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16531,'Patkula',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16532,'Piiri',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16533,'Pikasilla',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16534,'Pilkuse',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16535,'Puhajarve',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16536,'Puka',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16537,'Restu',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16538,'Riidaja',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16539,'Sangaste',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16540,'Sihva',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16541,'Sooru',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16542,'Taagepera',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16543,'Tagula',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16544,'Taheva',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16545,'Tiidu',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16546,'Tolliste',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16547,'Torva',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16548,'Tsirguliina',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16549,'Valga',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16550,'Vana-Otepaa',1116,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16551,'Abja-Paluoja',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16552,'Abja-Vanamoisa',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16553,'Aidu',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16554,'Angi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16555,'Anikatsi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16556,'Arikula',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16557,'Halliste',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16558,'Heimtali',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16559,'Holstre',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16560,'Intsu',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16561,'Jamejala',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16562,'Jaska',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16563,'Kaavere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16564,'Kamara',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16565,'Karksi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16566,'Karksi-Nuia',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16567,'Karstna',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16568,'Karula',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16569,'Kobruvere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16570,'Koidama',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16571,'Koksvere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16572,'Kolga-Jaani',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16573,'Koo',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16574,'Kopu',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16575,'Kulla',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16576,'Lalsi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16577,'Leie',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16578,'Lilli',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16579,'Lohavere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16580,'Loodi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16581,'Maeltkula',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16582,'Matapera',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16583,'Meleski',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16584,'Metskula',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16585,'Moisakula',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16586,'Monnaste',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16587,'Mustivere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16588,'Mustla',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16589,'Navesti',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16590,'Odiste',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16591,'Oisu',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16592,'Olustvere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16593,'Pahuvere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16594,'Paistu',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16595,'Parakula',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16596,'Pari',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16597,'Parsti',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16598,'Peetrimoisa',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16599,'Pilistvere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16600,'Pinska',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16601,'Polde',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16602,'Polli',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16603,'Puiatu',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16604,'Ramsi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16605,'Reegoldi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16606,'Saarepeedi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16607,'Savikoti',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16608,'Sinialliku',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16609,'Soe',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16610,'Soomevere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16611,'Sudiste',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16612,'Suislepa',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16613,'Sultsi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16614,'Supsi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16615,'Surgavere',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16616,'Suure-Jaani',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16617,'Taaksi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16618,'Tanassilma',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16619,'Tinnikuru',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16620,'Tohvri',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16621,'Tuhalaane',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16622,'Tusti',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16623,'Ulde',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16624,'Ulensi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16625,'Uusna',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16626,'Valgita',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16627,'Valma',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16628,'Valuste',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16629,'Vana-Kariste',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16630,'Vana-Voidu',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16631,'Vardi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16632,'Vardja',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16633,'Vastemoisa',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16634,'Veelikse',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16635,'Verilaske',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16636,'Veskimae',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16637,'Viiratsi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16638,'Viljandi',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16639,'Villa',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16640,'Vohma',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16641,'Voivaku',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16642,'Vooru',1117,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16643,'Antsla',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16644,'Haanja',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16645,'Jarvere',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16646,'Kaapa',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16647,'Kirumpaa',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16648,'Kobela',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16649,'Kollino',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16650,'Kose',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16651,'Kraavi',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16652,'Krabi',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16653,'Kulaoru',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16654,'Kuldre',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16655,'Kuutsi',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16656,'Lasva',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16657,'Loosu',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16658,'Lusti',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16659,'Meegomae',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16660,'Meremae',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16661,'Misso',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16662,'Moniste',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16663,'Navi',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16664,'Nursi',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16665,'Obinitsa',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16666,'Osula',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16667,'Otsa',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16668,'Parksepa',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16669,'Puiga',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16670,'Raiste',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16671,'Rimmi',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16672,'Rouge',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16673,'Ruusmae',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16674,'Saru',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16675,'Somerpalu',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16676,'Sulbi',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16677,'Taberlaane',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16678,'Tagakula',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16679,'Tsolgo',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16680,'Tsooru',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16681,'Urvaste',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16682,'Uue-Antsla',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16683,'Vaabina',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16684,'Vagula',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16685,'Vaimela',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16686,'Vana-Antsla',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16687,'Vana-Roosa',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16688,'Vana-Vastseliina',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16689,'Varstu',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16690,'Vastseliina',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16691,'Verijarve',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16692,'Viitina',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16693,'Viitka',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16694,'Visela',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16695,'Voru',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16696,'Vorumoisa',1118,68,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16697,'Asayita',1120,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16698,'Awash',1120,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16699,'Dubti',1120,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16700,'Gewane',1120,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16701,'Addi Ark\'ay',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16702,'Addis \'Alem',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16703,'Addis Zemen',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16704,'Adet',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16705,'Bahir Dar',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16706,'Bati',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16707,'Bichena',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16708,'Bure',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16709,'Chagni',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16710,'Dabat',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16711,'Dangla',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16712,'Debark',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16713,'Debre Birhan',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16714,'Debre Mark\'os',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16715,'Debre Sina',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16716,'Debre Tabor',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16717,'Debre Werk',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16718,'Dejen',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16719,'Dese',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16720,'Finote Selam',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16721,'Gondar',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16722,'K\'obo',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16723,'Kembolcha',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16724,'Kemise',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16725,'Lalibela',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16726,'Mott\'a',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16727,'Nefas Mewcha',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16728,'Sek\'ot\'a',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16729,'Shewa Robit',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16730,'Weldiya',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16731,'Were Ilu',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16732,'Werota',1121,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16733,'Asosa',1122,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16734,'Dire Dawa',1123,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16735,'Gambela',1124,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16736,'Harer',1125,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16737,'Jigjiga',1126,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16738,'\'Alem Maya',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16739,'Abomsa',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16740,'Agaro',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16741,'Asasa',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16742,'Asbe Teferi',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16743,'Assela',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16744,'Bako',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16745,'Bedele',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16746,'Bedesa',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16747,'Burayu',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16748,'Debre Zeyit',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16749,'Deder',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16750,'Dembi Dolo',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16751,'Dodola',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16752,'Fiche',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16753,'Gebre Guracha',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16754,'Gedo',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16755,'Gelemso',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16756,'Gimbi',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16757,'Ginch\'i',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16758,'Ginir',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16759,'Giyon',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16760,'Goba',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16761,'Gore',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16762,'Guder',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16763,'Hagere Hiywet',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16764,'Hagere Maryam',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16765,'Hirna',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16766,'Holeta Genet',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16767,'Huruta',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16768,'Jimma',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16769,'Kibre Mengist',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16770,'Kofele',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16771,'Mega',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16772,'Mek\'i',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16773,'Mendi',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16774,'Metehara',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16775,'Metu',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16776,'Mojo',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16777,'Moyale',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16778,'Nazret',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16779,'Nedjo',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16780,'Negele',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16781,'Nek\'emte',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16782,'Robe',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16783,'Sebeta',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16784,'Sendafa',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16785,'Shakiso',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16786,'Shambu',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16787,'Shashemenne',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16788,'Sheh Hussen',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16789,'Sire',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16790,'Tulu Bolo',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16791,'Welench\'iti',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16792,'Welk\'it\'e',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16793,'Wonji',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16794,'Yabelo',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16795,'Ziway',1128,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16796,'Bircot',1129,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16797,'Degeh Bur',1129,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16798,'Dollo Odo',1129,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16799,'Imi',1129,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16800,'Jijiga',1129,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16801,'Werder',1129,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16802,'Alaba Kulito',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16803,'Arba Minch',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16804,'Areka',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16805,'Awassa',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16806,'Bako',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16807,'Boditi',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16808,'Bonga',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16809,'Butajira',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16810,'Ch\'ench\'a',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16811,'Dilla',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16812,'Gidole',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16813,'Hossa\'ina',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16814,'Jinka',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16815,'Leku',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16816,'Mizan Teferi',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16817,'Sawla',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16818,'Soddo',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16819,'Teppi',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16820,'Wendo',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16821,'Yirga Alem',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16822,'Yirga Ch\'efe',1130,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16823,'Abiy Adi',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16824,'Addigrat',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16825,'Adwa',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16826,'Aksum',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16827,'Alamat\'a',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16828,'Endasilasie',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16829,'Hagere Selam',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16830,'Himora',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16831,'Korem',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16832,'Maych\'ew',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16833,'Mek\'ele',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16834,'Mekele',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16835,'Wik\'ro',1131,69,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16836,'Hvannasund',1137,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16837,'Klaksvik',1137,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16838,'Husavik',1140,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16839,'Sands',1140,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16840,'Skalavik',1140,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16841,'Skopun',1140,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16842,'Skuvoy',1140,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16843,'Haldarsvik',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16844,'Hests',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16845,'Hosvik',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16846,'Hvalvik',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16847,'Kirkjubo',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16848,'Kollafjar ',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16849,'Kvivik',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16850,'Nolsoy',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16851,'Saksun',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16852,'Torshavn',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16853,'Vestmanna',1141,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16854,'Torshavn',1144,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16855,'Biggjar',1145,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16856,'Midvags',1145,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16857,'Mykines',1145,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16858,'Sandavags',1145,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16859,'Sorvags',1145,72,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16860,'Deuba',1146,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16861,'Korovou',1146,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16862,'Lami',1146,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16863,'Namosi',1146,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16864,'Nausori',1146,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16865,'Navua',1146,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16866,'Suva',1146,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16867,'Levuka',1147,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16868,'Malhaha',1147,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16869,'Tubou',1147,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16870,'Vunisea',1147,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16871,'Korokade',1148,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16872,'Labasa',1148,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16873,'Savusavu',1148,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16874,'Ba',1150,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16875,'Lautoka',1150,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16876,'Nadi',1150,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16877,'Rakiraki',1150,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16878,'Sigatoka',1150,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16879,'Tavua',1150,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16880,'Vatukoula',1150,73,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16881,'Maarianhamina',1151,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16882,'Imatra',1152,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16883,'Joutseno',1152,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16884,'Lappeenranta',1152,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16885,'Hyllykallio',1153,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16886,'Ilmajoki',1153,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16887,'Kauhajoki',1153,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16888,'Kurikka',1153,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16889,'Lapua',1153,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16890,'Seinajoki',1153,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16891,'Mikkeli',1154,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16892,'Savonlinna',1154,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16893,'Loviisa',1157,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16894,'Orimattila',1157,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16895,'Porvoo',1157,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16896,'Kajaani',1158,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16897,'Forssa',1159,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16898,'Hameenlinna',1159,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16899,'Janakkala',1159,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16900,'Riihimaki',1159,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16901,'Kokkola',1160,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16902,'Aanekoski',1161,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16903,'Jamsa',1161,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16904,'Jyvaskyla',1161,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16905,'Keuruu',1161,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16906,'Laukaa',1161,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16907,'Lieto',1161,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16908,'Anjalankoski',1162,74,0.00,0,'2021-04-06 01:13:44','2021-04-06 01:13:44',NULL),(16909,'Hamina',1162,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16910,'Kotka',1162,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16911,'Kouvola',1162,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16912,'Kuusankoski',1162,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16913,'Valkeala',1162,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16914,'Vehkalahti',1162,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16915,'Kemi',1164,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16916,'Kemijarvi',1164,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16917,'Rovaniemi',1164,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16918,'Sonka',1164,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16919,'Tornio',1164,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16920,'Jakobstad',1166,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16921,'Oulunsalo',1166,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16922,'Heinola',1168,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16923,'Hollola',1168,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16924,'Lahti',1168,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16925,'Nastola',1168,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16926,'Kangasala',1169,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16927,'Lempaala',1169,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16928,'Nokia',1169,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16929,'Pirkkala',1169,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16930,'Sastamala',1169,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16931,'Tampere',1169,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16932,'Valkeakoski',1169,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16933,'Ylojarvi',1169,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16934,'Kristiinankaupunki',1170,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16935,'Mustasaari',1170,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16936,'Pietarsaari',1170,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16937,'Uusikarlepyy',1170,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16938,'Vaasa',1170,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16939,'Joensuu',1171,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16940,'Lieksa',1171,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16941,'Haukipudas',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16942,'Kempele',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16943,'Kuusamo',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16944,'Muhos',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16945,'Nivala',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16946,'Oulainen',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16947,'Oulu',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16948,'Raahe',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16949,'Ylivieska',1172,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16950,'Iisalmi',1173,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16951,'Kuopio',1173,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16952,'Sillinjarvi',1173,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16953,'Varkaus',1173,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16954,'Saarijarvi',1174,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16955,'Eura',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16956,'Eurajoki',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16957,'Harjavalta',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16958,'Huittinen',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16959,'Kankaanpaa',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16960,'Kokemaki',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16961,'Lappi',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16962,'Nakkila',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16963,'Noormarkku',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16964,'Pori',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16965,'Rauma',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16966,'Sakyla',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16967,'Ulvila',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16968,'Vammala',1175,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16969,'Espoo',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16970,'Hanko',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16971,'Helsinki',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16972,'Hyvinkaa',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16973,'Jarvenpaa',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16974,'Kauniainen',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16975,'Kerava',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16976,'Kirkkonummi',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16977,'Lohja',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16978,'Mantsala',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16979,'Nurmijarvi',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16980,'Sipoo',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16981,'Tammisaari',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16982,'Tuusula',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16983,'Vantaa',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16984,'Vihti',1179,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16985,'Kaarina',1180,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16986,'Naantali',1180,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16987,'Parainen',1180,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16988,'Raisio',1180,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16989,'Salo',1180,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16990,'Turku',1180,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16991,'Uusikaupunki',1180,74,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16992,'Amberieu-en-Bugey',1181,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16993,'Bellegarde-sur-Valserine',1181,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16994,'Bourg-en-Bresse',1181,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16995,'Oyonnax',1181,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16996,'Chateau-Thierry',1182,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16997,'Chauny',1182,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16998,'Hirson',1182,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(16999,'Laon',1182,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17000,'Saint-Quentin',1182,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17001,'Soissons',1182,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17002,'Strassbourg',1182,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17003,'Tergnier',1182,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17004,'Cusset',1184,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17005,'Montlucon',1184,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17006,'Moulins',1184,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17007,'Vichy',1184,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17008,'Yzeure',1184,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17009,'Antibes',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17010,'Beausoleil',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17011,'Cagnes-sur-Mer',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17012,'Cannes',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17013,'Carros',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17014,'Grasse',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17015,'La Trinite',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17016,'Le Cannet',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17017,'Mandelieu-la-Napoule',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17018,'Menton',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17019,'Mougins',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17020,'Nice',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17021,'Roquebrune-Cap-Martin',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17022,'Saint-Laurent-du-Var',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17023,'Valbonne',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17024,'Vallauris',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17025,'Vence',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17026,'Villeneuve-Loubet',1186,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17027,'Digne-les-Bains',1187,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17028,'Manosque',1187,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17029,'Adainville',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17030,'Alby-sur-Cheran',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17031,'Aubervilliers',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17032,'Auterive',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17033,'Baillet',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17034,'Beaune',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17035,'Beauzelle',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17036,'Bonnet De Mure',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17037,'Bormes-les-Mimosas',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17038,'Brindas',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17039,'Burlats',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17040,'Buzancais',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17041,'Candillargues',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17042,'Carry-le-Rouet',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17043,'Cassis',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17044,'Cessenon-Sur-Orb',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17045,'Chanac',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17046,'Chevigny',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17047,'Cogolin',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17048,'Collioure',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17049,'Cremieu',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17050,'Drulingen',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17051,'Ecouen',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17052,'Eschau',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17053,'Feignies',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17054,'Ferus',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17055,'Fourqueux',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17056,'Franqueville',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17057,'Gignac',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17058,'Gravigny',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17059,'Hangenbieten',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17060,'Hunspach',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17061,'Kilstett',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17062,'La Chevroliere',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17063,'La-Fare-Les-Oliviers',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17064,'Lanvellec',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17065,'Le Faget',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17066,'Lesigny',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17067,'Lesquin',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17068,'Limonest',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17069,'Messein',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17070,'Morgat',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17071,'Mundolsheim',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17072,'Nantiat',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17073,'Niederbronn-les-Bain',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17074,'Nimes',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17075,'Opoul',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17076,'Pance',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17077,'Peronne',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17078,'Ploneour Lanvern',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17079,'Realmont',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17080,'Reichstett',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17081,'Saint Aubin',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17082,'Saint Christophe',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17083,'Saint Martin d%�^%�%�,%�%����%����%����%����Here',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17084,'Saint-Berthevin',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17085,'Saint-Cergues',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17086,'Sancerre',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17087,'Sarzeau',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17088,'Seltz',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17089,'Seyssins',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17090,'Souffelweyersheim',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17091,'Vireux-Molhain',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17092,'Voves',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17093,'Wambrechies',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17094,'Wervocq Sud',1188,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17095,'Abzac',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17096,'Bidart',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17097,'Biganos',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17098,'Buzet-sur-Baise',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17099,'Coursac',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17100,'Hasparren',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17101,'Landiras',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17102,'Le Haillan',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17103,'Ledat',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17104,'Martillac',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17105,'Puyoo',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17106,'Saint-Jean-dIllac',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17107,'Seignosse',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17108,'Tresses',1189,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17109,'Annonay',1190,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17110,'Aubenas',1190,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17111,'Guilherand-Granges',1190,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17112,'Privas',1190,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17113,'Tournon-sur-Rhone',1190,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17114,'Charleville-Mezieres',1191,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17115,'Les Hautes-Rivieres',1191,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17116,'Revin',1191,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17117,'Sedan',1191,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17118,'Foix',1192,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17119,'Pamier',1192,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17120,'Bar-sur-Seine',1193,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17121,'Romilly-sur-Seine',1193,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17122,'Saint-Andre-les-Vergers',1193,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17123,'Sainte-Savine',1193,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17124,'Troyes',1193,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17125,'Carcassonne',1194,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17126,'Castelnaudary',1194,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17127,'Limoux',1194,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17128,'Narbonne',1194,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17129,'Ambert',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17130,'Creuzier-le-Vieux',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17131,'Ferrieres',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17132,'Peschadoires',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17133,'Riotord',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17134,'Saint-Pal-de-Chalencon',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17135,'Saint-Romain-Lachalm',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17136,'Saint-Vidal',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17137,'Sainte-Sigolene',1195,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17138,'Millau',1196,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17139,'Onet-le-Chataeu',1196,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17140,'Rodez',1196,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17141,'Villefranche-de-Rouergue',1196,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17142,'Bischheim',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17143,'Bischwiller',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17144,'Haguenau',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17145,'Hoenheim',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17146,'Illkirch-Graffenstaden',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17147,'Lingolsheim',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17148,'Obernai',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17149,'Ostwald',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17150,'Saverne',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17151,'Schiltigheim',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17152,'Selestat',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17153,'Strasbourg',1197,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17154,'Deauville',1198,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17155,'Aix-en-Provence',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17156,'Allauch',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17157,'Arles',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17158,'Aubagne',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17159,'Berre-l\'Etang',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17160,'Bouc-Bel-Air',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17161,'Chateauneuf-les-Martigues',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17162,'Chateaurenard',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17163,'Fos-sur-Mer',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17164,'Gardanne',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17165,'Istres',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17166,'La Ciotat',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17167,'Les Pennes-Mirabeau',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17168,'Maillane',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17169,'Marignane',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17170,'Marseille',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17171,'Martigues',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17172,'Miramas',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17173,'Plan-de-Cuques',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17174,'Port-de-Bouc',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17175,'Rognac',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17176,'Saint-Martin-de-Crau',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17177,'Saint-Remy-de-Provence',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17178,'Salon-de-Provence',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17179,'Septemes-les-Vallons',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17180,'Tarascon',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17181,'Vitrolles',1199,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17182,'Migennes',1200,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17183,'Javene',1201,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17184,'Plouha',1201,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17185,'Brehan',1202,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17186,'Broons',1202,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17187,'Guipry',1202,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17188,'Miniac-Morvan',1202,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17189,'Ploudaniel',1202,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17190,'Vern-sur-Seiche',1202,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17191,'Aillant-sur-Tholon',1203,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17192,'Bayeux',1204,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17193,'Caen',1204,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17194,'Herouville-Saint-Clair',1204,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17195,'Lisieux',1204,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17196,'Mondeville',1204,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17197,'Vire',1204,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17198,'Aurillac',1205,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17199,'Brumath',1206,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17200,'Courtaboeuf',1206,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17201,'Iregny',1206,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17202,'cedex',1206,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17203,'Azay-le-Rideau',1207,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17204,'Chevillon-sur-Huillard',1207,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17205,'Cloyes-sur-le-Loir',1207,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17206,'Gellainville',1207,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17207,'La Chaussse-Saint-Victor',1207,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17208,'La Ville-aux-Clercs',1207,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17209,'Ladon',1207,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17210,'Le Chatelet',1207,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17211,'Angouleme',1208,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17212,'Cognac',1208,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17213,'Lencloitre',1208,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17214,'Soyaux',1208,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17215,'La Rochelle',1209,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17216,'Rochefort',1209,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17217,'Royan',1209,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17218,'Saintes',1209,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17219,'Bourges',1210,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17220,'Saint-Amand-Montrond',1210,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17221,'Saint-Doulchard',1210,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17222,'Vierzon',1210,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17223,'Brive-la-Gaillarde',1211,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17224,'Tulle',1211,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17225,'Ussel',1211,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17226,'Ajaccio',1212,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17227,'Porto-Vecchio',1212,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17228,'Beaune',1213,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17229,'Chenove',1213,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17230,'Dijon',1213,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17231,'Quetigny',1213,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17232,'Talant',1213,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17233,'Dinan',1214,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17234,'Lamballe',1214,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17235,'Lannion',1214,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17236,'Loudeac',1214,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17237,'Plerin',1214,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17238,'Ploufragan',1214,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17239,'Saint-Brieuc',1214,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17240,'Gueret',1215,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17241,'Crolles',1216,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17242,'Bressuire',1217,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17243,'Niort',1217,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17244,'Parthenay',1217,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17245,'Thouars',1217,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17246,'Bergerac',1218,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17247,'Perigueux',1218,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17248,'Sarlat-la-Caneda',1218,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17249,'Audincourt',1219,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17250,'Besancon',1219,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17251,'Beure',1219,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17252,'Montbeliard',1219,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17253,'Pontarlier',1219,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17254,'Valentigney',1219,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17255,'Bourg-les-Valence',1220,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17256,'Montelimar',1220,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17257,'Pierrelatte',1220,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17258,'Romans-sur-Isere',1220,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17259,'Valence',1220,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17260,'Athis-Mons',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17261,'Bretigny-sur-Orge',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17262,'Brunoy',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17263,'Bures-sur-Yvette',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17264,'Chilly-Mazarin',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17265,'Corbeil-Essonnes',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17266,'Courcouronnes',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17267,'Dourdan',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17268,'Draveil',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17269,'Epinay-sous-Senart',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17270,'Epinay-sur-Orge',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17271,'Etampes',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17272,'Evry',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17273,'Fleury-Merogis',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17274,'Gif-sur-Yvette',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17275,'Grigny',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17276,'Igny',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17277,'Juvisy-sur-Orge',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17278,'Les Ulis',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17279,'Longjumeau',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17280,'Massy',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17281,'Mennecy',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17282,'Montgeron',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17283,'Morangis',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17284,'Morsang-sur-Orge',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17285,'Orsay',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17286,'Palaiseau',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17287,'Ris-Orangis',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17288,'Saint-Michel-sur-Orge',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17289,'Sainte-Genevieve-des-Bois',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17290,'Savigny-sur-Orge',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17291,'Verrieres-le-Buisson',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17292,'Vigneux-sur-Seine',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17293,'Villebon-sur-Yvette',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17294,'Viry-Chatillon',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17295,'Yerres',1221,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17296,'Bernay',1222,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17297,'Evreux',1222,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17298,'Gisors',1222,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17299,'Louviers',1222,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17300,'Pont-Audemer',1222,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17301,'Val-de-Reuil',1222,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17302,'Vernon',1222,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17303,'Chartres',1223,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17304,'Chateaudun',1223,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17305,'Dreux',1223,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17306,'Luce',1223,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17307,'Mainvillier',1223,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17308,'Nogent-le-Rotrou',1223,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17309,'Vernouillet',1223,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17310,'Feucherolles',1224,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17311,'Brest',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17312,'Concarneau',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17313,'Douarnenez',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17314,'Guipavas',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17315,'Landerneau',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17316,'Le Relecq-Kerhoun',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17317,'Morlaix',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17318,'Plougastel-Daoulas',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17319,'Plouzane',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17320,'Quimper',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17321,'Quimperle',1225,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17322,'Charquemont',1226,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17323,'Chemaudin',1226,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17324,'Pelousey',1226,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17325,'Perrigny',1226,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17326,'Pirey',1226,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17327,'Villers-le-Lac',1226,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17328,'Ales',1227,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17329,'Bagnols-sur-Ceze',1227,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17330,'Beaucaire',1227,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17331,'Nimes',1227,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17332,'Pont-Saint-Esprit',1227,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17333,'Saint-Gilles',1227,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17334,'Vauvert',1227,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17335,'Villeneuve-les-Avignon',1227,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17336,'Auch',1228,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17337,'Beraut',1228,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17338,'Ambares-et-Lagrave',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17339,'Arcachon',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17340,'Begles',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17341,'Blanquefort',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17342,'Bordeaux',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17343,'Bruges',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17344,'Cenon',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17345,'Cestas',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17346,'Eysines',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17347,'Floirac',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17348,'Gradignan',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17349,'Gujan-Mestras',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17350,'La Teste-de-Buch',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17351,'Le Bouscat',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17352,'Libourne',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17353,'Lormont',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17354,'Merignac',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17355,'Pessac',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17356,'Saint-Medard-en-Jalles',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17357,'Talence',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17358,'Villenave-d\'Ornon',1229,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17359,'Cernay',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17360,'Colmar',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17361,'Guebwiller',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17362,'Illzach',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17363,'Kingersheim',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17364,'Mulhouse',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17365,'Riediesheim',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17366,'Rixheim',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17367,'Saint-Louis',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17368,'Wittelsheim',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17369,'Wittenheim',1230,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17370,'Bastia',1231,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17371,'Balma',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17372,'Blagnac',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17373,'Colomiers',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17374,'Cugnaux',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17375,'L\'Union',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17376,'Muret',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17377,'Plaisance-du-Touch',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17378,'Ramonville-Saint-Agne',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17379,'Saint-Gaudens',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17380,'Saint-Orens-de-Gameville',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17381,'Toulouse',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17382,'Tournefeuille',1232,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17383,'Blanzac',1233,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17384,'Le Puy-en-Velay',1233,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17385,'Chaumont',1234,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17386,'Langres',1234,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17387,'Saint-Dizier',1234,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17388,'Hericourt',1235,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17389,'Lure',1235,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17390,'Luxeuil-les-Bains',1235,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17391,'Vesoul',1235,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17392,'Annecy',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17393,'Annecy-le-Vieux',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17394,'Annemasse',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17395,'Archamps',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17396,'Bonneville',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17397,'Chamonix-Mont-Blanc',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17398,'Cluses',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17399,'Contamine sur Arve',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17400,'Cran-Gevrier',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17401,'Passy',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17402,'Rumilly',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17403,'Sallanches',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17404,'Seynod',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17405,'Thonon-les-Bains',1236,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17406,'Gaillard',1237,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17407,'Limoges',1237,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17408,'Saint-Junien',1237,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17409,'Briancon',1238,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17410,'Gap',1238,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17411,'Lourdes',1239,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17412,'Tarbes',1239,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17413,'Antony',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17414,'Asnieres-sur-Seine',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17415,'Bagneux',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17416,'Bois-Colombes',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17417,'Boulogne-Billancourt',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17418,'Bourg-la-Reine',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17419,'Chatenay-Malabry',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17420,'Chatillon',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17421,'Chaville',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17422,'Clamart',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17423,'Clichy',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17424,'Colombes',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17425,'Courbevoie',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17426,'Fontenay-aux-Roses',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17427,'Garches',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17428,'Gennevillers',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17429,'Issy-les-Moulineaux',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17430,'La Garenne-Colombes',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17431,'Le Plessis-Robinson',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17432,'Levallois-Perret',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17433,'Malakoff',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17434,'Meudon',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17435,'Montrouge',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17436,'Nanterre',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17437,'Neuilly-sur-Seine',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17438,'Puteaux',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17439,'Rueil-Malmaison',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17440,'Saint-Cloud',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17441,'Sceaux',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17442,'Sevres',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17443,'Suresnes',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17444,'Vanves',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17445,'Ville-d\'Avray',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17446,'Villeneuve-la-Garenne',1240,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17447,'Agde',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17448,'Beziers',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17449,'Castelnau-le-Lez',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17450,'Frontignan',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17451,'Lattes',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17452,'Lunel',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17453,'Mauguio',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17454,'Montpellier',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17455,'Sete',1241,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17456,'Champagne-sur-Oise',1242,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17457,'Croissy-Beaubourg',1242,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17458,'Gennevilliers',1242,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17459,'Le Mesnil-le-Roi',1242,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17460,'Le Plessis-Bouchard',1242,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17461,'Rebais',1242,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17462,'Saint-Thibault-des-Vignes',1242,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17463,'Cesson-Sevigne',1243,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17464,'Dinard',1243,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17465,'Fougeres',1243,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17466,'Rennes',1243,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17467,'Saint-Malo',1243,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17468,'Vitre',1243,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17469,'Chateauroux',1244,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17470,'Issoudun',1244,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17471,'Amboise',1245,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17472,'Joue-les-Tours',1245,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17473,'Saint-Avertin',1245,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17474,'Saint-Cyr-sur-Loire',1245,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17475,'Saint-Pierre-des-Corps',1245,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17476,'Tours',1245,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17477,'Bourgoin-Jallieu',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17478,'Crolles',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17479,'Echirolles',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17480,'Fontaine',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17481,'Grenoble',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17482,'Le Pont-de-Claix',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17483,'Meylan',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17484,'Saint-Egreve',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17485,'Saint-Martin-d\'Heres',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17486,'Seyssinet-Pariset',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17487,'Vienne',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17488,'Villefontaine',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17489,'Voiron',1246,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17490,'Champagnole',1247,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17491,'Dole',1247,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17492,'Lons-le-Saunier',1247,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17493,'Saint-Claude',1247,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17494,'Sebastiangasse',1248,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17495,'Biscarrosse',1249,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17496,'Dax',1249,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17497,'Hagetmau',1249,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17498,'Landes',1249,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17499,'Mont-de-Marsan',1249,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17500,'Saint-Paul-les-Dax',1249,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17501,'Tarnos',1249,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17502,'Codolet',1250,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17503,'Cuxac-d\'Aude',1250,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17504,'Gigean',1250,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17505,'Grabels',1250,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17506,'Lamalou-les-Bains',1250,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17507,'Perols',1250,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17508,'Peyrens',1250,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17509,'Tuchan',1250,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17510,'Larcay',1251,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17511,'Voutezac',1254,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17512,'Blois',1255,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17513,'Romorantin-Lanthenay',1255,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17514,'Vendome',1255,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17515,'Andrezieux-Boutheon',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17516,'Firminy',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17517,'La Ricamarie',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17518,'Le Chambon-Feugerolles',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17519,'Montbrison',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17520,'Riorges',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17521,'Rive-de-Gier',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17522,'Roanne',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17523,'Roche-la-Moliere',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17524,'Saint-Chamond',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17525,'Saint-Etienne',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17526,'Saint-Just-Saint-Rambert',1256,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17527,'Bouguenais',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17528,'Carquefou',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17529,'Chateaubriant',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17530,'Coueron',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17531,'Guerande',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17532,'La Baule-Escoublac',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17533,'La Chapelle-sur-Erdre',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17534,'Nantes',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17535,'Orvault',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17536,'Reze',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17537,'Saint Etienne de Mer Morte',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17538,'Saint-Herblain',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17539,'Saint-Nazaire',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17540,'Saint-Sebastien-sur-Loire',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17541,'Sainte-Luce-sur-Loire',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17542,'Vertou',1257,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17543,'Amilly',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17544,'Chalette-sur-Loing',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17545,'Fleury-les-Aubrais',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17546,'Gien',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17547,'Montargis',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17548,'Olivet',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17549,'Orleans',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17550,'Pithiviers',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17551,'Saint-Jean-de-Braye',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17552,'Saint-Jean-de-la-Ruelle',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17553,'Saran',1258,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17554,'Montbronn',1259,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17555,'Cahors',1260,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17556,'Figeac',1260,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17557,'Agen',1261,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17558,'Le Passage',1261,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17559,'Marmande',1261,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17560,'Tonneins',1261,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17561,'Villeneuve-sur-Lot',1261,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17562,'Mende',1263,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17563,'Angers',1264,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17564,'Avrille',1264,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17565,'Cholet',1264,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17566,'Les Ponts-de-Ce',1264,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17567,'Saint-Barthelemy-d\'Anjou',1264,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17568,'Saumur',1264,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17569,'Torfou',1264,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17570,'Trelaze',1264,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17571,'Cherbourg',1265,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17572,'Coutances',1265,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17573,'Equeurdreville-Hainneville',1265,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17574,'Granville',1265,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17575,'Octeville',1265,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17576,'Saint-Lo',1265,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17577,'Tourlaville',1265,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17578,'Chalons-en-Champagne',1266,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17579,'Epernay',1266,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17580,'Reims',1266,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17581,'Tinqueux',1266,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17582,'Vitry-le-Francois',1266,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17583,'Chateau-Gontier',1267,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17584,'Laval',1267,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17585,'Mayenne',1267,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17586,'Montsurs',1267,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17587,'Dombasle-sur-Meurthe',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17588,'Jarville-la-Malgrange',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17589,'Laxou',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17590,'Longwy',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17591,'Luneville',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17592,'Nancy',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17593,'Pont-a-Mousson',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17594,'Saint-Max',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17595,'Toul',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17596,'Vandoeuvre-les-Nancy',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17597,'Villers-les-Nancy',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17598,'Villerupt',1268,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17599,'Bar-le-Duc',1269,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17600,'Verdun',1269,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17601,'Boissezon',1270,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17602,'Hauterive',1270,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17603,'Launaguet',1270,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17604,'Mauleon',1270,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17605,'Maurens-Scopont',1270,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17606,'Auray',1271,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17607,'Guidel',1271,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17608,'Hennebont',1271,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17609,'Lanester',1271,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17610,'Lorient',1271,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17611,'Ploemeur',1271,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17612,'Pontivy',1271,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17613,'Vannes',1271,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17614,'Amneville',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17615,'Behren-les-Forbach',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17616,'Creutzwald',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17617,'Fameck',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17618,'Florange',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17619,'Forbach',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17620,'Freyming-Merlebach',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17621,'Hagondange',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17622,'Hayange',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17623,'Hombourg-Haut',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17624,'Maizieres-les-Metz',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17625,'Marly',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17626,'Metz',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17627,'Montigny-les-Metz',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17628,'Moyeuvre-Grande',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17629,'Rombas',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17630,'Saint-Avold',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17631,'Sarrebourg',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17632,'Sarreguemines',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17633,'Stiring-Wendel',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17634,'Thionville',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17635,'Uckange',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17636,'Woippy',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17637,'Yutz',1272,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17638,'Cosne-Cours-sur-Loire',1273,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17639,'Nevers',1273,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17640,'Varennes-Vauzelles',1273,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17641,'Aniche',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17642,'Annoeullin',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17643,'Anzin',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17644,'Armentieres',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17645,'Aulnoye-Aymeries',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17646,'Bailleul',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17647,'Bondues',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17648,'Bruay-sur-l\'Escaut',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17649,'Cambrai',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17650,'Cappelle-la-Grande',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17651,'Caudry',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17652,'Comines',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17653,'Conde-sur-l\'Escaut',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17654,'Coudekerque-Branche',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17655,'Croix',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17656,'Denain',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17657,'Douai',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17658,'Douchy-les-Mines',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17659,'Dunkerque',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17660,'Escaudain',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17661,'Fache-Thumesnil',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17662,'Fourmies',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17663,'Grande-Synthe',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17664,'Graveline',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17665,'Halluin',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17666,'Haubourdin',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17667,'Hautmont',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17668,'Hazebrouck',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17669,'Hem',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17670,'Hulluch',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17671,'Jeumont',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17672,'La Madeleine',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17673,'Lambersart',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17674,'Leers',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17675,'Lille',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17676,'Lomme',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17677,'Loos',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17678,'Lys-lez-Lannoy',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17679,'Marcq-en-Baroeul',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17680,'Marennes',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17681,'Marly',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17682,'Marquette-lez-Lille',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17683,'Maubeuge',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17684,'Merville',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17685,'Mons-en-Baroeul',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17686,'Mouvaux',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17687,'Neuville-en-Ferrain',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17688,'Onnaing',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17689,'Raismes',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17690,'Ronchin',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17691,'Roncq',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17692,'Roubaix',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17693,'Saint-Amand-les-Eaux',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17694,'Saint-Andre-lez-Lille',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17695,'Saint-Pol-sur-Mer',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17696,'Saint-Saulve',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17697,'Seclin',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17698,'Sin-le-Noble',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17699,'Somain',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17700,'Tourcoing',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17701,'Valenciennes',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17702,'Vieux-Conde',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17703,'Villeneuve-d\'Ascq',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17704,'Wasquehal',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17705,'Wattignies',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17706,'Wattrelos',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17707,'Waziers',1274,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17708,'Esquelbecq',1275,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17709,'Beauvais',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17710,'Chantilly',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17711,'Clermont',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17712,'Compiegne',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17713,'Creil',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17714,'Crepy-en-Valois',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17715,'Gouvieux',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17716,'Meru',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17717,'Montataire',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17718,'Nogent-sur-Oise',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17719,'Noyon',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17720,'Pont-Sainte-Maxence',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17721,'Senlis',1276,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17722,'Alencon',1277,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17723,'Argentan',1277,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17724,'Flers',1277,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17725,'L\'Aigle',1277,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17726,'Paris',1278,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17727,'Aire-sur-la-Lys',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17728,'Arras',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17729,'Auchel',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17730,'Avion',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17731,'Berck',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17732,'Bethune',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17733,'Boulogne-sur-Mer',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17734,'Bruay-la-Brussiere',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17735,'Bully-les-Mines',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17736,'Calais',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17737,'Carvin',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17738,'Courrieres',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17739,'Etaples',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17740,'Harnes',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17741,'Henin-Beaumont',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17742,'Le Portel',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17743,'Lens',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17744,'Libercourt',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17745,'Lievin',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17746,'Lillers',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17747,'Longuenesse',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17748,'Marck',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17749,'Mericourt',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17750,'Montigny-en-Gohelle',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17751,'Noeux-les-Mines',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17752,'Oignies',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17753,'Outreau',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17754,'Rouvroy',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17755,'Saint-Martin-Boulogne',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17756,'Saint-Omer',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17757,'Sallaumines',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17758,'Vendin-le-Vieil',1279,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17759,'Loiron',1281,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17760,'Marolles-les-Braults',1281,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17761,'Mortagne-sur-Sevre',1281,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17762,'Mouzillon',1281,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17763,'Noirmoutier-en-l\'%�^%�%�<%\%le',1281,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17764,'Friville',1282,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17765,'Liancourt',1282,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17766,'Maizy',1282,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17767,'Oust-Marest',1282,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17768,'Puiseux-le-Hauberger',1282,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17769,'Saint-Crepin-Ibouvillers',1282,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17770,'Aubiere',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17771,'Beaumont',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17772,'Chamalieres',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17773,'Clermont-Ferrand',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17774,'Cournon-d\'Auvergne',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17775,'Gerzat',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17776,'Issoire',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17777,'Riom',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17778,'Thiers',1283,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17779,'Anglet',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17780,'Bayonne',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17781,'Biarritz',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17782,'Billere',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17783,'Hendaye',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17784,'Lons',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17785,'Oloron-Sainte-Marie',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17786,'Orthez',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17787,'Pau',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17788,'Saint-Jean-de-Luz',1284,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17789,'Perpignan',1285,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17790,'Saint-Esteve',1285,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17791,'Quelmes',1286,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17792,'Brignais',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17793,'Bron',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17794,'Caluire-et-Cuire',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17795,'Decines-Charpieu',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17796,'Ecully',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17797,'Francheville',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17798,'Genas',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17799,'Genay',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17800,'Givors',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17801,'Lyon',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17802,'Meyzieu',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17803,'Mions',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17804,'Oullins',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17805,'Pierre-Benite',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17806,'Rillieux-la-Pape',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17807,'Saint-Fons',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17808,'Saint-Genis-Laval',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17809,'Saint-Priest',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17810,'Sainte-Foy-les-Lyon',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17811,'Tarare',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17812,'Tassin-la-Demi-Lune',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17813,'Vaulx-en-Velin',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17814,'Venissieux',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17815,'Villefranche-sur-Saone',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17816,'Villeurbanne',1287,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17817,'Beauvoir-en-Royans',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17818,'Belley',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17819,'Bons-en-Chablais',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17820,'Chalain-d\'Uzore',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17821,'Chassieu',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17822,'Chavanod',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17823,'Chazay-d-Azergues',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17824,'Chimilin',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17825,'Civrieux-d Azergues',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17826,'Corbas',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17827,'Courzieu',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17828,'Dardilly',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17829,'Guereins',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17830,'Izernore',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17831,'La Talaudiere',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17832,'La Tronche',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17833,'La Verpilliere',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17834,'Le Cheylard',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17835,'Le Cheylas',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17836,'Mery',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17837,'Moirans',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17838,'Montalieu-Vercieu',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17839,'Montmiral',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17840,'Peronnas',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17841,'Poncin',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17842,'Quincie-en-Beaujolais',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17843,'Saint-Quentin-sur-Isere',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17844,'Sainte Agathe la Bouteresse',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17845,'Sainte-Consorce',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17846,'Sisteron',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17847,'Trevoux',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17848,'Villard-Bonnot',1288,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17849,'Autun',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17850,'Chalon-sur-Saone',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17851,'Digoin',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17852,'Gueugnon',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17853,'Le Creusot',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17854,'Macon',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17855,'Montceau-les-Mines',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17856,'Paray-le-Monial',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17857,'Saint-Vallier',1291,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17858,'Allonnes',1292,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17859,'La Ferte-Bernard',1292,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17860,'La Fleche',1292,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17861,'Le Mans',1292,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17862,'Sable-sur-Sarthe',1292,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17863,'Aix-les-Bains',1293,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17864,'Albertville',1293,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17865,'Chambery',1293,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17866,'La Motte-Servolex',1293,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17867,'Saint-Jean-de-Maurienne',1293,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17868,'Barentin',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17869,'Bihorel',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17870,'Bois-Guillaume',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17871,'Bolbec',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17872,'Canteleu',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17873,'Caudebec-les-Elbeuf',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17874,'Darnetal',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17875,'Deville-les-Rouen',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17876,'Dieppe',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17877,'Elbeuf',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17878,'Fecamp',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17879,'Gonfreville-l\'Orcher',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17880,'Grand-Couronne',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17881,'Harfleur',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17882,'Le Grand-Quevilly',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17883,'Le Havre',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17884,'Le Petit-Quevilly',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17885,'Lillebonne',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17886,'Maromme',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17887,'Mont-Saint-Aignan',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17888,'Montivilliers',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17889,'Notre-Dame-de-Gravenchon',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17890,'Oissel',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17891,'Rouen',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17892,'Saint-Etienne-du-Rouvray',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17893,'Sotteville-les-Rouen',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17894,'Yvetot',1294,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17895,'Aubervillers',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17896,'Aulnay-sous-Bois',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17897,'Bagnolet',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17898,'Bobigny',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17899,'Bondy',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17900,'Clichy-sous-Bois',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17901,'Drancy',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17902,'Epinay-sur-Seine',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17903,'Gagny',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17904,'La Courneuve',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17905,'Le Blanc-Mesnil',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17906,'Le Bourget',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17907,'Le Pre-Saint-Gervais',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17908,'Le Raincy',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17909,'Les Lilas',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17910,'Les Pavillons-sous-Bois',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17911,'Livry-Gargan',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17912,'Montfermeil',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17913,'Montreuil',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17914,'Neuilly-Plaisance',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17915,'Neuilly-sur-Marne',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17916,'Noisy-le-Grand',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17917,'Noisy-le-Sec',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17918,'Pantin',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17919,'Pierrefitte-sur-Seine',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17920,'Romainville',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17921,'Rosny-sous-Bois',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17922,'Saint-Denis',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17923,'Saint-Ouen',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17924,'Sevran',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17925,'Stains',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17926,'Tremblay-en-France',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17927,'Villemomble',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17928,'Villepinte',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17929,'Villetaneuse',1295,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17930,'Avon',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17931,'Brie-Comte-Robert',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17932,'Champs-sur-Marne',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17933,'Chelles',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17934,'Claye-Souilly',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17935,'Combs-la-Ville',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17936,'Coulommiers',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17937,'Dammarie-les-Lys',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17938,'Fontainebleau',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17939,'Lagny-sur-Marne',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17940,'Le Mee-sur-Seine',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17941,'Lognes',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17942,'Meaux',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17943,'Melun',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17944,'Mitry-Mory',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17945,'Moissy-Cramayel',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17946,'Montereau-Fault-Yonne',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17947,'Nemours',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17948,'Noisiel',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17949,'Ozoir-la-Ferriere',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17950,'Pontault-Combault',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17951,'Provins',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17952,'Roissy-en-Brie',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17953,'Saint-Fargeau-Ponthierry',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17954,'Savigny-le-Temple',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17955,'Torcy',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17956,'Vaires-sur-Marne',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17957,'Veneux',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17958,'Villeparisis',1296,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17959,'Abbeville',1297,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17960,'Albert',1297,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17961,'Amiens',1297,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17962,'Souvans',1299,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17963,'Albi',1300,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17964,'Carmaux',1300,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17965,'Castres',1300,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17966,'Gaillac',1300,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17967,'Graulhet',1300,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17968,'Mazamet',1300,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17969,'Castelsarassin',1301,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17970,'Moissac',1301,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17971,'Montauban',1301,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17972,'Chamberet',1303,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17973,'Argenteuil',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17974,'Arnouville-les-Gonesse',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17975,'Beauchamps',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17976,'Bezons',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17977,'Cergy',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17978,'Cormeilles-en-Parisis',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17979,'Deuil-la-Barre',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17980,'Domont',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17981,'Eaubonne',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17982,'Enghien-les-Bains',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17983,'Eragny',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17984,'Ermont',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17985,'Ezanville',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17986,'Fosses',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17987,'Franconville',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17988,'Garges-les-Gonesse',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17989,'Gonesse',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17990,'Goussainville',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17991,'Herblay',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17992,'Jouy-le-Moutier',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17993,'L\'Isle-Adam',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17994,'Montigny-les-Cormeilles',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17995,'Montmagny',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17996,'Montmorency',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17997,'Osny',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17998,'Persan',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(17999,'Pontoise',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18000,'Saint-Brice-sous-Foret',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18001,'Saint-Gratien',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18002,'Saint-Leu-la-Foret',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18003,'Saint-Ouen-l\'Aumone',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18004,'Sannois',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18005,'Sarcelles',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18006,'Soisy-sous-Montmorency',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18007,'Taverny',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18008,'Vaureal',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18009,'Villiers-le-Bel',1305,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18010,'Alfortville',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18011,'Arcueil',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18012,'Boissy-Saint-Leger',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18013,'Bonneuil',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18014,'Bry-sur-Marne',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18015,'Cachan',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18016,'Champigny-sur-Marne',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18017,'Charenton-le-Pont',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18018,'Chennevieres-sur-Marne',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18019,'Chevilly-Larue',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18020,'Choisy-le-Roi',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18021,'Creteil',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18022,'Fontenay-sous-Bois',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18023,'Fresnes',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18024,'Gentilly',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18025,'Ivry-sur-Seine',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18026,'Joinville-le-Pont',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18027,'L\'Hay-les-Roses',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18028,'La Queue-en-Brie',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18029,'Le Kremlin-Bicetre',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18030,'Le Perreux-sur-Marne',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18031,'Le Plessis-Trevise',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18032,'Limeil-Brevannes',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18033,'Maisons-Alfort',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18034,'Nogent-sur-Marne',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18035,'Orly',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18036,'Ormesson-sur-Marne',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18037,'Saint-Mande',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18038,'Saint-Maur-des-Fosses',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18039,'Saint-Maurice',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18040,'Sucy-en-Brie',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18041,'Thiais',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18042,'Valenton',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18043,'Villejuif',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18044,'Villeneuve-Saint-Georges',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18045,'Villeneuve-le-Roi',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18046,'Villiers-sur-Marne',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18047,'Vincennes',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18048,'Vitry-sur-Seine',1306,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18049,'Brignoles',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18050,'Draguignan',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18051,'Frejus',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18052,'Hyeres',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18053,'La Crau',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18054,'La Garde',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18055,'La Seyne-sur-Mer',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18056,'La Valette-du-Var',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18057,'Le Pradet',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18058,'Ollioules',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18059,'Roquebrune-sur-Argens',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18060,'Saint-Maximin-la-Sainte-Baume',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18061,'Saint-Raphael',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18062,'Sainte-Maxime',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18063,'Sanary-sur-Mer',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18064,'Six-Fours-les-Plages',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18065,'Sollies-Pont',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18066,'Toulon',1307,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18067,'Apt',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18068,'Avignon',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18069,'Bollene',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18070,'Carpentras',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18071,'Cavaillon',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18072,'L\'Isle-sur-la-Sorgue',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18073,'Le Pontet',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18074,'Orange',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18075,'Pertuis',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18076,'Sorgues',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18077,'Valreas',1308,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18078,'Vellise',1309,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18079,'Challans',1310,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18080,'Chateau-d\'Olonne',1310,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18081,'Fontenay-le-Comte',1310,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18082,'La Chasnis',1310,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18083,'La Roche-sur-Yon',1310,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18084,'Les Herbiers',1310,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18085,'Les Sables-d\'Olonne',1310,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18086,'Longeville-sur-Mer',1310,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18087,'Chatellerault',1311,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18088,'Poitiers',1311,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18089,'Epinal',1312,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18090,'Gerardmer',1312,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18091,'Remiremont',1312,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18092,'Saint-Die',1312,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18093,'Auxerre',1313,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18094,'Avallon',1313,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18095,'Joigny',1313,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18096,'Sens',1313,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18097,'Acheres',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18098,'Andresy',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18099,'Aubergenville',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18100,'Bois-d\'Arcy',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18101,'Carrieres-sous-Poissy',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18102,'Carrieres-sur-Seine',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18103,'Chanteloup-les-Vignes',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18104,'Chatou',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18105,'Conflans-Sainte-Honorine',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18106,'Croissy-sur-Seine',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18107,'Elancourt',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18108,'Fontenay-le-Fleury',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18109,'Guyancourt',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18110,'Houilles',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18111,'La Celle-Saint-Cloud',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18112,'Le Chesnay',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18113,'Le Pecq',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18114,'Le Vesinet',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18115,'Les Clayes-sous-Bois',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18116,'Les Mureaux',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18117,'Limay',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18118,'Maisons-Laffitte',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18119,'Mantes-la-Jolie',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18120,'Mantes-la-Ville',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18121,'Marly-le-Roi',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18122,'Maurepas',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18123,'Montesson',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18124,'Montigny-le-Bretonneux',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18125,'Plaisir',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18126,'Poissy',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18127,'Rambouillet',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18128,'Saint-Cyr-l\'Ecole',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18129,'Saint-Germain-en-Laye',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18130,'Sartrouville',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18131,'Trappes',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18132,'Triel-sur-Seine',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18133,'Velizy-Villacoublay',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18134,'Verneuil-sur-Seine',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18135,'Versailles',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18136,'Viroflay',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18137,'Voisins-le-Bretonneux',1314,75,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18138,'Camopi',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18139,'Cayenne',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18140,'Iracoubo',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18141,'Kourou',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18142,'Macouria',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18143,'Matoury',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18144,'Remire-Montjoly',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18145,'Roura',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18146,'Saint-Georges',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18147,'Sinnamary',1315,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18148,'Apatou',1316,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18149,'Grand-Santi',1316,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18150,'Mana',1316,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18151,'Maripasoula',1316,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18152,'Saint-Laurent-du-Maroni',1316,76,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18153,'Atuona',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18154,'Fatu-Hiva',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18155,'Hakahao',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18156,'Hakamaii',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18157,'Hatiheu',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18158,'Tahuata',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18159,'Taiohae',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18160,'Taipivai',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18161,'Ua-Huka',1319,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18162,'Ahe',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18163,'Amanu',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18164,'Anaa',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18165,'Apataki',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18166,'Arutua',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18167,'Faaite',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18168,'Fakahima',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18169,'Fakarava',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18170,'Fangatau',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18171,'Hao',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18172,'Hereheretue',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18173,'Hikueru',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18174,'Katiu',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18175,'Kauehi',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18176,'Kaukura',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18177,'Makatea',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18178,'Makemo',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18179,'Manihi',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18180,'Marokau',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18181,'Napuka',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18182,'Niau',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18183,'Nukutavake',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18184,'Puamau',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18185,'Pukapuka',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18186,'Pukarua',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18187,'Rangiroa',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18188,'Raroia',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18189,'Reao',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18190,'Rikitea',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18191,'Taenga',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18192,'Takapoto',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18193,'Takaroa',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18194,'Tatakoto',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18195,'Tepoto',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18196,'Tikehau',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18197,'Tureia',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18198,'Vahitahi',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18199,'Vairaatea',1320,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18200,'Amaru',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18201,'Anapoto',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18202,'Anatonu',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18203,'Auti',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18204,'Avera',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18205,'Mahu',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18206,'Mataura',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18207,'Moerai',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18208,'Mutuaura',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18209,'Rairua',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18210,'Rapa',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18211,'Taahuaia',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18212,'Vaiuru',1321,77,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18213,'Martin-de-Vivies',1322,78,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18214,'Port-aux-Francais',1324,78,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18215,'Cocobeach',1325,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18216,'Kango',1325,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18217,'Libreville',1325,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18218,'Nkan',1325,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18219,'Ntoum',1325,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18220,'Lekoni',1326,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18221,'Masuku',1326,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18222,'Moanda',1326,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18223,'Mounana',1326,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18224,'Okandja',1326,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18225,'Lambarene',1327,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18226,'Ndjole',1327,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18227,'Fougamou',1328,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18228,'Mbigou',1328,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18229,'Mimongo',1328,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18230,'Mouila',1328,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18231,'Ndende',1328,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18232,'Mayumba',1329,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18233,'Tchibanga',1329,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18234,'Tsogni',1329,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18235,'Booue',1330,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18236,'Makokou',1330,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18237,'Mekambo',1330,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18238,'Koulamoutou',1331,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18239,'Lastoursville',1331,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18240,'Gamba',1332,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18241,'Omboue',1332,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18242,'Port-Gentil',1332,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18243,'Sette Cama',1332,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18244,'Bitam',1333,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18245,'Lalara',1333,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18246,'Medouneu',1333,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18247,'Minvoul',1333,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18248,'Mitzic',1333,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18249,'Oyem',1333,79,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18250,'Banjul',1334,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18251,'Basse',1335,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18252,'Gambissara',1335,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18253,'Sabi',1335,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18254,'Salikeni',1335,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18255,'Brikama',1336,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18256,'Brufut',1336,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18257,'Gunjur',1336,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18258,'Sukuta',1336,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18259,'Bansang',1337,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18260,'Janjanbureh',1337,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18261,'Bakau',1338,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18262,'Serekunda',1338,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18263,'Barra',1339,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18264,'Essau',1339,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18265,'Farafenni',1339,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18266,'Kerewan',1339,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18267,'Lamin',1339,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18268,'Kuntaur',1340,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18269,'Mansakonko',1341,80,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18270,'Ahali Atoni',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18271,'Bihvinta',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18272,'Gagra',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18273,'Gali',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18274,'Gudauta',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18275,'Gulripshi',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18276,'Ochamchira',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18277,'Suhumi',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18278,'Tkvarcheli',1342,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18279,'Batumi',1343,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18280,'Dioknisi',1343,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18281,'Kobuleti',1343,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18282,'Mahindzhauri',1343,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18283,'Lanchhuti',1344,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18284,'Ozurgeti',1344,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18285,'Bagdadi',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18286,'Chaltubo',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18287,'Chiatura',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18288,'Honi',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18289,'Kutaisi',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18290,'Sachhere',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18291,'Samtredia',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18292,'Terzhola',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18293,'Tkibuli',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18294,'Vani',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18295,'Zestaponi',1345,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18296,'Ahmeta',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18297,'Cnori',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18298,'Dedoplisckaro',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18299,'Gurdzhaani',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18300,'Kvareli',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18301,'Lagodehi',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18302,'Sagaredzho',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18303,'Signahi',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18304,'Telavi',1346,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18305,'Dusheti',1348,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18306,'Mcheta',1348,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18307,'Ambrolauri',1349,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18308,'Cageri',1349,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18309,'Oni',1349,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18310,'Ahalcihe',1351,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18311,'Ahalkalaki',1351,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18312,'Borzhomi',1351,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18313,'Ninocminda',1351,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18314,'Vale',1351,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18315,'Tbilisi',1353,81,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18316,'Aalen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18317,'Achern',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18318,'Aichtal',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18319,'Albstadt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18320,'Aldingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18321,'Allmersbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18322,'Alpirsbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18323,'Altensteig',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18324,'Altlussheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18325,'Ammerbuch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18326,'Appenweier',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18327,'Asperg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18328,'Backnang',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18329,'Bad Durrheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18330,'Bad Friedrichshall',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18331,'Bad Krozingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18332,'Bad Liebenzell',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18333,'Bad Mergentheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18334,'Bad Rappenau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18335,'Bad Sackingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18336,'Bad Schonborn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18337,'Bad Urach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18338,'Bad Waldsee',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18339,'Bad Wurzach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18340,'Baden-Baden',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18341,'Bahlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18342,'Baiersbronn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18343,'Balgheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18344,'Balingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18345,'Ballrechten-Dottingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18346,'Besigheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18347,'Biberach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18348,'Bietigheim-Bissingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18349,'Binzen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18350,'Birkenfeld',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18351,'Bisingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18352,'Bitz',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18353,'Blaubeuren',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18354,'Blaustein',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18355,'Blumberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18356,'Boblingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18357,'Bodelshausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18358,'Bonndorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18359,'Bonnigheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18360,'Bopfingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18361,'Bottingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18362,'Brackenheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18363,'Breisach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18364,'Bretten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18365,'Bretzfeld',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18366,'Bruchsal',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18367,'Bruhl',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18368,'Buchen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18369,'Buchenbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18370,'Buhl',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18371,'Burgstetten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18372,'Burladingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18373,'Calw',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18374,'Crailsheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18375,'Denkendorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18376,'Denzlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18377,'Dettingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18378,'Dietenheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18379,'Ditzingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18380,'Donaueschingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18381,'Donzdorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18382,'Dornhan',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18383,'Dornstadt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18384,'Dornstetten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18385,'Dossenheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18386,'Durbheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18387,'Durmersheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18388,'Eberbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18389,'Ebersbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18390,'Edingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18391,'Edingen-Neckarhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18392,'Eggenstein-Leopoldshafen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18393,'Ehingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18394,'Eislingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18395,'Ellhofen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18396,'Ellwangen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18397,'Emmendingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18398,'Emmingen-Liptingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18399,'Engen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18400,'Eningen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18401,'Eppelheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18402,'Eppingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18403,'Erbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18404,'Eriskirch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18405,'Eschach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18406,'Esslingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18407,'Ettenheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18408,'Ettlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18409,'Fellbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18410,'Filderstadt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18411,'Freiberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18412,'Freiburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18413,'Freudenstadt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18414,'Frickenhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18415,'Fridingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18416,'Friedrichshafen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18417,'Friesenheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18418,'Frittlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18419,'Furtwangen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18420,'Gaggenau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18421,'Gaildorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18422,'Gartringen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18423,'Gaufelden',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18424,'Geislingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18425,'Gengenbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18426,'Gerlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18427,'Gernsbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18428,'Gerstetten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18429,'Giengen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18430,'Goppingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18431,'Gottmadingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18432,'Graben-Neudorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18433,'Grafenberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18434,'Grafenhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18435,'Grenzach-Wyhlen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18436,'GroBbettlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18437,'Grunkraut',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18438,'Gschwend',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18439,'Guglingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18440,'Gundelfingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18441,'Gutach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18442,'Haigerloch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18443,'Haiterbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18444,'Harmersabch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18445,'Hausach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18446,'Hechingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18447,'Heddesheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18448,'Heidelberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18449,'Heidenheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18450,'Heilbronn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18451,'Hemsbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18452,'Herbrechtingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18453,'Herrenberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18454,'Heubach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18455,'Hirschberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18456,'Hockenheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18457,'Holzgerlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18458,'Horb',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18459,'Hufingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18460,'Huttlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18461,'Isny',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18462,'Ispringen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18463,'Jungingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18464,'Karlsbad',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18465,'Karlsruhe',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18466,'Kehl',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18467,'Kernen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18468,'Ketsch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18469,'Kieselbronn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18470,'Kirchberg an der Jagst',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18471,'Kirchheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18472,'Kirchzarten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18473,'Kisslegg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18474,'Klettgau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18475,'Kongen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18476,'Konigsbach-Stein',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18477,'Konigsbronn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18478,'Konstanz',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18479,'Korb',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18480,'Korntal-Munchingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18481,'Kornwestheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18482,'Kraichtal',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18483,'Kressbronn an Bodensee',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18484,'Kronau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18485,'Kuessaberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18486,'Kunzelsau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18487,'Ladenburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18488,'Lahr',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18489,'Laichingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18490,'Langenau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18491,'Lauda-Konigshofen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18492,'Lauffen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18493,'Laupheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18494,'Leimen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18495,'Leinfelden-Echterdingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18496,'Leingarten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18497,'Lenningen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18498,'Lenzkirch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18499,'Leonberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18500,'Leutenbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18501,'Leutkirch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18502,'Lichtenstein',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18503,'Linkenheim-Hochstetten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18504,'Lorch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18505,'Lorrach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18506,'Ludwigsburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18507,'Malsch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18508,'Mannheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18509,'Marbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18510,'Markdorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18511,'Markgroningen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18512,'Maulburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18513,'MeBstetten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18514,'Meckenbeuren',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18515,'Meckesheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18516,'Meersburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18517,'Mengen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18518,'Metzingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18519,'Mockmuhl',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18520,'Moglingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18521,'Monsheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18522,'Mosbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18523,'Mossingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18524,'Muhlacker',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18525,'Mullheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18526,'Munsingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18527,'Murrhardt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18528,'Nagold',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18529,'Neckargemund',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18530,'Neckarsulm',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18531,'Neresheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18532,'Neuenburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18533,'Neuhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18534,'Niederstetten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18535,'Niefern-Oschelbronn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18536,'NuBloch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18537,'Nurtingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18538,'Oberhausen-Rheinhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18539,'Oberkirch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18540,'Oberndorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18541,'Oberstenfeld',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18542,'Obersulm',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18543,'Ochsenhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18544,'Offenburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18545,'Ofterdingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18546,'Oftersheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18547,'Oggelshausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18548,'Ohringen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18549,'Olbronn-Durrn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18550,'Oppenweiler',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18551,'Ostfildern',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18552,'Ostringen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18553,'Otisheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18554,'Pfalzgrafenweiler',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18555,'Pfinztal',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18556,'Pforzheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18557,'Pfullendorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18558,'Pfullingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18559,'Philippsburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18560,'Plankstadt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18561,'Pleidelsheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18562,'Pliezhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18563,'Plochingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18564,'Pluderhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18565,'Radolfzell',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18566,'Rastatt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18567,'Ravensburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18568,'Reilingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18569,'Remchingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18570,'Remseck',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18571,'Remshalden',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18572,'Renchen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18573,'Renningen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18574,'Reutlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18575,'Rheinau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18576,'Rheinfelden',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18577,'Rheinmunster',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18578,'Rheinstetten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18579,'Riederich',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18580,'Riedlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18581,'Rielasingen-Worblingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18582,'Rosenfeld',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18583,'Rottenburg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18584,'Rottweil',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18585,'Rudersberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18586,'Rutesheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18587,'Sachsenheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18588,'Salem',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18589,'Sandhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18590,'Sankt Georgen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18591,'Sankt Leon-Rot',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18592,'Saulgau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18593,'Scheer',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18594,'Schlierbach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18595,'Schonaich',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18596,'Schopfheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18597,'Schorndorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18598,'Schramberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18599,'Schriesheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18600,'Schwabisch Gmund',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18601,'Schwabisch Hall',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18602,'Schwaigern',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18603,'Schwetzingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18604,'Schwieberdingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18605,'Seitingen-Oberflacht',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18606,'Sexau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18607,'Sigmaringen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18608,'Sindelfingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18609,'Singen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18610,'Sinsheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18611,'Sinzheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18612,'Sonnenbuhl',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18613,'Sontheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18614,'Spaichingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18615,'Stegen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18616,'Steinen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18617,'Steinheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18618,'Steinmauern',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18619,'Stockach',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18620,'Straubenhardt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18621,'Stutensee',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18622,'Stuttgart',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18623,'SuBen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18624,'Sulz',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18625,'Sulzfeld',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18626,'Tamm',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18627,'Tauberbischofsheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18628,'Teningen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18629,'Tettnang',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18630,'Titisee-Neustadt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18631,'Trossingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18632,'Tubingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18633,'Tuningen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18634,'Tuttlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18635,'Uberlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18636,'Ubstadt-Weiher',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18637,'Uhingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18638,'Ulm',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18639,'Umkirch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18640,'Vaihingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18641,'Villingen-Schwenningen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18642,'Villingendorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18643,'Waghausel',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18644,'Waiblingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18645,'Waldbronn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18646,'Waldkirch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18647,'Waldlaubersheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18648,'Waldshut-Tiengen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18649,'Walldorf',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18650,'Walldurn',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18651,'Walzbachtal',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18652,'Wangen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18653,'Wehr',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18654,'Weikersheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18655,'Weil',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18656,'Weil am Rhein',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18657,'Weil der Stadt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18658,'Weil im Schonbuch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18659,'Weilheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18660,'Weingarten',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18661,'Weinheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18662,'Weinsberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18663,'Weinstadt',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18664,'Wellendingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18665,'Welzheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18666,'Wendlingen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18667,'Wernau',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18668,'Wertheim',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18669,'Wiesloch',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18670,'Wildbad',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18671,'Wildberg',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18672,'Winnenden',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18673,'Wolpertshausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18674,'Zuzenhausen',1355,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18675,'Ahorn',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18676,'Allershausen',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18677,'Attenhofen',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18678,'Bad Birnbach',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18679,'Bad Endorf',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18680,'Bad Gronenbach',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18681,'Barbing',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18682,'Benediktbeuern',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18683,'Breitenberg',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18684,'Bruckberg',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18685,'Brunnthal',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18686,'Burgheim',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18687,'Chiemsee',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18688,'Emersacker',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18689,'Eresing',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18690,'Fahrenzhausen',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18691,'Faulbach',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18692,'Finning',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18693,'Forstinning',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18694,'Georgensgmund',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18695,'Haldenwang',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18696,'Heideck',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18697,'Heimenkirch',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18698,'Hergensweiler',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18699,'Hirschau',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18700,'Iffeldorf',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18701,'Karlstein',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18702,'Kleinheubach',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18703,'Kleinwallstadt',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18704,'Kotz',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18705,'Krailling',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18706,'Langenbach',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18707,'Laudenbach',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18708,'Leutershausen',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18709,'Mammendorf',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18710,'Mombris',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18711,'Munnerstadt',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18712,'Neu-Ulm',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18713,'Niederlauer',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18714,'Obernburg',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18715,'Oberpfaffenhofen',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18716,'Ostallgau',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18717,'Prittriching',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18718,'Prutting',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18719,'Pullach',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18720,'Putzbrunn',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18721,'Randersacker',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18722,'Rednitzhembach',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18723,'Ronsberg',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18724,'Ruckersdorf',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18725,'Schaufling',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18726,'Schonberg',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18727,'Seefeld',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18728,'Sengenthal',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18729,'Sondheim v.d.Rhon',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18730,'Steinwiesen',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18731,'Stockheim',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18732,'Tagmersheim',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18733,'Uettingen',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18734,'Unterfohring',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18735,'Weibensberg',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18736,'Wiesthal',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18737,'Wildflecken',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18738,'Wolfertschwenden',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18739,'Zorneding',1356,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18740,'Abensberg',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18741,'Aichach',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18742,'Ainring',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18743,'Altdorf',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18744,'Altotting',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18745,'Altusried',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18746,'Alzenau',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18747,'Amberg',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18748,'Amerang',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18749,'Ansbach',1357,82,0.00,0,'2021-04-06 01:13:45','2021-04-06 01:13:45',NULL),(18750,'Aschaffenburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18751,'Augsburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18752,'Bad Aibling',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18753,'Bad Kissingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18754,'Bad Neustadt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18755,'Bad Reichenhall',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18756,'Bad Tolz',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18757,'Bad Windsheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18758,'Bad Worishofen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18759,'Bamberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18760,'Bayreuth',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18761,'Bobingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18762,'Bogen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18763,'Bruckmuhl',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18764,'Buchloe',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18765,'Burghausen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18766,'Burgkirchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18767,'Burglengenfeld',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18768,'Burgthann',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18769,'Buttenheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18770,'Cadolzburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18771,'Castell',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18772,'Cham',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18773,'Coburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18774,'Dachau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18775,'Deggendorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18776,'DieBen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18777,'Diedorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18778,'Dietmannsried',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18779,'Dietramszell',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18780,'Dillingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18781,'Dingolfing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18782,'Dinkelsbuhl',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18783,'Dombuhl',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18784,'Donauworth',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18785,'Dorfen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18786,'Ebersberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18787,'Eching',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18788,'Eckental',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18789,'Eggenfelden',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18790,'Eichenau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18791,'Eichstatt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18792,'Elchingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18793,'Erding',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18794,'Ergolding',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18795,'Erlangen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18796,'Erlenbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18797,'Essenbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18798,'Feldafing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18799,'Feldkirchen-Westerham',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18800,'Feucht',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18801,'Feuchtwangen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18802,'Forchheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18803,'Freilassing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18804,'Freising',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18805,'Fridolfing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18806,'Friedberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18807,'Furstenfeldbruck',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18808,'Furth',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18809,'Furth im Wald',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18810,'Fussen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18811,'Gachenbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18812,'Gaimersheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18813,'Garching',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18814,'Garmisch-Partenkirchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18815,'Gauting',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18816,'Gemunden',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18817,'Geretsried',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18818,'Germering',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18819,'Gersthofen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18820,'Gilching',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18821,'Goldbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18822,'Grafelfing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18823,'Grafenau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18824,'Grafing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18825,'GroBostheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18826,'Grobenstadt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18827,'Grobenzell',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18828,'Grunwald',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18829,'Gunzburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18830,'Gunzenhausen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18831,'HaBfurt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18832,'Haar',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18833,'Hammelburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18834,'Hasloch',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18835,'Hauzenberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18836,'Helmbrechts',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18837,'Henfenfeld',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18838,'Hersbruck',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18839,'Herzogenaurach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18840,'Hilpoltstein',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18841,'Hirschaid',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18842,'Hochstadt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18843,'Hof',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18844,'Holzkirchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18845,'Hosbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18846,'Illertissen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18847,'Immenstadt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18848,'Ingolstadt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18849,'Inning',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18850,'Ismaning',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18851,'Karlsfeld',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18852,'Karlstadt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18853,'Kaufbeuren',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18854,'Kelheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18855,'Kempten',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18856,'Kiefersfelden',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18857,'Kirchheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18858,'Kissing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18859,'Kitzingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18860,'Kleinostheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18861,'Klingenberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18862,'Kolbermoor',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18863,'Konigsbrunn',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18864,'Kreuzwertheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18865,'Kronach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18866,'Krumbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18867,'Kulmbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18868,'Kummersbruck',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18869,'Landau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18870,'Landsberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18871,'Landshut',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18872,'Langenzenn',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18873,'Lappersdorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18874,'Lauf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18875,'Lauingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18876,'Leinburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18877,'Lenggries',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18878,'Lichtenfels',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18879,'Lindach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18880,'Lindau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18881,'Lindenberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18882,'Lohr',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18883,'Mainburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18884,'Maisach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18885,'Manching',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18886,'Markt Schwaben',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18887,'Marktheidenfeld',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18888,'Marktoberdorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18889,'Marktredwitz',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18890,'Maxhutte-Haidhof',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18891,'Meitingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18892,'Memmingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18893,'Mering',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18894,'Miesbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18895,'Miltenberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18896,'Mindelheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18897,'Moosburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18898,'Muhldorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18899,'Munchberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18900,'Munchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18901,'Munningen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18902,'Murnau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18903,'Naila',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18904,'Neubiberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18905,'Neuburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18906,'Neufahrn',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18907,'Neumarkt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18908,'Neuried',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18909,'NeusaB',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18910,'Neustadt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18911,'Neutraubling',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18912,'Nordlingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18913,'Nuremberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18914,'Nurnberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18915,'Oberasbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18916,'Oberhaching',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18917,'OberschleiBheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18918,'Oberstdorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18919,'Ochsenfurt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18920,'Olching',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18921,'Osterhofen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18922,'Ostheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18923,'Ottobrunn',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18924,'Parsberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18925,'Passau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18926,'Pegnitz',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18927,'PeiBenberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18928,'Peiting',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18929,'Pentling',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18930,'Penzberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18931,'Pfaffenhofen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18932,'Pfarrkirchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18933,'Planegg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18934,'Plattling',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18935,'Pocking',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18936,'Poing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18937,'Polling',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18938,'Pommelsbrunn',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18939,'Prien',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18940,'Puchheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18941,'Rannersdorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18942,'Raubling',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18943,'Regen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18944,'Regensburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18945,'Regenstauf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18946,'Rehau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18947,'Rodental',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18948,'Roding',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18949,'Rosenheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18950,'Roth',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18951,'Rothenbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18952,'Rothenburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18953,'Ruhstorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18954,'Schnelldorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18955,'Schongau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18956,'Schrobenhausen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18957,'Schwabach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18958,'Schwabmunchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18959,'Schwandorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18960,'Schwarzenbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18961,'Schweinfurt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18962,'Selb',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18963,'Selbitz',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18964,'Senden',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18965,'Simbach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18966,'Sonthofen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18967,'Spalt',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18968,'Stadtbergen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18969,'Staffelstein',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18970,'Starnberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18971,'Stein',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18972,'Stephanskirchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18973,'Straubing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18974,'Sulzbach-Rosenberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18975,'Taufkirchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18976,'Thansau',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18977,'Tirschenreuth',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18978,'Toging',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18979,'Traunreut',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18980,'Traunstein',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18981,'Treuchtlingen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18982,'Trostberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18983,'Tutzing',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18984,'Unterbergen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18985,'Unterhaching',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18986,'UnterschleiBheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18987,'Valley',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18988,'Vaterstetten',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18989,'Veitshochheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18990,'Viechtach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18991,'Vilgertshofen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18992,'Vilsbiburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18993,'Vilshofen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18994,'Vohringen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18995,'Volkach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18996,'Waldkirchen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18997,'Waldkraiburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18998,'Walkertshofen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(18999,'Wasserburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19000,'WeiBenburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19001,'WeiBenhorn',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19002,'Weiden',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19003,'Weidenberg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19004,'Weilheim',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19005,'Wendelstein',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19006,'Werneck',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19007,'Wessling',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19008,'Wolfratshausen',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19009,'Wolnzach',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19010,'Wunsiedel',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19011,'Wurzburg',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19012,'Zirndorf',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19013,'Zwiesel',1357,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19014,'Berlin',1359,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19015,'Panketal',1359,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19016,'Steinfeld',1359,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19017,'Angermunde',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19018,'Bad Freienwalde',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19019,'Bad Liebenwerda',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19020,'Barnim',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19021,'Beeskow',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19022,'Bernau',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19023,'Blankenfelde',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19024,'Brandenburg',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19025,'Brieselang',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19026,'Cottbus',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19027,'Dahlewitz',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19028,'Dahme',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19029,'Eberswalde',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19030,'Eisenhuttenstadt',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19031,'Elsterwerda',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19032,'Erkner',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19033,'Falkensee',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19034,'Finsterwalde',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19035,'Forst',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19036,'Frankfurt',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19037,'Fredersdorf-Vogelsdorf',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19038,'Furstenwalde',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19039,'Glienicke',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19040,'Gransee',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19041,'GroBraschen',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19042,'Guben',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19043,'Heidesee',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19044,'Hennigsdorf',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19045,'Herzberg',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19046,'Hohen Neuendorf',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19047,'Jacobsdorf',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19048,'Juterbog',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19049,'Kleinmachnow',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19050,'Kolkwitz',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19051,'Konigs Wusterhausen',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19052,'Kyritz',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19053,'Lauchhammer',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19054,'Lubben',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19055,'Lubbenau',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19056,'Luckenwalde',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19057,'Ludwigsfelde',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19058,'Nauen',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19059,'Neuenhagen',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19060,'Neuruppin',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19061,'Oranienburg',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19062,'Perleberg',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19063,'Petershagen-Eggersdorf',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19064,'Potsdam',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19065,'Premnitz',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19066,'Prenzlau',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19067,'Pritzwalk',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19068,'Rathenow',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19069,'Rudersdorf',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19070,'Schonefeld',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19071,'Schoneiche',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19072,'Schwedt',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19073,'Schwielowsee',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19074,'Senftenberg',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19075,'Spremberg',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19076,'Strausberg',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19077,'Teltow',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19078,'Templin',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19079,'Velten',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19080,'Werder',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19081,'Wildau',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19082,'Wittenberge',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19083,'Wittstock',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19084,'Zehdenick',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19085,'Zepernick',1360,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19086,'Bremen',1361,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19087,'Bremerhaven',1361,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19088,'Berne',1364,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19089,'Hamburg',1364,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19090,'Diekholzen',1365,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19091,'Heroldstatt',1366,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19092,'ABlar',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19093,'Alsbach-H%�^%�%�,%�hnlein',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19094,'Alsfeld',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19095,'Altenstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19096,'Angelburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19097,'Arolsen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19098,'Asslar',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19099,'Babenhausen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19100,'Bad Camberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19101,'Bad Hersfeld',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19102,'Bad Homburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19103,'Bad Nauheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19104,'Bad Orb',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19105,'Bad Schwalbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19106,'Bad Soden',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19107,'Bad Soden-Salmunster',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19108,'Bad Sooden-Allendorf',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19109,'Bad Vilbel',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19110,'Bad Wildungen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19111,'Baunatal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19112,'Bebra',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19113,'Beerfelden',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19114,'Bensheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19115,'Berkatal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19116,'Biblis',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19117,'Bickenbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19118,'Biebertal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19119,'Biedenkopf',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19120,'Birkenau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19121,'Bischofsheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19122,'Borken',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19123,'Braunfels',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19124,'Breidenbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19125,'Bruchkobel',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19126,'Budingen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19127,'Burstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19128,'Buseck',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19129,'Buttelborn',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19130,'Butzbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19131,'Darmstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19132,'Dautphetal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19133,'Dieburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19134,'Dietzenbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19135,'Dillenburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19136,'Dreieich',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19137,'Egelsbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19138,'Eichenzell',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19139,'Eltville',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19140,'Eppstein',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19141,'Erbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19142,'Erlensee',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19143,'Erzhausen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19144,'Eschborn',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19145,'Eschenburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19146,'Eschwege',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19147,'Felsberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19148,'Fernwald',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19149,'Florsheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19150,'Frankenberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19151,'Frankfurt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19152,'Freigericht',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19153,'Friedberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19154,'Friedrichsdorf',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19155,'Fritzlar',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19156,'Fulda',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19157,'Fuldabruck',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19158,'Fuldatal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19159,'Geisenheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19160,'Gelnhausen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19161,'Gernsheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19162,'GieBen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19163,'Giessen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19164,'Ginsheim-Gustavsburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19165,'Gladenbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19166,'Griesheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19167,'GroB-Gerau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19168,'GroB-Umstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19169,'GroB-Zimmern',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19170,'Grossenluder',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19171,'Gruenberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19172,'Grunberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19173,'Grundau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19174,'Hadamar',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19175,'Haiger',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19176,'Hainburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19177,'Hanau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19178,'Hattersheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19179,'Heppenheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19180,'Herborn',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19181,'Hessisch Lichtenau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19182,'Heuchelheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19183,'Heusenstamm',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19184,'Hochheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19185,'Hochst',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19186,'Hofbieber',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19187,'Hofgeismar',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19188,'Hofheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19189,'Homberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19190,'Hunfeld',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19191,'Hunfelden',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19192,'Hungen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19193,'Huttenberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19194,'Idstein',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19195,'Karben',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19196,'Kassel',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19197,'Kaufungen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19198,'Kelkheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19199,'Kelsterbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19200,'Kirchhain',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19201,'Konigstein',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19202,'Korbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19203,'Kriftel',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19204,'Kronberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19205,'Kunzell',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19206,'Lahnau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19207,'Lahntal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19208,'Lampertheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19209,'Langen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19210,'Langenselbold',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19211,'Langgons',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19212,'Laubach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19213,'Lauterbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19214,'Lich',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19215,'Limburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19216,'Linden',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19217,'Lindenholzhausen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19218,'Linsengericht',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19219,'Lohfelden',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19220,'Lollar',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19221,'Lorsch',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19222,'Maintal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19223,'Marburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19224,'Melsungen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19225,'Mengerskirchen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19226,'Michelstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19227,'Morfelden-Walldorf',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19228,'Morlenbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19229,'Mucke',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19230,'Muhlheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19231,'Muhltal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19232,'Munster',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19233,'Nauheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19234,'Neu-Anspach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19235,'Neu-Isenburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19236,'Neuhof',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19237,'Neustadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19238,'Nidda',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19239,'Niddatal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19240,'Nidderau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19241,'Niederdorfelden',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19242,'Niedernhausen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19243,'Niestetal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19244,'Ober-Ramstedt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19245,'Obertshausen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19246,'Oberursel',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19247,'Oestrich-Winkel',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19248,'Offenbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19249,'Petersberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19250,'Pfungstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19251,'Pohlheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19252,'Raunheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19253,'Reichelsheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19254,'Reinheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19255,'Reiskirchen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19256,'Riedstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19257,'Rimbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19258,'RoBdorf',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19259,'Rodenbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19260,'Rodermark',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19261,'Rodgau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19262,'Rosbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19263,'Rotenburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19264,'Rudesheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19265,'Runkel',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19266,'Russelsheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19267,'Schauenburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19268,'Schlangenbad',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19269,'Schlitz',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19270,'Schluchtern',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19271,'Schoneck',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19272,'Schotten',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19273,'Schwalbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19274,'Schwalbach am Taunus',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19275,'Schwalmstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19276,'Seeheim-Jugenheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19277,'Seligenstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19278,'Selters',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19279,'Sinntal',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19280,'Solms',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19281,'Sontra',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19282,'Spangenberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19283,'Stadtallendorf',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19284,'Steinau',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19285,'Steinbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19286,'Taunusstein',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19287,'Trebur',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19288,'Ulrichstein',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19289,'Usingen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19290,'Vellmar',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19291,'Viernheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19292,'Volkmarsen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19293,'Wachtersbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19294,'Wald-Michelbach',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19295,'Waldbrunn',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19296,'Waldems',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19297,'Wehrheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19298,'Weilburg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19299,'Weilmunster',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19300,'Weiterstadt',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19301,'Wettenberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19302,'Wetter',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19303,'Wetzlar',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19304,'Wiesbaden',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19305,'Witzenhausen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19306,'Wolfersheim',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19307,'Wolfhagen',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19308,'Zwingenberg',1367,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19309,'Kortenberg',1368,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19310,'Laasdorf',1369,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19311,'Anklam',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19312,'Bad Doberan',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19313,'Barth',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19314,'Bergen',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19315,'Boizenburg',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19316,'Butzow',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19317,'Demmin',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19318,'Gagelow',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19319,'Gallin',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19320,'Grabow',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19321,'Greifswald',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19322,'Grevesmuhlen',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19323,'Grimmen',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19324,'Gustrow',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19325,'Hagenow',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19326,'Konigsee',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19327,'Lubtheen',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19328,'Ludersdorf',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19329,'Ludwigslust',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19330,'Malchin',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19331,'Neubrandenburg',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19332,'Neustrelitz',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19333,'Parchim',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19334,'Pasewalk',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19335,'Ribnitz-Damgarten',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19336,'Rostock',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19337,'SaBnitz',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19338,'Schweina',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19339,'Schwerin',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19340,'Selmsdorf',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19341,'Stralsund',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19342,'Teterow',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19343,'Torgelow',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19344,'Ueckermunde',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19345,'Waren',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19346,'Wismar',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19347,'Wolgast',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19348,'Zarrentin',1381,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19349,'Mulfingen',1382,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19350,'Grafing bei Munchen',1383,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19351,'Neubeuern',1384,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19352,'Achim',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19353,'Adendorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19354,'Aerzen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19355,'Alfeld',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19356,'Ankum',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19357,'Apen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19358,'Aurich',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19359,'Bad Bentheim',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19360,'Bad Bevensen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19361,'Bad Essen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19362,'Bad Gandersheim',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19363,'Bad Harzburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19364,'Bad Iburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19365,'Bad Laer',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19366,'Bad Lauterberg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19367,'Bad Munder',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19368,'Bad Nenndorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19369,'Bad Pyrmont',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19370,'Bad Sachsa',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19371,'Bad Salzdetfurth',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19372,'Bad Zwischenahn',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19373,'BarBel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19374,'Barsinghausen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19375,'Bassum',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19376,'Beesten',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19377,'Belm',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19378,'Bergen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19379,'Bissendorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19380,'Bleckede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19381,'Bockenem',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19382,'Bohmte',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19383,'Bovenden',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19384,'Brake',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19385,'Bramsche',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19386,'Braunschweig',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19387,'Bremervorde',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19388,'Brockel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19389,'Brunswick',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19390,'Buchholz',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19391,'Buckeburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19392,'Burgdorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19393,'Burgwedel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19394,'Buxtehude',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19395,'Celle',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19396,'Clausthal-Zellerfeld',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19397,'Clenze',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19398,'Cloppenburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19399,'Cremlingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19400,'Cuxhaven',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19401,'Dahlenburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19402,'Damme',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19403,'Dannenberg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19404,'Dassel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19405,'Deinste',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19406,'Delmenhorst',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19407,'Diepholz',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19408,'Dinklage',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19409,'Dorverden',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19410,'Dransfeld',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19411,'Drochtersen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19412,'Duderstadt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19413,'Edemissen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19414,'Edewecht',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19415,'Einbeck',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19416,'Elsfleth',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19417,'Elze',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19418,'Emden',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19419,'Emlichheim',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19420,'Emmerthal',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19421,'Emsburen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19422,'Eppendorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19423,'Fallingbostel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19424,'Frellstedt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19425,'Friedeburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19426,'Friedland',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19427,'Friesoythe',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19428,'Ganderkesee',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19429,'Garbsen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19430,'Garrel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19431,'Geeste',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19432,'Gehrden',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19433,'Georgsmarienhutte',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19434,'Gifhorn',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19435,'Gleichen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19436,'Goslar',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19437,'Gottingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19438,'GroBefehn',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19439,'GroBenkneten',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19440,'Hagen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19441,'Hambergen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19442,'Hameln',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19443,'Hannover',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19444,'Hannoversch Munden',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19445,'Haren',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19446,'Harsum',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19447,'Hasbergen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19448,'Haselunne',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19449,'Hatten',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19450,'Hauslingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19451,'Helmstedt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19452,'Hemmingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19453,'Herzberg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19454,'Hessisch Oldendorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19455,'Hildesheim',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19456,'Hilter',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19457,'Hittfeld',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19458,'Holzminden',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19459,'Hoya',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19460,'Hude',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19461,'Ihlow',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19462,'Ilsede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19463,'Isernhagen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19464,'Jade',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19465,'Jever',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19466,'Jork',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19467,'Kalefeld',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19468,'Kirchlinteln',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19469,'Knesebeck',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19470,'Konigslutter',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19471,'Krummhorn',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19472,'Laatzen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19473,'Lahstedt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19474,'Langelsheim',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19475,'Langen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19476,'Langenhagen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19477,'Langwedel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19478,'Lastrup',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19479,'Leer',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19480,'Lehre',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19481,'Lehrte',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19482,'Lemforde',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19483,'Lengede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19484,'Liebenburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19485,'Lilienthal',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19486,'Lingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19487,'Lohne',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19488,'Loningen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19489,'Lorup',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19490,'Loxstedt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19491,'Luchow',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19492,'Luneburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19493,'Melle',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19494,'Meppen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19495,'Moormerland',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19496,'Munster',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19497,'Neu Wulmstorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19498,'Neustadt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19499,'Nienburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19500,'Norden',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19501,'Nordenham',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19502,'Nordhorn',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19503,'Nordstemmen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19504,'Norten-Hardenberg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19505,'Northeim',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19506,'Obernkirchen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19507,'Oldenburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19508,'Osnabruck',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19509,'Ostercappeln',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19510,'Osterholz-Scharmbeck',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19511,'Osterode',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19512,'Ostrhauderfehn',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19513,'Ottersberg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19514,'Oyten',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19515,'Papenburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19516,'Pattensen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19517,'Peine',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19518,'Quakenbruck',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19519,'Rastede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19520,'Rehburg-Loccum',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19521,'Rhauderfehn',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19522,'Rinteln',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19523,'Ritterhude',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19524,'Ronnenberg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19525,'Rosdorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19526,'Rosengarten',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19527,'Rotenburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19528,'Salzgitter',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19529,'Salzhemmendorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19530,'Sarstedt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19531,'Saterland',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19532,'ScheeBel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19533,'Schiffdorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19534,'Schneverdingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19535,'Schoningen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19536,'Schortens',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19537,'Schuttorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19538,'Schwanewede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19539,'Seelze',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19540,'Seesen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19541,'Seevetal',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19542,'Sehnde',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19543,'Soltau',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19544,'Springe',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19545,'Stade',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19546,'Stadthagen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19547,'Stadtoldendorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19548,'Stelle',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19549,'Stuhr',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19550,'Sudbrookmerland',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19551,'Sulingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19552,'Syke',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19553,'Tarmstedt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19554,'Tostedt',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19555,'Twistringen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19556,'Uchte',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19557,'Uelzen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19558,'Uetze',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19559,'Uplengen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19560,'Uslar',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19561,'Varel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19562,'Vechelde',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19563,'Vechta',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19564,'Verden',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19565,'Vienenburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19566,'Visselhovede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19567,'Walkenried',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19568,'Wallenhorst',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19569,'Walsrode',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19570,'Wangerland',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19571,'Wardenburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19572,'Wedemark',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19573,'Weener',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19574,'Wendeburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19575,'Wennigsen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19576,'Westerstede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19577,'Westoverledingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19578,'Weyhe',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19579,'Wiefelstede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19580,'Wiesmoor',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19581,'Wildeshausen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19582,'Wilhelmshaven',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19583,'Winsen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19584,'Wittingen',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19585,'Wittmund',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19586,'Wolfenbuttel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19587,'Wolfsburg',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19588,'Worpswede',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19589,'Wunstorf',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19590,'Zetel',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19591,'Zeven',1385,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19592,'Middenbeemster',1386,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19593,'Aachen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19594,'Ahaus',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19595,'Ahlen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19596,'Aldenhoven',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19597,'Alfter',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19598,'Alpen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19599,'Alsdorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19600,'Altena',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19601,'Altendorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19602,'Anrochte',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19603,'Arnsberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19604,'Ascheberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19605,'Attendorn',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19606,'Augustdorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19607,'Bad Berleburg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19608,'Bad Driburg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19609,'Bad Honnef',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19610,'Bad Laasphe',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19611,'Bad Lippspringe',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19612,'Bad Munstereifel',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19613,'Bad Oeynhausen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19614,'Bad Salzuflen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19615,'Bad Sassendorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19616,'Baesweiler',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19617,'Balve',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19618,'Barntrup',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19619,'Beckum',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19620,'Bedburg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19621,'Bedburg-Hau',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19622,'Bergheim',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19623,'Bergisch Gladbach',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19624,'Bergkamen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19625,'Bergneustadt',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19626,'Bestwig',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19627,'Beverungen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19628,'Bielefeld',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19629,'Billerbeck',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19630,'Blomberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19631,'Bocholt',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19632,'Bochum',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19633,'Bocket',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19634,'Bonen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19635,'Bonn',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19636,'Borchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19637,'Borgentreich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19638,'Borgholzhausen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19639,'Borken',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19640,'Bornheim',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19641,'Bottrop',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19642,'Brakel',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19643,'Brilon',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19644,'Bruggen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19645,'Bruhl',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19646,'Bunde',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19647,'Burbach',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19648,'Buren',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19649,'Burscheid',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19650,'Castrop-Rauxel',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19651,'Coesfeld',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19652,'Cologne',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19653,'Datteln',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19654,'Delbruck',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19655,'Denklingen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19656,'Detmold',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19657,'Dingden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19658,'Dinslaken',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19659,'Dormagen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19660,'Dorsten',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19661,'Dortmund',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19662,'Drensteinfurt',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19663,'Drolshagen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19664,'Duisburg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19665,'Dulmen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19666,'Duren',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19667,'Dusseldorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19668,'Eitorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19669,'Elsdorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19670,'Emmerich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19671,'Emsdetten',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19672,'Engelskirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19673,'Enger',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19674,'Ennepetal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19675,'Ennigerloh',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19676,'Ense',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19677,'Erftstadt',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19678,'Erkelenz',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19679,'Erkrath',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19680,'Erwitte',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19681,'Espelkamp',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19682,'Essen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19683,'Euskirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19684,'Extertal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19685,'Finnentrop',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19686,'Frechen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19687,'Freudenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19688,'Frondenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19689,'Gangelt',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19690,'Geilenkirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19691,'Geldern',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19692,'Gelsenkirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19693,'Gescher',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19694,'Geseke',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19695,'Gevelsberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19696,'Gladbeck',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19697,'Goch',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19698,'Grefrath',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19699,'Greven',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19700,'Grevenbroich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19701,'Gronau',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19702,'Gummersbach',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19703,'Gutersloh',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19704,'Haan',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19705,'Hagen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19706,'Halle',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19707,'Haltern',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19708,'Halver',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19709,'Hamm',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19710,'Hamminkeln',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19711,'Harsewinkel',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19712,'Hattingen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19713,'Havixbeck',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19714,'Heiligenhaus',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19715,'Heinsberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19716,'Hemer',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19717,'Hennef',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19718,'Herdecke',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19719,'Herford',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19720,'Herne',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19721,'Herten',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19722,'Herzebrock-Clarholz',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19723,'Herzogenrath',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19724,'Hiddenhausen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19725,'Hilchenbach',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19726,'Hilden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19727,'Hille',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19728,'Holzwickede',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19729,'Horn-Bad Meinberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19730,'Horstel',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19731,'Hovelhof',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19732,'Hoxter',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19733,'Huckelhoven',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19734,'Huckeswagen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19735,'Hullhorst',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19736,'Hunxe',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19737,'Hurth',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19738,'Ibbenburen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19739,'Iserlohn',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19740,'Isselburg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19741,'Issum',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19742,'Juchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19743,'Julich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19744,'Kaarst',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19745,'Kalkar',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19746,'Kall',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19747,'Kalletal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19748,'Kamen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19749,'Kamp-Lintfort',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19750,'Kempen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19751,'Kerken',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19752,'Kerpen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19753,'Kevelaer',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19754,'Kierspe',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19755,'Kirchhundem',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19756,'Kirchlengern',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19757,'Kleve',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19758,'Koln',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19759,'Konigswinter',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19760,'Korschenbroich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19761,'Krefeld',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19762,'Kreuzau',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19763,'Kreuztal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19764,'Kurten',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19765,'Lage',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19766,'Langenfeld',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19767,'Langerwehe',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19768,'Leichlingen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19769,'Lemgo',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19770,'Lengerich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19771,'Lennestadt',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19772,'Leopoldshohe',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19773,'Leverkusen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19774,'Lichtenau',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19775,'Lindlar',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19776,'Linnich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19777,'Lippetal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19778,'Lippstadt',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19779,'Lohmar',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19780,'Lohne',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19781,'Lotte',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19782,'Lubbecke',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19783,'Ludenscheid',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19784,'Ludinghausen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19785,'Lugde',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19786,'Lunen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19787,'Marienheide',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19788,'Marl',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19789,'Marsberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19790,'Mechernich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19791,'Meckenheim',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19792,'Meerbusch',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19793,'Meinerzhagen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19794,'Menden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19795,'Meschede',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19796,'Mettingen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19797,'Mettmann',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19798,'Minden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19799,'Moers',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19800,'Mohnesee',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19801,'Monchengladbach',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19802,'Monheim',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19803,'Monschau',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19804,'Morsbach',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19805,'Much',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19806,'Mulheim',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19807,'Munster',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19808,'Netphen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19809,'Nettetal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19810,'Neuenkirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19811,'Neuenrade',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19812,'Neukirchen-Vluyn',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19813,'Neunkirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19814,'Neunkirchen-Seelscheid',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19815,'Neuss',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19816,'Nideggen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19817,'Niederkassel',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19818,'Niederkruchten',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19819,'Niederzier',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19820,'Nordkirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19821,'Norvenich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19822,'Nottuln',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19823,'Numbrecht',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19824,'Oberhausen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19825,'Ochtrup',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19826,'Odenthal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19827,'Oelde',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19828,'Oer-Erkenschwick',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19829,'Oerlinghausen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19830,'Olfen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19831,'Olpe',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19832,'Olsberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19833,'Overath',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19834,'Paderborn',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19835,'Petershagen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19836,'Plettenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19837,'Porta Westfalica',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19838,'PreuBisch Oldendorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19839,'Pulheim',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19840,'Radevormwald',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19841,'Raesfeld',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19842,'Rahden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19843,'Ratingen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19844,'Recke',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19845,'Recklinghausen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19846,'Rees',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19847,'Reichshof',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19848,'Reken',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19849,'Remscheid',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19850,'Rheda-Wiedenbruck',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19851,'Rhede',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19852,'Rheinbach',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19853,'Rheinberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19854,'Rheine',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19855,'Rietberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19856,'Rommerskirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19857,'Rosendahl',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19858,'Rosrath',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19859,'Ruthen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19860,'Salzkotten',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19861,'Sassenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19862,'Schalksmuhle',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19863,'Schermbeck',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19864,'Schieder-Schwalenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19865,'Schleiden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19866,'SchloB Holte-Stukenbrock',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19867,'Schmallenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19868,'Schwalmtal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19869,'Schwelm',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19870,'Schwerte',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19871,'Selm',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19872,'Senden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19873,'Sendenhorst',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19874,'Siegburg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19875,'Siegen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19876,'Simmerath',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19877,'Soest',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19878,'Solingen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19879,'Sonsbeck',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19880,'Spenge',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19881,'Sprockhovel',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19882,'Stadtlohn',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19883,'Steinfurt',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19884,'Steinhagen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19885,'Steinheim',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19886,'Stemwede',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19887,'Stolberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19888,'Straelen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19889,'Sundern',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19890,'Swisttal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19891,'Tecklenburg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19892,'Telgte',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19893,'Tonisvorst',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19894,'Troisdorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19895,'Ubach-Palenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19896,'Unna',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19897,'Velbert',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19898,'Velen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19899,'Verl',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19900,'Versmold',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19901,'Viersen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19902,'Vlotho',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19903,'Voerde',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19904,'Vreden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19905,'Wachtberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19906,'Wachtendonk',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19907,'Wadersloh',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19908,'Waldbrol',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19909,'Waltrop',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19910,'Warburg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19911,'Warendorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19912,'Warstein',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19913,'Wassenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19914,'Weeze',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19915,'Wegberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19916,'Weilerswist',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19917,'Welver',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19918,'Wenden',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19919,'Werdohl',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19920,'Werl',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19921,'Wermelskirchen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19922,'Werne',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19923,'Werther',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19924,'Wesel',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19925,'Wesseling',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19926,'Westerkappeln',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19927,'Wetter',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19928,'Wickede',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19929,'Wiehl',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19930,'Willich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19931,'Wilnsdorf',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19932,'Windeck',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19933,'Winterberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19934,'Wipperfurth',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19935,'Witten',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19936,'Wulfrath',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19937,'Wunnenberg',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19938,'Wuppertal',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19939,'Wurselen',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19940,'Xanten',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19941,'Zulpich',1387,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19942,'Herzberg am Harz',1389,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19943,'Alzey',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19944,'Andernach',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19945,'Bad Durkheim',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19946,'Bad Ems',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19947,'Bad Kreuznach',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19948,'Bad Neuenahr-Ahrweiler',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19949,'Bendorf',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19950,'Betzdorf',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19951,'Bingen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19952,'Bitburg',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19953,'Bobenheim-Roxheim',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19954,'Bohl-Iggelheim',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19955,'Boppard',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19956,'Daun',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19957,'Diez',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19958,'Eisenberg',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19959,'Essingen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19960,'Frankenthal',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19961,'Gau-Odernheim',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19962,'Germersheim',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19963,'Grunstadt',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19964,'HaBloch',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19965,'Hahnstatten',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19966,'Hallschlag',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19967,'Herschbach',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19968,'Herxheim',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19969,'Hirschhorn',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19970,'Hohr-Grenzhausen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19971,'Holzheim',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19972,'Idar-Oberstein',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19973,'Ingelheim',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19974,'Kaisersesch',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19975,'Kaiserslautern',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19976,'Kastellaun',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19977,'Kindsbach',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19978,'Kirchen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19979,'Kirn',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19980,'Koblenz',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19981,'Lahnstein',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19982,'Landau',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19983,'Limburgerhof',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19984,'Luckenburg',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19985,'Ludwigshafen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19986,'Mainz',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19987,'Mayen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19988,'Montabaur',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19989,'Morbach',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19990,'Mulheim-Karlich',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19991,'Mundersbach',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19992,'Mutterstadt',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19993,'Nassau',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19994,'Neitersen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19995,'Neustadt',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19996,'Neuwied',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19997,'Niederzissen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19998,'Pirmasens',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(19999,'Plaidt',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20000,'Remagen',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20001,'Schifferstadt',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20002,'Schoenenberg Kuebelberg',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20003,'Sinzig',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20004,'Speyer',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20005,'St. Goar',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20006,'Trier',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20007,'Vallendar',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20008,'Winterbach',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20009,'Wittlich',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20010,'Worms',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20011,'Worth',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20012,'Zweibrucken',1390,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20013,'Adenau',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20014,'Anhausen',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20015,'Barbelroth',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20016,'Berndroth',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20017,'Bernkastel-Kues',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20018,'Burgbrohl',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20019,'Dieblich',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20020,'Dierdorf',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20021,'Dreisbach',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20022,'Elsoff',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20023,'Enkenbach-Alsenborn',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20024,'Etzbach',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20025,'Flonheim',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20026,'Fohren',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20027,'Grafschaft',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20028,'Hochspeyer',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20029,'Leiningen',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20030,'Moschheim',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20031,'Murlenbach',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20032,'Neuhofen',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20033,'Nievern',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20034,'Norken',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20035,'Oberlahr',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20036,'Otterstadt',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20037,'Rennerod',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20038,'Rheinbreitbach',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20039,'Rieschweiler-Muhlbach',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20040,'Saarburg',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20041,'Stahlhofen',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20042,'Steinebach',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20043,'Weinsheim',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20044,'Winnweiler',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20045,'Wissen',1391,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20046,'Beckingen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20047,'Bexbach',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20048,'Blieskastel',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20049,'Dillingen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20050,'Duppenweiler',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20051,'Eppelborn',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20052,'Friedrichsthal',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20053,'GroBrosseln',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20054,'Heusweiler',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20055,'Homburg',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20056,'Illingen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20057,'Kirkel',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20058,'Kleinblittersdorf',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20059,'Lebach',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20060,'Losheim',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20061,'Mandelbachtal',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20062,'Marpingen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20063,'Merchweiler',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20064,'Merzig',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20065,'Mettlach',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20066,'Nalbach',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20067,'Neunkirchen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20068,'Nohfelden',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20069,'Nonnweiler',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20070,'Oberthal',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20071,'Ottweiler',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20072,'Puttlingen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20073,'Quierschied',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20074,'Rehlingen-Siersburg',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20075,'Riegelsberg',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20076,'Saarbrucken',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20077,'Saarlouis',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20078,'Saarwellingen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20079,'Sankt Ingbert',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20080,'Sankt Wendel',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20081,'Schiffweiler',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20082,'Schmelz',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20083,'Schwalbach',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20084,'Spiesen-Elversberg',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20085,'Sulzbach',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20086,'Tholey',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20087,'Uberherrn',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20088,'Volklingen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20089,'Wadern',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20090,'Wadgassen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20091,'Wallerfangen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20092,'Weiskirchen',1392,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20093,'Annaberg-Buchholz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20094,'Aue',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20095,'Auerbach',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20096,'Bautzen',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20097,'Bischofswerda',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20098,'Borna',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20099,'Brand-Erbisdorf',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20100,'Burgstadt',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20101,'Chemnitz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20102,'Coswig',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20103,'Crimmitschau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20104,'Delitzsch',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20105,'Dobeln',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20106,'Dresden',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20107,'Ebersbach',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20108,'Eilenburg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20109,'Falkenstein',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20110,'Floha',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20111,'Frankenberg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20112,'Freiberg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20113,'Freital',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20114,'Friedewald',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20115,'Glauchau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20116,'Gorlitz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20117,'Grimma',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20118,'GroBenhain',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20119,'Groditz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20120,'Hainichen',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20121,'Heidenau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20122,'Hirschstein',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20123,'Hohenstein-Ernstthal',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20124,'Hoyerswerda',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20125,'Kamenz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20126,'Klingenthal',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20127,'Leipzig',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20128,'Lichtenstein',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20129,'Limbach-Oberfrohna',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20130,'LoBnitz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20131,'Lobau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20132,'Lugau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20133,'Marienberg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20134,'Markkleeberg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20135,'Meerane',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20136,'MeiBen',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20137,'Mittweida',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20138,'Muldenhammer',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20139,'Neustadt',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20140,'Niesky',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20141,'Oelsnitz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20142,'Olbernhau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20143,'Olbersdorf',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20144,'Oschatz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20145,'Pirna',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20146,'Plauen',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20147,'Radeberg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20148,'Radebeul',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20149,'Reichenbach',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20150,'Riesa',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20151,'Rietschen',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20152,'Schkeuditz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20153,'Schneeberg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20154,'Schwarzenberg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20155,'Sebnitz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20156,'Stollberg',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20157,'Taubenheim',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20158,'Taucha',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20159,'Thalheim',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20160,'Torgau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20161,'Waldheim',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20162,'WeiBwasser',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20163,'Werdau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20164,'Wilkau-HaBlau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20165,'Wurzen',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20166,'Zittau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20167,'Zschopau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20168,'Zwickau',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20169,'Zwonitz',1393,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20170,'Aken',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20171,'Aschersleben',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20172,'Bad Durrenberg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20173,'Bebitz',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20174,'Bernburg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20175,'Bitterfeld',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20176,'Blankenburg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20177,'Braunsbedra',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20178,'Burg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20179,'Calbe',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20180,'Coswig',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20181,'Dessau',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20182,'Eisleben',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20183,'Gardelegen',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20184,'Genthin',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20185,'Gommern',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20186,'Grafenhainichen',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20187,'Halberstadt',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20188,'Haldensleben',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20189,'Halle',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20190,'Hettstedt',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20191,'Heyrothsberge',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20192,'Hotensleben',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20193,'Kothen',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20194,'Leuna',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20195,'Magdeburg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20196,'Merseburg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20197,'Naumburg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20198,'Oschersleben',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20199,'Osterburg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20200,'Osterwieck',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20201,'Quedlinburg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20202,'Querfurt',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20203,'Raguhn',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20204,'RoBlau',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20205,'Salzwedel',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20206,'Sangerhausen',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20207,'Schonebeck',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20208,'StaBfurt',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20209,'Stendal',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20210,'Tangermunde',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20211,'Thale',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20212,'WeiBenfels',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20213,'Wittenberg',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20214,'Wolfen',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20215,'Wolmirstedt',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20216,'Zeitz',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20217,'Zerbst',1394,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20218,'Bad Lausick',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20219,'Bernsdorf',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20220,'Borde-Hakel',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20221,'Gelenau',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20222,'Groberkmannsdorf ',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20223,'Hartha',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20224,'Kreischa',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20225,'Malschwitz',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20226,'Naunhof',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20227,'Pausa',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20228,'Seiffen',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20229,'Stutzengrun',1395,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20230,'Ahrensbok',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20231,'Ahrensburg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20232,'Altenholz',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20233,'Alveslohe',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20234,'Ammersbek',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20235,'Bad Bramstedt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20236,'Bad Oldesloe',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20237,'Bad Schwartau',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20238,'Bad Segeberg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20239,'Bargteheide',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20240,'Barmstedt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20241,'Barsbuttel',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20242,'Bredstedt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20243,'Brunsbuttel',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20244,'Budelsdorf',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20245,'Eckernforde',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20246,'Eddelak',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20247,'Elmshorn',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20248,'Eutin',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20249,'Flensburg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20250,'Friedrichstadt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20251,'Geesthacht',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20252,'Glinde',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20253,'Gluckstadt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20254,'Grob Pampau',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20255,'Halstenbek',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20256,'Hamfelde',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20257,'Harrislee',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20258,'Hartenholm',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20259,'Heide',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20260,'Heiligenhafen',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20261,'Henstedt-Ulzburg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20262,'Honenwestedt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20263,'Husum',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20264,'Itzehoe',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20265,'Kaltenkirchen',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20266,'Kappeln',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20267,'Kiel',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20268,'Kronshagen',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20269,'Lauenburg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20270,'Lensahn',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20271,'Lubeck',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20272,'Malente',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20273,'Mielkendorf',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20274,'Molfsee',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20275,'Molln',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20276,'Neuenbrook',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20277,'Neumunster',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20278,'Neustadt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20279,'Norderstedt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20280,'Oldenburg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20281,'Oststeinbek',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20282,'Pinneberg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20283,'Plon',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20284,'Preetz',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20285,'Quickborn',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20286,'Ratekau',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20287,'Ratzeburg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20288,'Reinbek',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20289,'Reinfeld',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20290,'Rellingen',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20291,'Rendsburg',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20292,'Rethwisch',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20293,'Satrup',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20294,'Scharbeutz',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20295,'Schenefeld',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20296,'Schleswig',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20297,'Schmalfeld',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20298,'Schoenkirchen',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20299,'Schwarzenbek',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20300,'Seefeld',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20301,'Sievershutten',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20302,'Stockelsdorf',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20303,'Tangstedt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20304,'Timmendorfer Strand',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20305,'Tornesch',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20306,'Travemunde',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20307,'Uetersen',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20308,'Wahlstedt',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20309,'Wedel',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20310,'Wentorf',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20311,'Westerland',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20312,'Westerronfeld',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20313,'Wohltorf',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20314,'Wotersen',1396,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20315,'Altenburg',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20316,'Apolda',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20317,'Arnstadt',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20318,'Bad Frankenhausen',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20319,'Bad Langensalza',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20320,'Bad Salzungen',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20321,'Cursdorf',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20322,'Dornburg',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20323,'Eisenach',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20324,'Eisenberg',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20325,'Erfurt',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20326,'Gera',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20327,'Geschwenda',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20328,'Gotha',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20329,'Greiz',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20330,'Heiligenstadt',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20331,'Hermsdorf',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20332,'Hildburghausen',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20333,'Ilmenau',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20334,'Immelborn',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20335,'Jena',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20336,'Leinefelde',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20337,'Leutenberg',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20338,'Meiningen',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20339,'Meuselwitz',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20340,'Muhlhausen',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20341,'Neustadt',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20342,'Nordhausen',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20343,'PoBneck',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20344,'Rosenthal',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20345,'Rositz',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20346,'Rudolstadt',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20347,'Ruhla',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20348,'Saalfeld',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20349,'Schmalkalden',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20350,'Schmolln',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20351,'Sommerda',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20352,'Sondershausen',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20353,'Sonneberg',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20354,'Suhl',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20355,'Triptis',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20356,'Uhlstadt',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20357,'Waltershausen',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20358,'Weida',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20359,'Weimar',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20360,'Wernigerode',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20361,'Wormstedt',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20362,'Zella-Mehlis',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20363,'Zeulenroda',1397,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20364,'Webling',1398,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20365,'Neustadt',1399,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20366,'Schlobborn',1400,82,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20367,'Agogo',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20368,'Bekwai',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20369,'Konongo',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20370,'Kumasi',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20371,'Mampong',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20372,'Mankranso',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20373,'Obuasi',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20374,'Ofinso',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20375,'Tafo',1401,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20376,'Bechem',1402,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20377,'Berekum',1402,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20378,'Duayaw Nkwanta',1402,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20379,'Kintampo',1402,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20380,'Sunyani',1402,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20381,'Techiman',1402,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20382,'Wenchi',1402,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20383,'Apam',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20384,'Cape Coast',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20385,'Dunkwa',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20386,'Elmina',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20387,'Foso',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20388,'Komenda',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20389,'Mauri',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20390,'Mumford',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20391,'Nyakrom',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20392,'Okitsiu',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20393,'Saltpond',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20394,'Swedru',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20395,'Winneba',1403,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20396,'Aburi',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20397,'Ada',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20398,'Akim Swedru',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20399,'Akropong',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20400,'Asamankese',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20401,'Begoro',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20402,'Kade',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20403,'Kibi',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20404,'Koforidua',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20405,'Mpraeso',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20406,'Nkawkaw',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20407,'Nsawam',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20408,'Oda',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20409,'Somanya',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20410,'Suhum',1404,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20411,'Kpandae',1406,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20412,'Salaga',1406,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20413,'Savelugu',1406,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20414,'Tamale',1406,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20415,'Yendi',1406,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20416,'Aflao',1409,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20417,'Anloga',1409,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20418,'Ho',1409,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20419,'Hohoe',1409,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20420,'Keta',1409,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20421,'Kete-Krachi',1409,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20422,'Kpandu',1409,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20423,'Aboso',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20424,'Anomabu',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20425,'Axim',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20426,'Bibiani',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20427,'Prestea',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20428,'Sekondi',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20429,'Shama',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20430,'Takoradi',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20431,'Tarkwa',1410,83,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20432,'Gibraltar',1411,84,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20433,'Elassonos',1412,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20434,'Aiyion',1413,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20435,'Patra',1413,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20436,'Argos',1415,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20437,'Navplion',1415,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20438,'Tripoli',1416,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20439,'Arta',1417,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20440,'Acharnes',1418,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20441,'Agios Ioannis Rentis',1418,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20442,'Drapetsona',1418,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20443,'Koropi',1418,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20444,'Lavrion',1418,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20445,'Mandra',1418,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20446,'Spata',1418,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20447,'Aharna',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20448,'Aiyaleo',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20449,'Alimos',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20450,'Amarousion',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20451,'Ano Liosia',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20452,'Aryiroupoli',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20453,'Aspropirgos',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20454,'Athina',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20455,'Athinai',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20456,'Ayia Barbara',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20457,'Ayia Paraskevi',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20458,'Ayios Anaryiros',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20459,'Ayios Dimitrios',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20460,'Dafne',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20461,'Elevsis',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20462,'Ellenikon',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20463,'Galatsion',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20464,'Glifada',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20465,'Haidarion',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20466,'Halandrion',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20467,'Holargos',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20468,'Ilioupoli',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20469,'Iraklion',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20470,'Kaisariani',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20471,'Kallithea',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20472,'Kamateron',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20473,'Keratea',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20474,'Keratsinion',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20475,'Kifisia',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20476,'Koridallos',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20477,'Kropion',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20478,'Markopoulos Mesogaia',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20479,'Maroussi',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20480,'Megara',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20481,'Melission',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20482,'Metamorfosios',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20483,'Moshatos',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20484,'Nea Filedelfia',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20485,'Nea Ionia',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20486,'Nea Liosia',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20487,'Nea Smirni',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20488,'Nikaia',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20489,'Palaion Faliron',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20490,'Perama',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20491,'Peristerion',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20492,'Petroupoli',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20493,'Pevka',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20494,'Piraeus',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20495,'Salamis',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20496,'Tavros',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20497,'Viron',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20498,'Voula',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20499,'Vrilission',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20500,'Zografos',1419,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20501,'Heraklion',1421,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20502,'Arhangelos',1422,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20503,'Ialysos',1422,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20504,'Kos',1422,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20505,'Rodos',1422,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20506,'Drama',1423,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20507,'Chalkis',1424,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20508,'Karpenisi',1425,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20509,'Alexandroupoli',1426,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20510,'Orestias',1426,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20511,'Halkida',1427,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20512,'Florina',1428,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20513,'Amfissa',1429,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20514,'Lamia',1430,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20515,'Grevena',1431,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20516,'Halandri',1432,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20517,'Lakkoma',1433,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20518,'N. Kallikrateia',1433,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20519,'Poliyiros',1433,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20520,'Hania',1434,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20521,'Crete',1435,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20522,'Hios',1436,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20523,'Pirgos',1437,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20524,'Veroia',1438,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20525,'Ioannina',1439,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20526,'Karditsa',1441,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20527,'Kastoria',1442,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20528,'Kavala',1443,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20529,'Agioi Theodoroi',1444,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20530,'Argostolion',1444,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20531,'Kerkira',1445,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20532,'Ermoupoli',1446,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20533,'Fira',1446,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20534,'Mikonos',1446,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20535,'Kilkis',1447,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20536,'Korinthos',1448,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20537,'Kozani',1449,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20538,'Ptolemais',1449,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20539,'Sparti',1450,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20540,'Larisa',1451,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20541,'Larissa',1451,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20542,'Ayios Nikolaos',1452,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20543,'Ierapetra',1452,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20544,'Sitia',1452,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20545,'Mitilini',1453,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20546,'Levkas',1454,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20547,'Volos',1455,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20548,'Kalamata',1456,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20549,'Edessa',1459,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20550,'Yiannitsa',1459,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20551,'Katerini',1460,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20552,'Acharne',1461,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20553,'Pallini',1461,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20554,'Preveza',1462,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20555,'Rethimnon',1463,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20556,'Komotini',1464,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20557,'Samos',1465,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20558,'Serrai',1466,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20559,'Igoumenitsa',1467,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20560,'Ampelokipa',1468,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20561,'Kalamaria',1468,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20562,'Neapoli',1468,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20563,'Oristiada',1468,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20564,'Thessaloniki',1468,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20565,'Trikala',1469,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20566,'Levadia',1470,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20567,'Thivai',1470,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20568,'Xanthi',1472,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20569,'Zakinthos',1473,85,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20570,'Aasiaat',1474,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20571,'Akunnaaq',1474,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20572,'Kitsissuarsuit',1474,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20573,'Ikkatteq',1475,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20574,'Isortoq',1475,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20575,'Kulusuk',1475,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20576,'Kuumiut',1475,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20577,'Qernertuarssuit',1475,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20578,'Sermiligaaq',1475,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20579,'Tasiilaq',1475,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20580,'Tiniteqilaaq',1475,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20581,'Illoqqortoormiut',1476,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20582,'Itterajivit',1476,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20583,'Uunarteq',1476,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20584,'Ilimanaq',1477,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20585,'Ilulissat',1477,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20586,'Oqaatsut',1477,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20587,'Qeqertaq',1477,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20588,'Saqqaq',1477,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20589,'Ivittuut',1478,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20590,'Kangilinnguit',1478,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20591,'Attu',1479,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20592,'Iginniarfik',1479,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20593,'Ikerasaarsuk',1479,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20594,'Kangaatsiaq',1479,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20595,'Niaqornaarsuk',1479,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20596,'Atammik',1480,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20597,'Kangaamiut',1480,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20598,'Maniitsoq',1480,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20599,'Napasoq',1480,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20600,'Aappilattoq',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20601,'Akuliaruseq',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20602,'Alluitsoq',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20603,'Alluitsup Paa',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20604,'Ammassivik',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20605,'Ikerasassuaq',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20606,'Nanortalik',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20607,'Narsarmijit',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20608,'Nuugaarsuk',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20609,'Qallimiut',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20610,'Qortortorsuaq',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20611,'Tasiusaq',1481,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20612,'Amannguit',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20613,'Atarnaatsoq',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20614,'Eqaluit Ilua',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20615,'Igaliku',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20616,'Igaliku Kujalleq',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20617,'Inneruulalik',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20618,'Issormiut',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20619,'Iterlak',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20620,'Kangerlua',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20621,'Narsaq',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20622,'Narsarsuaq',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20623,'Nunataaq',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20624,'Qassiarsuk',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20625,'Qinngua',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20626,'Qinngua Kangilleq',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20627,'Qolortup Itinnera',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20628,'Sillisit',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20629,'Tasiusaq',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20630,'Timerliit',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20631,'Uummannartuuaraq',1482,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20632,'Kangerluarsoruseq',1483,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20633,'Kapisillit',1483,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20634,'Neriunaq',1483,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20635,'Nuuk',1483,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20636,'Qeqertarsuatsiaat',1483,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20637,'Qooqqut',1483,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20638,'Qoornoq',1483,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20639,'Arsuk',1484,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20640,'Paamiut',1484,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20641,'Moriusaq',1485,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20642,'Qaanaaq',1485,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20643,'Qeqertarsuaq',1485,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20644,'Qeqertat',1485,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20645,'Savissivik',1485,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20646,'Siorapaluk',1485,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20647,'Eqalugaarsuit',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20648,'Illorsuit',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20649,'Kangerluarsorujuk',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20650,'Kangerluarsorujuup Qinngua',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20651,'Qanisartuut',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20652,'Qaqortokolook',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20653,'Qaqortoq',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20654,'Qassimiut',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20655,'Saarloq',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20656,'Saqqamiut',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20657,'Tasiluk',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20658,'Upernaviarsuk',1486,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20659,'Ikamiut',1487,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20660,'Qasigiannguit',1487,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20661,'Kangerluk',1488,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20662,'Qeqertarsuaq',1488,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20663,'Itilleq',1489,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20664,'Kangerlussuaq',1489,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20665,'Sarfannguit',1489,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20666,'Sisimiut',1489,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20667,'Aappilattoq',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20668,'Ikerakuuk',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20669,'Innarsuit',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20670,'Kangersuatsiaq',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20671,'Kullorsuaq',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20672,'Naajaat',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20673,'Nutaarmiut',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20674,'Nuusuaq',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20675,'Tasiusaq',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20676,'Upernavik',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20677,'Upernavik Kujalleq',1491,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20678,'Ikerasak',1492,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20679,'Illorsuit',1492,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20680,'Niaqornat',1492,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20681,'Nuugaatsiaq',1492,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20682,'Qaarsut',1492,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20683,'Saattut',1492,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20684,'Ukkusissat',1492,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20685,'Uummannaq',1492,86,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20686,'Baie-Mahault',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20687,'Baillif',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20688,'Basse-Terre',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20689,'Bouillante',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20690,'Capesterre-Belle-Eau',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20691,'Gourbeyre',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20692,'Lamentin',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20693,'Petit-Bourg',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20694,'Pointe-Noire',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20695,'Saint-Claude',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20696,'Sainte-Rose',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20697,'Trois-Rivieres',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20698,'Vieux-Habitants',1500,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20699,'Anse-Bertrand',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20700,'Le Gosier',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20701,'Le Moule',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20702,'Les Abymes',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20703,'Morne-a-l\'Eau',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20704,'Petit-Canal',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20705,'Point-a-Pitre',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20706,'Port-Louis',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20707,'Saint-Francois',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20708,'Sainte-Anne',1501,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20709,'Grand-Bourg',1504,88,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20710,'Agat',1508,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20711,'Barrigada',1509,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20712,'Barrigada Heights',1509,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20713,'Chalan Pago',1510,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20714,'Ordot',1510,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20715,'Astumbo',1511,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20716,'Dededo',1511,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20717,'Finegayan Station',1511,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20718,'Agana',1512,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20719,'Agana Station',1512,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20720,'Inarajan',1513,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20721,'Mangilao',1514,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20722,'Merizo',1515,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20723,'Mongmong',1516,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20724,'Toto',1516,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20725,'Sinajana',1518,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20726,'Talofofo',1519,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20727,'Tamuning',1520,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20728,'Anderson Air Force Base',1521,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20729,'Yigo',1521,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20730,'Yona',1522,89,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20731,'Chimaltenango',1525,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20732,'Comalapa',1525,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20733,'Itzapa',1525,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20734,'Patzun',1525,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20735,'Chiquimula',1526,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20736,'Esquipulas',1526,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20737,'Cotzumalguapa',1528,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20738,'Escuintla',1528,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20739,'Palin',1528,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20740,'San Jose',1528,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20741,'Tiquisate',1528,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20742,'Amatitlan',1529,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20743,'Chinautla',1529,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20744,'Guatemala',1529,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20745,'Mixco',1529,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20746,'Petapa',1529,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20747,'Villa Nueva',1529,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20748,'Huehuetenango',1530,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20749,'Puerto Barrios',1531,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20750,'Jalapa',1532,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20751,'Asuncion Mita',1533,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20752,'Jutiapa',1533,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20753,'Flores',1534,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20754,'San Benito',1534,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20755,'Quezaltenango',1535,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20756,'Quiche',1536,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20757,'Retalhuleu',1537,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20758,'Antigua',1538,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20759,'Ciudad Vieja',1538,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20760,'Jocotenango',1538,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20761,'Santa Maria de Jesus',1538,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20762,'Sumpango',1538,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20763,'Atitlan',1541,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20764,'Solola',1541,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20765,'Mazatenango',1542,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20766,'Totonicapan',1543,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20767,'Zacapa',1544,90,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20768,'Saint Anne\'s',1545,91,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20769,'Castle',1546,91,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20770,'Forest',1547,91,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20771,'Sark',1554,91,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20772,'Torteval',1555,91,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20773,'Vale',1556,91,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20774,'Beyla',1557,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20775,'Boffa',1558,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20776,'Boke',1559,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20777,'Conakry',1560,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20778,'Coyah',1561,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20779,'Dabola',1562,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20780,'Dalaba',1563,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20781,'Dinguiraye',1564,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20782,'Faranah',1565,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20783,'Forecariah',1566,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20784,'Fria',1567,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20785,'Gaoual',1568,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20786,'Guekedou',1569,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20787,'Kankan',1570,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20788,'Kerouane',1571,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20789,'Kindia',1572,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20790,'Kissidougou',1573,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20791,'Koubia',1574,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20792,'Koundara',1575,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20793,'Kouroussa',1576,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20794,'Labe',1577,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20795,'Lola',1578,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20796,'Macenta',1579,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20797,'Mali',1580,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20798,'Mamou',1581,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20799,'Mandiana',1582,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20800,'Nzerekore',1583,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20801,'Pita',1584,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20802,'Siguiri',1585,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20803,'Telimele',1586,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20804,'Tougue',1587,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20805,'Yomou',1588,92,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20806,'Bafata',1589,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20807,'Bissau',1590,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20808,'Bolama',1591,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20809,'Bubaque',1591,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20810,'Cacheu',1592,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20811,'Canchungo',1592,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20812,'Gabu',1593,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20813,'Bissora',1594,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20814,'Farim',1594,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20815,'Mansoa',1594,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20816,'Buba',1595,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20817,'Fulacunda',1595,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20818,'Quebo',1595,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20819,'Catio',1596,93,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20820,'Mabaruma',1597,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20821,'Morawhanna',1597,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20822,'Bartica',1598,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20823,'Issano',1598,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20824,'Kamarang',1598,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20825,'Georgetown',1599,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20826,'Mahaica',1599,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20827,'Paradise',1599,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20828,'Queenstown',1599,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20829,'Fort Wellington',1602,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20830,'Mahaicony',1602,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20831,'Rosignol',1602,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20832,'Anna Regina',1603,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20833,'Charity',1603,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20834,'Suddie',1603,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20835,'Mahdia',1604,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20836,'Tumatumari',1604,94,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20837,'Desdunes',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20838,'Dessalines',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20839,'Gonaives',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20840,'Gros-Morne',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20841,'L\'Artibonite',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20842,'Saint-Marc',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20843,'Saint-Michel-de-l\'Atalaye',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20844,'Saint-Raphael',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20845,'Verrettes',1607,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20846,'Hinche',1608,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20847,'Mirebalais',1608,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20848,'Anse-d\'Hainault',1609,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20849,'Dame Marie',1609,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20850,'Jeremie',1609,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20851,'Miragoane',1609,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20852,'Cap-Haitien',1610,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20853,'Croix-des-Bouquets',1610,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20854,'Grande Riviere du Nord',1610,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20855,'Limbe',1610,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20856,'Pignon',1610,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20857,'Derac',1611,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20858,'Fort-Liberte',1611,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20859,'Ouanaminthe',1611,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20860,'Trou-du-Nord',1611,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20861,'Port-de-Paix',1612,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20862,'Saint-Louis-du-Nord',1612,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20863,'Anse-a-Galets',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20864,'Carrefour',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20865,'Delmas',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20866,'Kenscoff',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20867,'Lascahobas',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20868,'Leogane',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20869,'Petionville',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20870,'Petit Goave',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20871,'Port-au-Prince',1613,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20872,'Aquin',1614,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20873,'Les Cayes',1614,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20874,'Jacmel',1615,95,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20875,'La Ceiba',1617,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20876,'Olanchito',1617,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20877,'Tela',1617,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20878,'Choluteca',1618,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20879,'El Triunfo',1618,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20880,'Pespire',1618,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20881,'Sonaguera',1619,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20882,'Tocoa',1619,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20883,'Trujillo',1619,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20884,'Comayagua',1620,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20885,'Siguatepeque',1620,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20886,'Copan',1621,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20887,'Corquin',1621,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20888,'Dulce Nombre',1621,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20889,'El Paraiso',1621,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20890,'San Antonio',1621,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20891,'San Nicolas',1621,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20892,'Santa Rosa de Copan',1621,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20893,'Choloma',1622,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20894,'La Lima',1622,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20895,'Omoa',1622,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20896,'Puerto Cortes',1622,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20897,'San Pedro Sula',1622,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20898,'Intibuca',1627,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20899,'La Esperanza',1627,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20900,'Utila',1627,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20901,'Gracias',1630,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20902,'Ocotepeque',1631,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20903,'San Marcos',1631,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20904,'Sinuapa',1631,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20905,'Catacamas',1632,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20906,'Juticalpa',1632,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20907,'Amapala',1634,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20908,'Langue',1634,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20909,'Nacaome',1634,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20910,'San Lorenzo',1634,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20911,'El Progreso',1635,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20912,'Morazan',1635,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20913,'Santa Rita',1635,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20914,'Yoro',1635,97,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20915,'Akaszto',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20916,'Bacsalmas',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20917,'Bacsbokod',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20918,'Baja',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20919,'Bugac',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20920,'Davod',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20921,'Dunapataj',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20922,'Dunavecse',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20923,'Fulopszallas',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20924,'Hajos',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20925,'Harta',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20926,'Izsak',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20927,'Jakabszallas',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20928,'Janoshalma',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20929,'Kalocsa',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20930,'Kecel',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20931,'Kecskemet',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20932,'Kiskoros',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20933,'Kiskunfelegyhaza',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20934,'Kiskunhalas',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20935,'Kiskunmajsa',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20936,'Kunfeherto',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20937,'Kunszentmiklos',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20938,'Lajosmizse',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20939,'Lakitelek',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20940,'Madaras',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20941,'Melykut',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20942,'Nagybaracska',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20943,'Orgovany',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20944,'Palmonostora',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20945,'Solt',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20946,'Soltvadkert',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20947,'Sukosd',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20948,'Szabadszallas',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20949,'Szalkszentmarton',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20950,'Tass',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20951,'Tiszakecske',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20952,'Tompa',1637,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20953,'Beremend',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20954,'Boly',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20955,'Dunaszekcso',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20956,'Harkany',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20957,'Hosszuheteny',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20958,'Komlo',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20959,'Magocs',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20960,'Mohacs',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20961,'Pecs',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20962,'Pecsvarad',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20963,'Sasd',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20964,'Sellye',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20965,'Siklos',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20966,'Szentlorinc',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20967,'Szigetvar',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20968,'Vajszlo',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20969,'Villany',1638,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20970,'Battonya',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20971,'Bekes',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20972,'Bekescsaba',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20973,'Bekessamson',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20974,'Bekesszentandras',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20975,'Csorvas',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20976,'Devavanya',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20977,'Doboz',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20978,'Elek',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20979,'Endrod',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20980,'Fuzesgyarmat',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20981,'Gyula',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20982,'Ketegyhaza',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20983,'Kondoros',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20984,'Korosladany',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20985,'Kunagota',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20986,'Lokoshaza',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20987,'Mezobereny',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20988,'Mezohegyes',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20989,'Mezokovacshaza',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20990,'Nagyszenas',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20991,'Oroshaza',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20992,'Sarkad',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20993,'Szabadkigyos',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20994,'Szarvas',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20995,'Szeghalom',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20996,'Totkomlos',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20997,'Veszto',1639,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20998,'Abaujszanto',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(20999,'Arlo',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21000,'Bogacs',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21001,'Cigand',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21002,'Edeleny',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21003,'Emod',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21004,'Encs',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21005,'Gonc',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21006,'Karcsa',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21007,'Kazincbarcika',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21008,'Mad',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21009,'Megyaszo',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21010,'Mezokeresztes',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21011,'Mezokovesd',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21012,'Miskolc',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21013,'Monok',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21014,'Nyekladhaza',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21015,'Olaszliszka',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21016,'Onod',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21017,'Ozd',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21018,'Putnok',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21019,'Rudabanya',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21020,'Sajokaza',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21021,'Sajolad',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21022,'Sajoszentpeter',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21023,'Saly',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21024,'Sarospatak',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21025,'Satoraljaujhely',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21026,'Szendro',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21027,'Szentistvan',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21028,'Szerencs',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21029,'Szihalom',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21030,'Szikszo',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21031,'Taktaharkany',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21032,'Taktaszada',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21033,'Tallya',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21034,'Tarcal',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21035,'Tiszaluc',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21036,'Tiszaujvaros',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21037,'Tokaj',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21038,'Tolcsva',1640,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21039,'Budapest',1641,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21040,'Csongrad',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21041,'Fabiansebestyen',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21042,'Foldeak',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21043,'Hodmezovasarhely',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21044,'Kiskundorozsma',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21045,'Kistelek',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21046,'Kiszombor',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21047,'Mako',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21048,'Mindszent',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21049,'Morahalom',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21050,'Pusztaszer',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21051,'Roszke',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21052,'Sandorfalva',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21053,'Szatymaz',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21054,'Szeged',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21055,'Szegvar',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21056,'Szekkutas',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21057,'Szentes',1642,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21058,'Aba',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21059,'Adony',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21060,'Alap',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21061,'Apostag',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21062,'Bakonycsernye',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21063,'Bicske',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21064,'Bodajk',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21065,'Cece',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21066,'Csakvar',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21067,'Deg',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21068,'Dios',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21069,'Dunaujvaros',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21070,'Enying',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21071,'Ercsi',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21072,'Etyek',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21073,'Fehervarcsurgo',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21074,'Lovasbereny',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21075,'Martonvasar',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21076,'Mezofalva',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21077,'Mezoszilas',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21078,'Mor',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21079,'Pazmand',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21080,'Polgardi',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21081,'Pusztavam',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21082,'Rackeresztur',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21083,'Sarbogard',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21084,'Seregelyes',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21085,'Soponya',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21086,'Szabadbattyan',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21087,'Szekesfehervar',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21088,'Val',1643,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21089,'Asvanyraro',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21090,'Beled',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21091,'Bosarkany',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21092,'Csorna',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21093,'Fertod',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21094,'Fertorakos',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21095,'Fertoszentmiklos',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21096,'Gyor',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21097,'Gyorujbarat',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21098,'Hunyadi u.',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21099,'Kapuvar',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21100,'Lebeny',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21101,'Mihalyi',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21102,'Mosonmagyarovar',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21103,'Nyul',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21104,'Pannonhalma',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21105,'Rajka',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21106,'Sopron',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21107,'Szany',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21108,'Tet',1644,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21109,'Balmazujvaros',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21110,'Barand',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21111,'Berettyoujfalu',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21112,'Biharkeresztes',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21113,'Biharnagybajom',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21114,'Debrecen',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21115,'Derecske',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21116,'Egyek',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21117,'Foldes',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21118,'Hajduboszormeny',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21119,'Hajdudorog',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21120,'Hajduhadhaz',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21121,'Hajdusamson',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21122,'Hajduszoboszlo',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21123,'Hajduszovat',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21124,'Hortobagy',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21125,'Hosszupalyi',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21126,'Kaba',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21127,'Komadi',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21128,'Mikepercs',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21129,'Monostorpalyi',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21130,'Nadudvar',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21131,'Nagyleta',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21132,'Nyirabrany',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21133,'Nyiracsad',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21134,'Nyiradony',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21135,'Polgar',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21136,'Puspokladany',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21137,'Sarretudvari',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21138,'Tiszacsege',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21139,'Ujfeherto',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21140,'Vamospercs',1645,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21141,'Abasar',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21142,'Andornaktalya',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21143,'Belapatfalva',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21144,'Domoszlo',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21145,'Eger',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21146,'Erdotelek',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21147,'Felsotarkany',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21148,'Fuzesabony',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21149,'Gyongyos',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21150,'Gyongyospata',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21151,'Gyongyossolymos',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21152,'Gyongyostarjan',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21153,'Hatvan',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21154,'Heves',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21155,'Kal',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21156,'Lorinci',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21157,'Matraderecske',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21158,'Parad',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21159,'Petervasara',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21160,'Recsk',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21161,'Sirok',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21162,'Tarnalelesz',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21163,'Verpelet',1646,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21164,'Abadszalok',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21165,'Besenyszog',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21166,'Cserkeszolo',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21167,'Fegyvernek',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21168,'Hegyeshalom',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21169,'Jaszalsoszentgyorgy',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21170,'Jaszapati',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21171,'Jaszarokszallas',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21172,'Jaszbereny',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21173,'Jaszfenyzaru',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21174,'Jaszjakohalma',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21175,'Jaszkiser',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21176,'Jaszladany',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21177,'Jaszszentandras',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21178,'Karcag',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21179,'Kenderes',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21180,'Kisujszallas',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21181,'Kunhegyes',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21182,'Kunmadaras',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21183,'Kunszentmarton',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21184,'Martfu',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21185,'Mezotur',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21186,'Ocsod',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21187,'Szolnok',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21188,'Tiszabura',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21189,'Tiszafoldvar',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21190,'Tiszafured',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21191,'Tiszapuspoki',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21192,'Tiszaroff',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21193,'Tiszasuly',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21194,'Torokszentmiklos',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21195,'Toszeg',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21196,'Turkeve',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21197,'Ujszasz',1647,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21198,'Acs',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21199,'Almasfuzito',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21200,'Babolna',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21201,'Bajna',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21202,'Dorog',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21203,'Esztergom',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21204,'Kesztolc',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21205,'Kisber',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21206,'Komarom',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21207,'Kornye',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21208,'Labatlan',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21209,'Mocsa',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21210,'Nagyigmand',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21211,'Nyergesujfalu',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21212,'Oroszlany',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21213,'Sarisap',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21214,'Tardos',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21215,'Tarjan',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21216,'Tata',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21217,'Tatabanya',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21218,'Tokod',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21219,'Vertesszolos',1648,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21220,'Balassagyarmat',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21221,'Batonyterenye',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21222,'Bercel',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21223,'Bujak',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21224,'Diosjeno',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21225,'Karancskeszi',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21226,'Matraverebely',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21227,'Nagyoroszi',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21228,'Paszto',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21229,'Retsag',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21230,'Romhany',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21231,'Salgotarjan',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21232,'Szecseny',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21233,'Tar',1649,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21234,'Abony',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21235,'Albertirsa',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21236,'Aszod',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21237,'Biatorbagy',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21238,'Budakalasz',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21239,'Budakeszi',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21240,'Budaors',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21241,'Bugyi',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21242,'Cegled',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21243,'Csobanka',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21244,'Dabas',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21245,'Domsod',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21246,'Dunabogdany',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21247,'Dunaharaszti',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21248,'Dunakeszi',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21249,'Erd',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21250,'Forro',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21251,'Fot',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21252,'Galgaheviz',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21253,'God',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21254,'Godollo',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21255,'Gyomro',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21256,'Hevizgyork',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21257,'Isaszeg',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21258,'Jaszkarajeno',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21259,'Kiskunlachaza',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21260,'Kocser',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21261,'Koka',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21262,'Kosd',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21263,'Maglod',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21264,'Monor',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21265,'Nagykata',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21266,'Nagykoros',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21267,'Nagykovacsi',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21268,'Nagymaros',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21269,'Nagytarcsa',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21270,'Nyaregyhaza',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21271,'Ocsa',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21272,'Orbottyan',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21273,'Orkeny',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21274,'Paty',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21275,'Pecel',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21276,'Perbal',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21277,'Pilis',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21278,'Pilisborosjeno',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21279,'Piliscsaba',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21280,'Pilisszanto',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21281,'Pilisszentivan',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21282,'Pilisszentkereszt',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21283,'Pilisvorosvar',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21284,'Pomaz',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21285,'Racalmas',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21286,'Rackeve',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21287,'Solymar',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21288,'Soskut',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21289,'Szada',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21290,'Szazhalombatta',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21291,'Szentendre',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21292,'Szentmartonkata',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21293,'Szigetcsep',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21294,'Szigetszentmiklos',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21295,'Szigetujfalu',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21296,'Szob',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21297,'Tahitofalu',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21298,'Tapiobicske',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21299,'Tapioszecso',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21300,'Tapioszele',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21301,'Toalmas',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21302,'Torokbalint',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21303,'Tortel',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21304,'Tura',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21305,'Ullo',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21306,'Uri',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21307,'Urom',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21308,'Vac',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21309,'Vecses',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21310,'Veresegyhaz',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21311,'Verocemaros',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21312,'Visegrad',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21313,'Zsambek',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21314,'Zsambok',1650,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21315,'Adand',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21316,'Balatonfoldvar',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21317,'Balatonoszod',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21318,'Balatonszabadi',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21319,'Balatonszarszo',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21320,'Barcs',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21321,'Berzence',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21322,'Boglarlelle',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21323,'Bohonye',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21324,'Csurgo',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21325,'Fonyod',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21326,'Kaposvar',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21327,'Karad',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21328,'Kethely',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21329,'Lengyeltoti',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21330,'Marcali',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21331,'Nagyatad',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21332,'Nagybajom',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21333,'Siofok',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21334,'Somogyvar',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21335,'Tab',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21336,'Zamardi',1651,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21337,'Ajak',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21338,'Baktaloranthaza',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21339,'Balkany',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21340,'Buj',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21341,'Demecser',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21342,'Dombrad',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21343,'Fehergyarmat',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21344,'Ibrany',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21345,'Kemecse',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21346,'Kisvarda',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21347,'Kotaj',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21348,'Mandok',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21349,'Mariapocs',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21350,'Mateszalka',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21351,'Nagyecsed',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21352,'Nagyhalasz',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21353,'Nagykallo',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21354,'Nyirbator',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21355,'Nyirbeltek',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21356,'Nyiregyhaza',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21357,'Nyirmada',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21358,'Nyirpazony',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21359,'Nyirtelek',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21360,'Ofeherto',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21361,'Rakamaz',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21362,'Tarpa',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21363,'Tiszabercel',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21364,'Tiszalok',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21365,'Tiszavasvari',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21366,'Tuzser',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21367,'Vaja',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21368,'Vasarosnameny',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21369,'Zahony',1652,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21370,'Bataszek',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21371,'Bonyhad',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21372,'Decs',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21373,'Dombovar',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21374,'Dunafoldvar',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21375,'Fadd',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21376,'Gyonk',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21377,'Hogyesz',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21378,'Iregszemcse',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21379,'Madocsa',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21380,'Nagymagocs',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21381,'Nagymanyok',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21382,'Ozora',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21383,'Paks',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21384,'Pincehely',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21385,'Simontornya',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21386,'Szekszard',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21387,'Szentgal',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21388,'Tamasi',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21389,'Tengelic',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21390,'Tolna',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21391,'Zomba',1653,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21392,'Buk',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21393,'Celldomolk',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21394,'Csepreg',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21395,'Gencsapati',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21396,'Jak',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21397,'Janoshaza',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21398,'Kormend',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21399,'Koszeg',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21400,'Sarvar',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21401,'Szentgotthard',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21402,'Szombathely',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21403,'Vasvar',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21404,'Vep',1654,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21405,'Ajka',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21406,'Badacsonytomaj',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21407,'Balatonalmadi',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21408,'Balatonfured',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21409,'Balatonfuzfo',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21410,'Balatonkenese',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21411,'Band',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21412,'Berhida',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21413,'Csabrendek',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21414,'Devecser',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21415,'Herend',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21416,'Papa',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21417,'Sumeg',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21418,'Tapolca',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21419,'Urkut',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21420,'Varpalota',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21421,'Veszprem',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21422,'Zirc',1655,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21423,'Becsehely',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21424,'Heviz',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21425,'Keszthely',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21426,'Lenti',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21427,'Letenye',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21428,'Nagykanizsa',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21429,'Sarmellek',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21430,'Turje',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21431,'Zalaegerszeg',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21432,'Zalakomar',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21433,'Zalalovo',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21434,'Zalaszentgrot',1656,99,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21435,'Bakkafjor ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21436,'Borgarfjor ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21437,'Brei dalsvik',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21438,'Djupivogur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21439,'Egilssta ir',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21440,'Eskifjor ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21441,'Faskru sfjor ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21442,'Fellabar',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21443,'Hallormssta ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21444,'Hofn',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21445,'Nesjakauptun',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21446,'Neskaupsta ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21447,'Rey arfjor ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21448,'Sey isfjor ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21449,'Sto varfjor ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21450,'Vopnafjor ur',1657,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21451,'Akranes',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21452,'Borgarnes',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21453,'Bu ardalur',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21454,'Grundarfjor ur',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21455,'Hellissandur',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21456,'Hvanneyri',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21457,'Olafsvik',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21458,'Rif',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21459,'Stykkisholmur',1665,100,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21460,'Banda Aceh',1666,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21461,'Bireun',1666,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21462,'Langsa',1666,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21463,'Lhokseumawe',1666,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21464,'Meulaboh',1666,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21465,'Denpasar',1667,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21466,'Karangasem',1667,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21467,'Klungkung',1667,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21468,'Kuta',1667,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21469,'Negara',1667,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21470,'Singaraja',1667,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21471,'Tabanan',1667,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21472,'Ubud',1667,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21473,'Manggar',1668,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21474,'Mentok',1668,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21475,'Pangkal Pinang',1668,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21476,'Sungai Liat',1668,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21477,'Tanjung Pandan',1668,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21478,'Toboali-Rias',1668,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21479,'Cikupa',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21480,'Cilegon',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21481,'Ciputat',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21482,'Curug',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21483,'Kresek',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21484,'Labuhan',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21485,'Pandegelang',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21486,'Pondok Aren',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21487,'Rangkasbitung',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21488,'Serang',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21489,'Serpong',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21490,'Tangerang',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21491,'Teluknaga',1669,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21492,'Bengkulu',1670,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21493,'Curup',1670,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21494,'Gandaria',1671,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21495,'Gorontalo',1672,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21496,'Cengkareng',1673,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21497,'Jakarta',1673,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21498,'Jambi',1674,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21499,'Kualatungka',1674,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21500,'Simpang',1674,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21501,'Sungaipenuh',1674,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21502,'Kendal',1682,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21503,'Bandar Lampung',1683,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21504,'Kota Bumi',1683,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21505,'Metro',1683,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21506,'Pringsewu',1683,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21507,'Terbanggi Besar',1683,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21508,'Amahai',1684,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21509,'Ambon',1684,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21510,'Tual',1684,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21511,'Amahai',1685,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21512,'Ambon',1685,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21513,'Tual',1685,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21514,'Aberpura',1688,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21515,'Biak',1688,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21516,'Jaya Pura',1688,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21517,'Manokwari',1688,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21518,'Merauke',1688,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21519,'Sorong',1688,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21520,'Balaipungut',1689,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21521,'Bengkalis',1689,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21522,'Dumai',1689,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21523,'Duri',1689,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21524,'Pekan Baru',1689,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21525,'Selatpanjang',1689,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21526,'Tanjung Balai-Meral',1689,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21527,'Tembilahan',1689,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21528,'Balaipungut',1690,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21529,'Bengkalis',1690,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21530,'Dumai',1690,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21531,'Duri',1690,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21532,'Pekan Baru',1690,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21533,'Selatpanjang',1690,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21534,'Tanjung Balai-Meral',1690,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21535,'Tembilahan',1690,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21536,'Solo',1691,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21537,'Bambanglipuro',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21538,'Banguntapan',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21539,'Bantul',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21540,'Depok',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21541,'Gamping',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21542,'Godean',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21543,'Jetis',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21544,'Kasihan',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21545,'Ngaglik',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21546,'Pandak',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21547,'Pundong',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21548,'Sewon',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21549,'Seyegan',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21550,'Sleman',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21551,'Srandakan',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21552,'Wonosari',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21553,'Yogyakarta',1699,102,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21554,'Ardabil',1700,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21555,'Garmi',1700,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21556,'Khalkhal',1700,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21557,'Meshkinshahr',1700,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21558,'Parsabad',1700,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21559,'Bandar-e Gonaveh',1703,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21560,'Borazjan',1703,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21561,'Bushehr',1703,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21562,'Dashti',1703,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21563,'Dir',1703,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21564,'Khormuj',1703,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21565,'Kongan',1703,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21566,'Tangestan',1703,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21567,'Ardistan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21568,'Dorchehpiyaz',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21569,'Dowlatabad',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21570,'Esfahan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21571,'Falavarjan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21572,'Faridan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21573,'Fereydunshahr',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21574,'Fuladshahr',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21575,'Golara',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21576,'Golpayegan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21577,'Kashan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21578,'Kelishad',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21579,'Khomeynishahr',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21580,'Khonsar',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21581,'Khuresgan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21582,'Mobarakeh',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21583,'Na\'in',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21584,'Najafabad',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21585,'Natnaz',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21586,'Qahdarijan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21587,'Rehnan',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21588,'Semirom',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21589,'Shahinshahr',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21590,'Shahreza',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21591,'Zarinshahr',1705,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21592,'Abadeh',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21593,'Akbarabad',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21594,'Darab',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21595,'Eqlid',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21596,'Estehban',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21597,'Fasa',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21598,'Firuzabad',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21599,'Gerash',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21600,'Jahrom',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21601,'Kazerun',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21602,'Lar',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21603,'Marv Dasht',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21604,'Neyriz',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21605,'Nurabad',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21606,'Qa\'emiyeh',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21607,'Sepidan',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21608,'Shiraz',1706,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21609,'Astaneh-ye Ashrafiyeh',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21610,'Astara',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21611,'Bandar-e Anzali',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21612,'Faman',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21613,'Hashtpar',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21614,'Lahijan',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21615,'Langarud',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21616,'Rasht',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21617,'Rudbar',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21618,'Rudsar',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21619,'Sawma\'eh Sara',1707,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21620,'Aq Qal\'eh',1708,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21621,'Azad Shahr',1708,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21622,'Bandar-e Torkaman',1708,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21623,'Gonbad-e Qabus',1708,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21624,'Gorgan',1708,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21625,'Asadabad',1709,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21626,'Bahar',1709,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21627,'Hamadan',1709,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21628,'Malayer',1709,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21629,'Nahavand',1709,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21630,'Tuysarkan',1709,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21631,'Bandar Abbas',1710,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21632,'Bandar-e \'Abbas',1710,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21633,'Bandar-e Lengeh',1710,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21634,'Gheshm',1710,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21635,'Jask',1710,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21636,'Kish',1710,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21637,'Kish Island',1710,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21638,'Minab',1710,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21639,'Abdanan',1711,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21640,'Darrehshahr',1711,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21641,'Dehloran',1711,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21642,'Ilam',1711,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21643,'Ivan',1711,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21644,'Mehran',1711,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21645,'Baft',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21646,'Bam',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21647,'Bardsir',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21648,'Jiroft',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21649,'Kahnuj',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21650,'Kerman',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21651,'Rafsanjan',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21652,'Ravar',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21653,'Shahr-e Babak',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21654,'Sirjan',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21655,'Zarand',1712,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21656,'Eslamabad',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21657,'Gilan-e Garb',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21658,'Harsin',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21659,'Javanrud',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21660,'Kangavar',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21661,'Kermanshah',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21662,'Paveh',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21663,'Sahneh',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21664,'Sar-e-Pol-e-Zohab',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21665,'Sonqor',1713,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21666,'Birjand',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21667,'Bojnurd',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21668,'Chenaran',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21669,'Darreh Gaz',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21670,'Esfarayen',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21671,'Fariman',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21672,'Ferdus',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21673,'Gha\'nat',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21674,'Gonabad',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21675,'Kashmar',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21676,'Mashad',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21677,'Mashhad',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21678,'Neyshabur',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21679,'Qayen',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21680,'Quchan',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21681,'Sabzevar',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21682,'Sarakhs',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21683,'Shirvan',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21684,'Tabas',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21685,'Tayyebat',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21686,'Torbat-e Heydariyeh',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21687,'Torbat-e Jam',1714,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21688,'Abadan',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21689,'Agha Jari',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21690,'Ahvaz',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21691,'Ahwaz',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21692,'Andimeshk',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21693,'Bandar-e Emam Khomeyni',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21694,'Bandar-e Mahshahr',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21695,'Behbahan',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21696,'Dezful',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21697,'Ezeh',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21698,'Hendijan',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21699,'Khorramshahr',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21700,'Masjed-e Soleyman',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21701,'Omidiyeh',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21702,'Ramhormoz',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21703,'Ramshir',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21704,'Shadegan',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21705,'Shush',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21706,'Shushtar',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21707,'Susangerd',1715,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21708,'Baneh',1717,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21709,'Bijar',1717,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21710,'Kamyaran',1717,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21711,'Marivan',1717,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21712,'Qorveh',1717,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21713,'Sanandaj',1717,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21714,'Saqqez',1717,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21715,'Alashtar',1718,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21716,'Aligudarz',1718,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21717,'Azna',1718,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21718,'Borujerd',1718,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21719,'Do Rud',1718,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21720,'Khorramabad',1718,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21721,'Kuhdasht',1718,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21722,'Nurabad',1718,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21723,'Arak',1719,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21724,'Ashtian',1719,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21725,'Delijan',1719,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21726,'Khomeyn',1719,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21727,'Mahallat',1719,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21728,'Sarband',1719,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21729,'Saveh',1719,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21730,'Tafresh',1719,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21731,'Aliabad',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21732,'Amir Kala',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21733,'Amol',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21734,'Babol',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21735,'Babol Sar',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21736,'Behshahr',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21737,'Chalus',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21738,'Fereydunkenar',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21739,'Juybar',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21740,'Kalaleh',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21741,'Kordkuy',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21742,'Mahmudabad',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21743,'Minudasht',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21744,'Neka',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21745,'Nur',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21746,'Nushahr',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21747,'Qa\'emshahr',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21748,'Ramsar',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21749,'Sari',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21750,'Savadkuh',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21751,'Tonekabon',1720,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21752,'Abhar',1722,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21753,'Abyek',1722,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21754,'Qazvin',1722,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21755,'Takestan',1722,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21756,'Qom',1723,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21757,'Damghan',1724,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21758,'Garmsar',1724,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21759,'Semnan',1724,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21760,'Shahrud',1724,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21761,'Damavand',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21762,'Eqbaliyeh',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21763,'Eslamshahr',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21764,'Hashtgerd',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21765,'Karaj',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21766,'Mahdasht',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21767,'Malard',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21768,'Mohammadiyeh',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21769,'Nazarabad',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21770,'Pakdasht',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21771,'Pishva',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21772,'Qarchak',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21773,'Qods',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21774,'Robat Karim',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21775,'Shahriyar',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21776,'Tehran',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21777,'Varamin',1726,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21778,'Ardakan',1727,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21779,'Bafq',1727,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21780,'Mehriz',1727,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21781,'Meybod',1727,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21782,'Taft',1727,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21783,'Yazd',1727,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21784,'Alvand',1728,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21785,'Khorramdarreh',1728,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21786,'Zanjan',1728,103,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21787,'Jurf-as-Sakhr',1729,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21788,'Saddat-al-Hindiyah',1729,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21789,'al-Hillah',1729,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21790,'al-Madhatiyah',1729,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21791,'al-Musayyib',1729,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21792,'al-Qasim',1729,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21793,'Baghdad',1730,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21794,'Dahuk',1731,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21795,'Zakhu',1731,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21796,'Ba\'qubah',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21797,'Hanaqin',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21798,'Jalula\'\'',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21799,'Kifri',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21800,'Mandali',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21801,'al-Fuhud',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21802,'al-Khalis',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21803,'al-Miqdadiyah',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21804,'ash-Shatrah',1733,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21805,'Ankawa',1734,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21806,'Chaqalawa',1735,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21807,'Irbil',1735,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21808,'Rawanduz',1735,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21809,'Karbala',1736,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21810,'al-Hindiyah',1736,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21811,'Erbil',1737,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21812,'\'Ali al Gharbi',1738,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21813,'al-\'Amarah',1738,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21814,'al-Majarr-al-Kabir',1738,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21815,'Qarah Qush',1739,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21816,'Sinjar',1739,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21817,'Tall \'Afar',1739,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21818,'Tall Kayf',1739,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21819,'al-Mawsil',1739,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21820,'ash-Shaykhan',1739,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21821,'Balad',1740,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21822,'Bayji',1740,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21823,'Dhalu\'iyah',1740,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21824,'Samarra',1740,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21825,'Tikrit',1740,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21826,'Tuz',1740,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21827,'ad-Dujayl',1740,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21828,'al-\'Aziziyah',1741,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21829,'al-Hayy',1741,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21830,'al-Kut',1741,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21831,'an-Nu\'maniyah',1741,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21832,'as-Suwayrah',1741,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21833,'\'Anah',1742,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21834,'Hit',1742,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21835,'Rawah',1742,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21836,'al-Fallujah',1742,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21837,'al-Habbaniyah',1742,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21838,'al-Hadithah',1742,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21839,'ar-Ramadi',1742,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21840,'ar-Rutbah',1742,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21841,'Abu al-Khasib',1743,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21842,'Harithah',1743,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21843,'Shatt-al-\'Arab',1743,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21844,'al-Basrah',1743,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21845,'al-Faw',1743,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21846,'al-Qurnah',1743,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21847,'az-Zubayr',1743,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21848,'ar-Rumaythah',1744,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21849,'as-Samawah',1744,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21850,'\'Afak',1745,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21851,'ad-Diwaniyah',1745,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21852,'al-Ghammas',1745,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21853,'al-Hamzah',1745,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21854,'ash-Shamiyah',1745,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21855,'ash-Shinafiyah',1745,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21856,'al-Kufah',1746,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21857,'al-Mishkhab',1746,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21858,'an-Najaf',1746,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21859,'Chamchamal',1747,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21860,'Halabjah',1747,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21861,'Kusanjaq',1747,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21862,'Panjwin',1747,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21863,'Qal\'at Dizeh',1747,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21864,'as-Sulaymaniyah',1747,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21865,'\'Aqrah',1748,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21866,'Kirkuk',1748,104,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21867,'Moira',1749,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21868,'Bagenalstown',1750,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21869,'Carlow',1750,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21870,'Tullow',1750,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21871,'Bailieborough',1751,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21872,'Belturbet',1751,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21873,'Cavan',1751,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21874,'Coothill',1751,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21875,'Ennis',1752,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21876,'Kilkee',1752,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21877,'Kilrush',1752,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21878,'Newmarket-on-Fergus',1752,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21879,'Shannon',1752,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21880,'Bandon',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21881,'Bantry',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21882,'Blarney',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21883,'Carrigaline',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21884,'Charleville',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21885,'Clonakilty',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21886,'Cobh',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21887,'Cork',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21888,'Drishane',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21889,'Dunmanway',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21890,'Fermoy',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21891,'Kanturk',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21892,'Kinsale',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21893,'Macroom',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21894,'Mallow',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21895,'Midleton',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21896,'Millstreet',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21897,'Mitchelstown',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21898,'Passage West',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21899,'Skibbereen',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21900,'Youghal',1753,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21901,'Ballybofey',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21902,'Ballyshannon',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21903,'Buncrana',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21904,'Bundoran',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21905,'Carndonagh',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21906,'Donegal',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21907,'Killybegs',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21908,'Letterkenny',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21909,'Lifford',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21910,'Moville',1754,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21911,'Balbriggan',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21912,'Ballsbridge',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21913,'Dublin',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21914,'Leixlip',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21915,'Lucan',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21916,'Malahide',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21917,'Portrane',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21918,'Rathcoole',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21919,'Rush',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21920,'Skerries',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21921,'Swords',1755,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21922,'Athenry',1756,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21923,'Ballinasloe',1756,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21924,'Clifden',1756,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21925,'Galway',1756,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21926,'Gort',1756,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21927,'Loughrea',1756,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21928,'Tuam',1756,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21929,'Ballybunion',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21930,'Cahirciveen',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21931,'Castleisland',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21932,'Dingle',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21933,'Kenmare',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21934,'Killarney',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21935,'Killorglin',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21936,'Listowel',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21937,'Tralee',1757,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21938,'Athy',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21939,'Celbridge',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21940,'Clane',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21941,'Kilcock',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21942,'Kilcullen',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21943,'Kildare',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21944,'Maynooth',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21945,'Monasterevan',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21946,'Naas',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21947,'Newbridge',1758,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21948,'Callan',1759,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21949,'Castlecomer',1759,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21950,'Kilkenny',1759,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21951,'Thomastown',1759,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21952,'Abbeyleix',1760,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21953,'Mountmellick',1760,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21954,'Mountrath',1760,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21955,'Port Laoise',1760,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21956,'Portarlington',1760,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21957,'Meath',1761,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21958,'Carrick-on-Shannon',1762,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21959,'Abbeyfeale',1763,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21960,'Kilmallock',1763,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21961,'Limerick',1763,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21962,'Newcastle',1763,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21963,'Rathkeale',1763,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21964,'Granard',1765,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21965,'Longford',1765,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21966,'Moate',1765,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21967,'Ardee',1766,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21968,'Drogheda',1766,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21969,'Drumcar',1766,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21970,'Dundalk',1766,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21971,'Ballina',1767,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21972,'Ballinrobe',1767,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21973,'Ballyhaunis',1767,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21974,'Castlebar',1767,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21975,'Claremorris',1767,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21976,'Swinford',1767,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21977,'Westport',1767,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21978,'Ashbourne',1768,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21979,'Duleek',1768,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21980,'Dunboyne',1768,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21981,'Dunshaughlin',1768,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21982,'Kells',1768,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21983,'Laytown',1768,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21984,'Navan',1768,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21985,'Trim',1768,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21986,'Carrickmacross',1769,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21987,'Castleblayney',1769,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21988,'Clones',1769,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21989,'Monaghan',1769,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21990,'Banagher',1770,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21991,'Birr',1770,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21992,'Clara',1770,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21993,'Edenderry',1770,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21994,'Kilcormac',1770,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21995,'Tullamore',1770,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21996,'Ballaghaderreen',1771,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21997,'Boyle',1771,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21998,'Castlerea',1771,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(21999,'Roscommon',1771,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22000,'Sligo',1772,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22001,'Co Tyrone',1775,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22002,'Downpatrick',1775,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22003,'Dungarvan',1776,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22004,'Tramore',1776,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22005,'Waterford',1776,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22006,'Athlone',1777,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22007,'Mullingar',1777,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22008,'Enniscorthy',1778,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22009,'Gorey',1778,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22010,'New Ross',1778,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22011,'Wexford',1778,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22012,'Arklow',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22013,'Baltinglass',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22014,'Blessington',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22015,'Bray',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22016,'Greystones',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22017,'Kilcoole',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22018,'Newtownmountkennedy',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22019,'Rathdrum',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22020,'Wicklow',1779,105,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22021,'Bethlehem',1782,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22022,'Caesarea',1783,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22023,'Petach Tikva',1784,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22024,'Ramallah',1784,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22025,'Gaza',1785,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22026,'\'Arad',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22027,'\'Omer',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22028,'Ashdod',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22029,'Ashqelon',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22030,'Be\'er Sheva',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22031,'Beersheba',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22032,'Bene Ayish',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22033,'Dimona',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22034,'Elat',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22035,'Gan Yavne',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22036,'Nahal `Oz',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22037,'Netivot',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22038,'Ofaqim',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22039,'Qiryat Gat',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22040,'Qiryat Mal\'akhi',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22041,'Sederot',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22042,'Yeroham',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22043,'kiryat Malachi',1786,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22044,'Be\'er Ya\'aqov',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22045,'Beit Shemesh',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22046,'Bene Beraq',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22047,'Bnei Brak',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22048,'Even Yehuda',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22049,'Fureidis',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22050,'Gat Rimon',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22051,'Gedera',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22052,'Givat Shmuel',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22053,'Hibat Zion',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22054,'Hod HaSharon',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22055,'Hogar',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22056,'Jaljulye',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22057,'Jatt',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22058,'Kafar Qasem',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22059,'Kefar Sava',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22060,'Kefar Yona',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22061,'Kfar Saba',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22062,'Kiryag Bialik',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22063,'Lod',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22064,'Mazkeret Batya',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22065,'Modi\'in',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22066,'Nes Ziyyona',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22067,'Ness Ziona',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22068,'Netanya',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22069,'Nordiya',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22070,'Pardesiyya',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22071,'Petakh Tiqwa',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22072,'Qadima',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22073,'Qalansawe',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22074,'Qiryat \'Eqron',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22075,'Ra\'anana',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22076,'Ramla',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22077,'Rehovot',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22078,'Rekhovot',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22079,'Rinnatya',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22080,'Rishon LeZiyyon',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22081,'Rosh HaAyin',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22082,'Shoham',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22083,'Tayibe',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22084,'Tire',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22085,'Tsur Igal',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22086,'Udim',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22087,'Yavne',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22088,'Yehud',1788,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22089,'\'Afula',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22090,'\'Akko',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22091,'\'Arrabe',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22092,'\'Ein Mahel',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22093,'\'Ilut',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22094,'Abu Sinan',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22095,'Basmat Tab\'un',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22096,'Beit Jann',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22097,'Bet She\'an',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22098,'Bi\'ne',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22099,'Bir-al-Maksur',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22100,'Bu\'eine-Nujeidat',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22101,'Dabburye',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22102,'Dayr Hannah',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22103,'Dayr-al-Asad',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22104,'Hazor HaGelilit',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22105,'I\'billin',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22106,'Iksal',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22107,'Judeide-Maker',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22108,'Kabul',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22109,'Kafar Kanna',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22110,'Kafar Manda',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22111,'Kafar Yasif',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22112,'Karmiel',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22113,'Kisra-Sumei',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22114,'Ma\'alot Tarshikha',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22115,'Majd-al-Kurum',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22116,'Migdal Ha\'Emeq',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22117,'Mugar',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22118,'Nahariyya',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22119,'Nahef',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22120,'Nazerat',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22121,'Nazerat \'Illit',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22122,'Qiryat Shemona',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22123,'Qiryat Tiv\'on',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22124,'Rame',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22125,'Reine',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22126,'Sakhnin',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22127,'Shefar\'am',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22128,'Tamra',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22129,'Tiberias',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22130,'Tur\'an',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22131,'Yirka',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22132,'Yoqne\'am Illit',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22133,'Zefat',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22134,'Zur Yigal',1789,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22135,'Hebron',1790,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22136,'Sgula',1791,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22137,'Jerusalem',1792,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22138,'\'Ar\'ara',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22139,'\'Isifya',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22140,'Baqa al-Gharbiyyah',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22141,'Binyamina',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22142,'Daliyat-al-Karmil',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22143,'Jizr-az-Zarqa',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22144,'Khadera',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22145,'Khefa',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22146,'Nesher',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22147,'Or \'Aqiva',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22148,'Pardes Khanna-Karkur',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22149,'Qiryat Atta',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22150,'Qiryat Bialik',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22151,'Qiryat Motzkin',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22152,'Qiryat Yam',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22153,'Rekhasim',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22154,'Tirat Karmel',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22155,'Umm-al-Fahm',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22156,'Zikhron Ya\'aqov',1793,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22157,'Qalqilya',1796,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22158,'Hadera',1799,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22159,'Kiryag Bialik',1799,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22160,'Bet Shemesh',1801,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22161,'Mevasserat Ziyyon',1801,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22162,'Yerushalayim',1801,106,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22163,'Meta',1802,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22164,'Miano',1802,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22165,'Alba Adriatica',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22166,'Atessa',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22167,'Atri',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22168,'Avezzano',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22169,'Celano',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22170,'Cepagatti',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22171,'Chieti',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22172,'Citta Sant\'Angelo',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22173,'Francavilla al Mare',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22174,'Giulianova',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22175,'Guardiagrele',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22176,'L\'Aquila',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22177,'Lanciano',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22178,'Martinsicuro',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22179,'Montesilvano',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22180,'Montorio al Vomano',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22181,'Mosciano Sant\'Angelo',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22182,'Ortona',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22183,'Penne',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22184,'Pescara',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22185,'Pineto',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22186,'Roseto degli Abruzzi',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22187,'San Giovanni Teatino',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22188,'San Salvo',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22189,'Sant\'Egidio alla Vibrata',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22190,'Silvi',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22191,'Spoltore',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22192,'Sulmona',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22193,'Teramo',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22194,'Vasto',1803,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22195,'Agrigento',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22196,'Alessandria della Rocca',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22197,'Aragona',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22198,'Bivona',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22199,'Burgio',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22200,'Calamonaci',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22201,'Caltabellotta',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22202,'Camastra',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22203,'Cammarata',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22204,'Campobello di Licata',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22205,'Canicatt%�^%�%�,%�',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22206,'Casteltermini',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22207,'Castrofilippo',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22208,'Cattolica Eraclea',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22209,'Cianciana',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22210,'Comitini',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22211,'Favara',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22212,'Grotte',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22213,'Joppolo Giancaxio',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22214,'Lampedusa e Linosa',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22215,'Licata',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22216,'Lucca Sicula',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22217,'Menfi',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22218,'Montallegro',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22219,'Montevago',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22220,'Naro',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22221,'Palma di Montechiaro',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22222,'Porto Empedocle',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22223,'Racalmuto',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22224,'Raffadali',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22225,'Ravanusa',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22226,'Realmonte',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22227,'Ribera',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22228,'Sambuca di Sicilia',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22229,'San Biagio Platani',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22230,'San Giovanni Gemini',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22231,'Sant Angelo Muxaro',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22232,'Santa Elisabetta',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22233,'Santa Margherita di Belice',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22234,'Santo Stefano Quisquina',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22235,'Sciacca',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22236,'Siculiana',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22237,'Villafranca Sicula',1804,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22238,'Castellazzo Bormida',1805,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22239,'Gavi',1805,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22240,'Villanova Monferrato',1805,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22241,'Camerano',1806,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22242,'Castelplanio',1806,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22243,'Capolona',1807,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22244,'Montevarchi',1807,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22245,'Subbiano',1807,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22246,'Buttigliera d\'Asti',1809,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22247,'Flumeri',1810,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22248,'Nusco',1810,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22249,'Prata di Principato Ultra',1810,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22250,'Villanova del Battista',1810,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22251,'Avigliano',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22252,'Bernalda',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22253,'Ferrandina',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22254,'Lauria',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22255,'Lavello',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22256,'Matera',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22257,'Melfi',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22258,'Montescaglioso',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22259,'Pisticci',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22260,'Policoro',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22261,'Potenza',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22262,'Rionero in Vulture',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22263,'Venosa',1812,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22264,'Belluno',1813,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22265,'D\'alpago',1813,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22266,'Longarone',1813,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22267,'Pedavena',1813,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22268,'San Bartolomeo',1814,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22269,'',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22270,'Bagnatica',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22271,'Bergamo',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22272,'Bolgare',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22273,'Bottanuco',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22274,'Brignano Gera d\'Adda',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22275,'Calcio',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22276,'Caravaggio',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22277,'Chiuduno',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22278,'Ciserano',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22279,'Comun Nuovo',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22280,'Costa di Mezzate',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22281,'Gandino',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22282,'Grassobbio',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22283,'Grumello Del Monte',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22284,'Grumello del Monte',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22285,'Lallio',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22286,'Levate',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22287,'Lurano',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22288,'Mapello',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22289,'Pagazzano',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22290,'Ponteranica',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22291,'Pontida',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22292,'Sant Omobono Imagna',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22293,'Torre Pallavicina',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22294,'Trescore Balneario',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22295,'Verdellino',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22296,'Zingonia',1815,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22297,'Camburzano',1816,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22298,'Crevacuore',1816,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22299,'Gaglianico',1816,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22300,'Sandigliano',1816,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22301,'Vigliano Biellese',1816,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22302,'Anzola dell\'Emilia',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22303,'Bologna',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22304,'Borgo Tossignano',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22305,'Casalfiumanese',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22306,'Castiglione Dei Pepoli ',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22307,'Funo',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22308,'Loiano',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22309,'Monterenzio',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22310,'Osteria Grande',1817,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22311,'Frangarto',1818,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22312,'Agnosine',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22313,'Brescia',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22314,'Capriano del Colle',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22315,'Capriolo',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22316,'Castegnato',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22317,'Castelcovati',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22318,'Cellatica',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22319,'Coccaglio',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22320,'Comezzano-Cizzago',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22321,'Erbusco',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22322,'Flero',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22323,'Lavenone',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22324,'Longhena',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22325,'Maclodio',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22326,'Muscoline',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22327,'Padenghe sul Garda',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22328,'Paderno Franciacorta',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22329,'Paratico',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22330,'Passirano',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22331,'Polaveno',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22332,'Poncarale',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22333,'Prevalle',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22334,'Provaglio dIseo',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22335,'Roncadelle',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22336,'Verolavecchia',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22337,'Visano',1819,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22338,'San Donaci',1820,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22339,'Acri',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22340,'Amantea',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22341,'Bagnara Calabra',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22342,'Belvedere Marittimo',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22343,'Bisignano',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22344,'Bovalino',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22345,'Cariati',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22346,'Cassano allo Ionio',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22347,'Castrolibero',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22348,'Castrovillari',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22349,'Catanzaro',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22350,'Cetraro',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22351,'Ciro Marina',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22352,'Cittanova',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22353,'Corigliano Calabro',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22354,'Cosenza',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22355,'Crosia',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22356,'Crotone',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22357,'Cutro',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22358,'Fuscaldo',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22359,'Gioia Tauro',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22360,'Isola di Capo Rizzuto',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22361,'Lamezia Terme',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22362,'Locri',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22363,'Luzzi',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22364,'Melito di Porto Salvo',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22365,'Mendicino',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22366,'Montalto Uffugo',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22367,'Palmi',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22368,'Paola',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22369,'Petilia Policastro',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22370,'Pizzo',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22371,'Polistena',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22372,'Reggio di Calabria',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22373,'Rende',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22374,'Rosarno',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22375,'Rossano',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22376,'San Giovanni in Fiore',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22377,'Scalea',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22378,'Sellia Marina',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22379,'Siderno',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22380,'Soverato',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22381,'Taurianova',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22382,'Trebisacce',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22383,'Vibo Valentia',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22384,'Villa San Giovanni',1821,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22385,'Acerra',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22386,'Afragola',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22387,'Agropoli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22388,'Angri',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22389,'Ariano Irpino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22390,'Arzano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22391,'Atripalda',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22392,'Avellino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22393,'Aversa',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22394,'Bacoli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22395,'Barano d\'Ischia',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22396,'Baronissi',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22397,'Battipaglia',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22398,'Bellizzi',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22399,'Benevento',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22400,'Boscoreale',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22401,'Boscotrecase',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22402,'Brusciano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22403,'Caivano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22404,'Calvizzano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22405,'Campagna',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22406,'Capaccio',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22407,'Capua',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22408,'Cardito',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22409,'Carinola',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22410,'Casagiove',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22411,'Casal di Principe',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22412,'Casalnuovo di Napoli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22413,'Casaluce',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22414,'Casandrino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22415,'Casavatore',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22416,'Caserta',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22417,'Casoria',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22418,'Castel San Giorgio',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22419,'Castel Volturno',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22420,'Castellammare di Stabia',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22421,'Cava de\' Tirreni',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22422,'Cercola',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22423,'Cervinara',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22424,'Cicciano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22425,'Crispano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22426,'Eboli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22427,'Ercolano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22428,'Fisciano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22429,'Forio',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22430,'Frattamaggiore',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22431,'Frattaminore',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22432,'Frignano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22433,'Giffoni Valle Piana',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22434,'Giugliano in Campania',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22435,'Gragnano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22436,'Gricignano di Aversa',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22437,'Grottaminarda',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22438,'Grumo Nevano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22439,'Ischia',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22440,'Lusciano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22441,'Macerata Campania',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22442,'Maddaloni',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22443,'Marano di Napoli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22444,'Marcianise',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22445,'Marigliano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22446,'Massa Lubrense',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22447,'Melito di Napoli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22448,'Mercato San Severino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22449,'Mercogliano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22450,'Meta',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22451,'Mirabella Eclano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22452,'Mondragone',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22453,'Monte di Procida',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22454,'Montecorvino Rovella',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22455,'Monteforte Irpino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22456,'Montesarchio',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22457,'Montoro Inferiore',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22458,'Mugnano di Napoli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22459,'Naples',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22460,'Napoli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22461,'Nocera Inferiore',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22462,'Nocera Superiore',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22463,'Nola',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22464,'Orta di Atella',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22465,'Ottaviano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22466,'Pagani',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22467,'Palma Campania',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22468,'Parete',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22469,'Pellezzano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22470,'Piano di Sorrento',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22471,'Piedimonte Matese',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22472,'Poggiomarino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22473,'Pollena Trocchia',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22474,'Pomigliano d\'Arco',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22475,'Pompei',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22476,'Pontecagnano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22477,'Portici',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22478,'Positano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22479,'Pozzuoli',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22480,'Procida',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22481,'Qualiano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22482,'Quarto',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22483,'Roccapiemonte',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22484,'Sala Consilina',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22485,'Salerno',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22486,'San Cipriano d\'Aversa',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22487,'San Felice a Cancello',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22488,'San Gennaro Vesuviano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22489,'San Giorgio a Cremano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22490,'San Giorgio del Sannio',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22491,'San Giuseppe Vesuviano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22492,'San Marcellino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22493,'San Marzano sul Sarno',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22494,'San Nicola',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22495,'San Prisco',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22496,'San Sebastiano al Vesuvio',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22497,'San Valentino Torio',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22498,'Sant Antimo',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22499,'Sant\'Agata de\' Goti',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22500,'Sant\'Agnello',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22501,'Sant\'Anastasia',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22502,'Sant\'Antonio Abate',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22503,'Sant\'Arpino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22504,'Sant\'Egidio del Monte Albino',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22505,'Santa Maria Capua Vetere',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22506,'Santa Maria a Vico',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22507,'Santa Maria la Carita',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22508,'Sarno',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22509,'Saviano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22510,'Scafati',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22511,'Sessa Aurunca',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22512,'Siano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22513,'Solofra',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22514,'Somma Vesuviana',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22515,'Sorrento',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22516,'Teano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22517,'Teggiano',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22518,'Terzigno',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22519,'Teverola',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22520,'Torre Annunziata',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22521,'Torre del Greco',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22522,'Trecase',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22523,'Trentola-Ducenta',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22524,'Vallo della Lucania',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22525,'Vico Equense',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22526,'Vietri sul Mare',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22527,'Villa Literno',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22528,'Villaricca',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22529,'Volla',1822,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22530,'Cartoceto',1823,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22531,'Carinaro',1824,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22532,'San Marco Evangelista',1824,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22533,'Fiandaca Di Acireale',1825,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22534,'San Cono',1825,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22535,'Altino',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22536,'Archi',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22537,'Ari',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22538,'Arielli',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22539,'Atessa',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22540,'Bomba',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22541,'Borrello',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22542,'Bucchianico',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22543,'Canosa Sannita',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22544,'Carpineto Sinello',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22545,'Carunchio',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22546,'Casacanditella',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22547,'Casalanguida',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22548,'Casalbordino',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22549,'Casalincontrada',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22550,'Casoli',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22551,'Castel Frentano',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22552,'Castelguidone',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22553,'Castiglione Messer Marino',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22554,'Celenza sul Trigno',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22555,'Chieti',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22556,'Civitaluparella',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22557,'Civitella Messer Raimondo',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22558,'Colledimacine',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22559,'Colledimezzo',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22560,'Crecchio',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22561,'Cupello',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22562,'Dogliola',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22563,'Fallo',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22564,'Fara Filiorum Petri',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22565,'Fara San Martino',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22566,'Filetto',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22567,'Fossacesia',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22568,'Fraine',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22569,'Francavilla al Mare',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22570,'Fresagrandinaria',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22571,'Frisa',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22572,'Furci',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22573,'Gamberale',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22574,'Gessopalena',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22575,'Gissi',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22576,'Giuliano Teatino',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22577,'Guardiagrele',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22578,'Guilmi',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22579,'Lama dei Peligni',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22580,'Lanciano',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22581,'Lentella',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22582,'Lettopalena',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22583,'Liscia',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22584,'Miglianico',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22585,'Montazzoli',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22586,'Montebello sul Sangro',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22587,'Monteferrante',1826,107,0.00,0,'2021-04-06 01:13:46','2021-04-06 01:13:46',NULL),(22588,'Montelapiano',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22589,'Montenerodomo',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22590,'Monteodorisio',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22591,'Mozzagrogna',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22592,'Orsogna',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22593,'Ortona',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22594,'Paglieta',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22595,'Palena',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22596,'Palmoli',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22597,'Palombaro',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22598,'Pennadomo',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22599,'Pennapiedimonte',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22600,'Perano',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22601,'Pietraferrazzana',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22602,'Pizzoferrato',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22603,'Poggiofiorito',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22604,'Pollutri',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22605,'Pretoro',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22606,'Quadri',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22607,'Rapino',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22608,'Ripa Teatina',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22609,'Rocca San Giovanni',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22610,'Roccamontepiano',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22611,'Roccascalegna',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22612,'Roccaspinalveti',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22613,'Roio del Sangro',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22614,'Rosello',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22615,'San Buono',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22616,'San Giovanni Lipioni',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22617,'San Giovanni Teatino',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22618,'San Martino sulla Marrucina',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22619,'San Salvo',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22620,'San Vito Chietino',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22621,'Sant Eusanio del Sangro',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22622,'Santa Maria Imbaro',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22623,'Scerni',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22624,'Schiavi di Abruzzo',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22625,'Taranta Peligna',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22626,'Tollo',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22627,'Torino di Sangro',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22628,'Tornareccio',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22629,'Torrebruna',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22630,'Torrevecchia Teatina',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22631,'Torricella Peligna',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22632,'Treglio',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22633,'Tufillo',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22634,'Vacri',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22635,'Vasto',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22636,'Villa Santa Maria',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22637,'Villalfonsina',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22638,'Villamagna',1826,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22639,'Albavilla',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22640,'Cadorago',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22641,'Carimate',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22642,'Castelmarte',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22643,'Cavaria',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22644,'Cernobbio',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22645,'Comocrea',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22646,'Dongo',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22647,'Gironico',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22648,'Grandate',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22649,'Lurago dErba',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22650,'Mozzate',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22651,'Novedrate',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22652,'Orsenigo',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22653,'Turate',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22654,'Uggiate',1827,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22655,'Corso del Tirreno',1828,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22656,'Mangone',1828,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22657,'Casalbuttano',1829,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22658,'Casalmaggiore',1829,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22659,'Castelverde',1829,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22660,'Madignano',1829,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22661,'Pieve San Giacomo',1829,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22662,'Bandito',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22663,'Bra',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22664,'Casalgrasso',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22665,'Cossano Belbo',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22666,'Magliano Alpi',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22667,'Mondovi',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22668,'Roddi',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22669,'Santa Vittoria d\'Alba',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22670,'Verduno',1830,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22671,'Alfonsine',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22672,'Argelato',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22673,'Argenta',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22674,'Bagnacavallo',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22675,'Bagnolo in Piano',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22676,'Bellaria-Igea Marina',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22677,'Bertinoro',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22678,'Bologna',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22679,'Bondeno',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22680,'Budrio',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22681,'Calderara di Reno',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22682,'Carpi',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22683,'Casalecchio di Reno',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22684,'Casalgrande',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22685,'Castel Bolognese',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22686,'Castel Maggiore',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22687,'Castel San Giovanni',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22688,'Castel San Pietro Terme',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22689,'Castelfranco Emilia',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22690,'Castellarano',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22691,'Castelnovo ne\' Monti',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22692,'Castelnuovo Rangone',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22693,'Castelvetro di Modena',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22694,'Castenaso',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22695,'Cattolica',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22696,'Cavriago',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22697,'Cento',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22698,'Cervia',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22699,'Cesena',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22700,'Cesenatico',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22701,'Codigoro',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22702,'Collecchio',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22703,'Comacchio',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22704,'Concordia sulla Secchia',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22705,'Conselice',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22706,'Copparo',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22707,'Coriano',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22708,'Correggio',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22709,'Crespellano',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22710,'Crevalcore',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22711,'Faenza',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22712,'Ferrara',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22713,'Fidenza',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22714,'Finale Emilia',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22715,'Fiorano Modenese',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22716,'Fiorenzuola d\'Arda',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22717,'Forli',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22718,'Forlimpopoli',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22719,'Formigine',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22720,'Gambettola',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22721,'Granarolo dell\'Emilia',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22722,'Guastalla',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22723,'Imola',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22724,'Langhirano',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22725,'Lugo',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22726,'Luzzara',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22727,'Maranello',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22728,'Massa Lombarda',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22729,'Medesano',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22730,'Medicina',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22731,'Meldola',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22732,'Mirandola',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22733,'Misano Adriatico',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22734,'Modena',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22735,'Molinella',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22736,'Monte San Pietro',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22737,'Montecchio Emilia',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22738,'Montechiarugolo',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22739,'Noceto',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22740,'Nonantola',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22741,'Novellara',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22742,'Novi di Modena',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22743,'Ozzano dell\'Emilia',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22744,'Parma',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22745,'Pavullo nel Frignano',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22746,'Piacenza',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22747,'Pianoro',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22748,'Ponticino',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22749,'Portomaggiore',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22750,'Quattro Castella',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22751,'Ravenna',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22752,'Reggio nell\'Emilia',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22753,'Reggiolo',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22754,'Riccione',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22755,'Rimini',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22756,'Rottofreno',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22757,'Rubiera',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22758,'Russi',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22759,'Salsomaggiore Terme',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22760,'San Felice sul Panaro',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22761,'San Giovanni in Persiceto',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22762,'San Lazzaro di Savena',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22763,'San Mauro Pascoli',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22764,'San Pietro in Casale',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22765,'Sant\'Ilario d\'Enza',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22766,'Santarcangelo di Romagna',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22767,'Sasso Marconi',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22768,'Sassuolo',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22769,'Savignano sul Panaro',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22770,'Savignano sul Rubicone',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22771,'Scandiano',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22772,'Soliera',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22773,'Sorbolo',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22774,'Spilamberto',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22775,'Verucchio',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22776,'Vignola',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22777,'Zola Predosa',1831,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22778,'Saint Agostino',1832,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22779,'Capalle',1833,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22780,'Firenze',1833,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22781,'Pelago',1833,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22782,'San Donnino',1833,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22783,'Scarperia',1833,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22784,'Scandicci',1834,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22785,'Sesto Fiorentino',1834,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22786,'Casalvieri',1837,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22787,'Frosinone',1837,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22788,'Sgurgola',1837,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22789,'Genoa',1838,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22790,'Moneglia',1838,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22791,'Romans d\'Isonzo',1839,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22792,'Savogna d\'Isonzo',1839,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22793,'Magliano de Marsi',1840,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22794,'Alatri',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22795,'Albano Laziale',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22796,'Anagni',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22797,'Anguillara Sabazia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22798,'Anzio',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22799,'Aprilia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22800,'Ardea',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22801,'Ariccia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22802,'Artena',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22803,'Boville Ernica',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22804,'Bracciano',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22805,'Campagnano di Roma',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22806,'Cassino',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22807,'Cave',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22808,'Ceccano',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22809,'Ceprano',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22810,'Cerveteri',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22811,'Ciampino',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22812,'Cisterna',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22813,'Civita Castellana',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22814,'Civitavecchia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22815,'Colleferro',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22816,'Cori',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22817,'Fara in Sabina',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22818,'Ferentino',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22819,'Fiano Romano',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22820,'Fiuggi',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22821,'Fiumicino',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22822,'Fondi',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22823,'Fonte Nuova',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22824,'Formello',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22825,'Formia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22826,'Frascati',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22827,'Frosinone',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22828,'Gaeta',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22829,'Genzano di Roma',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22830,'Grottaferrata',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22831,'Guidonia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22832,'Isola del Liri',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22833,'Itri',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22834,'Ladispoli',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22835,'Lanuvio',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22836,'Lariano',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22837,'Latina',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22838,'Marino',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22839,'Mentana',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22840,'Minturno',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22841,'Monte San Giovanni Campano',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22842,'Montefiascone',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22843,'Monterotondo',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22844,'Nettuno',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22845,'Palestrina',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22846,'Palombara Sabina',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22847,'Pomezia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22848,'Pontecorvo',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22849,'Pontinia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22850,'Priverno',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22851,'Rieti',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22852,'Rocca Priora',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22853,'Rocca di Papa',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22854,'Roma',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22855,'Rome',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22856,'Sabaudia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22857,'San Cesareo',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22858,'Santa Marinella',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22859,'Segni',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22860,'Sezze',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22861,'Sora',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22862,'Soriano nel Cimino',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22863,'Subiaco',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22864,'Tarquinia',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22865,'Terracina',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22866,'Tivoli',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22867,'Valmontone',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22868,'Velletri',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22869,'Veroli',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22870,'Vetralla',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22871,'Viterbo',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22872,'Zagarolo',1841,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22873,'Acquarica del Capo',1842,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22874,'Airuno',1843,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22875,'Bosisio Parini',1843,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22876,'Lecco',1843,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22877,'Margno',1843,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22878,'Osnago',1843,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22879,'Sirone',1843,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22886,'Alassio',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22887,'Albenga',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22888,'Albisola Superiore',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22889,'Arcola',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22890,'Arenzano',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22891,'Bordighera',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22892,'Borgonuovo',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22893,'Cairo Montenotte',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22894,'Chiavari',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22895,'Cogoleto',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22896,'Finale Ligure',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22897,'Genova',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22898,'Imperia',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22899,'La Spezia',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22900,'Lavagna',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22901,'Lerici',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22902,'Loano',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22903,'Ortonovo',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22904,'Pietra Ligure',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22905,'Rapallo',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22906,'Recco',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22907,'San Remo',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22908,'Santa Margherita Ligure',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22909,'Santo Stefano di Magra',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22910,'Sarzana',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22911,'Savona',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22912,'Sestri Levante',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22913,'Taggia',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22914,'Varazze',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22915,'Ventimiglia',1845,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22916,'Somaglia',1846,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22917,'Abbiategrasso',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22918,'Agrate Brianza',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22919,'Albiate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22920,'Albino',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22921,'Albizzate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22922,'Alzano Lombardo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22923,'Arcisate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22924,'Arconate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22925,'Arcore',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22926,'Arese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22927,'Arluno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22928,'Asola',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22929,'Bagnolo Mella',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22930,'Ballabio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22931,'Bareggio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22932,'Basiglio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22933,'Bedizzole',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22934,'Bergamo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22935,'Bernareggio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22936,'Besana in Brianza',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22937,'Besozzo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22938,'Biassono',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22939,'Bienate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22940,'Bollate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22941,'Botticino',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22942,'Bovisio-Masciago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22943,'Brembilla',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22944,'Brescia',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22945,'Bresso',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22946,'Broni',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22947,'Brugherio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22948,'Buccinasco',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22949,'Bussero',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22950,'Busto Arsizio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22951,'Busto Garolfo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22952,'Cairate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22953,'Calcinato',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22954,'Calolziocorte',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22955,'Calusco d\'Adda',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22956,'Canegrate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22957,'Cantu',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22958,'Capriolo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22959,'Carate Brianza',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22960,'Caravaggio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22961,'Cardano al Campo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22962,'Caronno Pertusella',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22963,'Carpenedolo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22964,'Carugate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22965,'Carvico',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22966,'Casalmaggiore',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22967,'Casalpusterlengo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22968,'Casatenovo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22969,'Casazza',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22970,'Casnigo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22971,'Cassano Magnago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22972,'Cassano d\'Adda',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22973,'Cassina de\' Pecchi',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22974,'Castano Primo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22975,'Castel Goffredo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22976,'Castel Mella',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22977,'Castellanza',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22978,'Castelleone',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22979,'Castelli Calepio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22980,'Castenedolo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22981,'Castiglione delle Stiviere',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22982,'Cazzago San Martino',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22983,'Cene',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22984,'Cermenate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22985,'Cernusco sul Naviglio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22986,'Cerro Maggiore',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22987,'Cesano Boscone',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22988,'Cesano Maderno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22989,'Cesate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22990,'Chiari',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22991,'Cilavegna',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22992,'Cinisello Balsamo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22993,'Cislago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22994,'Clusone',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22995,'Codogno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22996,'Cologno Monzese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22997,'Cologno al Serio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22998,'Como',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(22999,'Concesio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23000,'Concorezzo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23001,'Corbetta',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23002,'Cormano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23003,'Cornaredo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23004,'Cornate d\'Adda',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23005,'Corsico',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23006,'Corte dei Cortesi',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23007,'Costa Volpino',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23008,'Crema',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23009,'Cremona',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23010,'Crocetta',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23011,'Curtatone',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23012,'Cusano Milanino',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23013,'Dalmine',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23014,'Darfo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23015,'Desenzano del Garda',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23016,'Desio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23017,'Erba',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23018,'Fagnano Olona',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23019,'Fino Mornasco',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23020,'Gaggiano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23021,'Galbiate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23022,'Gallarate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23023,'Gambolo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23024,'Garbagnate Milanese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23025,'Gardone Val Trompia',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23026,'Garlasco',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23027,'Gavardo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23028,'Gavirate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23029,'Gerenzano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23030,'Ghedi',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23031,'Giussano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23032,'Goito',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23033,'Gonzaga',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23034,'Gorgonzola',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23035,'Gussago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23036,'Gussola',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23037,'Induno Olona',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23038,'Inveruno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23039,'Inzago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23040,'Iseo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23041,'Isola Dovarese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23042,'Lacchiarella',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23043,'Lainate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23044,'Laveno-Mombello',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23045,'Lecco',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23046,'Leffe',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23047,'Legnano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23048,'Leno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23049,'Lentate sul Seveso',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23050,'Limbiate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23051,'Lissone',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23052,'Locate di Triulzi',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23053,'Lodi',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23054,'Lomazzo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23055,'Lonate Pozzolo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23056,'Lonato',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23057,'Luino',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23058,'Lumezzane',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23059,'Lurate Caccivio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23060,'Magenta',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23061,'Malnate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23062,'Mandello del Lario',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23063,'Manerbio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23064,'Mantova',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23065,'Mariano Comense',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23066,'Martinengo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23067,'Mazzano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23068,'Meda',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23069,'Mediglia',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23070,'Melegnano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23071,'Melzo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23072,'Merate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23073,'Milano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23074,'Molteno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23075,'Montichiari',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23076,'Monza',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23077,'Morbegno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23078,'Mornago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23079,'Mortara',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23080,'Muggio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23081,'Nave',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23082,'Nembro',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23083,'Nerviano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23084,'Nova Milanese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23085,'Novate Milanese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23086,'Olgiate Comasco',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23087,'Olgiate Olona',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23088,'Opera',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23089,'Orzinuovi',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23090,'Osio Sotto',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23091,'Ospitaletto',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23092,'Paderno Dugnano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23093,'Palazzolo sull\'Oglio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23094,'Pandino',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23095,'Parabiago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23096,'Paullo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23097,'Pavia',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23098,'Pero',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23099,'Peschiera Borromeo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23100,'Pessano con Bornago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23101,'Pieve Emanuele',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23102,'Pioltello',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23103,'Ponte Nossa',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23104,'Ponte San Pietro',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23105,'Porto Mantovano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23106,'Pozzolengo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23107,'Rescaldina',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23108,'Rezzato',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23109,'Rho',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23110,'Rivarolo Mantovano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23111,'Rodano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23112,'Romano di Lombardia',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23113,'Rovato',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23114,'Rozzano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23115,'Saletto',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23116,'Salo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23117,'Samarate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23118,'San Donato Milanese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23119,'San Giuliano Milanese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23120,'Sant\'Angelo Lodigiano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23121,'Sarezzo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23122,'Saronno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23123,'Scanzorosciate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23124,'Sedriano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23125,'Segrate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23126,'Senago',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23127,'Seregno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23128,'Seriate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23129,'Sesto Calende',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23130,'Sesto San Giovanni',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23131,'Settimo Milanese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23132,'Seveso',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23133,'Sirmione',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23134,'Solaro',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23135,'Somma Lombardo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23136,'Sondrio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23137,'Soresina',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23138,'Sorisole',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23139,'Stezzano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23140,'Stradella',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23141,'Suzzara',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23142,'Tirano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23143,'Tornata',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23144,'Tradate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23145,'Travagliato',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23146,'Treviglio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23147,'Treviolo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23148,'Trezzano sul Naviglio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23149,'Trezzo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23150,'Tromello',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23151,'Uboldo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23152,'Urgnano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23153,'Usmate Velate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23154,'Valmadrera',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23155,'Varedo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23156,'Varese',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23157,'Verano Brianza',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23158,'Vergiate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23159,'Viadana',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23160,'Vigevano',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23161,'Vignate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23162,'Villa Carcina',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23163,'Villa Guardia',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23164,'Villasanta',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23165,'Vimercate',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23166,'Vimodrone',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23167,'Virgilio',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23168,'Voghera',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23169,'Zibido San Giacomo',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23170,'Zogno',1847,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23171,'Barasso',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23172,'Bergamo',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23173,'Bolladello',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23174,'Capergnanica',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23175,'Costa Masnaga',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23176,'Medolago',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23177,'Nibionno',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23178,'Rodano',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23179,'Sordio',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23180,'Torre d\'Isola',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23181,'Varese',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23182,'Villongo',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23183,'milan',1848,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23184,'Colmurano',1849,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23185,'Monte San Giusto',1849,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23186,'Castel',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23187,'Gazoldo',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23188,'Marmirolo',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23189,'Monzambano',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23190,'Ostiglia',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23191,'Pegognaga',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23192,'Poggio Rusco',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23193,'Quistello',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23194,'Roverbella',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23195,'Suzzara',1850,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23196,'Ancona',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23197,'Ascoli Piceno',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23198,'Barchi',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23199,'Cagli',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23200,'Castelfidardo',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23201,'Chiaravalle',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23202,'Cingoli',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23203,'Civitanova Marche',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23204,'Corridonia',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23205,'Fabriano',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23206,'Falconara Marittima',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23207,'Fano',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23208,'Fermo',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23209,'Filottrano',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23210,'Folignano',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23211,'Fossombrone',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23212,'Grottammare',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23213,'Jesi',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23214,'Loreto',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23215,'Macerata',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23216,'Matelica',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23217,'Mondavio',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23218,'Mondolfo',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23219,'Montappone',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23220,'Montecosaro',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23221,'Montegranaro',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23222,'Montemarciano',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23223,'Monteprandone',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23224,'Morrovalle',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23225,'Osimo',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23226,'Pesaro',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23227,'Polverigi',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23228,'Porto Recanati',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23229,'Porto San Giorgio',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23230,'Porto Sant\'Elpidio',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23231,'Potenza Picena',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23232,'Recanati',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23233,'San Benedetto del Tronto',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23234,'San Severino Marche',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23235,'Sant\'Elpidio a Mare',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23236,'Senigallia',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23237,'Tolentino',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23238,'Treia',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23239,'Urbino',1851,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23240,'Cumiana',1852,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23241,'Giammoro',1852,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23242,'Assago',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23243,'Besana in Brianza',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23244,'Biassono',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23245,'Burago Molgora',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23246,'Cernusco Sul Naviglio',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23247,'Cologno Monzese',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23248,'Concorezzo',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23249,'Cornaredo',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23250,'Cuggiono',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23251,'Cusago',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23252,'Foro Buonaparte',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23253,'Gessate',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23254,'Gorgonzola',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23255,'Liscate',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23256,'Magenta',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23257,'Milan',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23258,'Noviglio',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23259,'Passirana Di Rho',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23260,'Pregnana Milane',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23261,'San Donato Milanese',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23262,'Seregno',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23263,'Trezzo Sull\'adda',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23264,'Tribiano',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23265,'Vaprio d\'Adda',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23266,'Vermezzo',1853,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23267,'Bomporto',1854,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23268,'Campogalliano',1854,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23269,'Cavezzo',1854,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23270,'Medolla',1854,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23271,'Nonantola',1854,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23272,'San Possidonio',1854,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23273,'Sassuolo',1854,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23274,'Spilamberto',1854,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23275,'Bojano',1855,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23276,'Campobasso',1855,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23277,'Cantalupo',1855,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23278,'Isernia',1855,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23279,'Termoli',1855,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23280,'Venafro',1855,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23281,'Montenegro',1857,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23282,'Forio d\'Ischia',1859,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23283,'Bogogno',1860,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23284,'Invorio',1860,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23285,'Pombia',1860,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23286,'Bagnoli di Sopra',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23287,'Bovolenta',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23288,'Casale Di Scodosia',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23289,'Cervarese Santa Croce',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23290,'Fontaniva',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23291,'Galliera Veneta',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23292,'Legnaro',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23293,'Limena',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23294,'Loreggia',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23295,'Massanzago',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23296,'Onara',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23297,'Ponso',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23298,'Portogallo',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23299,'Tribano',1861,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23300,'Baganzola',1862,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23301,'Busseto',1862,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23302,'Casale Di Mezzani',1862,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23303,'Fontevivo',1862,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23304,'Solignano',1862,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23305,'Torrile',1862,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23306,'Codevilla',1863,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23307,'Marcignago',1863,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23308,'Pavia',1863,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23309,'Siziano',1863,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23310,'Pianello',1864,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23311,'Ponte Felcino',1864,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23312,'Zanica',1864,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23313,'Gradara',1865,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23314,'Monte Porzio',1865,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23315,'Pergola',1865,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23316,'Tavullia',1865,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23317,'Alseno',1866,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23318,'Gossolengo',1866,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23319,'Vigolzone',1866,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23320,'Armeno',1867,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23321,'Bergamasco',1867,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23322,'Caselette',1867,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23323,'Rosta',1867,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23324,'San Damiano',1867,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23325,'Spinetta Marengo',1867,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23326,'Acqui Terme',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23327,'Alba',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23328,'Alessandria',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23329,'Alpignano',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23330,'Andezeno',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23331,'Andonno',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23332,'Arona',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23333,'Asti',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23334,'Avigliana',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23335,'Baveno',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23336,'Beinasco',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23337,'Bellinzago Novarese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23338,'Biella',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23339,'Borgaro Torinese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23340,'Borgo San Dalmazzo',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23341,'Borgomanero',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23342,'Borgosesia',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23343,'Boves',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23344,'Bra',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23345,'Busca',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23346,'Cameri',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23347,'Canelli',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23348,'Carignano',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23349,'Carmagnola',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23350,'Casale Monferrato',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23351,'Caselle Torinese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23352,'Castellamonte',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23353,'Castelletto sopra Ticino',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23354,'Chieri',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23355,'Chivasso',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23356,'Cirie',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23357,'Collegno',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23358,'Cossato',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23359,'Cuneo',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23360,'Cuorgne',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23361,'Domodossola',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23362,'Druento',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23363,'Fossano',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23364,'Galliate',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23365,'Gassino Torinese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23366,'Gattinara',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23367,'Giaveno',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23368,'Grugliasco',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23369,'Ivrea',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23370,'Leini',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23371,'Lusigli%�^%�%�,%�',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23372,'Marano Ticino',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23373,'Mergozzo',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23374,'Moncalieri',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23375,'Mondovi',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23376,'Mongrando',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23377,'Nichelino',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23378,'Nizza Monferrato',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23379,'Novara',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23380,'Novi Ligure',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23381,'Oleggio',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23382,'Omegna',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23383,'Orbassano',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23384,'Ovada',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23385,'Pianezza',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23386,'Pinerolo',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23387,'Pino Torinese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23388,'Piossasco',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23389,'Poirino',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23390,'Racconigi',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23391,'Rivalta di Torino',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23392,'Rivarolo Canavese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23393,'Rivoli',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23394,'Saluzzo',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23395,'San Maurizio',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23396,'San Mauro Torinese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23397,'Sandigliano',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23398,'Santena',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23399,'Santhia',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23400,'Savigliano',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23401,'Settimo Torinese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23402,'Torino',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23403,'Tortona',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23404,'Trecate',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23405,'Trofarello',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23406,'Valduggia',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23407,'Valenza',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23408,'Venaria Reale',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23409,'Verbania',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23410,'Vercelli',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23411,'Vigliano Biellese',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23412,'Vinovo',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23413,'Volpiano',1868,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23414,'Perignano',1869,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23415,'Ponte a Egola',1869,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23416,'San Quirino',1870,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23417,'Latronico',1871,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23418,'Acquaviva delle Fonti',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23419,'Adelfia',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23420,'Alberobello',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23421,'Altamura',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23422,'Andria',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23423,'Apricena',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23424,'Aradeo',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23425,'Bari',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23426,'Barletta',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23427,'Bisceglie',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23428,'Bitetto',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23429,'Bitonto',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23430,'Bitritto',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23431,'Brindisi',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23432,'Campi Salentina',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23433,'Canosa di Puglia',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23434,'Capurso',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23435,'Carmiano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23436,'Carovigno',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23437,'Casamassima',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23438,'Casarano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23439,'Cassano delle Murge',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23440,'Castellana Grotte',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23441,'Castellaneta',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23442,'Cavallino',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23443,'Ceglie Messapica',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23444,'Cerignola',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23445,'Cisternino',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23446,'Conversano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23447,'Copertino',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23448,'Corato',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23449,'Crispiano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23450,'Cutrofiano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23451,'Erchie',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23452,'Fasano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23453,'Foggia',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23454,'Francavilla Fontana',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23455,'Galatina',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23456,'Galatone',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23457,'Gallipoli',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23458,'Ginosa',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23459,'Gioia del Colle',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23460,'Giovinazzo',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23461,'Gravina in Puglia',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23462,'Grottaglie',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23463,'Grumo Appula',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23464,'Laterza',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23465,'Latiano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23466,'Lecce',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23467,'Leverano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23468,'Lizzanello',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23469,'Lizzano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23470,'Locorotondo',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23471,'Lucera',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23472,'Maglie',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23473,'Manduria',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23474,'Manfredonia',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23475,'Margherita di Savoia',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23476,'Martano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23477,'Martina Franca',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23478,'Massafra',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23479,'Matino',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23480,'Melendugno',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23481,'Mesagne',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23482,'Minervino Murge',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23483,'Modugno',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23484,'Mola di Bari',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23485,'Molfetta',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23486,'Monopoli',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23487,'Monte Sant\'Angelo',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23488,'Monteroni di Lecce',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23489,'Mottola',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23490,'Nardo',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23491,'Neviano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23492,'Noci',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23493,'Noicattaro',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23494,'Novoli',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23495,'Oria',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23496,'Orta Nova',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23497,'Ostuni',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23498,'Palagiano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23499,'Palo del Colle',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23500,'Parabita',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23501,'Polignano a Mare',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23502,'Pulsano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23503,'Putignano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23505,'Racale',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23506,'Ruffano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23507,'Rutigliano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23508,'Ruvo di Puglia',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23509,'Salice Salentino',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23510,'San Ferdinando di Puglia',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23511,'San Giorgio Ionico',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23512,'San Giovanni Rotondo',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23513,'San Marco in Lamis',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23514,'San Marzano di San Giuseppe',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23515,'San Nicandro Garganico',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23516,'San Pancrazio Salentino',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23517,'San Pietro Vernotico',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23518,'San Severo',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23519,'San Vito dei Normanni',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23520,'Sannicandro di Bari',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23521,'Santeramo in Colle',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23522,'Sava',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23523,'Squinzano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23524,'Statte',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23525,'Surbo',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23526,'Taranto',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23527,'Taurisano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23528,'Taviano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23529,'Terlizzi',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23530,'Toritto',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23531,'Torre Santa Susanna',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23532,'Torremaggiore',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23533,'Trani',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23534,'Trepuzzi',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23535,'Tricase',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23536,'Triggiano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23537,'Trinitapoli',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23538,'Turi',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23539,'Ugento',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23540,'Valenzano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23541,'Veglie',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23542,'Vico del Gargano',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23543,'Vieste',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23544,'Villa Castelli',1872,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23545,'San Giovanni in Marignano',1874,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23546,'Torriana',1874,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23547,'Anzio',1875,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23548,'Atena Lucana',1876,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23549,'Castel San Giorgio',1876,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23550,'Fisciano',1876,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23551,'Giungano',1876,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23552,'Omignano',1876,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23553,'Alghero',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23554,'Arzachena',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23555,'Assemini',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23556,'Cabras',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23557,'Cagliari',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23558,'Capoterra',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23559,'Carbonia',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23560,'Dorgali',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23561,'Guspini',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23562,'Iglesias',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23563,'Ittiri',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23564,'La Maddalena',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23565,'Macomer',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23566,'Monserrato',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23567,'Nuoro',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23568,'Olbia',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23569,'Oristano',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23570,'Ozieri',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23571,'Porto Torres',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23572,'Quartu Sant\'Elena',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23573,'Quartucciu',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23574,'San Gavino Monreale',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23575,'Sanluri',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23576,'Sant\'Antioco',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23577,'Sassari',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23578,'Selargius',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23579,'Serramanna',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23580,'Sestu',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23581,'Siniscola',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23582,'Sinnai',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23583,'Sorso',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23584,'Tempio Pausania',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23585,'Terralba',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23586,'Tortoli',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23587,'Villacidro',1877,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23588,'Nule',1878,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23589,'Altare',1879,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23590,'Aci Castello',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23591,'Aci Catena',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23592,'Aci Sant\'Antonio',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23593,'Acireale',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23594,'Adrano',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23595,'Agira',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23596,'Agrigento',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23597,'Alcamo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23598,'Altofonte',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23599,'Aragona',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23600,'Augusta',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23601,'Avola',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23602,'Bagheria',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23603,'Barcellona',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23604,'Barrafranca',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23605,'Belmonte Mezzagno',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23606,'Belpasso',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23607,'Biancavilla',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23608,'Bronte',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23609,'Caccamo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23610,'Caltagirone',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23611,'Caltanissetta',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23612,'Campobello di Licata',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23613,'Campobello di Mazara',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23614,'Canicatti',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23615,'Capaci',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23616,'Capo d\'Orlando',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23617,'Carini',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23618,'Carlentini',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23619,'Castelbuono',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23620,'Casteldaccia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23621,'Castellammare del Golfo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23622,'Casteltermini',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23623,'Castelvetrano',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23624,'Catania',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23625,'Catenanuova',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23626,'Cefalu',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23627,'Chiaramonte Gulfi',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23628,'Cinisi',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23629,'Comiso',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23630,'Corleone',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23631,'Enna',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23632,'Erice',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23633,'Favara',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23634,'Ficarazzi',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23635,'Fiumefreddo di Sicilia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23636,'Floridia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23637,'Francofonte',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23638,'Gela',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23639,'Giardini-Naxos',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23640,'Giarre',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23641,'Grammichele',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23642,'Gravina di Catania',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23643,'Ispica',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23644,'Lentini',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23645,'Leonforte',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23646,'Licata',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23647,'Lipari',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23648,'Marsala',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23649,'Mascali',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23650,'Mascalucia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23651,'Mazara del Vallo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23652,'Mazzarino',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23653,'Melilli',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23654,'Menfi',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23655,'Messina',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23656,'Milazzo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23657,'Militello in Val di Catania',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23658,'Misilmeri',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23659,'Misterbianco',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23660,'Modica',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23661,'Monreale',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23662,'Motta Sant\'Anastasia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23663,'Mussomeli',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23664,'Naro',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23665,'Nicosia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23666,'Niscemi',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23667,'Noto',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23668,'Paceco',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23669,'Pachino',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23670,'Palagonia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23671,'Palazzolo Acreide',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23672,'Palermo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23673,'Palma di Montechiaro',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23674,'Partanna',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23675,'Partinico',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23676,'Paterno',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23677,'Patti',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23678,'Pedara',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23679,'Piazza Armerina',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23680,'Porto Empedocle',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23681,'Pozzallo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23682,'Priolo Gargallo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23683,'Racalmuto',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23684,'Raffadali',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23685,'Ragusa',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23686,'Ramacca',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23687,'Randazzo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23688,'Ravanusa',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23689,'Ribera',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23690,'Riesi',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23691,'Riposto',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23692,'Rosolini',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23693,'Salemi',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23694,'San Cataldo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23695,'San Giovanni Gemini',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23696,'San Giovanni la Punta',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23697,'San Giuseppe Jato',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23698,'San Gregorio di Catania',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23699,'Sant\'Agata di Militello',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23700,'Sant\'Agata li Battiati',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23701,'Santa Croce Camerina',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23702,'Santa Flavia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23703,'Santa Teresa di Riva',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23704,'Sciacca',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23705,'Scicli',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23706,'Scordia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23707,'Siracusa',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23708,'Sortino',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23709,'Taormina',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23710,'Termini Imerese',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23711,'Terrasini',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23712,'Trabia',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23713,'Trapani',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23714,'Trecastagni',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23715,'Tremestieri Etneo',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23716,'Troina',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23717,'Valderice',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23718,'Valguarnera Caropepe',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23719,'Villabate',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23720,'Villafranca Tirrena',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23721,'Vittoria',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23722,'Zafferana Etnea',1880,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23723,'Monteriggioni',1881,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23724,'Monteroni d Arbia',1881,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23725,'Delebio',1882,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23726,'Talamona',1882,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23727,'Faggiano',1884,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23728,'Riva del Garda',1884,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23729,'Castilenti',1885,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23730,'Controguerra',1885,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23731,'Bruino',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23732,'Busano',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23733,'Buttigliera Alta',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23734,'Cavour',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23735,'Chieri',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23736,'Colleretto Giacosa',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23737,'Cuceglio',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23738,'Giaveno',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23739,'Mazze',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23740,'Mercenasco',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23741,'Piobesi',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23742,'Rivoli',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23743,'Robassomero',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23744,'Scarmagno',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23745,'Strambino',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23746,'Turin',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23747,'Villar Perosa',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23748,'Volpiano',1886,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23749,'Agliana',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23750,'Altopascio',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23751,'Anghiari',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23752,'Arezzo',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23753,'Aulla',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23754,'Bagno a Ripoli',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23755,'Barberino di Mugello',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23756,'Barga',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23757,'Bibbiena',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23758,'Borgo San Lorenzo',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23759,'Bucine',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23760,'Buggiano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23761,'Calcinaia',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23762,'Calenzano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23763,'Camaiore',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23764,'Campi Bisenzio',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23765,'Campiglia Marittima',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23766,'Capannori',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23767,'Cappelle',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23768,'Capraia',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23769,'Carmignano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23770,'Carrara',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23771,'Cascina',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23772,'Castagneto Carducci',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23773,'Castelfiorentino',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23774,'Castelfranco di Sotto',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23775,'Castiglion Fiorentino',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23776,'Cecina',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23777,'Cerreto Guidi',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23778,'Certaldo',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23779,'Chiesina Uzzanese',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23780,'Chiusi',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23781,'Civitella in Val di Chiana',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23782,'Colle di Val d\'Elsa',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23783,'Collesalvetti',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23784,'Cortona',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23785,'Empoli',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23786,'Fiesole',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23787,'Figline Valdarno',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23788,'Firenze',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23789,'Fivizzano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23790,'Florence',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23791,'Foiano della Chiana',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23792,'Follonica',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23793,'Forte dei Marmi',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23794,'Fucecchio',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23795,'Gavorrano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23796,'Greve in Chianti',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23797,'Grosseto',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23798,'Impruneta',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23799,'Lari',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23800,'Lastra a Signa',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23801,'Livorno',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23802,'Lucca',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23803,'Massa',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23804,'Massa Marittima',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23805,'Massarosa',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23806,'Monsummano Terme',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23807,'Montale',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23808,'Monte Argentario',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23809,'Monte San Savino',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23810,'Montecatini-Terme',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23811,'Montelupo Fiorentino',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23812,'Montemurlo',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23813,'Montepulciano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23814,'Montespertoli',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23815,'Montevarchi',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23816,'Montignoso',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23817,'Montopoli in Val d\'Arno',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23818,'Orbetello',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23819,'Pescia',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23820,'Pietrasanta',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23821,'Pieve a Nievole',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23822,'Piombino',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23823,'Pisa',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23824,'Pistoia',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23825,'Poggibonsi',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23826,'Poggio a Caiano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23827,'Ponsacco',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23828,'Pontassieve',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23829,'Pontedera',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23830,'Ponticino',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23831,'Pontremoli',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23832,'Portoferraio',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23833,'Prato',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23834,'Quarrata',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23835,'Reggello',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23836,'Rignano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23837,'Roccastrada',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23838,'Rosignano Marittimo',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23839,'San Casciano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23840,'San Giovanni Valdarno',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23841,'San Giuliano Terme',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23842,'San Miniato',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23843,'Sansepolcro',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23844,'Santa Croce sull\'Arno',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23845,'Santa Maria a Monte',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23846,'Scandicci',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23847,'Seravezza',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23848,'Serravalle Pistoiese',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23849,'Sesto Fiorentino',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23850,'Siena',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23851,'Signa',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23852,'Sinalunga',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23853,'Sovicille',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23854,'Terranuova Bracciolini',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23855,'Vaiano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23856,'Varna',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23857,'Vecchiano',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23858,'Viareggio',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23859,'Vinci',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23860,'Volterra',1887,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23861,'Guarrato',1888,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23862,' San Giorgio',1890,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23863,'Dro',1890,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23864,'Asolo',1891,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23865,'Conegliano',1891,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23866,'Cordignano',1891,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23867,'Gaiarine',1891,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23868,'Ormelle',1891,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23869,'Possagno',1891,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23870,'Revine Lago',1891,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23871,'Basiliano',1892,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23872,'Bicinicco',1892,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23873,'Buttrio',1892,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23874,'Coseano',1892,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23875,'Pradamano',1892,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23876,'San Giovanni al Natisone',1892,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23877,'Torreano',1892,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23878,'Amelia',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23879,'Assisi',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23880,'Bastia Umbra',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23881,'Castiglione del Lago',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23882,'Citta di Castello',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23883,'Corciano',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23884,'Deruta',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23885,'Foligno',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23886,'Gualdo Tadino',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23887,'Gubbio',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23888,'Magione',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23889,'Marsciano',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23890,'Narni',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23891,'Orvieto',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23892,'Perugia',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23893,'San Giustino',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23894,'Spello',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23895,'Spoleto',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23896,'Terni',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23897,'Todi',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23898,'Umbertide',1893,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23899,'Arsago Seprio',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23900,'Busto Arsizio',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23901,'Cassano Magnago',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23902,'Gazzada',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23903,'Oggiona Con Santo Stefano',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23904,'Solbiate Arno',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23905,'Solbiate Olona',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23906,'Ternate',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23907,'Venegono Inferiore',1895,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23908,'Abano Terme',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23909,'Adria',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23910,'Albignasego',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23911,'Altavilla Vicentina',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23912,'Arzignano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23913,'Badia Polesine',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23914,'Bassano del Grappa',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23915,'Belfiore',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23916,'Belluno',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23917,'Borso del Grappa',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23918,'Bovolone',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23919,'Bussolengo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23920,'Cadoneghe',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23921,'Caldogno',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23922,'Camisano Vicentino',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23923,'Campodarsego',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23924,'Campolongo Maggiore',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23925,'Camponogara',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23926,'Camposampiero',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23927,'Caorle',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23928,'Carbonera',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23929,'Casale sul Sile',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23930,'Casier',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23931,'Cassola',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23932,'Castel d\'Azzano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23933,'Castelfranco Veneto',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23934,'Castello di Godego',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23935,'Castelnuovo del Garda',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23936,'Cavallino-Treporti',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23937,'Cavarzere',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23938,'Cerea',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23939,'Chiampo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23940,'Chioggia',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23941,'Cittadella',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23942,'Colombano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23943,'Concordia Sagittaria',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23944,'Conegliano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23945,'Conselve',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23946,'Cornedo Vicentino',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23947,'Creazzo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23948,'Dolo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23949,'Due Carrare',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23950,'Dueville',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23951,'Eraclea',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23952,'Este',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23953,'Feltre',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23954,'Galzignano Terme',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23955,'Grezzana',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23956,'Iesolo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23957,'Isola Vicentina',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23958,'Isola della Scala',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23959,'Jesolo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23960,'Legnago',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23961,'Lendinara',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23962,'Lonigo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23963,'Malo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23964,'Marano Vicentino',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23965,'Marcon',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23966,'Marostica',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23967,'Martellago',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23968,'Mestrino',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23969,'Mira',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23970,'Mirano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23971,'Mogliano Veneto',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23972,'Monselice',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23973,'Montagnana',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23974,'Montebelluna',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23975,'Montecchio Maggiore',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23976,'Montegrotto Terme',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23977,'Monticello Conte Otto',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23978,'Motta di Livenza',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23979,'Murano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23980,'Musile di Piave',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23981,'Mussolente',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23982,'Negrar',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23983,'Noale',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23984,'Noventa Padovana',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23985,'Noventa Vicentina',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23986,'Occhiobello',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23987,'Oderzo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23988,'Ormelle',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23989,'Padova',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23990,'Padua',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23991,'Paese',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23992,'Pescantina',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23993,'Peschiera del Garda',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23994,'Pianiga',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23995,'Piazzola sul Brenta',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23996,'Pieve di Soligo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23997,'Pievebelvicino',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23998,'Piombino Dese',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(23999,'Piove di Sacco',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24000,'Ponte San Nicolo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24001,'Ponzano Veneto',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24002,'Porto Tolle',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24003,'Porto Viro',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24004,'Portogruaro',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24005,'Preganziol',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24006,'Quinto di Treviso',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24007,'Riese Pio X',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24008,'Romano dEzzelino',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24009,'Roncade',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24010,'Rosa',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24011,'Rovigo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24012,'Rubano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24013,'Salzano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24014,'San Biagio di Callalta',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24015,'San Bonifacio',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24016,'San Dona di Piave',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24017,'San Giovanni Lupatoto',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24018,'San Martino Buon Albergo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24019,'San Martino di Lupari',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24020,'San Michele al Tagliamento',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24021,'San Pietro in Cariano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24022,'San Vendemiano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24023,'Sant\'Ambrogio',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24024,'Santa Maria di Sala',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24025,'Santo Stino di Livenza',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24026,'Santorso',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24027,'Saonara',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24028,'Sarcedo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24029,'Schio',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24030,'Scorze',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24031,'Sedico',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24032,'Selvazzano Dentro',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24033,'Silea',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24034,'Sivizzo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24035,'Sommacampagna',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24036,'Sona',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24037,'Spinea',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24038,'Spresiano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24039,'Susegana',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24040,'Taglio di Po',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24041,'Teolo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24042,'Tezze sul Brenta',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24043,'Thiene',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24044,'Torri di Quartesolo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24045,'Trebaseleghe',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24046,'Trevignano',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24047,'Treviso',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24048,'Trissino',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24049,'Valdagno',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24050,'Valdobbiadene',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24051,'Valeggio sul Mincio',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24052,'Vedelago',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24053,'Venezia',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24054,'Venice',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24055,'Verona',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24056,'Vicenza',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24057,'Vigodarzere',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24058,'Vigonovo',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24059,'Vigonza',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24060,'Villafranca di Verona',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24061,'Villorba',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24062,'Vittorio Veneto',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24063,'Volpago del Montello',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24064,'Zane',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24065,'Zero Branco',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24066,'Zevio',1896,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24067,'Cona',1897,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24068,'Marghera',1897,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24069,'Oriago di Mira',1897,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24070,'Tessera',1897,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24071,'Piedimulera',1898,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24072,'Crescentino',1899,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24073,'Moncrivello',1899,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24074,'Rovasenda',1899,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24075,'Trino',1899,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24076,' Valeggio Sul Mincio',1900,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24077,'Cadidavid',1900,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24078,'Colognola ai Colli',1900,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24079,'Pastrengo',1900,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24080,'Valgatara',1900,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24081,' Montebello Vicentino',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24082,'Alonte',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24083,'Arcugnano',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24084,'Arzignano',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24085,'Barbarano Vicentino',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24086,'Breganze',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24087,'Brendola',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24088,'Bressanvido',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24089,'Carre',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24090,'Castelgomberto',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24091,'Costabissara',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24092,'Grumolo delle Abbadesse',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24093,'Piovene Rocchette',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24094,'Povolaro',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24095,'Rossano Veneto',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24096,'San Pietro di Rosa',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24097,'San Vito di Leguzzano',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24098,'Sandrigo',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24099,'Thiene',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24100,'Torrebelvicino',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24101,'Torri di Quartesolo',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24102,'Villaverla',1901,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24103,'Nepi',1902,107,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24104,'May Pen',1904,108,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24105,'Lucea',1905,108,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24106,'Kingston',1906,108,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24107,'Mandeville',1907,108,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24108,'Port Antonio',1908,108,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24109,'Albert Town',1916,108,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24110,'Falmouth',1916,108,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24111,'Savanna la Mar',1917,108,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24112,'Agui',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24113,'Anjo',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24114,'Atsumi',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24115,'Bisai',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24116,'Chiryu',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24117,'Chita',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24118,'Fujioka',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24119,'Fuso',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24120,'Gamagori',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24121,'Handa',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24122,'Hekinan',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24123,'Higashiura',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24124,'Ichinomiya',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24125,'Inazawa',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24126,'Inuyama',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24127,'Isshiki',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24128,'Iwakura',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24129,'Jimokuji',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24130,'Kanie',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24131,'Kariya',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24132,'Kasugai',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24133,'Kira',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24134,'Kisogawa',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24135,'Komaki',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24136,'Konan',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24137,'Kota',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24138,'Kozakai',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24139,'Mihama',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24140,'Minamichita',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24141,'Miwa',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24142,'Miyoshi',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24143,'Nagakute',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24144,'Nagoya',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24145,'Nishiharu',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24146,'Nishio',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24147,'Nisshin',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24148,'Obu',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24149,'Oharu',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24150,'Okazaki',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24151,'Owariashi',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24152,'Saori',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24153,'Saya',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24154,'Seto',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24155,'Shikatsu',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24156,'Shinshiro',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24157,'Shippo',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24158,'Sobue',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24159,'Tahara',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24160,'Takahama',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24161,'Taketoyo',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24162,'Togo',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24163,'Tokai',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24164,'Tokoname',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24165,'Toyoake',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24166,'Toyohashi',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24167,'Toyokawa',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24168,'Toyota',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24169,'Tsushima',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24170,'Yatomi',1918,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24171,'Akita',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24172,'Honjo',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24173,'Kazuno',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24174,'Noshiro',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24175,'Odate',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24176,'Oga',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24177,'Omagari',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24178,'Takanosu',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24179,'Tenno',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24180,'Ugo',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24181,'Yokote',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24182,'Yuzawa',1919,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24183,'Aomori',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24184,'Goshogawara',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24185,'Hachinohe',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24186,'Hiraka',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24187,'Hirosaki',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24188,'Kizukuri',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24189,'Kuroishi',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24190,'Misawa',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24191,'Mutsu',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24192,'Namioka',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24193,'Towada',1920,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24194,'Abiko',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24195,'Asahi',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24196,'Chiba',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24197,'Choshi',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24198,'Funabashi',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24199,'Fussa',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24200,'Futtsu',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24201,'Ichihara',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24202,'Ichikawa',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24203,'Inzai',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24204,'Kamagaya',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24205,'Kamogawa',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24206,'Kashiwa',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24207,'Katsuura',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24208,'Kimitsu',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24209,'Kisarazu',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24210,'Kujukuri',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24211,'Matsudo',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24212,'Mobara',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24213,'Nagareyama',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24214,'Narashino',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24215,'Narita',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24216,'Naruto',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24217,'Noda',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24218,'Oamishirasato',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24219,'Ohara',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24220,'Omigawa',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24221,'Sakae',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24222,'Sakura',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24223,'Sambu',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24224,'Sawara',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24225,'Sekiyado',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24226,'Shiroi',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24227,'Shisui',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24228,'Shonan',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24229,'Sodegaura',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24230,'Tateyama',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24231,'Togane',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24232,'Tomisato',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24233,'Urayasu',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24234,'Yachimata',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24235,'Yachiyo',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24236,'Yokaichiba',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24237,'Yotsukaido',1921,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24238,'Hojo',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24239,'Imabari',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24240,'Iyo',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24241,'Iyomishima',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24242,'Kawanoe',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24243,'Masaki',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24244,'Matsuyama',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24245,'Niihama',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24246,'Ozu',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24247,'Saijo',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24248,'Shigenobu',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24249,'Tobe',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24250,'Toyo',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24251,'Uwajima',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24252,'Yawatahama',1922,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24253,'Fukui',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24254,'Harue',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24255,'Katsuyama',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24256,'Maruoka',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24257,'Mikuni',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24258,'Obama',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24259,'Ono',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24260,'Sabae',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24261,'Takefu',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24262,'Tsuruga',1923,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24263,'Amagi',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24264,'Buzen',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24265,'Chikugo',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24266,'Chikushino',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24267,'Dazaifu',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24268,'Fukuma',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24269,'Fukuoka',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24270,'Hirokawa',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24271,'Honami',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24272,'Iizuka',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24273,'Inatsuki',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24274,'Kanda',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24275,'Kasuga',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24276,'Kasuya',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24277,'Kawasaki',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24278,'Kitakyushu',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24279,'Koga',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24280,'Kurate',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24281,'Kurume',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24282,'Maebaru',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24283,'Miyata',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24284,'Mizumaki',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24285,'Munakata',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24286,'Nakagawa',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24287,'Nakama',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24288,'Nogata',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24289,'Ogori',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24290,'Okagaki',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24291,'Okawa',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24292,'Omuta',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24293,'Onojo',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24294,'Sasaguri',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24295,'Setaka',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24296,'Shime',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24297,'Shingu',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24298,'Sue',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24299,'Tagawa',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24300,'Tanushimaru',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24301,'Umi',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24302,'Yamada',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24303,'Yame',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24304,'Yanagawa',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24305,'Yukuhashi',1924,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24306,'Aizubange',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24307,'Aizuwakamatsu',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24308,'Fukushima',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24309,'Funehiki',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24310,'Haramachi',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24311,'Hobara',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24312,'Inawashiro',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24313,'Ishikawa',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24314,'Iwaki',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24315,'Kawamata',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24316,'Kitakata',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24317,'Koriyama',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24318,'Miharu',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24319,'Motomiya',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24320,'Namie',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24321,'Nihommatsu',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24322,'Shirakawa',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24323,'Soma',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24324,'Sukagawa',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24325,'Yanagawa',1925,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24326,'Ena',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24327,'Gifu',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24328,'Ginan',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24329,'Godo',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24330,'Hashima',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24331,'Hozumi',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24332,'Ibigawa',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24333,'Ikeda',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24334,'Kakamigahara',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24335,'Kani',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24336,'Kasamatsu',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24337,'Mino',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24338,'Minokamo',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24339,'Mitake',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24340,'Mizunami',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24341,'Nakatsugawa',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24342,'Ogaki',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24343,'Ono',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24344,'Seki',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24345,'Tajimi',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24346,'Takayama',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24347,'Tarui',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24348,'Toki',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24349,'Yoro',1926,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24350,'Annaka',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24351,'Azuma',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24352,'Fujimi',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24353,'Fujioka',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24354,'Gumma',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24355,'Haruna',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24356,'Isesaki',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24357,'Kasakake',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24358,'Kiryu',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24359,'Maebashi',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24360,'Nakanojo',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24361,'Nitta',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24362,'Numata',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24363,'Oizumi',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24364,'Omama',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24365,'Ora',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24366,'Ota',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24367,'Sakai',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24368,'Shibukawa',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24369,'Takasaki',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24370,'Tamamura',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24371,'Tatebayashi',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24372,'Tomioka',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24373,'Yoshii',1927,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24374,'Fuchu',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24375,'Fukuyama',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24376,'Hatsukaichi',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24377,'Higashihiroshima',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24378,'Hiroshima',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24379,'Innoshima',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24380,'Kaita',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24381,'Kannabe',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24382,'Kumano',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24383,'Kure',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24384,'Kurose',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24385,'Mihara',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24386,'Miyoshi',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24387,'Ono',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24388,'Onomichi',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24389,'Otake',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24390,'Shinichi',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24391,'Shobara',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24392,'Takehara',1928,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24393,'Abashiri',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24394,'Akabira',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24395,'Asahikawa',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24396,'Ashibetsu',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24397,'Bibai',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24398,'Bihoro',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24399,'Chitose',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24400,'Date',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24401,'Ebetsu',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24402,'Eniwa',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24403,'Fukagawa',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24404,'Furano',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24405,'Hakodate',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24406,'Hokkaido',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24407,'Hyogo',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24408,'Ishikari',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24409,'Iwamizawa',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24410,'Iwanai',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24411,'Kamiiso',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24412,'Kitahiroshima',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24413,'Kitami',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24414,'Kushiro',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24415,'Makubetsu',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24416,'Mikasa',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24417,'Mombetsu',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24418,'Muroran',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24419,'Nakashibetsu',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24420,'Nanae',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24421,'Nayoro',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24422,'Nemuro',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24423,'Noboribetsu',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24424,'Obihiro',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24425,'Otaru',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24426,'Otofuke',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24427,'Rumoi',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24428,'Sapporo',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24429,'Shibetsu',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24430,'Shiraoi',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24431,'Shizunai',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24432,'Sunagawa',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24433,'Takikawa',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24434,'Tobetsu',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24435,'Tomakomai',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24436,'Utashinai',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24437,'Wakkanai',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24438,'Yoichi',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24439,'Yubari',1929,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24440,'Aioi',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24441,'Akashi',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24442,'Ako',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24443,'Amagasaki',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24444,'Ashiya',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24445,'Fukusaki',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24446,'Harima',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24447,'Himeji',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24448,'Inagawa',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24449,'Inami',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24450,'Itami',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24451,'Kakogawa',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24452,'Kasai',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24453,'Kawanishi',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24454,'Kobe',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24455,'Kodera',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24456,'Miki',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24457,'Nandan',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24458,'Nishinomiya',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24459,'Nishiwaki',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24460,'Ono',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24461,'Sanda',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24462,'Sasayama',1930,109,0.00,0,'2021-04-06 01:13:47','2021-04-06 01:13:47',NULL),(24463,'Sumoto',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24464,'Taishi',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24465,'Takarazuka',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24466,'Takasago',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24467,'Tatsuno',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24468,'Toyooka',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24469,'Yamasaki',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24470,'Yashiro',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24471,'Yumesaki',1930,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24472,'Ami',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24473,'Chiyoda',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24474,'Daigo',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24475,'Edosaki',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24476,'Fujishiro',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24477,'Hasaki',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24478,'Hitachi',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24479,'Hitachinaka',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24480,'Hitachiota',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24481,'Hokota',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24482,'Ibaraki',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24483,'Ina',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24484,'Ishige',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24485,'Ishioka',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24486,'Itako',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24487,'Iwai',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24488,'Iwase',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24489,'Kamisu',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24490,'Kasama',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24491,'Kashima',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24492,'Kasumigaura',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24493,'Kitaibaraki',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24494,'Koga',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24495,'Kukizaki',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24496,'Makabe',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24497,'Minori',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24498,'Mito',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24499,'Mitsukaido',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24500,'Moriya',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24501,'Naka',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24502,'Oarai',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24503,'Omiya',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24504,'Ryugasaki',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24505,'Sakai',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24506,'Sanwa',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24507,'Shimodate',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24508,'Shimotsuma',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24509,'Sowa',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24510,'Takahagi',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24511,'Tokai',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24512,'Tomobe',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24513,'Tone',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24514,'Toride',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24515,'Tsukuba',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24516,'Ushiku',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24517,'Yachiyo',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24518,'Yasato',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24519,'Yuki',1931,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24520,'Hakui',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24521,'Kaga',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24522,'Kanazawa',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24523,'Komatsu',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24524,'Matto',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24525,'Nanao',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24526,'Nonoichi',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24527,'Suzu',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24528,'Tsubata',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24529,'Tsurugi',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24530,'Uchinada',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24531,'Wajima',1932,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24532,'Daito',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24533,'Esashi',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24534,'Hanamaki',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24535,'Ichinohe',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24536,'Ichinoseki',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24537,'Iwate',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24538,'Kamaishi',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24539,'Kitakami',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24540,'Kuji',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24541,'Miyako',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24542,'Mizusawa',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24543,'Morioka',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24544,'Ninohe',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24545,'Ofunato',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24546,'Otsuchi',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24547,'Rikuzentakata',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24548,'Shiwa',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24549,'Shizukuishi',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24550,'Takizawa',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24551,'Tono',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24552,'Yahaba',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24553,'Yamada',1933,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24554,'Kagawa',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24555,'Kanonji',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24556,'Kokubunji',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24557,'Marugame',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24558,'Miki',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24559,'Ryonan',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24560,'Sakaide',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24561,'Shido',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24562,'Tadotsu',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24563,'Takamatsu',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24564,'Tonosho',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24565,'Zentsuji',1934,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24566,'Aira',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24567,'Akune',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24568,'Hayato',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24569,'Ibusuki',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24570,'Ijuin',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24571,'Izumi',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24572,'Kagoshima',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24573,'Kajiki',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24574,'Kanoya',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24575,'Kaseda',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24576,'Kokubu',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24577,'Kushikino',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24578,'Makurazaki',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24579,'Naze',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24580,'Nishinoomote',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24581,'Okuchi',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24582,'Sendai',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24583,'Shibushi',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24584,'Sueyoshi',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24585,'Tarumizu',1935,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24586,'Aikawa',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24587,'Atsugi',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24588,'Ayase',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24589,'Chigasaki',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24590,'Ebina',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24591,'Fujisawa',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24592,'Hadano',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24593,'Hakone',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24594,'Hayama',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24595,'Hiratsuka',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24596,'Isehara',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24597,'Kamakura',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24598,'Kawasaki',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24599,'Minamiashigara',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24600,'Miura',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24601,'Ninomiya',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24602,'Odawara',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24603,'Oiso',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24604,'Sagamihara',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24605,'Samukawa',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24606,'Shiroyama',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24607,'Takatsu-Ku',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24608,'Tsukui',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24609,'Yamato',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24610,'Yokohama',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24611,'Yokosuka',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24612,'Yugawara',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24613,'Zama',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24614,'Zushi',1936,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24615,'Gunma',1937,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24616,'Saitama',1937,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24617,'Aki',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24618,'Ino',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24619,'Kochi',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24620,'Muroto',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24621,'Nakamura',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24622,'Nankoku',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24623,'Sukumo',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24624,'Susaki',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24625,'Tosa',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24626,'Tosashimizu',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24627,'Tosayamada',1938,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24628,'Arao',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24629,'Ashikita',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24630,'Aso',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24631,'Hitoyoshi',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24632,'Hondo',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24633,'Jonan',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24634,'Kikuchi',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24635,'Kikuyo',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24636,'Koshi',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24637,'Kumamoto',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24638,'Mashiki',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24639,'Matsubase',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24640,'Minamata',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24641,'Nishigoshi',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24642,'Ozu',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24643,'Tamana',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24644,'Ueki',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24645,'Ushibuka',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24646,'Uto',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24647,'Yamaga',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24648,'Yatsushiro',1939,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24649,'Ayabe',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24650,'Fukuchiyama',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24651,'Joyo',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24652,'Kameoka',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24653,'Kizu',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24654,'Kumiyama',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24655,'Kyotanabe',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24656,'Kyoto',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24657,'Maizuru',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24658,'Miyazu',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24659,'Muko',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24660,'Nagaokakyo',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24661,'Seika',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24662,'Uji',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24663,'Yawata',1940,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24664,'Ago',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24665,'Hisai',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24666,'Ise',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24667,'Kameyama',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24668,'Komono',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24669,'Kumano',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24670,'Kuwana',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24671,'Matsusaka',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24672,'Meiwa',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24673,'Nabari',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24674,'Owase',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24675,'Suzuka',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24676,'Toba',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24677,'Toin',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24678,'Tsu',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24679,'Ueno',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24680,'Yokkaichi',1941,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24681,'Furukawa',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24682,'Hasama',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24683,'Ishinomaki',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24684,'Iwanuma',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24685,'Kakuda',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24686,'Kesennuma',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24687,'Kogota',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24688,'Marumori',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24689,'Natori',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24690,'Ogawara',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24691,'Rifu',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24692,'Sendai',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24693,'Shibata',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24694,'Shichigahama',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24695,'Shiogama',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24696,'Shiroishi',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24697,'Tagajo',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24698,'Taiwa',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24699,'Tomiya',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24700,'Wakuya',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24701,'Watari',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24702,'Yamoto',1942,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24703,'Ebino',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24704,'Hyuga',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24705,'Kiyotake',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24706,'Kobayashi',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24707,'Kunitomi',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24708,'Kushima',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24709,'Mimata',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24710,'Miyakonojo',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24711,'Miyazaki',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24712,'Nichinan',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24713,'Nobeoka',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24714,'Sadowara',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24715,'Saito',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24716,'Shintomi',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24717,'Takanabe',1943,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24718,'Chino',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24719,'Hotaka',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24720,'Iida',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24721,'Iiyama',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24722,'Ina',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24723,'Komagane',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24724,'Komoro',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24725,'Koshoku',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24726,'Maruko',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24727,'Matsumoto',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24728,'Minowa',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24729,'Nagano',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24730,'Nakano',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24731,'Okaya',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24732,'Omachi',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24733,'Saku',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24734,'Shimosuwa',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24735,'Shiojiri',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24736,'Suwa',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24737,'Suzaka',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24738,'Tatsuno',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24739,'Tobu',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24740,'Toyoshina',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24741,'Ueda',1944,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24742,'Fukue',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24743,'Hirado',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24744,'Isahaya',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24745,'Matsuura',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24746,'Nagasaki',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24747,'Nagayo',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24748,'Omura',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24749,'Sasebo',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24750,'Shimabara',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24751,'Togitsu',1945,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24752,'Gojo',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24753,'Gose',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24754,'Haibara',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24755,'Heguri',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24756,'Ikagura',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24757,'Ikoma',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24758,'Kammaki',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24759,'Kashiba',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24760,'Kashihara',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24761,'Kawai',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24762,'Koryo',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24763,'Nara',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24764,'Oji',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24765,'Oyodo',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24766,'Sakurai',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24767,'Sango',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24768,'Tawaramoto',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24769,'Tenri',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24770,'Yamatokoriyama',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24771,'Yamatotakada',1946,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24772,'Arai',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24773,'Fuchu',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24774,'Gosen',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24775,'Itoigawa',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24776,'Joetsu',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24777,'Kameda',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24778,'Kamo',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24779,'Kashiwazaki',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24780,'Kurosaki',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24781,'Maki',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24782,'Mitsuke',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24783,'Muika',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24784,'Murakami',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24785,'Muramatsu',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24786,'Nagaoka',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24787,'Nakajo',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24788,'Niigata',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24789,'Niitsu',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24790,'Ojiya',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24791,'Ryotsu',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24792,'Sanjo',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24793,'Shibata',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24794,'Shiozawa',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24795,'Shirone',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24796,'Suibara',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24797,'Tochio',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24798,'Tokamachi',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24799,'Toyosaka',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24800,'Tsubame',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24801,'Yoshida',1947,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24802,'Beppu',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24803,'Bungotakada',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24804,'Hiji',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24805,'Hita',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24806,'Kitsuki',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24807,'Kusu',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24808,'Nakatsu',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24809,'Oita',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24810,'Saiki',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24811,'Taketa',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24812,'Tsukumi',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24813,'Usa',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24814,'Usuki',1948,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24815,'Bizen',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24816,'Ibara',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24817,'Kamogata',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24818,'Kasaoka',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24819,'Kurashiki',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24820,'Mabi',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24821,'Niimi',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24822,'Okayama',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24823,'Sanyo',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24824,'Soja',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24825,'Takahashi',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24826,'Tamano',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24827,'Tsuyama',1949,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24828,'Chatan',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24829,'Ginowan',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24830,'Gushikawa',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24831,'Haebaru',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24832,'Hirara',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24833,'Ishigaki',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24834,'Ishikawa',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24835,'Itoman',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24836,'Nago',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24837,'Naha',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24838,'Nishihara',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24839,'Okinawa',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24840,'Tomigusuku',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24841,'Urasoe',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24842,'Yomitan',1950,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24843,'Daito',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24844,'Fujiidera',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24845,'Habikino',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24846,'Hannan',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24847,'Higashiosaka',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24848,'Hirakata',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24849,'Ibaraki',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24850,'Ikeda',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24851,'Izumi',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24852,'Izumiotsu',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24853,'Izumisano',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24854,'Kadoma',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24855,'Kaizuka',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24856,'Kashiwara',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24857,'Katano',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24858,'Kawachinagano',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24859,'Kishiwada',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24860,'Kobe',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24861,'Kumatori',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24862,'Matsubara',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24863,'Mihara',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24864,'Mino',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24865,'Misaki',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24866,'Moriguchi',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24867,'Neyagawa',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24868,'Osaka',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24869,'Osakasayama',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24870,'Sakai',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24871,'Sennan',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24872,'Settsu',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24873,'Shijonawate',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24874,'Shimamoto',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24875,'Suita',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24876,'Takaishi',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24877,'Takatsuki',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24878,'Tondabayashi',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24879,'Toyonaka',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24880,'Toyono',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24881,'Yao',1951,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24882,'Imari',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24883,'Kanzaki',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24884,'Karatsu',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24885,'Kashima',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24886,'Kawasoe',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24887,'Saga',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24888,'Takeo',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24889,'Taku',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24890,'Tosu',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24891,'Ureshino',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24892,'Yamato',1952,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24893,'Ageo',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24894,'Asaka',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24895,'Chichibu',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24896,'Fujimi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24897,'Fukaya',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24898,'Fukiage',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24899,'Gyoda',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24900,'Hanno',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24901,'Hanyu',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24902,'Hasuda',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24903,'Hatogaya',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24904,'Hatoyama',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24905,'Hidaka',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24906,'Higashimatsuyama',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24907,'Honjo',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24908,'Ina',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24909,'Iruma',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24910,'Iwatsuki',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24911,'Kamifukuoka',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24912,'Kamisato',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24913,'Kasukabe',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24914,'Kawagoe',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24915,'Kawaguchi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24916,'Kawajima',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24917,'Kazo',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24918,'Kisai',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24919,'Kitamoto',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24920,'Kodama',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24921,'Konosu',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24922,'Koshigaya',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24923,'Kuki',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24924,'Kumagaya',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24925,'Kurihashi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24926,'Matsubushi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24927,'Menuma',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24928,'Misato',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24929,'Miyashiro',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24930,'Miyoshi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24931,'Moroyama',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24932,'Niiza',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24933,'Ogawa',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24934,'Oi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24935,'Okegawa',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24936,'Omiya',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24937,'Saitma-Shi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24938,'Sakado',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24939,'Satte',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24940,'Sayama',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24941,'Shiki',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24942,'Shiraoka',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24943,'Shobu',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24944,'Showa',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24945,'Soka',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24946,'Sugito',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24947,'Toda',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24948,'Tokorozawa',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24949,'Tsurugashima',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24950,'Urawa',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24951,'Wako',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24952,'Warabi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24953,'Washimiya',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24954,'Yashio',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24955,'Yono',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24956,'Yorii',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24957,'Yoshikawa',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24958,'Yoshimi',1953,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24959,'Hikone',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24960,'Hino',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24961,'Konan',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24962,'Kosei',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24963,'Kusatsu',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24964,'Minakuchi',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24965,'Moriyama',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24966,'Nagahama',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24967,'Notogawa',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24968,'Omihachiman',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24969,'Otsu',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24970,'Ritto',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24971,'Shiga',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24972,'Yasu',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24973,'Yokaichi',1954,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24974,'Gotsu',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24975,'Hamada',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24976,'Hikawa',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24977,'Hirata',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24978,'Izumo',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24979,'Masuda',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24980,'Matsue',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24981,'Oda',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24982,'Yasugi',1955,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24983,'Asaba',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24984,'Atami',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24985,'Daito',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24986,'Fuji',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24987,'Fujieda',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24988,'Fujinomiya',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24989,'Fukuroi',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24990,'Gotemba',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24991,'Haibara',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24992,'Hamakita',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24993,'Hamamatsu',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24994,'Hamaoka',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24995,'Hosoe',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24996,'Ito',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24997,'Iwata',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24998,'Kakegawa',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(24999,'Kanaya',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25000,'Kannami',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25001,'Kikugawa',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25002,'Kosai',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25003,'Mishima',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25004,'Mori',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25005,'Nagaizumi',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25006,'Numazu',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25007,'Oigawa',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25008,'Oyama',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25009,'Ryuyo',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25010,'Sagara',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25011,'Shimada',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25012,'Shimizu',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25013,'Shimoda',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25014,'Shizuoka',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25015,'Susono',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25016,'Tenryu',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25017,'Toyoda',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25018,'Yaizu',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25019,'Yoshida',1956,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25020,'Ashikaga',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25021,'Fujioka',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25022,'Imaichi',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25023,'Iwafune',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25024,'Kaminokawa',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25025,'Kanuma',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25026,'Karasuyama',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25027,'Kawachi',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25028,'Kuroiso',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25029,'Mashiko',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25030,'Mibu',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25031,'Minamikawachi',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25032,'Moka',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25033,'Motegi',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25034,'Nasu',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25035,'Nikko',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25036,'Nishinasuno',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25037,'Nogi',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25038,'Ohira',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25039,'Otawara',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25040,'Oyama',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25041,'Sano',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25042,'Takanezawa',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25043,'Tanuma',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25044,'Tochigi',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25045,'Ujiie',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25046,'Utsunomiya',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25047,'Yaita',1957,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25048,'Aizumi',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25049,'Anan',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25050,'Ikeda',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25051,'Ishii',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25052,'Kamojima',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25053,'Kitajima',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25054,'Komatsushima',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25055,'Naruto',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25056,'Tokushima',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25057,'Waki',1958,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25058,'Akiruno',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25059,'Akishima',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25060,'Chofu',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25061,'Fuchu',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25062,'Hachioji',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25063,'Hamura',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25064,'Higashikurume',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25065,'Higashimurayama',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25066,'Higashiyamato',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25067,'Hino',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25068,'Hoya',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25069,'Inagi',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25070,'Kiyose',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25071,'Kodaira',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25072,'Koganei',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25073,'Kokubunji',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25074,'Komae',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25075,'Kunitachi',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25076,'Machida',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25077,'Mitaka',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25078,'Mizuho',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25079,'Musashimurayama',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25080,'Musashino',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25081,'Ome',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25082,'Tachikawa',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25083,'Tama',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25084,'Tanashi',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25085,'Tokyo',1959,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25086,'Kurayoshi',1960,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25087,'Sakaiminato',1960,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25088,'Tottori',1960,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25089,'Yonago',1960,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25090,'Fukumitsu',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25091,'Himi',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25092,'Kamiichi',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25093,'Kosugi',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25094,'Kurobe',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25095,'Namerikawa',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25096,'Nyuzen',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25097,'Osawano',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25098,'Oyabe',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25099,'Shimminato',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25100,'Takaoka',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25101,'Tateyama',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25102,'Tonami',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25103,'Toyama',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25104,'Uozu',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25105,'Yatsuo',1961,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25106,'Arida',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25107,'Gobo',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25108,'Hashimoto',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25109,'Iwade',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25110,'Kainan',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25111,'Katsuragi',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25112,'Kishigawa',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25113,'Nachikatsuura',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25114,'Shingu',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25115,'Tanabe',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25116,'Wakayama',1962,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25117,'Higashine',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25118,'Kahoku',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25119,'Kaminoyama',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25120,'Kawanishi',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25121,'Murayama',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25122,'Nagai',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25123,'Nanyo',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25124,'Obanazawa',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25125,'Sagae',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25126,'Sakata',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25127,'Shinjo',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25128,'Takahata',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25129,'Tendo',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25130,'Tsuchiura',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25131,'Tsuruoka',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25132,'Yamagata',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25133,'Yonezawa',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25134,'Yuza',1963,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25135,'Hagi',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25136,'Hikari',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25137,'Hofu',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25138,'Iwakuni',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25139,'Kudamatsu',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25140,'Mine',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25141,'Nagato',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25142,'Ogori',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25143,'Onoda',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25144,'Sanyo',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25145,'Shimonoseki',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25146,'Shinnanyo',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25147,'Tokuyama',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25148,'Toyoura',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25149,'Ube',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25150,'Yamaguchi',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25151,'Yanai',1964,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25152,'Enzan',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25153,'Fujiyoshida',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25154,'Isawa',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25155,'Kofu',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25156,'Nirasaki',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25157,'Otsuki',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25158,'Ryuo',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25159,'Tsuru',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25160,'Uenohara',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25161,'Yamanashi',1965,109,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25162,'Grouville',1966,110,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25163,'Trinity',1976,110,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25164,'\'Abbin',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25165,'\'Ajlun',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25166,'\'Anjarah',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25167,'\'Arjan',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25168,'\'Ayn Janna',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25169,'Halawah',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25170,'Kharbat al-Wahadnah',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25171,'Kufranjah',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25172,'Sakhrah',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25173,'al-Hashamiyah',1977,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25174,'Abu \'Alanda',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25175,'Amman',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25176,'Askan Abu Nusayr',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25177,'Jawa',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25178,'Khalda wa Tila\'-al-\'Ali',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25179,'Khraybat As-Suq',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25180,'Marj al-Hammam',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25181,'Na\'ur',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25182,'Nuzhat Sahab',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25183,'Sahab',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25184,'Shafa Badran',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25185,'Suwaylih',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25186,'Tariq',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25187,'Umm As-Summaq',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25188,'Umm Nuwarah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25189,'Umm Qusayr wal Muqabalin',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25190,'Umm al-Basatin',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25191,'Wadi as-Sir',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25192,'al-\'Abdaliyah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25193,'al-Binayat',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25194,'al-Faysaliyah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25195,'al-Jizah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25196,'al-Jubayhah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25197,'al-Juwaydah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25198,'al-Quwaysimah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25199,'al-Yadudah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25200,'ar-Rawdah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25201,'at-Talbiyah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25202,'at-Taybah',1978,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25203,'\'Al\'al',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25204,'\'Anbah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25205,'Arhaba',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25206,'Aydun',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25207,'Bayt Idas',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25208,'Bayt Ras',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25209,'Bayt Yafa',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25210,'Bushra',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25211,'Dayr Abi Sa\'id',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25212,'Dayr Yusif',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25213,'Dayr as-Sa\'anah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25214,'Duwaqarah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25215,'Hakama',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25216,'Hartha',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25217,'Hatam',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25218,'Hawwarah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25219,'Irbid',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25220,'Jasar ash-Shaykh Hussayn',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25221,'Judayta',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25222,'Katam',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25223,'Kharja',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25224,'Kufur \'Awan',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25225,'Kufur Abil',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25226,'Kufur Asad',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25227,'Kufur Rakab',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25228,'Kufur Sum',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25229,'Kufur Yuba',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25230,'Kufur al-Ma\'',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25231,'Kuraymah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25232,'Malka',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25233,'Mukhayyam al-Husun',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25234,'Qumaym',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25235,'Saham',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25236,'Sal',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25237,'Samma',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25238,'Sammaw\'',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25239,'Sum',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25240,'Tabnah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25241,'Umm Qays',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25242,'Wadi al-Yabas',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25243,'Waqqas',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25244,'Zahar',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25245,'al-Ashrafiyah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25246,'al-Balawnah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25247,'al-Buwaydah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25248,'al-Husun',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25249,'al-Manshiyah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25250,'al-Mashari\'a',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25251,'al-Mazar ash-Shamaliyah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25252,'al-Mughayyar',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25253,'an-Nu\'aymeh',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25254,'ar-Ramtha',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25255,'as-Sarih',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25256,'ash-Shajarah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25257,'ash-Shunah ash-Shamaliyah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25258,'at-Taybah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25259,'at-Turrah',1979,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25260,'Balila',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25261,'Burma',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25262,'Jarash',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25263,'Kufur Khall',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25264,'Mukhayyam Ghazzah',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25265,'Mukhayyam Suf',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25266,'Qafqafa',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25267,'Raymun',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25268,'Sakab',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25269,'Suf',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25270,'al-Kattah',1980,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25271,'Bayar',1981,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25272,'Ma\'an',1981,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25273,'Wadi Musa',1981,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25274,'al-Hussayniyah',1981,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25275,'al-Jafar',1981,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25276,'at-Taybah',1981,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25277,'Dhiban',1982,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25278,'Ma\'in',1982,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25279,'Madaba',1982,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25280,'Mulayh',1982,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25281,'al-Faysaliyah',1982,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25282,'al-\'Aqabah',1983,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25283,'al-Quwayrah',1983,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25284,'\'Ayn al-Basha',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25285,'Darar',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25286,'Juwafat al-Kafrayn',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25287,'Ma\'addi',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25288,'Mahas',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25289,'Safut',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25290,'Suknat ash-Shunah',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25291,'Yarqa',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25292,'al-Baq\'ah',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25293,'al-Fuhays',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25294,'al-Karamah',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25295,'ar-Rawdah',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25296,'as-Salt',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25297,'as-Sawalhah',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25298,'as-Subayhi',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25299,'at-Tawal al-Janubi',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25300,'at-Tuwal ash-Shamali',1984,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25301,'\'Ayy',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25302,'Adar',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25303,'Faqqu\'',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25304,'Ghawr al-Mazra\'ah',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25305,'Ghawr as-Safi',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25306,'Maw\'tah',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25307,'Sirfa',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25308,'al-Hussayniyah',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25309,'al-Karak',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25310,'al-Mazar',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25311,'al-Qasr',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25312,'al-Qitranah',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25313,'ar-Rabbah',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25314,'ash-Shahabiyah',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25315,'at-Taybah',1985,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25316,'Badiyat ar-Ruwayshid',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25317,'Bal\'ama',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25318,'Manshiyat Bani Hassan',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25319,'Mugayyar as-Sarhan',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25320,'Sabha',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25321,'Sama as-Sarhan',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25322,'Umm al-Quttayn',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25323,'al-Hamra\'',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25324,'al-Khaldiyah al-Jadidah',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25325,'al-Mabrukah',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25326,'al-Mafraq',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25327,'ar-Ruwayshid',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25328,'az-Za\'tari',1986,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25329,'Busayrah',1987,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25330,'al-\'Ayn al-Bayda',1987,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25331,'al-Hasa',1987,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25332,'al-Qadisiyah',1987,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25333,'at-Tafilah',1987,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25334,'Iskan al-Hashamiyah',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25335,'Mushayrfat Ras al-\'Ayn',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25336,'Shnillar',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25337,'ad-Dulayl',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25338,'al-Azraq ash-Shamali',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25339,'al-Hashamiyah',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25340,'ar-Russayfah',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25341,'as-Sukhnah',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25342,'az-Zarqa\'',1988,111,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25343,'Akmecet',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25344,'Aral',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25345,'Baykonir',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25346,'Canakazali',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25347,'Canakorgan',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25348,'Cosali',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25349,'Kazali',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25350,'Sieli',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25351,'Tasboget',1989,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25352,'Aksu',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25353,'Alekseevka',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25354,'Astana',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25355,'Atbasar',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25356,'Bestobe',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25357,'Caltir',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25358,'Colimbet',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25359,'Ereymentau',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25360,'Koksetau',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25361,'Makin',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25362,'Stepnogorsk',1990,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25363,'Aktobe',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25364,'Alka',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25365,'Batamsi',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25366,'Embi',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL); INSERT INTO `cities` VALUES (25367,'Hromtau',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25368,'Kandagac',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25369,'Salkar',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25370,'Subarkudik',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25371,'Subarsi',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25372,'Temir',1991,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25373,'Almati',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25374,'Almaty',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25375,'Boralday',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25376,'Carkant',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25377,'Energetyceskiy',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25378,'Esik',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25379,'Fabrichniy',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25380,'Kapsagay',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25381,'Karabulak',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25382,'Kaskelen',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25383,'Kirov',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25384,'Sariozek',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25385,'Sarkand',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25386,'Selek',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25387,'Taldikorgan',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25388,'Talgar',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25389,'Tekeli',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25390,'Ustobe',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25391,'Uzunagac',1992,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25392,'Atirau',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25393,'Atyrau',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25394,'Dossor',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25395,'Inderbor',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25396,'Karaton',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25397,'Kulsari',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25398,'Makat',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25399,'Oporni',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25400,'Sumisker',1993,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25401,'Abay',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25402,'Akadir',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25403,'Aktas',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25404,'Aktau',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25405,'Atasu',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25406,'Balkas',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25407,'Cayrem',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25408,'Cezkazgan',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25409,'Gulsat',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25410,'Karacal',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25411,'Karaganda',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25412,'Karkarali',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25413,'Karsakbay',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25414,'Konrat',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25415,'Novodolinskiy',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25416,'Osakarovka',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25417,'Sahti',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25418,'Saran',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25419,'Sarisagan',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25420,'Satpaev',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25421,'Temirtau',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25422,'Tokaryovka',1996,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25423,'Arkalik',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25424,'Borovskoy',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25425,'Cetikara',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25426,'Derjavinsk',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25427,'Esil',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25428,'Fodorov',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25429,'Kacar',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25430,'Komsomol',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25431,'Kostanay',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25432,'Kusmurin',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25433,'Lisakovsk',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25434,'Rudni',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25435,'Tobol',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25436,'Uritsk',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25437,'Zatobolsk',1997,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25438,'Aktau',1998,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25439,'Beyneu',1998,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25440,'Canaozen',1998,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25441,'Cetibay',1998,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25442,'Fort-Sevcenko',1998,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25443,'Kurik',1998,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25444,'Mangyslak',1998,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25445,'Setpe',1998,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25446,'Ekibastuz',2000,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25447,'Ermak',2000,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25448,'Ertis',2000,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25449,'Kaciri',2000,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25450,'Maykain',2000,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25451,'Pavlodar',2000,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25452,'Sarbakti',2000,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25453,'Canatas',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25454,'Georgiyev',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25455,'Karatau',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25456,'Lugovoy',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25457,'Merke',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25458,'Mihaylov',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25459,'Oytal',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25460,'Su',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25461,'Taraz',2003,112,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25462,'Gilgil',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25463,'Karatina',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25464,'Kiambu',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25465,'Kijabe',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25466,'Kikuyu',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25467,'Limuru',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25468,'Maragua',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25469,'Muranga',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25470,'Nyeri',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25471,'Ruiru',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25472,'Sagana',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25473,'Thika',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25474,'Vanga',2004,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25475,'Changamwe',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25476,'Garsen',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25477,'Gazi',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25478,'Hola',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25479,'Kaloleni',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25480,'Kilifi',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25481,'Kinango',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25482,'Kipini',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25483,'Kwale',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25484,'Lamu',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25485,'Malindi',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25486,'Mambrui',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25487,'Mombasa',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25488,'Sawasawa',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25489,'Shimoni',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25490,'Takaungu',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25491,'Taveta',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25492,'Voi',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25493,'Witu',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25494,'Wundanyi',2005,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25495,'Athi River',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25496,'Chuka',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25497,'Embu',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25498,'Isiolo',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25499,'Kangonde',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25500,'Kitui',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25501,'Machakos',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25502,'Mado Gashi',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25503,'Marsabit',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25504,'Meru',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25505,'Moyale',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25506,'Mutomo',2006,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25507,'Nairobi',2007,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25508,'Homa Bay',2009,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25509,'Kisii',2009,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25510,'Kisumu',2009,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25511,'Migori',2009,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25512,'Bungoma',2011,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25513,'Busia',2011,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25514,'Kakamega',2011,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25515,'Mumias',2011,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25516,'Webuye',2011,113,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25517,'Taburao',2012,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25518,'Binoinano',2013,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25519,'Takaeang',2014,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25520,'Roreti',2015,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25521,'Ooma',2016,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25522,'Tabukiniberu',2017,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25523,'Butaritari',2018,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25524,'London',2019,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25525,'Tabontebike',2020,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25526,'Tabiauea',2021,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25527,'Makin',2022,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25528,'Rawannawi',2023,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25529,'Rungata',2024,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25530,'Temaraia',2025,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25531,'Ijaki',2026,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25532,'Nabari',2030,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25533,'Abaokoro',2031,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25534,'Washington',2034,114,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25535,'Kanggye',2035,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25536,'Cheongjin',2036,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25537,'Kimchaek',2036,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25538,'Najin',2036,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25539,'Hamheung',2037,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25540,'Sariweon',2038,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25541,'Seongnim',2038,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25542,'Haeju',2039,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25543,'Kaeseong',2040,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25544,'Weonsan',2041,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25545,'Nampo',2042,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25546,'Sineuiju',2043,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25547,'Phyeongseong',2044,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25548,'Pyeongyang',2045,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25549,'Pyongyang',2045,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25550,'Hyesan',2046,115,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25551,'Busan',2047,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25552,'Aeweol',2048,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25553,'Cheju',2048,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25554,'Seogwipo',2048,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25555,'Cheonju',2049,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25556,'Chongup',2049,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25557,'Iksan',2049,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25558,'Kimje',2049,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25559,'Kochang',2049,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25560,'Kunsan',2049,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25561,'Namwon',2049,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25562,'Puan',2049,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25563,'Haenam',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25564,'Hwasun',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25565,'Kwangyang',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25566,'Kwangyang Up',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25567,'Mokpo',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25568,'Naju',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25569,'Peolgyo',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25570,'Suncheon',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25571,'Yeocheon',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25572,'Yeosu',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25573,'Yonggwang',2050,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25574,'Cheongwon-gun',2051,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25575,'Eumsung-Kun',2051,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25576,'Jinchunkun',2051,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25577,'Okcheon-gun',2051,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25578,'Um Sung Gun',2051,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25579,'Chechon',2052,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25580,'Cheongju',2052,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25581,'Chincheon',2052,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25582,'Chungju',2052,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25583,'Jincheon-gun',2052,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25584,'Okchon',2052,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25585,'Yongdong',2052,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25586,'Asan',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25587,'Cheonan',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25588,'Chochiwon',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25589,'Geumsan-Gun',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25590,'Hongseong',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25591,'Kongju',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25592,'Kumsan',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25593,'Nonsan',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25594,'Poryong',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25595,'Puyeo',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25596,'Seonghwan',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25597,'Seosan',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25598,'Taean',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25599,'Taesan',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25600,'Tangjin',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25601,'Yesan',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25602,'Yonmu',2053,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25603,'Chonan',2054,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25604,'Danjin-gun',2054,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25605,'Gongjusi',2054,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25606,'Daegu',2055,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25607,'Dalseo-gu',2055,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25608,'Chungcheong',2056,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25609,'Hoengseong',2056,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25610,'Mummakeup',2056,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25611,'Wonju',2056,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25612,'Gimhae',2057,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25613,'Goyang-si',2057,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25614,'Ansan',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25615,'Anyang',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25616,'Anyang-Si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25617,'Anyangsi',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25618,'Buchon',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25619,'Buchun-Si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25620,'Byeoryangdong',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25621,'Dongan-gu',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25622,'Gimpo City',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25623,'Goyang',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25624,'Gupo-si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25625,'Guri-Si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25626,'Gwacheon Si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25627,'Gwangju-Si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25628,'Hwaseong-si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25629,'Icheon-si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25630,'Iljuk-myeon',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25631,'Kwangju',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25632,'Pocheon-Si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25633,'Seongnam',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25634,'Shihung-Si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25635,'Siheung',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25636,'Sihung-si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25637,'Suwon',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25638,'Uijeongbu-dong',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25639,'Uiwang',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25640,'Yangju',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25641,'Yangpyeong-Gun',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25642,'Yeokbuk-Dong-Si',2058,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25643,'Changwon',2060,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25644,'Gimhae-si',2060,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25645,'Incheon',2061,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25646,'Kanghwa',2061,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25647,'Namdongku',2061,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25648,'Jeju',2062,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25649,'Yeongpyeong-Dong',2062,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25650,'Jeonju-Si',2063,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25651,'Chuncheon',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25652,'Hongcheon',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25653,'Kangneung',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25654,'Samchok',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25655,'Seokcho',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25656,'Taebaek',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25657,'Tonghae',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25658,'Weonju',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25659,'Yeongweol',2064,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25660,'Kwangju',2065,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25661,'Ansan',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25662,'Anseong',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25663,'Anyang',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25664,'Chongok',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25665,'Euijeongbu',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25666,'Euiwang',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25667,'Hanam',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25668,'Hoechon',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25669,'Hwado',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25670,'Hwasung',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25671,'Ichon',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25672,'Kihung',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25673,'Kimpo',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25674,'Koyang',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25675,'Kumchon',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25676,'Kunpo',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25677,'Kuri',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25678,'Kwacheon',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25679,'Kwangju',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25680,'Kwangmyeong',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25681,'Munsan',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25682,'Namyangju',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25683,'Osan',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25684,'Paengseong',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25685,'Pochon',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25686,'Pubal',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25687,'Pucheon',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25688,'Pyeongtaek',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25689,'Seongnam',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25690,'Shiheung',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25691,'Suweon',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25692,'Taean',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25693,'Tongducheon',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25694,'Wabu',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25695,'Yeoju',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25696,'Yongin',2066,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25697,'Andong',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25698,'Angang',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25699,'Hayang',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25700,'Heunghae',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25701,'Kimcheon',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25702,'Kumi',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25703,'Kyeongju',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25704,'Kyeongsan',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25705,'Mungyong',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25706,'Ochon',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25707,'Oedong',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25708,'Pohang',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25709,'Sangju',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25710,'Seonsan',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25711,'Waegwan',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25712,'Yechon',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25713,'Yeongcheon',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25714,'Yeongju',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25715,'Yeonil',2067,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25716,'Changweon',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25717,'Chinhae',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25718,'Chinju',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25719,'Chinyeong',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25720,'Keoje',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25721,'Kimhae',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25722,'Kochang',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25723,'Koseong',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25724,'Masan',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25725,'Miryang',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25726,'Naeso',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25727,'Sacheon',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25728,'Sinhyeon',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25729,'Tongyong',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25730,'Ungsang',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25731,'Yangju',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25732,'Yangsan',2068,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25733,'Anyang-Si',2069,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25734,'Bucheon',2069,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25735,'Paju',2069,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25736,'Sungnamshi',2069,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25737,'Suwon',2069,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25738,'Uijongbu',2069,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25739,'Yangju',2069,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25740,'Gumi-Shi',2070,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25741,'Kyungsan',2070,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25742,'Youngcheon-Si',2070,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25743,'Bundang',2071,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25744,'Gunpo',2071,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25745,'Yangu',2071,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25746,'Pochun',2072,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25747,'Yangju',2072,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25748,'Yonggi',2072,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25749,'Kijang',2073,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25750,'Pusan',2073,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25751,'Seoul',2074,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25752,'Paju',2075,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25753,'Hwawon',2076,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25754,'Taegu',2076,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25755,'Taejeon',2077,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25756,'Daejeon',2078,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25757,'Nongso',2079,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25758,'Ulsan',2079,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25759,'Heungup-Myun',2080,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25760,'Inchon',2081,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25761,'Pusan',2081,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25762,'Taejon',2081,116,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25763,'Bayan',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25764,'Hawalli',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25765,'Massilah',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25766,'Mushrif',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25767,'Salwa\'',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25768,'Sha\'\'ab',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25769,'Subbah-as-Salim',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25770,'al-Funaytis',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25771,'al-Funaytis-al-Garbiyah',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25772,'al-Jabiriyah',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25773,'al-Karim',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25774,'ar-Rumaythiyah',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25775,'as-Salimiyah',2083,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25776,'Mishref',2084,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25777,'Qadesiya',2085,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25778,'Safat',2086,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25779,'Salmiya',2087,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25780,'A\'qaylah',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25781,'Abu Hulayfah',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25782,'Dahar',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25783,'Desert Area',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25784,'Hadiyah',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25785,'Jabbar-al-\'Ali',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25786,'Shu\'aybah',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25787,'al-Ahmadi',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25788,'al-Fintas',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25789,'al-Fuhayhil',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25790,'al-Mahbulah',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25791,'al-Manqaf',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25792,'al-Wafrah',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25793,'ar-Riqqah',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25794,'as-Sabahiyah',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25795,'az-Zawr',2088,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25796,'\'Umayriyah',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25797,'Abraq Khitan',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25798,'Ardiyah',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25799,'Fardaws',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25800,'Jalib ash-Shuyuh',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25801,'Janub-as-Surrah',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25802,'Khitan-al-Janubiyah',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25803,'Qartaba',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25804,'Ray',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25805,'Riqay',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25806,'Sabhan',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25807,'Sarbah-an-Nasr',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25808,'Warmawk',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25809,'al-Andalus',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25810,'al-Farwaniyah',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25811,'ar-Rabbiyah',2089,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25812,'Amgarah',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25813,'Desert Area',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25814,'Nasim',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25815,'Tayma\'',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25816,'Uyawn',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25817,'Waha',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25818,'al-Jahra',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25819,'al-Qusayr',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25820,'as-Sulaybiyah',2090,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25821,'\'Abullah-as-Salam',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25822,'Ardhiyah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25823,'Banayd-al-Qar',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25824,'Health District',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25825,'Kayfan',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25826,'Khalidiyah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25827,'Mansuriyah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25828,'Nuzha',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25829,'Qarnadah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25830,'Shamiyah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25831,'ad-Da\'iyah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25832,'ad-Dasma',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25833,'ad-Dawhah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25834,'al-\'Udayliyah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25835,'al-Fayha',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25836,'al-Kuwayt',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25837,'al-Qadisiyah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25838,'ar-Rawdah',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25839,'as-Sulaybihat',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25840,'ash-Shuwaykh Industrial',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25841,'ash-Shuwaykh Reservoir',2091,117,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25842,'Batken',2092,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25843,'Isfana',2092,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25844,'Khaidarkan',2092,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25845,'Kyzyl-Kiya',2092,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25846,'Ravat',2092,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25847,'Sulukta',2092,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25848,'Bishkek',2093,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25849,'Ak-Suu',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25850,'Belovodskoye',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25851,'Boroldoy',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25852,'Chaldovar',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25853,'Chatkyol',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25854,'Chui',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25855,'Don Arik',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25856,'Ivanovka',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25857,'Jangyjar',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25858,'Jangypakhtar',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25859,'Kalininskoye',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25860,'Kalinovka',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25861,'Kant',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25862,'Kara-Suu',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25863,'Karabalta',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25864,'Kayingdi',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25865,'Kegety',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25866,'Kemin',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25867,'Kosh Tegirmen',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25868,'Krasnaya Rechka',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25869,'Orlovka',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25870,'Sokuluk',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25871,'Sopokov',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25872,'Sosnovka',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25873,'Tokmok',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25874,'Tunuk',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25875,'Yuryevka',2094,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25876,'Ak-Bulok',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25877,'Ak-Terek',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25878,'Ananyevo',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25879,'Balykchy',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25880,'Barskoon',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25881,'Cholpon-Ata',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25882,'Darkhon',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25883,'Enilchek',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25884,'Grigoryevka',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25885,'Jyrgolon',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25886,'Kara-Say',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25887,'Karako',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25888,'Karakol',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25889,'Kuturgu',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25890,'Mikhaylovka',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25891,'Novovoznesenovka',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25892,'Ottuk',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25893,'Semyonovka',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25894,'Taldy-Suu',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25895,'Teploklyuchenka',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25896,'Tyup',2095,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25897,'Ala Buka',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25898,'Bazarkurgon',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25899,'Jalal-Abad',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25900,'Jangybazar',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25901,'Karavan',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25902,'Kochkor-Ata',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25903,'Kok-Jangak',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25904,'Mailuu-Suu',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25905,'Tash-Kumyr',2096,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25906,'At-Bashi',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25907,'Chaiek',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25908,'Kara-Suu',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25909,'Kayirma',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25910,'Kek-Algyp',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25911,'Kochkorka',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25912,'Kulanak',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25913,'Mingbulok',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25914,'Mingkush',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25915,'Naryn',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25916,'Ugyut',2097,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25917,'Daraut-Korgan',2098,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25918,'Gulcha',2098,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25919,'Kara-Suu',2098,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25920,'Leninskoye',2098,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25921,'Osh',2098,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25922,'Uzgen',2098,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25923,'Chat-Bazar',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25924,'Groznoye',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25925,'Kara-Kul',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25926,'Klyuchevka',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25927,'Kyzyl-Adyr',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25928,'Leninopol',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25929,'Maimak',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25930,'Talas',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25931,'Toktogul',2099,118,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25932,'Samakhixai',2100,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25933,'Huayxay',2101,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25934,'Pakxan',2102,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25935,'Champasak',2103,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25936,'Muang Khong',2103,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25937,'Muang Khongxedon',2103,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25938,'Pakxe',2103,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25939,'Xam Nua',2104,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25940,'Thakek',2105,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25941,'Ban Nahin',2108,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25942,'Phongsaly',2109,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25943,'Saravan',2110,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25944,'Savannakhet',2111,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25945,'Sekong',2112,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25946,'Xaignabury',2115,119,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25947,'Aizkraukle',2117,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25948,'Jaunjelgava',2117,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25949,'Plavinas',2117,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25950,'Aluksne',2118,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25951,'Ape',2118,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25952,'Balvi',2119,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25953,'Vilaka',2119,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25954,'Bauska',2120,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25955,'Cesis',2121,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25956,'Ligatne',2121,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25957,'Ilukste',2122,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25958,'Subate',2122,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25959,'Ilukste',2123,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25960,'Subate',2123,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25961,'Auce',2124,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25962,'Dobele',2124,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25963,'Gulbene',2125,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25964,'Akniste',2126,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25965,'Jekabspils',2126,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25966,'Viesite',2126,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25967,'Jelgava',2127,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25968,'Kalnciems',2128,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25969,'Dagda',2130,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25970,'Kraslava',2130,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25971,'Kuldiga',2131,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25972,'Skrunda',2131,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25973,'Liepaja',2132,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25974,'Aizpute',2133,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25975,'Durbe',2133,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25976,'Grobina',2133,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25977,'Pavilosta',2133,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25978,'Priekule',2133,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25979,'Ainazhi',2134,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25980,'Aloja',2134,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25981,'Limbazhi',2134,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25982,'Salacgriva',2134,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25983,'Staicele',2134,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25984,'Karsava',2135,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25985,'Ludza',2135,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25986,'Zilupe',2135,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25987,'Cesvaine',2136,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25988,'Lubana',2136,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25989,'Madona',2136,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25990,'Varaklani',2136,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25991,'Ikskile',2137,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25992,'Kegums',2137,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25993,'Les Hautes-Rivieres',2137,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25994,'Lielvarde',2137,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25995,'Ogre',2137,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25996,'Livani',2138,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25997,'Preili',2138,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25998,'Rezekne',2139,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(25999,'Vilani',2140,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26000,'Riga',2141,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26001,'Baldone',2142,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26002,'Balozhi',2142,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26003,'Olaine',2142,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26004,'Salaspils',2142,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26005,'Saulkrasti',2142,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26006,'Sigulda',2142,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26007,'Vangazhi',2142,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26008,'Broceni',2143,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26009,'Saldus',2143,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26010,'Sabile',2144,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26011,'Stende',2144,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26012,'Talsi',2144,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26013,'Valdemarpils',2144,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26014,'Kandava',2145,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26015,'Tukums',2145,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26016,'Seda',2146,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26017,'Smiltene',2146,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26018,'Strenchi',2146,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26019,'Valka',2146,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26020,'Mazsalaca',2147,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26021,'Rujiena',2147,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26022,'Valmiera',2147,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26023,'Piltene',2148,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26024,'Piltene',2149,120,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26025,'Beirut',2150,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26026,'Jdeidet el Metn',2150,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26027,'Jnaah',2150,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26028,'Sidon',2154,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26029,'Ba\'labakk',2155,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26030,'Jubb Jannin',2155,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26031,'Rashayya',2155,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26032,'Riyak',2155,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26033,'Zahlah',2155,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26034,'al-Hirmil',2155,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26035,'Jazzin',2156,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26036,'Juwayya',2156,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26037,'Sayda\'',2156,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26038,'Sur',2156,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26039,'Marj \'Uyun',2157,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26040,'Nabatieh',2157,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26041,'an-Nabatiyat-at-Tahta',2157,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26042,'Tarabulus ash-Sham',2158,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26043,'al-Batrun',2158,121,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26044,'Teyateyaneng',2159,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26045,'Butha Buthe',2160,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26046,'Hlotse',2161,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26047,'Maputsoa',2161,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26048,'Mafeteng',2162,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26049,'Maseru',2163,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26050,'Mokhotlong',2165,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26051,'Quthing',2167,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26052,'Thaba-Tseka',2168,122,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26053,'Tubmanburg',2169,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26054,'Gbarnga',2170,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26055,'Voinjama',2174,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26056,'Harbel',2175,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26057,'Kakata',2175,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26058,'Bensonville',2177,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26059,'Monrovia',2177,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26060,'Ganta',2178,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26061,'Sanniquellie',2178,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26062,'Yekepa',2178,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26063,'Rivercess',2179,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26064,'Greenville',2180,123,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26065,'Ajdabiya',2181,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26066,'Awjilah',2181,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26067,'Marsa al-Burayqah',2181,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26068,'az-Zuwaytinah',2181,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26069,'Awbari',2182,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26070,'Ghat',2182,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26071,'Banghazi',2183,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26072,'Suluq',2183,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26073,'al-Quriyah',2183,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26074,'Darnah',2184,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26075,'Ghadamis',2185,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26076,'Nalut',2185,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26077,'Gharyan',2186,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26078,'Mizdah',2186,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26079,'al-Qaryah-ash-Sharqiyah',2186,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26080,'Misratah',2187,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26081,'Murzuq',2188,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26082,'Sabha',2189,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26083,'Bani Walid',2190,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26084,'Surt',2191,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26085,'Tarabulus',2192,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26086,'Tripoli',2192,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26087,'Tarhunah',2193,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26088,'Misrata',2194,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26089,'Bardiyah',2195,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26090,'Tubruq',2195,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26091,'Yafran',2196,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26092,'Zlitan',2197,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26093,'al-Aziziyah',2198,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26094,'al-Abyar',2199,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26095,'al-Marj',2199,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26096,'Waddan',2201,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26097,'al-Khums',2202,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26098,'al-Jawf',2203,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26099,'Birak',2205,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26100,'az-Zawiyah',2206,124,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26101,'Balzers',2207,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26102,'Eschen',2208,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26103,'Gamprin',2209,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26104,'Mauren',2210,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26105,'Planken',2211,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26106,'Ruggell',2212,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26107,'Schaan',2213,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26108,'Schellenberg',2214,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26109,'Triesen',2215,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26110,'Triesenberg',2216,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26111,'Vaduz',2217,125,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26112,'Alytus',2218,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26113,'Daugai',2218,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26114,'Druskininkai',2218,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26115,'Lazdijai',2218,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26116,'Simnas',2218,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26117,'Varena',2218,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26118,'Veisiejai',2218,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26119,'Anyksciai',2219,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26120,'Ariogala',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26121,'Birshtonas',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26122,'Dotnuva',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26123,'Ezherelis',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26124,'Garliava',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26125,'Jieznas',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26126,'Jonava',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26127,'Kachergine',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26128,'Kaishiadorys',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26129,'Kaunas',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26130,'Kedainiai',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26131,'Kulautuva',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26132,'Prienai',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26133,'Raseiniai',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26134,'Vilkija',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26135,'Zhiezhmariai',2220,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26136,'Gargzhdai',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26137,'Klaipeda',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26138,'Kretinga',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26139,'Neringa',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26140,'Pagegiai',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26141,'Palanga',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26142,'Panemune',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26143,'Priekule',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26144,'Rusne',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26145,'Salantai',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26146,'Shilute',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26147,'Skuodas',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26148,'Zhemaichiu Naumiestis',2221,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26149,'Gelgaudishkis',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26150,'Kalvarija',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26151,'Kazlu Ruda',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26152,'Kudirkos Naumiestis',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26153,'Kybartai',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26154,'Marijampole',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26155,'Shakiai',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26156,'Vilkavishkis',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26157,'Virbalis',2222,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26158,'Birzhai',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26159,'Jonishkelis',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26160,'Juodupe',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26161,'Kupishkis',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26162,'Obeliai',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26163,'Pandelys',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26164,'Panevezhys',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26165,'Panevezio',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26166,'Pasvalys',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26167,'Ramygala',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26168,'Rokishkis',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26169,'Subachius',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26170,'Vabalninkas',2223,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26171,'Panevezys',2224,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26172,'Akmene',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26173,'Jonishkis',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26174,'Kelme',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26175,'Kurshenai',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26176,'Linkuva',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26177,'Naujoji Akmene',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26178,'Pakruojis',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26179,'Radvilishkis',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26180,'Sheduva',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26181,'Shiauliai',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26182,'Siauliai',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26183,'Tyruliai',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26184,'Tytuvenai',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26185,'Uzhventis',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26186,'Venta',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26187,'Viekshniai',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26188,'Zhagare',2225,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26189,'Jurbarkas',2226,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26190,'Shilale',2226,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26191,'Skaudvile',2226,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26192,'Smalininkai',2226,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26193,'Taurage',2226,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26194,'Guglingen',2227,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26195,'Mazheikiai',2227,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26196,'Plunge',2227,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26197,'Rietavas',2227,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26198,'Seda',2227,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26199,'Telshiai',2227,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26200,'Varniai',2227,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26201,'Mazeikiai',2228,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26202,'Anykshchiai',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26203,'Dukshtas',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26204,'Dusetos',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26205,'Ignalina',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26206,'Kavarskas',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26207,'Moletai',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26208,'Troshkunai',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26209,'Turmantas',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26210,'Utena',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26211,'Visaginas',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26212,'Zarasai',2229,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26213,'Baltoji Voke',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26214,'Eishishkes',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26215,'Elektrenai',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26216,'Grigishkes',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26217,'Lentvaris',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26218,'Nemenchine',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26219,'Pabrade',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26220,'Rudishkes',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26221,'Shalchininkai',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26222,'Shirvintos',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26223,'Shvenchioneliai',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26224,'Shvenchionys',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26225,'Trakai',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26226,'Ukmerge',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26227,'Vievis',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26228,'Vilnius',2230,126,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26229,'Bascharage',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26230,'Bettange-sur-Mess',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26231,'Bridel',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26232,'Capellen',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26233,'Clemency',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26234,'Dahlem',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26235,'Dippach',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26236,'Dondelange',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26237,'Eischen',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26238,'Fingig',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26239,'Garnich',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26240,'Goeblange',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26241,'Goetzingen',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26242,'Grass',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26243,'Greisch',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26244,'Hagen',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26245,'Hautcharage',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26246,'Hivange',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26247,'Hobscheid',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26248,'Holzem',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26249,'Kahler',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26250,'Kehlen',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26251,'Keispelt',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26252,'Kleinbettingen',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26253,'Koerich',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26254,'Kospstal',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26255,'Linger',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26256,'Mamer',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26257,'Meispelt',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26258,'Nospelt',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26259,'Olm',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26260,'Roodt',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26261,'Schouweiler',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26262,'Septfontaines',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26263,'Sprinkange',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26264,'Steinfort',2231,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26265,'Allerborn',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26266,'Asselborn',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26267,'Basbellain',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26268,'Beiler',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26269,'Binsfeld',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26270,'Biwisch',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26271,'Bockholtz',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26272,'Boevange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26273,'Boxhorn',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26274,'Brachtenbach',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26275,'Breidfeld',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26276,'Cinqfontaines',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26277,'Clervaux',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26278,'Consthum',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26279,'Crendal',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26280,'Deiffelt-Lentzweiler',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26281,'Derenbach',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26282,'Doennange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26283,'Dorscheid',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26284,'Drauffelt',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26285,'Drinklange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26286,'Eisenbach',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26287,'Eselborn',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26288,'Fischbach',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26289,'Goedange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26290,'Grindhausen',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26291,'Hachiville',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26292,'Hamiville',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26293,'Hautbellain',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26294,'Heinerscheid',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26295,'Hoffelt',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26296,'Holler',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26297,'Holzthum',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26298,'Hosingen',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26299,'Huldange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26300,'Hupperdange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26301,'Kalborn',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26302,'Leithum',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26303,'Lieler',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26304,'Lullange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26305,'Marnach',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26306,'Maulusmuehle',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26307,'Munshausen',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26308,'Neidhausen',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26309,'Niederwampach-Schimpach',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26310,'Oberwampach',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26311,'Reuler',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26312,'Roder',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26313,'Rodershausen',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26314,'Rumlange-Lentzweiler',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26315,'Sassel',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26316,'Siebenaler',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26317,'Stockem',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26318,'Troine-Hinterhasselt',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26319,'Troine-Route',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26320,'Troisvierges',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26321,'Urspelt',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26322,'Wahlhausen',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26323,'Weicherdange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26324,'Weiler',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26325,'Weiswampach',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26326,'Wilwerdange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26327,'Wincrange',2232,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26328,'Bastendorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26329,'Bettendorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26330,'Bigelbach',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26331,'Bourscheid',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26332,'Brandenbourg',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26333,'Burden',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26334,'Diekirch',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26335,'Eppeldorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26336,'Ermsdorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26337,'Erpeldange',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26338,'Ettelbruck',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26339,'Folkendange',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26340,'Gilsdorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26341,'Hoesdorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26342,'Hoscheid',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26343,'Hoscheid-Dickt',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26344,'Ingeldorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26345,'Kehmen-Scheidel',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26346,'Landscheid',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26347,'Lipperscheid',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26348,'Medernach',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26349,'Mertzig',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26350,'Michelau',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26351,'Moestroff',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26352,'Niederfeulen',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26353,'Oberfeulen',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26354,'Reisdorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26355,'Savelborn + Fermes',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26356,'Schieren',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26357,'Schlindermanderscheid',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26358,'Stegen',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26359,'Tandel',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26360,'Wallendorf',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26361,'Warken',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26362,'Welscheid',2233,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26363,'Altrier',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26364,'Beaufort',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26365,'Bech',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26366,'Berdorf',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26367,'Bollendorf-Pont',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26368,'Born',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26369,'Boursdorf',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26370,'Breidweiler',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26371,'Christnach',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26372,'Consdorf',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26373,'Dickweiler',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26374,'Dillingen',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26375,'Echternach',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26376,'Girst',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26377,'Girsterklaus',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26378,'Givenich',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26379,'Grundhof',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26380,'Haller',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26381,'Hemstal',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26382,'Herborn',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26383,'Hersberg-Kobenbour-Graulinster',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26384,'Hinkel',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26385,'Moersdorf',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26386,'Mompach',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26387,'Mullerthal',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26388,'Osweiler',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26389,'Rippig',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26390,'Rosport',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26391,'Scheidgen',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26392,'Steinheim',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26393,'Waldbillig',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26394,'Weilerbach',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26395,'Zittig',2234,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26396,'Abweiler',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26397,'Aspelt',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26398,'Belvaux',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26399,'Berchem',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26400,'Bergem',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26401,'Bettembourg',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26402,'Bivange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26403,'Crauthem',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26404,'Differdange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26405,'Dudelange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26406,'Ehlange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26407,'Ehlerange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26408,'Esch-Alzette',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26409,'Fennange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26410,'Foetz',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26411,'Fousbann',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26412,'Frisange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26413,'Hellange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26414,'Huncherange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26415,'Kayl',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26416,'Kockelscheuer',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26417,'Lamadelaine',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26418,'Lasauvage',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26419,'Leudelange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26420,'Limpach',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26421,'Livange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26422,'Mondercange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26423,'Niedercorn',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26424,'Noertzange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26425,'Obercorn',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26426,'Peppange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26427,'Petange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26428,'Pissange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26429,'Pontpierre',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26430,'Reckange-sur-Mess',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26431,'Rodange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26432,'Roedgen',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26433,'Roeser',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26434,'Rumelange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26435,'Sanem',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26436,'Schifflange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26437,'Soleuvre',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26438,'Tetange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26439,'Wickrange',2235,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26440,'Ahn-Dreiborn',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26441,'Altlinster',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26442,'Beidweiler',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26443,'Berbourg',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26444,'Berg',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26445,'Betzdorf',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26446,'Beyren',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26447,'Biwer',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26448,'Biwerbach',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26449,'Boudler',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26450,'Boudlerbach',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26451,'Bourglinster',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26452,'Breinert',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26453,'Brouch',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26454,'Ehnen',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26455,'Eisenborn',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26456,'Eschweiler',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26457,'Flaxweiler',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26458,'Godbrange',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26459,'Gonderange',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26460,'Gostingen',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26461,'Graulinster-Blumenthal',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26462,'Grevenmacher',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26463,'Hagelsdorf',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26464,'Imbringen',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26465,'Junglinster',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26466,'Lellig',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26467,'Machtum',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26468,'Manternach',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26469,'Mensdorf',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26470,'Mertert',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26471,'Munschecker',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26472,'Niederdonven',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26473,'Oberdonven',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26474,'Olingen',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26475,'Rodenbourg',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26476,'Roodt-sur-Syr',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26477,'Wasserbillig',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26478,'Wecker',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26479,'Wecker-Gare',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26480,'Weydig',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26481,'Wormeldange',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26482,'Wormeldange-Haut',2236,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26483,'Alzingen',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26484,'Bereldange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26485,'Bertrange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26486,'Contern',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26487,'Ernster',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26488,'Fentange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26489,'Findel',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26490,'Hassel',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26491,'Heisdorf',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26492,'Helmsange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26493,'Hesperange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26494,'Hostert',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26495,'Howald',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26496,'Itzig',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26497,'Luxembourg',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26498,'Medingen',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26499,'Moutfort',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26500,'Mullendorf',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26501,'Munsbach',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26502,'Neuhaeusgen',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26503,'Niederanven',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26504,'Oberanven',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26505,'Oetrange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26506,'Rameldange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26507,'Sandweiler',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26508,'Schrassig',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26509,'Schuttrange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26510,'Senningen',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26511,'Senningerberg',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26512,'Steinsel',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26513,'Strassen',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26514,'Syren',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26515,'Uebersyren',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26516,'Waldhof',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26517,'Walferdange',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26518,'Weiler-la-Tour',2237,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26519,'Angelsberg',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26520,'Ansembourg',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26521,'Beringen',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26522,'Bissen',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26523,'Blaschette',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26524,'Boevange-Attert',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26525,'Bofferdange',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26526,'Bour',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26527,'Brouch',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26528,'Buschdorf',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26529,'Colmar-Berg',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26530,'Cruchten',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26531,'Ernzen',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26532,'Essingen',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26533,'Fischbach',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26534,'Glabach',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26535,'Gosseldange',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26536,'Grevenknapp-Bill-Finsterthal',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26537,'Heffingen',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26538,'Helmdange',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26539,'Hollenfels',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26540,'Hunsdorf',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26541,'Larochette',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26542,'Lintgen',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26543,'Lorentzweiler',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26544,'Marienthal',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26545,'Mersch',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26546,'Moesdorf',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26547,'Nommern',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26548,'Pettingen',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26549,'Prettange',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26550,'Reckange',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26551,'Reuland',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26552,'Rollingen',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26553,'Scherbach',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26554,'Scherfenhof',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26555,'Schiltzberg',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26556,'Schoenfels',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26557,'Schoos',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26558,'Schrondweiler',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26559,'Tuntange',2238,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26560,'Arsdorf',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26561,'Beckerich',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26562,'Bettborn',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26563,'Bigonville',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26564,'Bilsdorf',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26565,'Brattert-Rindschleiden',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26566,'Buschrodt',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26567,'Calmus',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26568,'Colpach-Bas',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26569,'Colpach-Haut',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26570,'Dellen-Lehrhof-Grevels',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26571,'Ehner',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26572,'Ell',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26573,'Eltz',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26574,'Elvange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26575,'Eschette',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26576,'Everlange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26577,'Folschette',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26578,'Grevels',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26579,'Grosbous',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26580,'Haut-Martelange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26581,'Heispelt',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26582,'Holtz',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26583,'Hostert',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26584,'Hovelange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26585,'Huttange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26586,'Kapweiler',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26587,'Koetschette',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26588,'Kuborn',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26589,'Lannen',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26590,'Levelange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26591,'Michelbouch',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26592,'Nagem',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26593,'Niederpallen',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26594,'Noerdange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26595,'Oberpallen',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26596,'Ospern',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26597,'Perle',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26598,'Petit-Nobressart',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26599,'Platen',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26600,'Pratz',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26601,'Rambrouch',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26602,'Redange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26603,'Reichlange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26604,'Reimberg',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26605,'Rippweiler',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26606,'Rombach',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26607,'Roodt',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26608,'Saeul',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26609,'Schandel',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26610,'Schwebach',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26611,'Schweich',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26612,'Useldange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26613,'Vichten',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26614,'Wahl',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26615,'Wolwelange',2239,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26616,'Altwies',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26617,'Assel',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26618,'Bech-Kleinmacher',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26619,'Bous',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26620,'Burmerange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26621,'Canach',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26622,'Dalheim',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26623,'Ellange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26624,'Elvange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26625,'Emerange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26626,'Erpeldange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26627,'Filsdorf',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26628,'Greiveldange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26629,'Lenningen',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26630,'Mondorf-les-Bains',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26631,'Remerschen',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26632,'Remich',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26633,'Rolling',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26634,'Schengen',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26635,'Schwebsingen',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26636,'Stadtbredimus',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26637,'Trintange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26638,'Trintange-Ersange-Roedt',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26639,'Waldbredimus',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26640,'Welfrange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26641,'Wellenstein',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26642,'Wintrange',2240,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26643,'Bettel',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26644,'Bivels',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26645,'Fouhren',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26646,'Gralingen',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26647,'Longsdorf',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26648,'Merscheid',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26649,'Nachtmanderscheid',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26650,'Putscheid',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26651,'Stolzembourg',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26652,'Vianden',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26653,'Walsdorf',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26654,'Weiler',2241,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26655,'Alscheid',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26656,'Baschleiden',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26657,'Bavigne',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26658,'Berle',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26659,'Bockholtz',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26660,'Boulaide',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26661,'Buderscheid',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26662,'Dahl',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26663,'Doncols',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26664,'Enscherange',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26665,'Erpeldange',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26666,'Esch-sur-Sure',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26667,'Eschdorf',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26668,'Eschweiler',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26669,'Goesdorf',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26670,'Grumelscheid',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26671,'Harlange',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26672,'Heiderscheid',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26673,'Heiderscheid-Fond',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26674,'Hierheck',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26675,'Insenborn',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26676,'Kaundorf',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26677,'Kautenbach',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26678,'Knaphoscheid',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26679,'Lellingen',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26680,'Liefrange',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26681,'Lultzhausen',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26682,'Masseler',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26683,'Mecher',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26684,'Merckholtz',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26685,'Merscheid',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26686,'Neunhausen',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26687,'Nocher',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26688,'Nocher-Route',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26689,'Noertrange',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26690,'Nothum',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26691,'Pintsch',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26692,'Pommerloch',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26693,'Schleif',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26694,'Selscheid',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26695,'Sonlez',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26696,'Surre',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26697,'Tadler-Ringel-Dirbach',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26698,'Tarchamps',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26699,'Watrange',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26700,'Wiltz',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26701,'Wilwerwiltz',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26702,'Winseler',2242,127,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26703,'Macau',2243,128,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26704,'Berovo',2244,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26705,'Pehchevo',2244,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26706,'Bach',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26707,'Bistrica',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26708,'Bitola',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26709,'Capari',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26710,'Dobrushevo',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26711,'Kukurechani',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26712,'Mogila',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26713,'Novaci',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26714,'Staravina',2245,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26715,'Brod',2246,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26716,'Plasnica',2246,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26717,'Samokov',2246,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26718,'Debar',2247,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26719,'Zhupa',2247,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26720,'Delchevo',2248,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26721,'Kamenica',2248,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26722,'Bogdanci',2250,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26723,'Gevgelija',2250,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26724,'Miravci',2250,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26725,'Star Dojran',2250,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26726,'Chegrane',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26727,'Dolna Banjica',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26728,'Gostivar',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26729,'Mavrovi Anovi',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26730,'Negotino-Poloshko',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26731,'Rostusha',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26732,'Srbinovo',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26733,'Vrapchishte',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26734,'Vrutok',2251,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26735,'Kavadarci',2252,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26736,'Konopishte',2252,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26737,'Rosoman',2252,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26738,'Drugovo',2253,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26739,'Kichevo',2253,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26740,'Oslomej',2253,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26741,'Vraneshtica',2253,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26742,'Zajas',2253,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26743,'Cheshinovo',2254,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26744,'Kochani',2254,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26745,'Obleshevo',2254,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26746,'Zletovo',2254,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26747,'Kratovo',2255,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26748,'Krushevo',2257,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26749,'Zhitoshe',2257,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26750,'Izvor',2258,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26751,'Klechevce',2258,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26752,'Kumanovo',2258,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26753,'Lipkovo',2258,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26754,'Orashac',2258,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26755,'Staro Nagorichane',2258,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26756,'Demir Kapija',2259,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26757,'Negotino',2259,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26758,'Belchishta',2260,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26759,'Kosel',2260,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26760,'Mesheishta',2260,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26761,'Ohrid',2260,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26762,'Dolneni',2261,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26763,'Krivogashtani',2261,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26764,'Prilep',2261,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26765,'Topolchani',2261,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26766,'Vitolishte',2261,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26767,'Probishtip',2262,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26768,'Konche',2263,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26769,'Podaresh',2263,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26770,'Radovish',2263,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26771,'Resen',2264,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26772,'Karbinci',2265,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26773,'Shtip',2265,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26774,'Stip',2265,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26775,'Arachinovo',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26776,'Chucher',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26777,'Ilinden',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26778,'Kondovo',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26779,'Petrovec',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26780,'Saraj',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26781,'Skopje',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26782,'Sopishte',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26783,'Studenichani',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26784,'Zelenikovo',2266,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26785,'Delogozhdi',2267,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26786,'Labunishta',2267,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26787,'Lukovo',2267,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26788,'Struga',2267,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26789,'Veleshta',2267,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26790,'Vevchani',2267,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26791,'Bosilovo',2268,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26792,'Kuklish',2268,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26793,'Murtino',2268,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26794,'Novo Selo',2268,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26795,'Strumica',2268,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26796,'Vasilevo',2268,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26797,'Bogovinje',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26798,'Brvenica',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26799,'Dzhepchishte',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26800,'Jegunovce',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26801,'Kamenjance',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26802,'Shipkovica',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26803,'Tearce',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26804,'Tetovo',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26805,'Vratnica',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26806,'Zhelino',2270,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26807,'Valandovo',2271,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26808,'Bogomila',2272,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26809,'Chashka',2272,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26810,'Gradsko',2272,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26811,'Veles',2272,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26812,'Blatec',2273,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26813,'Orizari',2273,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26814,'Vinica',2273,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26815,'Zrnovci',2273,129,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26816,'Ambatolampy',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26817,'Anjozorobe',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26818,'Ankazobe',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26819,'Antananarivo',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26820,'Antanifotsy',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26821,'Antsirabe',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26822,'Arivonimamo',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26823,'Betafo',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26824,'Faratsiho',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26825,'Fenoarivo',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26826,'Manjakandriana',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26827,'Soavinandriana',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26828,'Tsiroanomandidy',2274,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26829,'Ambanja',2275,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26830,'Ambilobe',2275,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26831,'Andapa',2275,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26832,'Antalaha',2275,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26833,'Antsirambazaha',2275,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26834,'Antsiranana',2275,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26835,'Sambava',2275,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26836,'Ambalavao',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26837,'Ambatofinandrahana',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26838,'Ambositra',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26839,'Fandriana',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26840,'Farafangana',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26841,'Fianarantsoa',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26842,'Ifanadiana',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26843,'Ihosy',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26844,'Ikalamavony',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26845,'Ikongo',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26846,'Manakara',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26847,'Manandriana',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26848,'Mananjary',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26849,'Nosy Varika',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26850,'Vangaindrano',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26851,'Vondrozo',2276,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26852,'Ambato Boina',2277,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26853,'Antsohihy',2277,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26854,'Bealanana',2277,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26855,'Mahajanga',2277,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26856,'Marovoay',2277,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26857,'Tsaratanana',2277,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26858,'Ambatondrazaka',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26859,'Ambodifototra',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26860,'Amparafaravola',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26861,'Andevoranto',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26862,'Andilamena',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26863,'Anosibe An\'ala',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26864,'Fenoarivo Atsinanana',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26865,'Mahanoro',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26866,'Mananara',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26867,'Maroantsetra',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26868,'Marolambo',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26869,'Moramanga',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26870,'Soanierana Ivongo',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26871,'Toamasina',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26872,'Vavatenina',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26873,'Vohibinany',2278,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26874,'Amboasary',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26875,'Ambovombe',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26876,'Ampanihy',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26877,'Ankazoabo',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26878,'Beloha',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26879,'Belon\'i Tsiribihina',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26880,'Beroroha',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26881,'Betioky',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26882,'Miandrivazo',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26883,'Morondava',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26884,'Sakaraha',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26885,'Taolanaro',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26886,'Toliary',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26887,'Tsihombe',2279,130,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26888,'Balaka',2280,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26889,'Chikwawa',2282,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26890,'Chiradzulu',2283,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26891,'Chitipa',2284,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26892,'Chipoka',2285,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26893,'Dedza',2285,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26894,'Dowa',2286,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26895,'Mponela',2286,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26896,'Chilumba',2287,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26897,'Karonga',2287,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26898,'Livingstonia',2287,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26899,'Kasungu',2288,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26900,'Liwonde',2290,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26901,'Machinga',2290,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26902,'Mangochi',2291,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26903,'Monkey Bay',2291,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26904,'Mchinji',2292,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26905,'Mulanje',2293,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26906,'Mwanza',2294,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26907,'Mzimba',2295,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26908,'Nkhotakota',2298,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26909,'Nsanje',2299,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26910,'Ntcheu',2300,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26911,'Ntchisi',2301,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26912,'Phalombe',2302,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26913,'Rumphi',2303,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26914,'Salima',2304,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26915,'Luchenza',2305,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26916,'Thyolo',2305,131,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26917,'Bandar Maharani',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26918,'Bandar Penggaram',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26919,'Bukit Bakri',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26920,'Buloh Kasap',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26921,'Chaah',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26922,'Johor Bahru',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26923,'Kelapa Sawit',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26924,'Kluang',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26925,'Kota Tinggi',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26926,'Kulai',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26927,'Labis',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26928,'Ledang',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26929,'Masai',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26930,'Mersing',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26931,'Parit Raja',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26932,'Pasir Gudang',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26933,'Pekan Nenas',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26934,'Pontian Kecil',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26935,'Segamat',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26936,'Sekudai',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26937,'Senai',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26938,'Simpang Rengam',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26939,'Tangkak',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26940,'Ulu Tiram',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26941,'Yong Peng',2307,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26942,'Alor Setar',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26943,'Bailing',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26944,'Bedong',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26945,'Gurun',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26946,'Jitra',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26947,'Kuah',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26948,'Kuala Kedah',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26949,'Kulim',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26950,'Langgar',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26951,'Sungai Petani',2308,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26952,'Gua Musang',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26953,'Kadok',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26954,'Kota Bahru',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26955,'Kuala Krai',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26956,'Pangkal Kalong',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26957,'Pasir Mas',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26958,'Peringat',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26959,'Tanah Merah',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26960,'Tumpat',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26961,'Wakaf Baru',2309,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26962,'Labuan',2311,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26963,'Alor Gajah',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26964,'Ayer Keroh',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26965,'Ayer Molek',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26966,'Batu Berendam',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26967,'Bemban',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26968,'Bukit Baru',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26969,'Bukit Rambai',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26970,'Klebang',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26971,'Kuala Sungai Baru',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26972,'Malacca',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26973,'Masjid Tanah',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26974,'Melaka',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26975,'Pulau Sebang',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26976,'Sungai Udang',2312,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26977,'Bandar Jengka Pusat',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26978,'Bentong',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26979,'Bukit Tinggi',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26980,'Jerantut',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26981,'Karak',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26982,'Kuala Lipis',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26983,'Kuantan',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26984,'Mentakab',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26985,'Pekan',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26986,'Pulau Pinang',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26987,'Raub',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26988,'Temerloh',2315,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26989,'Bayan Lepas',2316,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26990,'Church Town',2316,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26991,'George Town',2316,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26992,'Ayer Tawar',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26993,'Bagan Serai',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26994,'Batu Gajah',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26995,'Bidor',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26996,'Ipoh',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26997,'Jelapang',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26998,'Kampar',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(26999,'Kampong Koh',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27000,'Kuala Kangsar',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27001,'Lawan Kuda Baharu',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27002,'Lumut',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27003,'Pantai Remis',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27004,'Parit Buntar',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27005,'Perak',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27006,'Pusing',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27007,'Simpang Empat',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27008,'Sungai Siput Utara',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27009,'Taiping',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27010,'Tanjong Malim',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27011,'Tapah',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27012,'Teluk Intan',2317,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27013,'Kangar',2318,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27014,'Kuala Perlis',2318,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27015,'Beaufort',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27016,'Donggongon',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27017,'Keningau',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27018,'Kinarut',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27019,'Kota Belud',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27020,'Kota Kinabalu',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27021,'Kudat',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27022,'Kunak',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27023,'Lahad Datu',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27024,'Papar',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27025,'Putatan',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27026,'Ranau',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27027,'Sandakan',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27028,'Semporna',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27029,'Tawau',2320,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27030,'Batu Delapan Bazaar',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27031,'Bintulu',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27032,'Kapit',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27033,'Kota Samarahan',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27034,'Kuching',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27035,'Limbang',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27036,'Miri',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27037,'Sarawak',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27038,'Sarikel',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27039,'Sibu',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27040,'Sri Aman',2321,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27041,'Ampang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27042,'Ampang Jaya',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27043,'Balakong',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27044,'Bandar Baru Bangi',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27045,'Bandar Baru Salak Tinggi',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27046,'Bander Baro Bangi',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27047,'Banting',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27048,'Batang Berjuntai',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27049,'Batu Arang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27050,'Batu Sembilan Cheras',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27051,'Beranang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27052,'Bukit Beruntung',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27053,'Cyberjaya',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27054,'Darul Ehsan',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27055,'Dungun',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27056,'Gombak Setia',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27057,'Jenjarom',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27058,'Kajang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27059,'Kajang-Sungai Chua',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27060,'Klang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27061,'Kuala Kubu Baru',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27062,'Kuala Selangor',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27063,'Kuang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27064,'Pengkalan Kundang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27065,'Petaling Jaya',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27066,'Port Klang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27067,'Puchong',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27068,'Rawang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27069,'Sabak',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27070,'Sekinchan',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27071,'Selayang Baru',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27072,'Semenyih',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27073,'Serendah',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27074,'Seri Kembangan',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27075,'Shah Alam',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27076,'Subang Jaya',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27077,'Sungai Besar',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27078,'Sungai Buloh',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27079,'Sungai Pelek',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27080,'Taman Greenwood',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27081,'Tanjong Karang',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27082,'Tanjong Sepat',2322,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27083,'Bahaiyah',2323,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27084,'Langkap',2323,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27085,'Cukai',2324,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27086,'Jertih',2324,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27087,'Kemaman',2324,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27088,'Kerteh',2324,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27089,'Kuala Terengganu',2324,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27090,'Marang',2324,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27091,'Paka',2324,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27092,'Serdang',2324,132,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27093,'Dharavandhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27094,'Dhonfanu',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27095,'Eydhafushi',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27096,'Fehendhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27097,'Fulhadhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27098,'Goidhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27099,'Hithaadhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27100,'Kamadhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27101,'Kendhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27102,'Kihaadhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27103,'Kudarikilu',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27104,'Maalhos',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27105,'Thulhaadhoo',2327,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27106,'Badidhoo',2328,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27107,'Gemendhoo',2328,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27108,'Hulhudheli',2328,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27109,'Kudahuvadhoo',2328,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27110,'Maaeboodhoo',2328,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27111,'Meedhoo',2328,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27112,'Ribudhoo',2328,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27113,'Vaanee',2328,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27114,'Biledhdhoo',2329,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27115,'Dharaboodhoo',2329,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27116,'Feeali',2329,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27117,'Magoodhoo',2329,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27118,'Nilandhoo',2329,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27119,'Fuvammulah',2332,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27120,'Dhiffushi',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27121,'Gaafaru',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27122,'Gulhi',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27123,'Guraidhoo',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27124,'Himmafushi',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27125,'Huraa',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27126,'Kaashidhoo',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27127,'Maafushi',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27128,'Thulusdhoo',2335,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27129,'Dhabidhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27130,'Fonadhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27131,'Gaadhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27132,'Gamu',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27133,'Hithadhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27134,'Isdhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27135,'Kalhaidhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27136,'Kunahandhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27137,'Maabaidhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27138,'Maamendhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27139,'Maavah',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27140,'Mundhoo',2336,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27141,'Hinnavaru',2337,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27142,'Kurendhoo',2337,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27143,'Maafilaafushi',2337,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27144,'Naifaru',2337,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27145,'Olhuvelifushi',2337,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27146,'Dhiggaru',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27147,'Kolhufushi',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27148,'Madifushi',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27149,'Maduvvari',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27150,'Mulah',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27151,'Muli',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27152,'Naalaafushi',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27153,'Raimandhoo',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27154,'Veyvah',2339,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27155,'Fodhdhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27156,'Hebadhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27157,'Holhudhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27158,'Kedhikolhudhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27159,'Kudafari',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27160,'Landhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27161,'Lhohi',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27162,'Maafaru',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27163,'Maalhendhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27164,'Magoodhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27165,'Manadhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27166,'Miladhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27167,'Velidhoo',2340,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27168,'Agolhitheemu',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27169,'Alifushi',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27170,'Fainu',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27171,'Hulhudhuffaaru',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27172,'Iguraidhoo',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27173,'Innamaadhoo',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27174,'Kadholhudhoo',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27175,'Kinolhas',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27176,'Maakurathu',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27177,'Maduvvari',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27178,'Meedhoo',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27179,'Rasgetheemu',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27180,'Rasmaadhoo',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27181,'Ugoofaaru',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27182,'Vaadhoo',2341,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27183,'Bilehffahi',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27184,'Feevah',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27185,'Feydhoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27186,'Firubaidhoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27187,'Foakaidhoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27188,'Funadhoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27189,'Goidhoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27190,'Kaditheemu',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27191,'Komandoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27192,'Lhaimagu',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27193,'Maakandoodhoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27194,'Maaugoodhoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27195,'Maroshi',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27196,'Narudhoo',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27197,'Noomaraa',2342,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27198,'Feydhoo',2343,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27199,'Hithadhoo',2343,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27200,'Hulhudhoo',2343,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27201,'Maradhoo',2343,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27202,'Maradhoo-Feydhoo',2343,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27203,'Meedhoo',2343,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27204,'Buruni',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27205,'Dhiyamigili',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27206,'Gaadhiffushi',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27207,'Guraidhoo',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27208,'Hirilandhoo',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27209,'Kadoodhoo',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27210,'Kibidhoo',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27211,'Madifushi',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27212,'Omadhoo',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27213,'Thimarafushi',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27214,'Vandhoo',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27215,'Veymandhoo',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27216,'Vilufushi',2344,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27217,'Felidhoo',2345,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27218,'Fulidhoo',2345,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27219,'Keyodhoo',2345,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27220,'Rakeedhoo',2345,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27221,'Thinadhoo',2345,133,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27222,'Bamako',2346,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27223,'Gao',2347,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27224,'Bafoulabe',2348,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27225,'Kayes',2348,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27226,'Kita',2348,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27227,'Nioro',2348,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27228,'Kidal',2349,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27229,'Tessalit',2349,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27230,'Banamba',2350,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27231,'Kangaba',2350,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27232,'Kati',2350,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27233,'Kolokani',2350,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27234,'Koulikoro',2350,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27235,'Nara',2350,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27236,'Bandiagara',2351,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27237,'Djenne',2351,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27238,'Douentza',2351,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27239,'Koro',2351,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27240,'Mopti',2351,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27241,'Tenenkou',2351,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27242,'Ke-Massina',2352,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27243,'Kimparana',2352,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27244,'Markala',2352,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27245,'Niono',2352,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27246,'San',2352,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27247,'Segou',2352,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27248,'Sokolo',2352,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27249,'Bougouni',2353,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27250,'Kolondieba',2353,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27251,'Koutiala',2353,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27252,'Sikasso',2353,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27253,'Yorosso',2353,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27254,'Araouane',2354,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27255,'Dire',2354,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27256,'Goundam',2354,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27257,'Niafunke',2354,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27258,'Taoudenni',2354,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27259,'Tombouctou',2354,134,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27260,'Gharghur',2357,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27261,'Mellieha',2357,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27262,'Mgarr',2357,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27263,'Mosta',2357,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27264,'Naxxar',2357,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27265,'San Pawl il-Bahar',2357,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27266,'L-Iklin',2360,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27267,'Attard',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27268,'Balzan',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27269,'Dingli',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27270,'Iklin',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27271,'Lija',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27272,'Mdina',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27273,'Rabat',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27274,'Sighghiewi',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27275,'Zebbug',2361,135,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27276,'Castletown',2362,136,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27277,'Douglas',2363,136,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27278,'Laxey',2364,136,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27279,'Onchan',2365,136,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27280,'Peel',2366,136,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27281,'Ramsey',2369,136,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27282,'Aerok',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27283,'Beran',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27284,'Bikeer',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27285,'Buoj',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27286,'Enewe',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27287,'Jabwan',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27288,'Jah',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27289,'Jeh',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27290,'Kattiej',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27291,'Mejajok',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27292,'Mejil',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27293,'Tobomaro',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27294,'Woja',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27295,'Wolar',2370,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27296,'Ailuk',2371,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27297,'Ajelep',2371,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27298,'Aliej',2371,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27299,'Biken',2371,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27300,'Enejabrok',2371,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27301,'Enejelar',2371,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27302,'Kapen',2371,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27303,'Arno Arno',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27304,'Bikarej',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27305,'Bikonele',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27306,'Boken',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27307,'Eneaidrik',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27308,'Enirik',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27309,'Ijoen',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27310,'Ine',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27311,'Japo',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27312,'Jilane',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27313,'Kejbwe',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27314,'Kilange',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27315,'Kilemman',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27316,'Kinajon',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27317,'Langor',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27318,'Lukoj',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27319,'Malel',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27320,'Manrar',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27321,'Matolen',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27322,'Meetdik',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27323,'Mian',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27324,'Najaj',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27325,'Namwi',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27326,'Neenkotkot',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27327,'Taklep',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27328,'Tinak',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27329,'Tutu',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27330,'Ulien',2372,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27331,'Aur',2373,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27332,'Tabal',2373,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27333,'Eneu',2374,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27334,'Emej',2375,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27335,'Enearmij',2375,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27336,'Enekoion',2375,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27337,'Enilok',2375,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27338,'Jittaken',2375,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27339,'Jittoen',2375,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27340,'Rerok',2375,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27341,'Toka',2375,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27342,'Enewetak',2376,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27343,'Japtan',2376,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27344,'Medren',2376,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27345,'Jabat',2377,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27346,'Ae',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27347,'Ajejen',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27348,'Anilep',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27349,'Arreen',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27350,'Bokanake',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27351,'Bokkan',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27352,'Bukantorak',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27353,'Dede',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27354,'Ewo',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27355,'Imiej',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27356,'Imroj',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27357,'Jabnoren',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27358,'Jabwor',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27359,'Jaluit',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27360,'Lonone',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27361,'Mejatto',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27362,'Mejrirok',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27363,'Menge',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27364,'Nabbe',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27365,'Narmej',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27366,'Urbaj',2378,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27367,'Kili',2379,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27368,'Arbwa',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27369,'Ebadon',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27370,'Ebeye',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27371,'Ebjadik',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27372,'Ebwaj',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27373,'Ennilabegan',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27374,'Enubirr',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27375,'Enubuj',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27376,'Gugeegue',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27377,'Mejatto',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27378,'Ningi',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27379,'North Loi',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27380,'Orpap',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27381,'South Loi',2380,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27382,'Enerein',2381,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27383,'Lae',2381,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27384,'Lejab',2381,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27385,'Lib',2382,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27386,'Jebal',2383,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27387,'Likiep',2383,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27388,'Liklal',2383,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27389,'Melang',2383,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27390,'Ajeltake',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27391,'Aneenwudej',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27392,'Aneko',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27393,'Arrak',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27394,'Biken',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27395,'Bokaetoktok',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27396,'Denmeo',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27397,'Didej',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27398,'Ejit',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27399,'Enemanet',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27400,'Jelter',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27401,'Kalalen',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27402,'Kemman',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27403,'Laura',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27404,'Pikiriin',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27405,'Rita',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27406,'Rongrong',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27407,'Woja',2384,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27408,'Airok',2385,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27409,'Jang',2385,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27410,'Kaben',2385,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27411,'Tarawa',2385,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27412,'Wolot',2385,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27413,'Mejit',2386,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27414,'Aeloneo',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27415,'Anel',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27416,'Arbar',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27417,'Bar',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27418,'Bikonel',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27419,'Enajet',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27420,'Eoo',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27421,'Jabonwod',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27422,'Loen',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27423,'Lukoj',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27424,'Lukonwor',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27425,'Mae',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27426,'Majkin',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27427,'Mili',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27428,'Nad',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27429,'Nallu',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27430,'Tokewa',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27431,'Wau',2387,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27432,'Namorik',2388,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27433,'Namu',2389,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27434,'Rongelap',2390,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27435,'Ujae',2391,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27436,'Utirik',2392,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27437,'Wotho',2393,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27438,'Didi',2394,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27439,'Nibun',2394,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27440,'Wormej',2394,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27441,'Wotje',2394,137,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27442,'Fort-de-France',2395,138,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27443,'Le Lamentin',2395,138,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27444,'Saint-Joseph',2395,138,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27445,'Schoelcher',2395,138,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27446,'Le Morne-Rouge',2398,138,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27447,'Saint-Pierre',2398,138,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27448,'Atar',2399,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27449,'Shingati',2399,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27450,'Kifah',2400,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27451,'Alaq',2401,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27452,'Buqah',2401,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27453,'Magta\' Lahjar',2401,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27454,'\'Ayun-al-\'Atrus',2403,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27455,'Kubanni',2403,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27456,'Timbedra',2404,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27457,'Walatah',2404,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27458,'an-Na\'mah',2404,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27459,'Aqjawajat',2405,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27460,'Nawakshut',2406,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27461,'Hsay Walad \'Ali Babi',2407,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27462,'Kayhaydi',2408,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27463,'Tijiqjah',2409,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27464,'Rusu',2411,139,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27465,'Bel Air',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27466,'Bon Accueil',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27467,'Brisee Verdiere',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27468,'Camp Ithier',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27469,'Camp de Masque',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27470,'Camp de Masque Pave',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27471,'Central Flacq',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27472,'Clemencia',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27473,'Ecroignard',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27474,'Grand River South East',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27475,'Lalmatie',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27476,'Laventure',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27477,'Mare La Chaux',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27478,'Medine-Camp de Masque',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27479,'Olivia',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27480,'Poste de Flacq',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27481,'Quatre Cocos',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27482,'Quatre Soeurs',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27483,'Queen Victoria',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27484,'Saint Julien',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27485,'Saint Julien d\'Hotman',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27486,'Sebastopol',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27487,'Trou d\'Eau Douce',2414,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27488,'Floreal',2415,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27489,'Camp Thorel',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27490,'Dagotiere',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27491,'Dubreuil',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27492,'Esperance',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27493,'L\'Avenir',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27494,'La Laura-Malenga',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27495,'Melrose',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27496,'Moka',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27497,'Montagne Blanche',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27498,'Pailles',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27499,'Providence',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27500,'Quartier Militaire',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27501,'Ripailles',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27502,'Saint Pierre',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27503,'Verdun',2417,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27504,'Arsenal',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27505,'Baie du Tombeau',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27506,'Calebasses',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27507,'Congomah',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27508,'Creve Coeur',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27509,'D\'Epinay',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27510,'Fond du Sac',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27511,'La Tour Koenig',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27512,'Le Hochet',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27513,'Long Mountain',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27514,'Morcellement Saint Andre',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27515,'Notre Dame',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27516,'Pamplemousse',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27517,'Plaines des Papayes',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27518,'Pointe aux Piments',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27519,'Terre Rouge',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27520,'Triolet',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27521,'Villebague',2418,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27522,'Baie Malgache',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27523,'Coromandel-Graviers',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27524,'Grand Baie-Montagne Goyaves',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27525,'La Ferme',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27526,'Lataniers-Mont Lubin',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27527,'Mangues-Quatre Vents',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27528,'Oyster Bay',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27529,'Petit Gabriel',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27530,'Piments-Baie Topaze',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27531,'Plaine Corail-La Fouche Corail',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27532,'Port Mathurin',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27533,'Port Sud-Est',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27534,'Riviere Cocos',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27535,'Roche Bon Dieu-Trefles',2422,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27536,'Baie du Cap',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27537,'Bel Ombre',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27538,'Benares',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27539,'Bois Cheri',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27540,'Britannia',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27541,'Camp Diable',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27542,'Chamouny',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27543,'Chemin Grenier',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27544,'Grand Bois',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27545,'Riviere des Anguilles',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27546,'Saint Aubin',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27547,'Souillac',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27548,'Surinam',2424,140,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27549,'Acoua',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27550,'Bandraboua',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27551,'Bandrele',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27552,'Boueni',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27553,'Chiconi',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27554,'Chirongui',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27555,'Dembeni',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27556,'Kanikeli',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27557,'Koungou',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27558,'Mamoudzou',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27559,'Mtsamboro',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27560,'Mtsangamouji',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27561,'Ouangani',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27562,'Sada',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27563,'Tsingoni',2425,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27564,'Dzaoudzi',2426,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27565,'Pamanzi',2426,141,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27566,'Aguascalientes',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27567,'Asientos',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27568,'Calvillo',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27569,'Cosio',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27570,'Margaritas',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27571,'Ojocaliente',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27572,'Pabellon de Arteaga',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27573,'Pabellon de Hidalgo',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27574,'Palo Alto',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27575,'Rincon de Romos',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27576,'San Francisco de los Romo',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27577,'San Jose de Gracia',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27578,'Tepezala',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27579,'Villa Juarez',2427,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27580,'Becal',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27581,'Bolonchen',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27582,'Calkini',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27583,'Campeche',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27584,'Candelaria',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27585,'Carmen',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27586,'Champoton',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27587,'China',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27588,'Dzitbalche',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27589,'Escarcega',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27590,'Hecelchakan',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27591,'Hopelchen',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27592,'Isla Aguada',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27593,'Nuevo Progreso',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27594,'Nunkini',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27595,'Palizada',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27596,'Pomuch',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27597,'Sabancuy',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27598,'Seybaplaya',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27599,'Tenabo',2430,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27600,'Acacoyagua',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27601,'Acala',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27602,'Acapetahua',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27603,'Altamirano',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27604,'Alvaro Obregon',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27605,'Amatan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27606,'Amatenango del Valle',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27607,'Arriaga',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27608,'Benemerito de las Americas',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27609,'Berriozabal',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27610,'Bochil',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27611,'Cacahoatan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27612,'Cancuc',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27613,'Catazaja',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27614,'Chalchihiutan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27615,'Chanal',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27616,'Chiapa',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27617,'Chiapilla',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27618,'Chicomuselo',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27619,'Chilon',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27620,'Cintalapa',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27621,'Comaltitlan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27622,'Comitan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27623,'Copainala',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27624,'Copoya',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27625,'Cristobal Obregon',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27626,'El Bosque',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27627,'El Parral',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27628,'Escuintla',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27629,'Frontera Comalapa',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27630,'Frontera Corozal',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27631,'Frontera Hidalgo',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27632,'Huehuetan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27633,'Huehuetan Estacion',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27634,'Huixtla',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27635,'Ixhuatan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27636,'Ixtacomitan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27637,'Ixtapa',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27638,'Jaltenango',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27639,'Jesus Maria Garza',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27640,'Jiquipilas',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27641,'Jitotol',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27642,'Juarez',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27643,'La Concordia',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27644,'La Libertad',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27645,'La Trinitaria',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27646,'Las Margaritas',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27647,'Las Rosas',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27648,'Mapastepec',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27649,'Mazatan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27650,'Motozintla',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27651,'Navenchauc',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27652,'Nicolas Ruiz',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27653,'Ocosingo',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27654,'Ocotepec',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27655,'Ocozocoautla',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27656,'Ostuacan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27657,'Oxchuc',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27658,'Palenque',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27659,'Palestina',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27660,'Pantelho',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27661,'Paredon',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27662,'Petalcingo',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27663,'Pichucalco',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27664,'Pijijiapan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27665,'Pueblo Nuevo Solistahuacan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27666,'Puerto Madero',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27667,'Pujiltic',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27668,'Raudales Malpaso',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27669,'Rayon',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27670,'Reforma',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27671,'Revolucion Mexicana',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27672,'Rincon Chamula',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27673,'Salto de Agua',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27674,'San Cristobal de las Casas',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27675,'San Fernando',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27676,'San Lucas',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27677,'San Pedro Buenavista',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27678,'Simojovel',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27679,'Socoltenango',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27680,'Soyalo',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27681,'Suchiapa',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27682,'Suchiate',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27683,'Tapachula',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27684,'Tapilula',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27685,'Tecpatan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27686,'Tenango',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27687,'Teopisca',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27688,'Tila',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27689,'Tonala',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27690,'Totolapa',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27691,'Tres Picos',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27692,'Tuxtla Chico',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27693,'Tuxtla Gutierrez',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27694,'Tzimol',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27695,'Veinte de Noviembre',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27696,'Venustiano Carranza',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27697,'Villa Corzo',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27698,'Villaflores',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27699,'Yajalon',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27700,'Zinacantan',2431,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27701,'Adolfo Lopez Mateos',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27702,'Ahumada',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27703,'Anahuac',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27704,'Ascension',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27705,'Benito Juarez',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27706,'Camargo',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27707,'Carichi',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27708,'Casas Grandes',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27709,'Chihuahua',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27710,'Colonia Municipio Libre',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27711,'Creel',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27712,'Cuauhtemoc',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27713,'Delicias',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27714,'El Largo',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27715,'Guachochi',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27716,'Guadalupe',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27717,'Guadalupe y Calvo',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27718,'Hermenegildo Galeana',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27719,'Hidalgo',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27720,'Ignacio Zaragoza',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27721,'Jimenez',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27722,'Juan Aldama',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27723,'Juarez',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27724,'Lazaro Cardenas',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27725,'Madera',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27726,'Majimachi',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27727,'Meoqui',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27728,'Naica',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27729,'Nuevo Casas Grandes',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27730,'Octaviano Lopez',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27731,'Ojinaga',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27732,'Praxedis Guerrero',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27733,'Puerto Palomas',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27734,'Puerto de Anapra',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27735,'San Buenaventura',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27736,'San Francisco el Oro',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27737,'Santa Barbara',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27738,'Santa Cruz de Rosales',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27739,'Saucillo',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27740,'Valentin Gomez Farias',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27741,'Valle de Allende',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27742,'Vicente Guerrero',2432,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27743,'Acuna',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27744,'Allende',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27745,'Arteaga',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27746,'Castanos',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27747,'Concordia',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27748,'Cuatrocienagas',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27749,'El Coyote',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27750,'Frontera',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27751,'General Cepeda',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27752,'Hercules',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27753,'Matamoros',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27754,'Minas de Barroteran',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27755,'Monclova',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27756,'Muzquiz',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27757,'Nadadores',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27758,'Nava',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27759,'Nueva Rosita',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27760,'Ocampo',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27761,'Palau',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27762,'Parras',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27763,'Piedras Negras',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27764,'Ramos Arizpe',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27765,'Sabinas',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27766,'Saltillo',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27767,'San Buenaventura',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27768,'San Pedro',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27769,'Torreon',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27770,'Venustiano Carranza',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27771,'Viesca',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27772,'Villa Madero',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27773,'Villa Union',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27774,'Zaragoza',2433,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27775,'Armeria',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27776,'Cofradia',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27777,'Colima',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27778,'Colonia Bayardo',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27779,'Comala',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27780,'Coquimatlan',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27781,'Cuauhtemoc',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27782,'El Colomo',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27783,'Madrid',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27784,'Manzanillo',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27785,'Minatitlan',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27786,'Queseria',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27787,'Suchitlan',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27788,'Tecoman',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27789,'Villa de Alvarez',2434,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27790,'Bermejillo',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27791,'Canatlan',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27792,'Cuencame',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27793,'Durango',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27794,'Gomez Palacio',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27795,'Guadalupe Victoria',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27796,'Juarez',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27797,'Lerdo',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27798,'Mapimi',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27799,'Nazareno',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27800,'Nazas',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27801,'Nombre de Dios',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27802,'Nuevo Ideal',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27803,'Ocampo',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27804,'Panuco',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27805,'Papasquiaro',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27806,'Penon Blanco',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27807,'Poanas',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27808,'Pueblo Nuevo',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27809,'Rodeo',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27810,'Santa Catarina de Tepehuanes',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27811,'Santa Clara',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27812,'Santa Maria del Oro',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27813,'Suchil',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27814,'Tayoltita',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27815,'Tlahualilo',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27816,'Vicente Guerrero',2436,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27817,'Abasolo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27818,'Acambaro',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27819,'Aldama',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27820,'Allende',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27821,'Antonio Rodriguez',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27822,'Apaseo el Alto',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27823,'Apaseo el Grande',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27824,'Celaya',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27825,'Centro Familiar la Soledad',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27826,'Cerano',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27827,'Cerro Gordo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27828,'Colonias Nuevo Mexico',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27829,'Comonfort',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27830,'Coroneo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27831,'Cortazar',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27832,'Cueramaro',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27833,'Doctor Mora',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27834,'Dolores Hidalgo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27835,'Duarte',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27836,'El Sabino',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27837,'Escobedo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27838,'Guanajuato',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27839,'Huanimaro',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27840,'Iramuco',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27841,'Irapuato',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27842,'Jaral del Progreso',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27843,'Jerecuaro',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27844,'Juventino Rosas',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27845,'La Aldea',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27846,'La Calera',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27847,'La Ermita',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27848,'La Moncada',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27849,'Leon',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27850,'Loma Pelada',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27851,'Manuel Doblado',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27852,'Maravatio',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27853,'Marfil',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27854,'Medina',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27855,'Mexicanos',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27856,'Moroleon',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27857,'Ocampo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27858,'Octopan',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27859,'Pacueco',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27860,'Palo Verde',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27861,'Paracuaro',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27862,'Penjamo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27863,'Plan de Ayala',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27864,'Pueblo Nuevo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27865,'Purisima de Bustos',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27866,'Rincon de Tamayo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27867,'Romita',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27868,'Salamanca',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27869,'Salvatierra',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27870,'San Bartolo de Berrios',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27871,'San Cristobal',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27872,'San Diego de la Union',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27873,'San Felipe',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27874,'San Francisco del Rincon',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27875,'San Jose Agua Azul',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27876,'San Jose Iturbide',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27877,'San Jose Temascatio',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27878,'San Juan de la Vega',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27879,'San Luis de la Paz',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27880,'San Nicolas de los Agustinos',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27881,'San Pedro de los Naranjos',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27882,'San Roque',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27883,'Santa Teresa',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27884,'Santiago de Cuenda',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27885,'Sarabia',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27886,'Silao',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27887,'Tarandacuao',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27888,'Tarimoro',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27889,'Teneria del Santuario',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27890,'Uriangato',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27891,'Urireo',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27892,'Valle de Santiago',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27893,'Valtierrilla',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27894,'Victoria',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27895,'Villagran',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27896,'Villas de Irapuato',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27897,'Yerbabuena',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27898,'Yuriria',2438,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27899,'Acamixtla',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27900,'Acapulco',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27901,'Acatlan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27902,'Ajuchitlan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27903,'Alpoyeca',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27904,'Altamirano',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27905,'Apango',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27906,'Apaxtla',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27907,'Arcelia',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27908,'Atliaca',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27909,'Atoyac',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27910,'Ayutla',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27911,'Azoyu',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27912,'Bajos de Ejido',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27913,'Buenavista',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27914,'Chichihualco',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27915,'Chilapa',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27916,'Chilpancingo',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27917,'Coacoyul',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27918,'Cocula',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27919,'Copala',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27920,'Copalillo',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27921,'Coyuca',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27922,'Cruz Grande',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27923,'Cuajinicuilapa',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27924,'Cuautepec',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27925,'Cutzamala',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27926,'El Ocotito',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27927,'El Paraiso',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27928,'El Suchil',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27929,'Huamuxtitlan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27930,'Huitziltepec',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27931,'Huitzuco',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27932,'Iguala',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27933,'Ixtapa',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27934,'Kilometro Treinta',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27935,'La Loma',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27936,'La Union',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27937,'Las Petaquillas',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27938,'Las Vigas',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27939,'Marquelia',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27940,'Mazatlan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27941,'Mochitlan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27942,'Olinala',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27943,'Ometepec',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27944,'Petatlan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27945,'Pilcaya',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27946,'Quechultenango',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27947,'San Jeronimito',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27948,'San Jeronimo',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27949,'San Jose Ixtapa',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27950,'San Luis San Pedro',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27951,'San Marcos',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27952,'Taxco',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27953,'Taxco de Alarcon',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27954,'Tecoanapa',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27955,'Tecpan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27956,'Teloloapan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27957,'Tepecoacuilco',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27958,'Tierra Colorada',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27959,'Tixtla',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27960,'Tlacoachistlahuaca',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27961,'Tlacotepec',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27962,'Tlalchapa',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27963,'Tlamacazapa',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27964,'Tlapa',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27965,'Tlapehuala',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27966,'Totolapan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27967,'Tres Palos',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27968,'Xalpatlahuac',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27969,'Xaltianguis',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27970,'Xochihuehuetlan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27971,'Xochistlahuaca',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27972,'Zacualpan',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27973,'Zihuatanejo',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27974,'Zirandaro',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27975,'Zitlala',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27976,'Zumpango',2439,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27977,'Acaxochitlan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27978,'Acayuca',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27979,'Actopan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27980,'Ajacuba',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27981,'Almoloya',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27982,'Apan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27983,'Atengo',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27984,'Atitalaquia',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27985,'Atotonilco de Tula',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27986,'Atotonilco el Grande',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27987,'Calnali',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27988,'Cardonal',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27989,'Chapulhuacan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27990,'Cuautepec',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27991,'Doxey',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27992,'El Arenal',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27993,'El Llano',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27994,'El Rosario',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27995,'Emiliano Zapata',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27996,'Huautla',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27997,'Huejutla',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27998,'Hueytlalpan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(27999,'Huichapan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28000,'Ixmiquilpan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28001,'Jacala',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28002,'Jaltocan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28003,'Los Reyes',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28004,'Mineral del Monte',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28005,'Mixquiahuala',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28006,'Molango',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28007,'Orizatlan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28008,'Pachuca',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28009,'Pachuquilla',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28010,'Progreso',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28011,'Sahagun',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28012,'San Ildefonso',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28013,'San Juan Tepa',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28014,'San Marcos',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28015,'Singuilucan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28016,'Tasquillo',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28017,'Tecozautla',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28018,'Tepatepec',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28019,'Tepeapulco',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28020,'Tepeji',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28021,'Tepepa',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28022,'Tetepango',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28023,'Tezontepec',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28024,'Tizayuca',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28025,'Tlahuelilpan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28026,'Tlanalapa',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28027,'Tlanchinol',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28028,'Tlaxcoapan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28029,'Tlaxiaca',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28030,'Tolcayuca',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28031,'Tula de Allende',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28032,'Tulancingo',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28033,'Tulantepec',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28034,'Vindho',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28035,'Zacualtipan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28036,'Zapotlan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28037,'Zempoala',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28038,'Zimapan',2440,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28039,'Acatic',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28040,'Acatlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28041,'Ahualulco',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28042,'Ajijic',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28043,'Alejandria',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28044,'Amatitan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28045,'Ameca',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28046,'Antonio Escobedo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28047,'Arandas',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28048,'Atemajac',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28049,'Atequiza',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28050,'Atotonilco el Alto',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28051,'Atotonilquillo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28052,'Atoyac',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28053,'Autlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28054,'Ayotlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28055,'Ayutla',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28056,'Bellavista',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28057,'Cajititlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28058,'Capilla de Guadalupe',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28059,'Casimiro Castillo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28060,'Centro de Readaptacion Social',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28061,'Chapala',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28062,'Chiquilistlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28063,'Cihuatlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28064,'Cocula',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28065,'Colotlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28066,'Concepcion de Buenos Aires',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28067,'Cosala',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28068,'Coyula',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28069,'Cuitzeo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28070,'Cuqio',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28071,'Cuyutlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28072,'Degollado',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28073,'El Arenal',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28074,'El Grullo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28075,'El Limon',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28076,'El Quince',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28077,'El Refugio',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28078,'El Salto',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28079,'El Verde',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28080,'Encarnacion',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28081,'Etzatlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28082,'Guadalajara',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28083,'Guzman',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28084,'Hidalgo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28085,'Hostotipaquillo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28086,'Huejucar',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28087,'Huejuquilla el Alto',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28088,'Itzican',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28089,'Ixtapa',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28090,'Ixtlahuacan de los Membrillos',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28091,'Ixtlahuacan del Rio',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28092,'Ixtlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28093,'Jalostotitlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28094,'Jamay',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28095,'Jesus Maria',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28096,'Jocotepec',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28097,'Juanacatlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28098,'Juchitlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28099,'La Barca',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28100,'La Huerta',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28101,'La Ribera',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28102,'La Tijera',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28103,'La Venta del Astillero',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28104,'Lagos de Moreno',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28105,'Las Juntas',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28106,'Las Pintas',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28107,'Las Pintitas',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28108,'Lo Arado',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28109,'Magdalena',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28110,'Mascota',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28111,'Mazamitla',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28112,'Mexticacan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28113,'Mezcala',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28114,'Nuevo Mexico',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28115,'Ocotlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28116,'Ojuelos de Jalisco',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28117,'Pihuamo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28118,'Poncitlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28119,'Puente Grande',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28120,'Puerto Vallarta',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28121,'Purificacion',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28122,'San Agustin',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28123,'San Francisco de Asis',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28124,'San Gabriel',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28125,'San Jose de Gracia',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28126,'San Jose del Castillo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28127,'San Juan de los Lagos',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28128,'San Julian',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28129,'San Marcos',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28130,'San Martin de Hidalgo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28131,'San Miguel el Alto',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28132,'San Patricio',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28133,'San Sebastian del Sur',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28134,'San Sebastian el Grande',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28135,'Santa Anita',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28136,'Santa Cruz de las Flores',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28137,'Santa Cruz del Valle',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28138,'Sayula',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28139,'Tala',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28140,'Talpa',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28141,'Tamazula',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28142,'Tapalpa',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28143,'Tecalitlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28144,'Tecolotlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28145,'Tenamaxtlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28146,'Teocaltiche',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28147,'Teocuitatlan de Corona',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28148,'Tepatitlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28149,'Tequila',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28150,'Tesistan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28151,'Teuchitlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28152,'Tizapan el Alto',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28153,'Tlajomulco',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28154,'Tlaquepaque',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28155,'Tomatlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28156,'Tonala',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28157,'Tonaya',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28158,'Tonila',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28159,'Tototlan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28160,'Tuxpan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28161,'Union de San Antonio',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28162,'Union de Tula',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28163,'Usmajac',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28164,'Valle de Guadalupe',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28165,'Valle de Juarez',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28166,'Villa Corona',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28167,'Villa Guerrero',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28168,'Yahualica',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28169,'Zacoalco',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28170,'Zapopan',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28171,'Zapote',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28172,'Zapotiltic',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28173,'Zapotlanejo',2441,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28174,'Acahualco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28175,'Acambay',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28176,'Acazulco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28177,'Acolman',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28178,'Acuautla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28179,'Acutzilapan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28180,'Ajoloapan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28181,'Alborada',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28182,'Almaya',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28183,'Almoloya',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28184,'Almoloya del Rio',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28185,'Amanalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28186,'Amecameca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28187,'Ameyalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28188,'Apaxco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28189,'Atarasquillo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28190,'Atenco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28191,'Atizapan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28192,'Atlacomulco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28193,'Atlatlahuca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28194,'Atlatongo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28195,'Atlautla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28196,'Atlazalpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28197,'Autopan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28198,'Axapusco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28199,'Ayotuzco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28200,'Ayotzingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28201,'Azcatepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28202,'Balderas',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28203,'Bocanegra',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28204,'Boreje',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28205,'Buenavista',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28206,'Cacalomacan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28207,'Cahuacan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28208,'Calimaya',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28209,'Calixtlahuaca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28210,'Capulhuac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28211,'Carbon',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28212,'Cautzingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28213,'Chalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28214,'Chapultepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28215,'Chiautla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28216,'Chicoloapan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28217,'Chiconautla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28218,'Chiconcuac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28219,'Chimalhuacan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28220,'Chimalpa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28221,'Cholula',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28222,'Citendeje',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28223,'Coacalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28224,'Coachochitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28225,'Coacomulco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28226,'Coapango',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28227,'Coatepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28228,'Coatepec Harinas',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28229,'Coatlinchan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28230,'Cocotitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28231,'Colorines',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28232,'Concepcion Jolalpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28233,'Coyotepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28234,'Cuauhtemoc',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28235,'Cuauhtenco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28236,'Cuautitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28237,'Cuautitlan Izcalli',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28238,'Cuautlalpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28239,'Cuaxustenco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28240,'Cuexontitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28241,'Cuijingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28242,'Ecatepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28243,'Ecatzingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28244,'Ejido Cahuacan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28245,'Ejido Veinte de Noviembre la C',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28246,'Ejido de la Y Seccion Siete a ',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28247,'El Coporo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28248,'El Oro',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28249,'Enchisi',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28250,'Enthavi',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28251,'Fuentes del Valle',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28252,'Huehuetoca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28253,'Huexoculco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28254,'Hueypoxtla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28255,'Huilango',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28256,'Huitzilzingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28257,'Huixquilucan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28258,'Huixquilucan de Degollado',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28259,'Huixtoco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28260,'Ixlahuaca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28261,'Ixtacalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28262,'Ixtapaluca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28263,'Ixtapan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28264,'Ixtlahuatzingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28265,'Jajalpa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28266,'Jaltenco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28267,'Jaltepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28268,'Jesus del Monte',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28269,'Jicaltepec Autopan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28270,'Jilotepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28271,'Jilotzingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28272,'Jocotitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28273,'Joquicingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28274,'Jorge Jimenez Cantu',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28275,'Juchitepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28276,'La Concepcion los Banos',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28277,'La Constitucion',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28278,'La Magdalema',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28279,'Lerma',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28280,'Loma de Juarez',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28281,'Lomas de Zacamulpa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28282,'Lopez Mateos',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28283,'Los Esparragos',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28284,'Los Reyes',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28285,'Los Reyes Acozac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28286,'Luvianos',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28287,'Malinalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28288,'Melchor Ocampo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28289,'Metepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28290,'Mexicaltzingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28291,'Mextepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28292,'Montecillo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28293,'Nativitas',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28294,'Naucalpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28295,'Nexquipayac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28296,'Nextlalpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28297,'Nezahualcoyotl',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28298,'Nicolas Romero',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28299,'Nopaltepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28300,'Ocotitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28301,'Ocotlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28302,'Ocoyoacac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28303,'Ojo de Agua',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28304,'Otumba',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28305,'Otzacatipan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28306,'Oyamel',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28307,'Oztolotepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28308,'Ozumba',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28309,'Papalotla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28310,'Progreso Industrial',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28311,'Pueblo Nuevo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28312,'Rayon',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28313,'Rio Frio',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28314,'Salitrillo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28315,'San Antonio Buenavista',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28316,'San Antonio La Isla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28317,'San Bartolo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28318,'San Bartolo del Llano',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28319,'San Bernardino',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28320,'San Buenaventura',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28321,'San Felipe del Progreso',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28322,'San Jeronimo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28323,'San Jose Guadalupe',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28324,'San Jose el Vidrio',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28325,'San Juan Tilapa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28326,'San Juan de las Huertas',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28327,'San Juan y San Pedro Tezompa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28328,'San Lorenzo Cuauhtenco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28329,'San Martin de las Piramides',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28330,'San Miguel la Labor',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28331,'San Nicolas Guadalupe',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28332,'San Nicolas Tolentino',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28333,'San Pablo de las Salinas',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28334,'San Pedro Abajo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28335,'San Pedro Arriba',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28336,'San Pedro el Alto',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28337,'San Pedro los Banos',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28338,'San Simon de la Laguna',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28339,'Santa Catarina del Monte',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28340,'Santa Cruz del Monte',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28341,'Santa Gertrudis',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28342,'Santa Maria del Monte',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28343,'Santo Domingo de Guzman',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28344,'Soyaniquilpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28345,'Sultepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28346,'Tecalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28347,'Tecamac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28348,'Techuchulco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28349,'Tecuahutitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28350,'Tehuixtitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28351,'Tejupilco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28352,'Temamatla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28353,'Temascalapa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28354,'Temascalcingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28355,'Temoaya',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28356,'Tenancingo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28357,'Tenango de Arista',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28358,'Tenango del Aire',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28359,'Tenochtitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28360,'Teoloyucan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28361,'Teotihuacan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28362,'Tepeolulco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28363,'Tepetitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28364,'Tepetlaoxtoc',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28365,'Tepetlixpa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28366,'Tepexpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28367,'Tepotzotlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28368,'Tequexquinahuac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28369,'Tequisistlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28370,'Tequixquiac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28371,'Texcalyacac',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28372,'Texcoco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28373,'Teyahualco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28374,'Tezoquipan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28375,'Tezoyuca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28376,'Tianguistenco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28377,'Tilapa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28378,'Tlachaloya Segunda Seccion',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28379,'Tlachihualpa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28380,'Tlacotepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28381,'Tlahuelilpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28382,'Tlaixpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28383,'Tlalcilalcalli',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28384,'Tlalcilalcalpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28385,'Tlalmanalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28386,'Tlalmimilolpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28387,'Tlalnepantla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28388,'Tlaltelulco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28389,'Tlaltizapan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28390,'Tlanisco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28391,'Toluca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28392,'Tonanitla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28393,'Tonatico',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28394,'Totocuitlapilco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28395,'Totoltepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28396,'Tulantongo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28397,'Tultepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28398,'Tultitlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28399,'Valle de Bravo',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28400,'Victoria',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28401,'Villa Guerrero',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28402,'Vista Hermosa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28403,'Xalatlaco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28404,'Xalpa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28405,'Xico',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28406,'Xochimanca',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28407,'Xolalpa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28408,'Xoloc',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28409,'Xometla',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28410,'Xonacatlan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28411,'Yachihuacaltepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28412,'Yancuitlalpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28413,'Zacacalco',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28414,'Zacamulpa',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28415,'Zacualpan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28416,'Zaragoza',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28417,'Zictepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28418,'Zinacantepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28419,'Zolotepec',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28420,'Zumpahuacan',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28421,'Zumpango',2442,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28422,'Acuitzio',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28423,'Aguililla',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28424,'Alvaro Obregon',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28425,'Angahuan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28426,'Angamacutiro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28427,'Angangueo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28428,'Antunez',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28429,'Apatzingan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28430,'Ario',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28431,'Arteaga',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28432,'Benito Juarez',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28433,'Brisenas',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28434,'Buenavista',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28435,'Buenos Aires',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28436,'Caltzontzin',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28437,'Capacuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28438,'Capula',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28439,'Caracuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28440,'Charapan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28441,'Charo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28442,'Chavinda',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28443,'Cheran',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28444,'Chilchota',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28445,'Churintzio',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28446,'Churumuco',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28447,'Coahuayana',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28448,'Coalcoman',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28449,'Coeneo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28450,'Cojumatlan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28451,'Comachuen',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28452,'Contepec',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28453,'Copandaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28454,'Cotija',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28455,'Cuanajo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28456,'Cuitareo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28457,'Cuitzeo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28458,'Ecuandureo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28459,'Hidalgo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28460,'Huandacareo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28461,'Huetamo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28462,'Indaparapeo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28463,'Irimbo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28464,'Ixtlan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28465,'Jacona',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28466,'Jiquilpan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28467,'Jungapeo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28468,'La Huacana',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28469,'La Mira',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28470,'La Orilla',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28471,'La Piedad',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28472,'La Ruana',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28473,'Las Guacamayas',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28474,'Lazaro Cardenas',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28475,'Lombardia',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28476,'Los Reyes',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28477,'Madero',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28478,'Maravatio',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28479,'Maya',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28480,'Morelia',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28481,'Morelos',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28482,'Nahuatzen',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28483,'Nocupetaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28484,'Nueva Italia de Ruiz',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28485,'Nuevo San Juan Parangaricutiro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28486,'Numaran',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28487,'Ocampo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28488,'Opopeo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28489,'Pajacuaran',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28490,'Panindicuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28491,'Paracho',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28492,'Paracuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28493,'Pastor Ortiz',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28494,'Patzcuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28495,'Pedernales',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28496,'Penjamillo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28497,'Periban',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28498,'Pichataro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28499,'Purepero',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28500,'Puruandiro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28501,'Puruaran',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28502,'Querendaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28503,'Quiroga',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28504,'Rincon de Nicolas Romero',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28505,'Riva Palacio',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28506,'Sahuayo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28507,'San Jose de Gracia',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28508,'San Lucas',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28509,'San Matias Grande',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28510,'Santa Clara de Valladares',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28511,'Santa Clara del Cobre',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28512,'Santa Fe de la Laguna',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28513,'Tacambaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28514,'Tancitaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28515,'Tangamandapio',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28516,'Tangancicuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28517,'Tanhuato',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28518,'Tarecuato',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28519,'Taretan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28520,'Tarimbaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28521,'Tejaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28522,'Tepalcatepec',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28523,'Tingambato',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28524,'Tinguindin',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28525,'Tiquicheo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28526,'Tlalpujahua',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28527,'Tlazazalca',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28528,'Tungareo',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28529,'Tuxpan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28530,'Tzintzuntzan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28531,'Uruapan',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28532,'Venustiano Carranza',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28533,'Villa Jimenez',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28534,'Villachuato',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28535,'Villamar',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28536,'Vista Hermosa',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28537,'Yurecuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28538,'Zacapu',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28539,'Zamora',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28540,'Zinapecuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28541,'Zitacuaro',2443,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28542,'Alpuyeca',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28543,'Amacuzac',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28544,'Amayuca',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28545,'Anenecuilco',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28546,'Apatlaco',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28547,'Atlatlahucan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28548,'Axochiapan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28549,'Ayala',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28550,'Calera Chica',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28551,'Chiconcuac',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28552,'Coatetelco',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28553,'Cocoyoc',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28554,'Cuautla',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28555,'Cuernavaca',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28556,'Emiliano Zapata',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28557,'Higueron',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28558,'Hueyapan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28559,'Huiztilac',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28560,'Independencia',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28561,'Jantetelco',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28562,'Jiutepec',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28563,'Jojutla',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28564,'Jonacatepec',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28565,'Juan Morales',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28566,'La Joya',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28567,'Los Arcos',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28568,'Mazatepec',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28569,'Miacatlan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28570,'Oaxtepec',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28571,'Ocuituco',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28572,'Pedro Amaro',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28573,'Progreso',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28574,'Puente de Ixtla',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28575,'San Jose Vista Hermosa',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28576,'San Nicolas Galeana',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28577,'Santa Catarina',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28578,'Santa Rosa Treinta',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28579,'Tehuixtla',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28580,'Telixtac',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28581,'Temixco',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28582,'Temoac',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28583,'Tenextepango',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28584,'Tepalcingo',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28585,'Tepoztlan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28586,'Tetecala',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28587,'Tetela del Volcan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28588,'Tilzapotla',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28589,'Tlacotepec',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28590,'Tlalnepantla',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28591,'Tlaltizapan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28592,'Tlaquiltenango',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28593,'Tlatenchi',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28594,'Tlayacapan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28595,'Totolapan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28596,'Tres Marias',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28597,'Unidad Habitacional Jose Maria',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28598,'Xochitepec',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28599,'Xoxocotla',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28600,'Yautepec',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28601,'Yecapixtla',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28602,'Zacatepec',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28603,'Zacualpan',2444,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28604,'Acaponeta',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28605,'Ahuacatlan',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28606,'Amatlan',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28607,'Aztatan',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28608,'Bucerias',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28609,'Carmen',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28610,'Cerralvo',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28611,'Compostela',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28612,'Hidalgo',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28613,'Ixcuintla',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28614,'Ixtlan del Rio',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28615,'Jala',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28616,'Jalcocotan',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28617,'La Penita de Jaltemba',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28618,'La Presa',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28619,'Lagunillas',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28620,'Las Jarretaderas',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28621,'Las Varas',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28622,'Puga',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28623,'Rosamorada',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28624,'Ruiz',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28625,'San Blas',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28626,'San Jose del Valle',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28627,'San Juan de Abajo',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28628,'San Vicente',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28629,'Santa Maria del Oro',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28630,'Tecuala',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28631,'Tepic',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28632,'Tuxpan',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28633,'Valle de Banderas',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28634,'Xalisco',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28635,'Yago',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28636,'Zacualpan',2445,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28637,'Acatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28638,'Amatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28639,'Amilpas',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28640,'Amuzgos',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28641,'Asuncion Ixtaltepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28642,'Asuncion Nochixtlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28643,'Asuncion Ocotlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28644,'Atempa',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28645,'Atzompa',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28646,'Ayautla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28647,'Ayoquezco',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28648,'Ayotzintepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28649,'Bajos de Chila',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28650,'Brisas de Zicatela',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28651,'Cacahuatepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28652,'Cacaotepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28653,'Chahuites',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28654,'Chichicapam',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28655,'Chiltepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28656,'Cienaga de Zimatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28657,'Coatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28658,'Comitancillo',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28659,'Cosolapa',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28660,'Coyotepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28661,'Crucecita',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28662,'Cuicatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28663,'Cuilapam',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28664,'Ejutla de Crespo',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28665,'El Espinal',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28666,'Etla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28667,'Fraccionamiento el Rosario',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28668,'Guelavia',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28669,'Guichicovi',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28670,'Huajuapan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28671,'Huatulco',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28672,'Huautla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28673,'Huaxpaltepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28674,'Huayapam',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28675,'Huazolotitlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28676,'Huitzo',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28677,'Huixtepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28678,'Ingenio',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28679,'Ixcatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28680,'Ixhuatan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28681,'Ixtepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28682,'Jalapa',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28683,'Jamiltepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28684,'Jicayan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28685,'Juchitan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28686,'Juquila',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28687,'Juxtlahuaca',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28688,'Loma Bonita',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28689,'Magdalena Teitipac',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28690,'Magdalena Tequisistlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28691,'Matatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28692,'Matias Romero',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28693,'Mechoacan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28694,'Miahuatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28695,'Mitla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28696,'Mixtepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28697,'Mixtequilla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28698,'Nazareno Etla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28699,'Niltepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28700,'Oaxaca',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28701,'Ocotepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28702,'Ocotlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28703,'Ojitlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28704,'Palomares',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28705,'Panixtlahuaca',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28706,'Petapa',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28707,'Pinotepa Nacional',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28708,'Pinotepa de Don Luis',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28709,'Pochutla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28710,'Puerto Escondido',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28711,'Putla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28712,'Quetzaltepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28713,'Rincon Viejo',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28714,'Rio Grande',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28715,'Salina Cruz',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28716,'San Agustin de las Juntas',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28717,'San Antonio Castillo Velasco',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28718,'San Antonio de la Cal',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28719,'San Dionisio del Mar',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28720,'San Francisco del Mar',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28721,'San Jose del Progreso',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28722,'San Juan Colorado',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28723,'San Mateo del Mar',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28724,'Santa Lucia del Camino',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28725,'Santa Maria del Tule',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28726,'Santiago Apostol',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28727,'Santos Reyes Nopala',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28728,'Soyaltepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28729,'Suchilquitongo',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28730,'Tamazulapam',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28731,'Tapanatepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28732,'Tehuantepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28733,'Teitipac',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28734,'Telixtlahuaca',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28735,'Teotitlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28736,'Teotitlan den Valle',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28737,'Tilquiapam',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28738,'Tlacolula',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28739,'Tlalixtac',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28740,'Tlaxiaco',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28741,'Tutla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28742,'Tuxtepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28743,'Union Hidalgo',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28744,'Usila',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28745,'Valle Nacional',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28746,'Vicente Camalote',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28747,'Vicente Guerrero',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28748,'Xadani',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28749,'Xitla',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28750,'Xoxocotlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28751,'Yaitepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28752,'Yatareni',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28753,'Zaachila',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28754,'Zacatepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28755,'Zanatepec',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28756,'Zimatlan',2447,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28757,'Acajete',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28758,'Acateno',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28759,'Acatlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28760,'Acatzingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28761,'Actipan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28762,'Acuexcomac',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28763,'Ahuatempan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28764,'Ajalpan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28765,'Aljojuca',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28766,'Almecatla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28767,'Alseseca',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28768,'Altepexi',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28769,'Amecac',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28770,'Amozoc',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28771,'Aparicio',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28772,'Atempan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28773,'Atencingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28774,'Atlixco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28775,'Atoyatempan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28776,'Atzitzintla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28777,'Atzompa',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28778,'Ayutla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28779,'Azumiatla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28780,'Benito Juarez',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28781,'Buenos Aires',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28782,'Cacaloxuchitl',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28783,'Calipan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28784,'Calmeca',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28785,'Calpan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28786,'Caltenco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28787,'Canada',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28788,'Canoa',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28789,'Caxhuacan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28790,'Chalchihuapan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28791,'Chapulco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28792,'Chautla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28793,'Chiapa',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28794,'Chiautla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28795,'Chiautzingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28796,'Chiconquiac',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28797,'Chietla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28798,'Chignahuapan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28799,'Chignautla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28800,'Chilac',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28801,'Chilchotla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28802,'Cholula',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28803,'Citlaltepetl',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28804,'Coatepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28805,'Coronango',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28806,'Coxcatlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28807,'Coyula',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28808,'Cuacnopalan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28809,'Cuanala',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28810,'Cuapiaxtla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28811,'Cuautlancingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28812,'Cuayucatepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28813,'Cuetzalan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28814,'Domingo Arenas',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28815,'Escape',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28816,'Esperanza',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28817,'Guadalupe Victoria',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28818,'Huaquechula',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28819,'Huauchinango',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28820,'Huehuetlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28821,'Huejotzingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28822,'Hueyapan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28823,'Hueyotlipan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28824,'Hueytamalco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28825,'Huixcolotla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28826,'Ixcaquixtla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28827,'Ixtiyucan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28828,'Izucar',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28829,'Jolalpan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28830,'La Ceiba',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28831,'La Galarza',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28832,'La Resureccion',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28833,'Lazaro Cardenas',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28834,'Libres',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28835,'Los Ranchos',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28836,'Los Reyes de Juarez',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28837,'Malacatepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28838,'Metlaltoyuca',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28839,'Miahuatlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28840,'Mihuacan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28841,'Momoxpan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28842,'Moyotzingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28843,'Nealtican',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28844,'Necaxa',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28845,'Nopalucan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28846,'Ocotitlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28847,'Ocotlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28848,'Ocoyucan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28849,'Oriental',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28850,'Pahuatlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28851,'Palmar de Bravo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28852,'Puebla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28853,'Quecholac',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28854,'Raboso',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28855,'Rafael Lara Grajales',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28856,'San Gabriel Casa Blanca',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28857,'San Lucas el Grande',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28858,'San Salvador el Seco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28859,'San Sebastian Villanueva',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28860,'Sanctorum',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28861,'Santa Maria la Alta',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28862,'Serdan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28863,'Soltepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28864,'Tatoxcac',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28865,'Tecali',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28866,'Tecamachalco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28867,'Tehuacan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28868,'Tehuitzingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28869,'Tenango',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28870,'Tenango de las Flores',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28871,'Tenextatiloyan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28872,'Teontepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28873,'Teopantlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28874,'Teotlalcingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28875,'Tepango',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28876,'Tepatlaxco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28877,'Tepeaca',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28878,'Tepeojuma',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28879,'Tepexi',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28880,'Tepulco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28881,'Tetela Morelos',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28882,'Tetela de Ocampo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28883,'Teteles',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28884,'Tetzoyocan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28885,'Texmelucan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28886,'Teziutlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28887,'Tianguismanalco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28888,'Tlachichuca',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28889,'Tlacotepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28890,'Tlacoyalco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28891,'Tlahuapan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28892,'Tlaixpan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28893,'Tlalancaleca',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28894,'Tlaltenango',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28895,'Tlanalapan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28896,'Tlancualpican',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28897,'Tlanepantla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28898,'Tlapanala',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28899,'Tlatlauquitepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28900,'Tlaxcalancingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28901,'Tlaxco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28902,'Tochapan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28903,'Tochimilco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28904,'Tochtepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28905,'Tulcingo',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28906,'Tuxco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28907,'Venustiano Carranza',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28908,'Xalmimilulco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28909,'Xaltepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28910,'Xicotepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28911,'Xiutetelco',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28912,'Xochiltenango',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28913,'Xochitlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28914,'Xonatepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28915,'Xoxtla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28916,'Yaonahuac',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28917,'Yehualtepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28918,'Zacapechpan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28919,'Zacapoaxtla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28920,'Zacatepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28921,'Zacatlan',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28922,'Zaragoza',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28923,'Zinacatepec',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28924,'Zongozotla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28925,'Zozutla',2448,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28926,'Ajuchitlan',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28927,'Amazcala',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28928,'Amealco',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28929,'Cadereyta',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28930,'Candiles',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28931,'Colon',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28932,'El Colorado',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28933,'El Pueblito',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28934,'El Sauz',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28935,'Ezequiel Montes',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28936,'Huimilpan',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28937,'Jalpan',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28938,'Jauregui',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28939,'La Canada',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28940,'La Estancia',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28941,'La Lira',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28942,'La Llave',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28943,'Paso de Mata',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28944,'Pedro Escobedo',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28945,'Queretaro',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28946,'San Jose de los Olvera',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28947,'San Jose el Alto',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28948,'San Juan del Rio',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28949,'San Nicolas',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28950,'San Pedro Martir',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28951,'Santa Maria Magdalena',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28952,'Tequisquiapan',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28953,'Tlacote el Bajo',2449,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28954,'Adolfo Ruiz Cortines',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28955,'Agua Verde',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28956,'Ahome',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28957,'Angostura',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28958,'Badiraguato',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28959,'Bagojo',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28960,'Benito Juarez',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28961,'Campo Gobierno',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28962,'Choix',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28963,'Compuertas',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28964,'Concordia',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28965,'Constancia',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28966,'Cosala',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28967,'Costa Rica',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28968,'Culiacan',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28969,'Culiacancito',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28970,'El Burrion',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28971,'El Carrizo',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28972,'El Diez',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28973,'El Estero',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28974,'El Fuerte',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28975,'El Rosario',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28976,'El Tamarindo',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28977,'Eldorado',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28978,'Escuinapa',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28979,'Estacion Naranjo',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28980,'Estancia Bamoa',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28981,'Gabriel Leyva Solano',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28982,'Guamuchil',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28983,'Guasave',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28984,'Higuera',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28985,'Isla del Bosque',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28986,'Jahuara Segundo',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28987,'Juan Jose Rios',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28988,'La Cruz',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28989,'La Palma',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28990,'La Reforma',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28991,'La Trinidad',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28992,'Los Mochis',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28993,'Mazatlan',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28994,'Mochicahui',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28995,'Mocorito',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28996,'Navolato',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28997,'Pericos',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28998,'Pueblos Unidos',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(28999,'Quila',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29000,'San Blas',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29001,'San Ignacio',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29002,'Sinaloa',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29003,'Teacapan',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29004,'Topolobampo',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29005,'Villa Union',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29006,'Zapotitlan',2452,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29007,'Agua Prieta',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29008,'Alamos',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29009,'Altar',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29010,'Bacobampo',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29011,'Bacum',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29012,'Bahia de Kino',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29013,'Benjamin Hill',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29014,'Caborca',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29015,'Campo Sesenta',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29016,'Cananea',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29017,'Carbo',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29018,'Cocorit',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29019,'Cumpas',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29020,'Empalme',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29021,'Esperanza',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29022,'Esqueda',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29023,'Etchojoa',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29024,'Etchoropo',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29025,'Guaymas',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29026,'Hermosillo',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29027,'Huatabampo',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29028,'Imuris',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29029,'Juarez',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29030,'Kino',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29031,'La Doce',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29032,'La Union',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29033,'Moctezuma',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29034,'Naco',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29035,'Nacozari',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29036,'Navajoa',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29037,'Nogales',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29038,'Obregon',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29039,'Pitiquito',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29040,'Potam',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29041,'Providencia',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29042,'Puerto Penasco',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29043,'Rio Muerto',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29044,'Sahuaripa',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29045,'San Jose de Bacum',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29046,'San Luis Rio Colorado',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29047,'Sanchez',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29048,'Santa Ana',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29049,'Sonoita',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29050,'Tobarito',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29051,'Ures',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29052,'Vicam',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29053,'Yaqui',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29054,'Yavaros',2453,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29055,'Aquiles Serdan',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29056,'Ayapa',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29057,'Balancan',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29058,'Barra de Santa Ana',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29059,'Belen',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29060,'Bosque de Saloya',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29061,'Buenavista',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29062,'Campo Magellanes',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29063,'Cardenas',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29064,'Chichicapa',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29065,'Chontalpa',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29066,'Comalcalco',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29067,'Cunduacan',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29068,'El Triunfo',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29069,'Emiliano Zapata',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29070,'Fraccionamiento la Selva',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29071,'Frontera',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29072,'Huimanguillo',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29073,'Jalapa',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29074,'Jalpa',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29075,'Jonuta',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29076,'La Curva',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29077,'La Venta',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29078,'Luis Gil Perez',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29079,'Macultepec',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29080,'Macuspana',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29081,'Magana',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29082,'Miguel Hidalgo',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29083,'Nacajuca',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29084,'Ocuiltzapotlan',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29085,'Once de Febrero',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29086,'Paraiso',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29087,'Parrilla',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29088,'Pemex',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29089,'Playas del Rosario',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29090,'Rio Viejo',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29091,'San Carlos',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29092,'Santa Rosalia',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29093,'Simon Sarlat',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29094,'Tacotalpa',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29095,'Tamulte',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29096,'Teapa',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29097,'Tecolutilla',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29098,'Tenosique',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29099,'Vicente Guerrero',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29100,'Villa Aldama',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29101,'Villahermosa',2454,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29102,'Abasolo',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29103,'Aldama',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29104,'Altamira',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29105,'Antiguo Morelos',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29106,'Camargo',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29107,'Cuauhtemoc',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29108,'El Mante',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29109,'Estacion Manuel',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29110,'Gonzalez',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29111,'Graciano Sanchez',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29112,'Guerrero',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29113,'Gustavo Diaz Ordaz',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29114,'Hidalgo',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29115,'Jaumave',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29116,'Llerca',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29117,'Los Guerra',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29118,'Madero',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29119,'Matamoros',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29120,'Mier',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29121,'Miguel Aleman',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29122,'Miramar',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29123,'Nuevo Laredo',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29124,'Nuevo Progreso',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29125,'Ocampo',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29126,'Padilla',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29127,'Reynosa',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29128,'Rio Bravo',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29129,'San Fernando',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29130,'Santa Engracia',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29131,'Santander Jimenez',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29132,'Soto la Marina',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29133,'Tampico',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29134,'Tula',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29135,'Valle Hermoso',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29136,'Victoria',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29137,'Xicotencatl',2455,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29138,'Ahuashuatepec',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29139,'Altzayanca',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29140,'Amaxac',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29141,'Apetatitlan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29142,'Apizaco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29143,'Apizaquito',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29144,'Atexcatzingo',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29145,'Axocomanitla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29146,'Ayometla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29147,'Benito Juarez',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29148,'Buen Suceso',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29149,'Calpulalpan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29150,'Chiautempan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29151,'Contla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29152,'Cuapiaxtla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29153,'Huactzinco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29154,'Huamantla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29155,'Hueyotlipan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29156,'Huiloac',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29157,'Ignacio Zaragoza',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29158,'Ixtacuixtla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29159,'Ixtenco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29160,'Mazatecochco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29161,'Nanacamilpa',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29162,'Nativitas',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29163,'Nopalucan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29164,'Panotla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29165,'Papalotla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29166,'Quilehtla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29167,'Sanctorum',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29168,'Teacalco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29169,'Tenancingo',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29170,'Teolocholco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29171,'Tepetitla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29172,'Tepeyanco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29173,'Tequixquitla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29174,'Terrenate',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29175,'Tetla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29176,'Tetlanohcan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29177,'Tetlatlahuca',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29178,'Texcalac',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29179,'Texoloc',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29180,'Tlaltelulco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29181,'Tlaxcala',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29182,'Tlaxco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29183,'Tocatlan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29184,'Totolac',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29185,'Vicente Guerrero',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29186,'Villa Alta',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29187,'Xaloztoc',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29188,'Xaltocan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29189,'Xicohtzinco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29190,'Xicotencatl',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29191,'Xiloxoxtla',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29192,'Yauhquemecan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29193,'Zacatelco',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29194,'Zacualpan',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29195,'Zitlaltepec',2456,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29196,'Acayucan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29197,'Actopan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29198,'Acultzingo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29199,'Agua Dulce',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29200,'Alamo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29201,'Allende',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29202,'Altamirano',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29203,'Alto Lucero',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29204,'Altotonga',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29205,'Alvarado',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29206,'Amatlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29207,'Anahuac',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29208,'Anton Lizardo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29209,'Atzacan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29210,'Azueta',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29211,'Banderilla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29212,'Benito Juarez',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29213,'Boca del Monte',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29214,'Boca del Rio',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29215,'Cabada',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29216,'Cabezas',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29217,'Carrillo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29218,'Castillo de Teayo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29219,'Catemaco',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29220,'Cazones',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29221,'Cerro Azul',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29222,'Chacaltianguis',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29223,'Chicontepec',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29224,'Chinameca',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29225,'Chinampa',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29226,'Chocaman',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29227,'Citlaltepetl',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29228,'Clara',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29229,'Coacoatzintla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29230,'Coacotla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29231,'Coatepec',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29232,'Coatzacoalcos',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29233,'Coatzintla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29234,'Comoapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29235,'Cordoba',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29236,'Corral Nuevo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29237,'Cosamaloapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29238,'Cosautlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29239,'Coscomatepec',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29240,'Cosoleacaque',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29241,'Covarrubias',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29242,'Coxquihui',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29243,'Coyutla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29244,'Cuauhtemoc',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29245,'Cuautlapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29246,'Cuichapa',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29247,'Cuitlahuac',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29248,'El Castillo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29249,'El Higo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29250,'El Naranjito',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29251,'El Pueblito',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29252,'El Tejar',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29253,'Emilio Carranza',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29254,'Estacion Juanita',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29255,'Estacion del Idolo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29256,'Filomeno Mata',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29257,'Fortin',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29258,'Gabino Barreda',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29259,'Guadalupe Victoria',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29260,'Gutierrez Zamora',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29261,'Hidalgo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29262,'Hidalgotitlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29263,'Huatusco',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29264,'Huayacoctla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29265,'Hueyapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29266,'Huiloapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29267,'Ignacio de la Llave',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29268,'Isla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29269,'Ixcatepec',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29270,'Ixhuatlan del Cafe',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29271,'Ixhuatlan del Sureste',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29272,'Ixhuatlancillo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29273,'Ixtaczoquitlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29274,'Jalacingo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29275,'Jalapilla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29276,'Jaltipan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29277,'Jamapa',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29278,'Jesus Carranza',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29279,'Jilotepec',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29280,'La Antigua',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29281,'La Estanzuela',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29282,'La Pena',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29283,'La Perla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29284,'La Poza',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29285,'Las Amapolas',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29286,'Las Choapas',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29287,'Las Vigas',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29288,'Lerdo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29289,'Lomas de Barillas',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29290,'Los Altos',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29291,'Los Mangos',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29292,'Maltrata',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29293,'Mariano Escobedo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29294,'Martinez',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29295,'Mecatlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29296,'Mecayapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29297,'Mendoza',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29298,'Minatitlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29299,'Misantla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29300,'Monte Blanco',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29301,'Moralillo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29302,'Motzorongo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29303,'Mundo Nuevo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29304,'Nanchital',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29305,'Naolinco',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29306,'Naranjos',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29307,'Nautla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29308,'Nogales',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29309,'Oluta',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29310,'Omealca',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29311,'Orizaba',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29312,'Otatitlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29313,'Oteapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29314,'Ozuluama',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29315,'Pajapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29316,'Palmira',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29317,'Panuco',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29318,'Papantla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29319,'Paraje Nuevo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29320,'Paso de Ovejas',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29321,'Paso del Macho',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29322,'Paso del Toro',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29323,'Penuela',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29324,'Perote',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29325,'Piedras Negras',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29326,'Plan de Ayala',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29327,'Platon Sanchez',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29328,'Playa Vicente',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29329,'Potrero Nuevo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29330,'Potrero del Llano',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29331,'Poza Rica',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29332,'Puntilla Aldama',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29333,'Rafael Delgado',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29334,'Rafael Lucio',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29335,'Rinconada',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29336,'Saltabarranca',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29337,'San Juan Evangelista',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29338,'San Marcos',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29339,'San Rafael',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29340,'San Roman',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29341,'Santiago Tuxtla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29342,'Sayula',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29343,'Soconusco',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29344,'Soledad',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29345,'Soteapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29346,'Tamalin',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29347,'Tamiahua',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29348,'Tantoyuca',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29349,'Tatahuicapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29350,'Tecolutla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29351,'Tempoal',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29352,'Tenango de Rio Blanco',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29353,'Teocelo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29354,'Tepetzintla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29355,'Tequila',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29356,'Tetelzingo',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29357,'Texistepec',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29358,'Tezonapa',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29359,'Tierra Blanca',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29360,'Tihuatlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29361,'Tlacojalpan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29362,'Tlacotalpan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29363,'Tlaltetela',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29364,'Tlapacoyan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29365,'Tocuila',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29366,'Tomatlan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29367,'Totolapa',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29368,'Totula',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29369,'Tres Valles',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29370,'Tuxpam',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29371,'Tuxtla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29372,'Tuzamapan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29373,'Union y Progreso',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29374,'Ursulo Galvan',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29375,'Valente Diaz',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29376,'Vega de Alatorre',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29377,'Veracruz',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29378,'Xalapa',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29379,'Xico',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29380,'Xocotla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29381,'Yanga',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29382,'Yecuatla',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29383,'Zaragoza',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29384,'Zempoala',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29385,'Zongolica',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29386,'Zozocolco',2457,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29387,'Acanceh',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29388,'Akil',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29389,'Baca',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29390,'Buctzotz',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29391,'Cacalchen',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29392,'Cansahcab',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29393,'Caucel',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29394,'Celestun',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29395,'Cenotillo',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29396,'Chemax',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29397,'Chichimila',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29398,'Chicxulub',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29399,'Chochola',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29400,'Cholul',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29401,'Chumayel',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29402,'Conkal',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29403,'Cuzama',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29404,'Dzan',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29405,'Dzemul',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29406,'Dzidzantun',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29407,'Dzilam Gonzalez',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29408,'Dzitas',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29409,'Espita',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29410,'Halacho',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29411,'Hocaba',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29412,'Hoctun',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29413,'Homun',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29414,'Huhi',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29415,'Hunucma',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29416,'Itzincab',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29417,'Ixil',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29418,'Izamal',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29419,'Kanasin',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29420,'Kantunil',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29421,'Kinchil',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29422,'Mama',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29423,'Mani',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29424,'Maxcanu',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29425,'Merida',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29426,'Motul',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29427,'Muna',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29428,'Opichen',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29429,'Oxkutzcab',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29430,'Panaba',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29431,'Peto',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29432,'Piste',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29433,'Progreso',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29434,'Sacalum',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29435,'Santa Elena',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29436,'Seye',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29437,'Sotuta',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29438,'Sucila',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29439,'Tahmek',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29440,'Teabo',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29441,'Tecoh',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29442,'Tekanto',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29443,'Tekax',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29444,'Tekit',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29445,'Telchac',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29446,'Temax',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29447,'Temozon',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29448,'Tetiz',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29449,'Ticul',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29450,'Timucuy',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29451,'Tixkokob',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29452,'Tixpehual',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29453,'Tizimin',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29454,'Tunkas',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29455,'Tzucacab',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29456,'Uman',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29457,'Valladolid',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29458,'X-Can',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29459,'Yucatan',2458,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29460,'Apozol',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29461,'Banon',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29462,'Canitas',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29463,'Chalchihuites',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29464,'Concepcion del Oro',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29465,'Cos',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29466,'Estrada',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29467,'Fresnillo',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29468,'Garcia',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29469,'Gonzalez Ortega',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29470,'Guadalupe',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29471,'Hidalgo',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29472,'Jalpa',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29473,'Jerez',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29474,'Juan Aldama',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29475,'Juchipila',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29476,'Loreto',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29477,'Lourdes',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29478,'Luis Moya',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29479,'Miguel Auza',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29480,'Monte Escobedo',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29481,'Morelos',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29482,'Natera',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29483,'Nieves',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29484,'Nochistlan',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29485,'Ojo Caliente',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29486,'Piedra Gorda',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29487,'Pinos',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29488,'Plateros',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29489,'Pozo de Gamboa',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29490,'Rio Grande',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29491,'Sain Alto',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29492,'Sombrerete',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29493,'Tabasco',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29494,'Tacoaleche',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29495,'Tepechitlan',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29496,'Teul',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29497,'Tlaltenango',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29498,'Toribio',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29499,'Trancoso',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29500,'Valparaiso',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29501,'Victor Rosales',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29502,'Villa Gonzalez Ortega',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29503,'Villanueva',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29504,'Zacatecas',2459,142,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29505,'Tol',2460,143,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29506,'Weno',2460,143,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29507,'Lelu',2461,143,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29508,'Kolonia',2462,143,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29509,'Palikir',2462,143,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29510,'Colonia',2463,143,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29511,'Balti',2464,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29512,'Falesti',2464,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29513,'Glodeni',2464,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29514,'Rascani',2464,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29515,'Cahul',2465,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29516,'Straseni',2466,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29517,'Straseni',2467,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29518,'Briceni',2468,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29519,'Donduseni',2468,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29520,'Edinet',2468,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29521,'Ocnita',2468,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29522,'Ciadar Lunga',2469,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29523,'Comrat',2469,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29524,'Vulcanesti',2469,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29525,'Basarabeasca',2470,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29526,'Cimislia',2470,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29527,'Hancesti',2470,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29528,'Leova',2470,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29529,'Orhei',2471,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29530,'Rezina',2471,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29531,'Telenesti',2471,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29532,'Drochia',2472,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29533,'Floresti',2472,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29534,'Soroca',2472,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29535,'Taraclia',2473,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29536,'Causani',2474,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29537,'Camenca',2475,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29538,'Dnestrovsc',2475,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29539,'Dubasari',2475,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29540,'Griguriopol',2475,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29541,'Rabnita',2475,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29542,'Slobozia',2475,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29543,'Tighina',2475,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29544,'Tiraspol\'',2475,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29545,'Calarasi',2476,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29546,'Nisporeni',2476,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29547,'Ungheni',2476,144,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29548,'Fontvieille',2477,145,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29549,'Monaco-Ville',2479,145,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29550,'Cecerleg',2481,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29551,'Olgij',2482,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29552,'Bajanhongor',2483,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29553,'Bulgan',2484,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29554,'Darhan',2485,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29555,'Chojbalsan',2486,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29556,'Sajnshand',2487,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29557,'Mandalgovi',2488,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29558,'Altaj',2489,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29559,'Chojr',2490,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29560,'Ondorhaan',2491,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29561,'Hovd',2492,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29562,'Moron',2493,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29563,'Dalanzadgad',2494,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29564,'Erdenet',2495,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29565,'Arvajheer',2496,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29566,'Suhbaatar',2497,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29567,'Zuunharaa',2497,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29568,'Baruun-Urt',2498,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29569,'Nalajh',2499,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29570,'Zuunmod',2499,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29571,'Ulaanbaatar',2500,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29572,'Ulaangom',2501,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29573,'Tosoncengel',2502,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29574,'Uliastaj',2502,146,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29575,'Montserrat',2503,147,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29576,'Agadir',2504,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29577,'Mohammedia',2505,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29578,'ad-Dar-al-Bayda',2505,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29579,'Bin Sulayman',2506,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29580,'Bir Rashid',2506,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29581,'Bu-al-Jad',2506,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29582,'Buznika',2506,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29583,'Khuribghah',2506,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29584,'Sattat',2506,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29585,'Wad Zam',2506,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29586,'Asfi',2507,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29587,'Azimur',2507,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29588,'Sidi Binnur',2507,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29589,'Sidi Isma\'il',2507,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29590,'Yussufiyah',2507,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29591,'al-Jadidah',2507,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29592,'Fas',2508,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29593,'Fes',2508,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29594,'Safru',2508,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29595,'Ghulimim',2510,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29596,'Sidi Ifni',2510,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29597,'Tafraut',2510,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29598,'Tantan',2510,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29599,'Kenitra',2511,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29600,'Amalu Ighriban',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29601,'Azru',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29602,'Jama\'at-al-Marirt',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29603,'Khanifrah',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29604,'Meknes',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29605,'Midalt',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29606,'Miknas',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29607,'Mulay Idris',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29608,'al-Hajab',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29609,'ar-Rasidiyah',2513,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29610,'Ahfir',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29611,'Bin Ansar',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29612,'Birkan',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29613,'Fijij',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29614,'Jaradah',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29615,'Tawrirt',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29616,'Ujdah',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29617,'Zayu',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29618,'al-Arwi',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29619,'al-Ayun Sidi Malluk',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29620,'an-Nadur',2514,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29621,'Oujda',2515,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29622,'Khamissat',2517,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29623,'Sakhirat',2517,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29624,'Tiflat',2517,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29625,'ar-Ribat',2517,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29626,'Settat',2519,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29627,'Bani Mallal',2521,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29628,'Beni Mellal',2521,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29629,'Qasbat Tadlah',2521,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29630,'Suq Sabt Awlat Nama',2521,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29631,'al-Faqih Bin Salah',2521,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29632,'Asilah',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29633,'Finidiq',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29634,'Martil',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29635,'Midiq',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29636,'Shifshawn',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29637,'Tangier',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29638,'Tanjah',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29639,'Tittawin',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29640,'Titwan',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29641,'al-\'Ara\'ish',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29642,'al-Qasr-al-Kabir',2522,148,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29643,'Chibuto',2527,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29644,'Chidenguele',2527,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29645,'Chokwe',2527,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29646,'Chongoene',2527,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29647,'Guija',2527,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29648,'Macia',2527,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29649,'Manjacaze',2527,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29650,'Xai-Xai',2527,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29651,'Homoine',2528,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29652,'Inhambane',2528,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29653,'Inharrime',2528,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29654,'Jangamo',2528,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29655,'Maxixe',2528,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29656,'Panda',2528,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29657,'Quissico',2528,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29658,'Chimoio',2529,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29659,'Manica',2529,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29660,'Maputo',2530,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29661,'Maputo',2531,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29662,'Angoche',2532,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29663,'Lumbo',2532,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29664,'Mocambique',2532,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29665,'Nacala',2532,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29666,'Nampula',2532,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29667,'Cuamba',2533,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29668,'Lichinga',2533,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29669,'Mandimba',2533,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29670,'Maniamba',2533,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29671,'Marrupa',2533,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29672,'Beira',2534,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29673,'Dondo',2534,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29674,'Tete',2535,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29675,'Zumbo',2535,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29676,'Garue',2536,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29677,'Mocuba',2536,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29678,'Quelimane',2536,149,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29679,'Bogale',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29680,'Henzada',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29681,'Kyaiklat',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29682,'Labutta',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29683,'Maubin',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29684,'Moulmeingyun',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29685,'Myanaung',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29686,'Pathein',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29687,'Pyapon',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29688,'Wakema',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29689,'Yandoon',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29690,'Ye',2537,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29691,'Bago',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29692,'Letpadan',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29693,'Nyaunglebin',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29694,'Paungde',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29695,'Pyay',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29696,'Pyu',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29697,'Thanatpin',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29698,'Tharrawaddy',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29699,'Toungoo',2538,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29700,'Falam',2539,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29701,'Banmo',2540,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29702,'Myitkyina',2540,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29703,'Loikaw',2541,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29704,'Hpa-an',2542,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29705,'Allanmyo',2543,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29706,'Chauk',2543,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29707,'Magway',2543,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29708,'Minbu',2543,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29709,'Pakokku',2543,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29710,'Taungdwingyi',2543,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29711,'Thayetmyo',2543,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29712,'Yenangyaung',2543,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29713,'Kyaukse',2544,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29714,'Mandalay',2544,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29715,'Maymyo',2544,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29716,'Meiktila',2544,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29717,'Mogok',2544,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29718,'Myingyan',2544,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29719,'Pyinmana',2544,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29720,'Yamethin',2544,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29721,'Kyaikkami',2545,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29722,'Kyaikto',2545,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29723,'Martaban',2545,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29724,'Mawlamyine',2545,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29725,'Mudon',2545,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29726,'Thaton',2545,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29727,'Akyab',2547,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29728,'Arakan',2547,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29729,'Kalay',2548,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29730,'Katha',2548,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29731,'Mawlaik',2548,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29732,'Monywa',2548,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29733,'Sagaing',2548,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29734,'Shwebo',2548,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29735,'Keng Tung',2549,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29736,'Lashio',2549,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29737,'Taunggyi',2549,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29738,'Dawei',2550,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29739,'Mergui',2550,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29740,'Kanbe',2551,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29741,'Kayan',2551,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29742,'Syriam',2551,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29743,'Thongwa',2551,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29744,'Twante',2551,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29745,'Yangon',2551,150,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29746,'Katima Mulilo',2552,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29747,'Henties Bay',2553,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29748,'Karibib',2553,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29749,'Kuisebmond',2553,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29750,'Omaruru',2553,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29751,'Otjimbingwe',2553,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29752,'Swakopmund',2553,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29753,'Usakos',2553,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29754,'Walvis Bay',2553,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29755,'Aranos',2554,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29756,'Maltahohe',2554,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29757,'Mariental',2554,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29758,'Rehoboth',2554,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29759,'Bethanien',2555,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29760,'Karasburg',2555,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29761,'Keetmanshoop',2555,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29762,'Luderitz',2555,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29763,'Oranjemund',2555,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29764,'Warmbad',2555,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29765,'Rundu',2556,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29766,'Windhoek',2557,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29767,'Arandis',2558,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29768,'Khorixas',2558,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29769,'Opuwo',2558,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29770,'Outjo',2558,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29771,'Oshikango',2559,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29772,'Gobabis',2560,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29773,'Leonardville',2560,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29774,'Ongandjera',2561,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29775,'Ongwediva',2562,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29776,'Oshakati',2562,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29777,'Ondangwa',2563,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29778,'Otavi',2563,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29779,'Tsumeb',2563,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29780,'Grootfontein',2564,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29781,'Okahandja',2564,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29782,'Okakarara',2564,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29783,'Otjiwarongo',2564,151,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29784,'Yaren',2565,152,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29785,'Banepa',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29786,'Bhaktapur',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29787,'Bidur',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29788,'Bishalter',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29789,'Dhulikhel',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29790,'Kathmandu',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29791,'Kirtipur',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29792,'Lalitpur',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29793,'Madhyapur Thimi',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29794,'Panauti',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29795,'Tribuvannagar',2566,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29796,'Birendranagar',2567,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29797,'Gulariya',2567,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29798,'Narayan',2567,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29799,'Nepalganj',2567,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29800,'Surkhet',2567,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29801,'Baglung',2568,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29802,'Weni',2568,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29803,'Byas',2569,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29804,'Leknath',2569,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29805,'Pokhara',2569,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29806,'Prithivinarayan',2569,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29807,'Putalibazar',2569,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29808,'Waling',2569,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29809,'Bhimeshwar',2570,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29810,'Jaleshwar',2570,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29811,'Janakpur',2570,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29812,'Kamalamai',2570,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29813,'Malangwa',2570,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29814,'Sinduli Marhi',2570,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29815,'Jumla',2571,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29816,'Biratnagar',2572,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29817,'Dhankuta',2572,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29818,'Dharan',2572,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29819,'Inaruwa',2572,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29820,'Itahari',2572,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29821,'Khandbari',2572,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29822,'Butwal',2573,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29823,'Kapilwastu',2573,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29824,'Ramgram',2573,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29825,'Sidharthanagar',2573,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29826,'Tansen',2573,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29827,'Wahadurganj',2573,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29828,'Amargadhi',2574,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29829,'Dashrathchand',2574,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29830,'Mahendranagar',2574,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29831,'Bhadrapur',2575,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29832,'Damak',2575,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29833,'Ilam',2575,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29834,'Mechinagar',2575,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29835,'Bharatpur',2576,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29836,'Birganj',2576,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29837,'Chitwan',2576,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29838,'Gaur',2576,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29839,'Hetauda',2576,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29840,'Kalaiya',2576,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29841,'Ratnanagar',2576,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29842,'Salyan',2577,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29843,'Tulsipur',2577,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29844,'Lahan',2578,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29845,'Rajbiraj',2578,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29846,'Siraha',2578,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29847,'Triyuga',2578,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29848,'Dhangadi',2579,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29849,'Dipayal',2579,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29850,'Tikapur',2579,153,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29851,'Kralendijk',2580,154,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29852,'Curacao',2581,154,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29853,'Willemstad',2581,154,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29854,'The Bottom',2582,154,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29855,'SchipolRijk',2585,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29856,'Amstelveen',2586,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29857,'Aa en Hunze',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29858,'Assen',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29859,'Borger-Odoorn',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29860,'Coevorden',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29861,'De Wolden',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29862,'Den Oever',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29863,'Emmen',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29864,'Gasteren',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29865,'Hoogeveen',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29866,'Menterwolde',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29867,'Meppel',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29868,'Midden-Drenthe',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29869,'Noordenveld',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29870,'Stadskanaal',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29871,'Tynaarlo',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29872,'Veenoord',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29873,'Westerveld',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29874,'Zuidlaren',2587,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29875,'Almere',2588,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29876,'Dronten',2588,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29877,'Lelystad',2588,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29878,'Noordoostpolder',2588,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29879,'Urk',2588,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29880,'Zeewolde',2588,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29881,'Achtkarspelen',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29882,'Ameland',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29883,'Boarnsterhim',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29884,'Bolsward',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29885,'Dantumadeel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29886,'Dongeradeel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29887,'Drachten',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29888,'Ferwerderadiel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29889,'Franekeradeel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29890,'Gaasterlan-Sleat',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29891,'Gorredijk',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29892,'Harlingen',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29893,'Heerenveen',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29894,'Het Bildt',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29895,'Kollumerland',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29896,'Leeuwarden',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29897,'Leeuwarderadeel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29898,'Lemsterland',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29899,'Littenseradiel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29900,'Menaldumadeel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29901,'Nijefurd',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29902,'Oostrum',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29903,'Ooststellingwerf',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29904,'Opsterland',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29905,'Schiermonnikoog',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29906,'Skasterlan',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29907,'Smallingerland',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29908,'Sneek',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29909,'Terschelling',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29910,'Tytsjerksteradiel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29911,'Ureterp',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29912,'Weststellingwerf',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29913,'Wolvega',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29914,'Wunseradiel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29915,'Wymbritseradiel',2589,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29916,'Aalten',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29917,'Angerlo',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29918,'Apeldoorn',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29919,'Appeldoorn',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29920,'Arnhem',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29921,'Barneveld',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29922,'Bemmel',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29923,'Bergh',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29924,'Beuningen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29925,'Borculo',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29926,'Brummen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29927,'Buren',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29928,'Culemborg',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29929,'Delden',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29930,'Didam',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29931,'Dieren',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29932,'Dinxperlo',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29933,'Dodewaard',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29934,'Doesburg',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29935,'Doetinchem',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29936,'Druten',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29937,'Duiven',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29938,'Ede',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29939,'Eerbeek',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29940,'Eibergen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29941,'Elburg',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29942,'Epe',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29943,'Ermelo',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29944,'Geldermalsen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29945,'Gendringen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29946,'Giesbeek',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29947,'Gorssel',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29948,'Groenlo',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29949,'Groesbeek',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29950,'Harderwijk',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29951,'Hattem',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29952,'Heerde',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29953,'Hengelo',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29954,'Heumen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29955,'Huisen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29956,'Hummelo en Keppel',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29957,'Kesteren',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29958,'Kootwijkerbroek',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29959,'Leerdam',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29960,'Leeuwen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29961,'Lichtenvoorde',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29962,'Lingewaal',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29963,'Lochem',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29964,'Loppersum',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29965,'Maasdriel',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29966,'Malden',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29967,'Millingen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29968,'Molenhoek',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29969,'Neede',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29970,'Neerijnen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29971,'Nijkerk',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29972,'Nijmegen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29973,'Nunspeet',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29974,'Oldebroek',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29975,'Oosterbeek',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29976,'Overbetuwe',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29977,'Putten',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29978,'Renkum',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29979,'Rheden',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29980,'Rijnwaarden',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29981,'Rozendaal',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29982,'Ruurlo',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29983,'Scherpenzeel',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29984,'Steenderen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29985,'Terborg',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29986,'Tiel',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29987,'Twello',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29988,'Ubbergen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29989,'Vaassen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29990,'Varsseveld',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29991,'Voorst',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29992,'Vorden',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29993,'Waardenburg',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29994,'Wageningen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29995,'Warmsveld',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29996,'Wehl',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29997,'Westervoort',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29998,'Wijchen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(29999,'Winterswijk',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30000,'Wisch',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30001,'Zaltbommel',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30002,'Zelhem',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30003,'Zevenaar',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30004,'Zutphen',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30005,'s-Heerenberg',2590,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30006,'Appingedam',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30007,'Bedum',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30008,'Bellingwedde',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30009,'De Marne',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30010,'Delfzijl',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30011,'Eemsmond',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30012,'Groningen',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30013,'Grootegast',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30014,'Haren',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30015,'Hoogezand-Sappemeer',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30016,'Leek',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30017,'Marum',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30018,'Midwolda',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30019,'Muntendam',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30020,'Pekela',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30021,'Reiderland',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30022,'Scheemda',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30023,'Slochteren',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30024,'Ten Boer',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30025,'Tolbert',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30026,'Veendam',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30027,'Vlagtwedde',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30028,'Winschoten',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30029,'Winsum',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30030,'Zuidhorn',2591,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30031,'Ambt Montfort',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30032,'Arcen en Velden',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30033,'Beek',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30034,'Beesel',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30035,'Bergen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30036,'Blerick',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30037,'Brunssum',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30038,'Echt',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30039,'Eijsden',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30040,'Gennep',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30041,'Gulpen-Wittem',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30042,'Haelen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30043,'Heel',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30044,'Heerlen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30045,'Helden',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30046,'Heythuysen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30047,'Horst',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30048,'Hunsel',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30049,'Kerkrade',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30050,'Kessel',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30051,'Landgraaf',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30052,'Maasbracht',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30053,'Maasbree',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30054,'Maastricht',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30055,'Margraten',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30056,'Meerlo-Wanssum',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30057,'Meerssen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30058,'Meijel',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30059,'Mook en Middelaar',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30060,'Nederweert',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30061,'Nuth',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30062,'Onderbanken',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30063,'Roerdalen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30064,'Roermond',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30065,'Roggel',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30066,'Roggel en Neer',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30067,'Schinnen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30068,'Sevenum',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30069,'Simpelveld',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30070,'Sittard',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30071,'Sittard-Geleen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30072,'Stein',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30073,'Stramproy',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30074,'Susteren',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30075,'Swalmen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30076,'Tegelen',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30077,'Thorn',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30078,'Vaals',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30079,'Valkenburg',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30080,'Venlo',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30081,'Venray',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30082,'Vilt Limburg',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30083,'Voerendaal',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30084,'Weert',2592,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30085,'\'s-Hertogenbosch',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30086,'Aalburg',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30087,'Alphen-Chaam',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30088,'Asten',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30089,'Baarle-Nassau',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30090,'Bergeijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30091,'Bergen op Zoom',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30092,'Berghem',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30093,'Bernheze',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30094,'Bernisse',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30095,'Best',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30096,'Bladel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30097,'Boekel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30098,'Boxmeer',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30099,'Boxtel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30100,'Breda',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30101,'Budel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30102,'Cranendonck',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30103,'Cuijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30104,'Den Bosch',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30105,'Den Dungen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30106,'Deurne',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30107,'Dongen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30108,'Drimmelen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30109,'Drunen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30110,'Duizel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30111,'Eersel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30112,'Eindhoven',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30113,'Etten-Leur',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30114,'Geertruidenberg',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30115,'Geldrop',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30116,'Gemert-Bakel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30117,'Gilze en Rijen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30118,'Goirle',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30119,'Grave',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30120,'Haaren',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30121,'Halderberge',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30122,'Heeze-Leende',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30123,'Heijningen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30124,'Helmond',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30125,'Heusden',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30126,'Hilvarenbeek',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30127,'Hoeven',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30128,'Hoogerheide',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30129,'Kaatsheuvel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30130,'Korendijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30131,'Laarbeek',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30132,'Landerd',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30133,'Lith',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30134,'Loon op Zand',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30135,'Maarheeze',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30136,'Maasdonk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30137,'Mierlo',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30138,'Mill en Sint Hubert',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30139,'Moerdijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30140,'Nieuwkuijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30141,'Nuenen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30142,'Oirschot',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30143,'Oisterwijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30144,'Oosterhout',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30145,'Oss',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30146,'Raamsdonksveer',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30147,'Ravenstein',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30148,'Reusel-De Mierden',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30149,'Roosendaal',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30150,'Rosmalen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30151,'Rucphen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30152,'Schaijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30153,'Schijndel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30154,'Sint Anthonis',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30155,'Sint Willebrord',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30156,'Sint-Michielsgestel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30157,'Sint-Oedenrode',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30158,'Sleeuwijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30159,'Someren',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30160,'Son en Breugel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30161,'Steenbergen',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30162,'Tilburg',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30163,'Uden',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30164,'Valkenswaard',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30165,'Veghel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30166,'Veldhoven',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30167,'Vinkel',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30168,'Vught',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30169,'Waalre',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30170,'Waalwijk',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30171,'Werkendam',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30172,'Woensdrecht',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30173,'Woudrichem',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30174,'Zundert',2593,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30175,'Aalsmeer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30176,'Alkmaar',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30177,'Amstelveen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30178,'Amsterdam',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30179,'Andijk',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30180,'Ankeveen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30181,'Anna Paulowna',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30182,'Assendelft',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30183,'Badhoevedorp',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30184,'Beemster',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30185,'Bennebroek',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30186,'Bergen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30187,'Beverwijk',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30188,'Blaricum',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30189,'Bloemendaal',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30190,'Bovenkarspel',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30191,'Bussum',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30192,'Castricum',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30193,'Den Helder',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30194,'Diemen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30195,'Drechterland',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30196,'Edam-Volendam',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30197,'Enkhuizen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30198,'Graft-De Rijp',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30199,'Haarlem',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30200,'Haarlemmerliede',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30201,'Haarlemmermeer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30202,'Harenkarspel',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30203,'Heemskerk',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30204,'Heemstede',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30205,'Heerhugowaard',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30206,'Heiloo',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30207,'Hillegom',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30208,'Hilversum',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30209,'Hoofddorp',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30210,'Hoorn',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30211,'Huizen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30212,'Ijmuiden',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30213,'Katwijk',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30214,'Krommenie',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30215,'Landsmeer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30216,'Langedijk',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30217,'Laren',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30218,'Loosdrecht',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30219,'Medemblik',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30220,'Middenbeemster',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30221,'Muiden',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30222,'Naarden',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30223,'Niedorp',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30224,'Nieuw-Vennep',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30225,'Noorder-Koggenland',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30226,'Obdam',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30227,'Oostzaan',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30228,'Opmeer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30229,'Oude Meer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30230,'Ouder-Amstel',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30231,'Oudkarspel',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30232,'Purmerend',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30233,'Rozenburg',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30234,'Schagen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30235,'Schermer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30236,'Stede Broec',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30237,'Texel',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30238,'Tuitjenhorn',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30239,'Uitgeest',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30240,'Uithoorn',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30241,'Velsen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30242,'Venhuizen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30243,'Vijfhuizen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30244,'Waarland',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30245,'Waterland',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30246,'Weesp',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30247,'Wervershoof',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30248,'Wester-Koggenland',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30249,'Westwoud',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30250,'Wieringen',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30251,'Wieringermeer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30252,'Wognum',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30253,'Wormer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30254,'Wormerland',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30255,'Wormerveer',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30256,'Zaandam',2594,155,0.00,0,'2021-04-06 01:13:48','2021-04-06 01:13:48',NULL),(30257,'Zaanstad',2594,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30258,'Zandvoort',2594,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30259,'Zeevang',2594,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30260,'Zwaag',2594,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30261,'Zwanenburg',2594,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30262,'Almelo',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30263,'Bathmen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30264,'Borne',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30265,'Dalfsen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30266,'Dedemsvaart',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30267,'Denekamp',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30268,'Deventer',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30269,'Diepenheim',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30270,'Enschede',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30271,'Genemuiden',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30272,'Haaksbergen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30273,'Hardenberg',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30274,'Hasselt',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30275,'Hellendoorn',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30276,'Hengelo',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30277,'Hof van Twente',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30278,'IJsselmuiden',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30279,'Kampen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30280,'Lemelerveld',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30281,'Losser',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30282,'Nieuwleusen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30283,'Nijverdal',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30284,'Oldenzaal',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30285,'Olst',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30286,'Ommen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30287,'Ootmarsum',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30288,'Raalte',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30289,'Rijssen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30290,'Staphorst',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30291,'Steenwijk',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30292,'Tubbergen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30293,'Vriezenveen',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30294,'Vroomshoop',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30295,'Weerselo',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30296,'Wierden',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30297,'Zwartewaterland',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30298,'Zwolle',2595,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30299,'Abcoude',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30300,'Amerongen',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30301,'Amersfoort',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30302,'Baarn',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30303,'Benschop',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30304,'Breukelen',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30305,'Bunnik',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30306,'Bunschoten',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30307,'De Bilt',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30308,'De Ronde Venen',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30309,'Den Dolder',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30310,'Doorn',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30311,'Driebergen-Rijsenburg',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30312,'Eemnes',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30313,'Houten',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30314,'IJsselstein',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30315,'Kockengen',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30316,'Leersum',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30317,'Leusden',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30318,'Loenen',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30319,'Lopik',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30320,'Maarn',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30321,'Maarsen',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30322,'Mijdrecht',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30323,'Montfoort',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30324,'Nieuwegein',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30325,'Nigtevecht',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30326,'Odijk',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30327,'Oudewater',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30328,'Renswoude',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30329,'Rhenen',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30330,'Soest',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30331,'Soesterberg',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30332,'Utrecht',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30333,'Veenendaal',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30334,'Vianen',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30335,'Wijdemeren',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30336,'Wijk',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30337,'Wilnis',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30338,'Woerden',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30339,'Woudenberg',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30340,'Zeist',2597,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30341,'Axel',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30342,'Borsele',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30343,'Goes',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30344,'Hontenisse',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30345,'Hulst',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30346,'Kapelle',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30347,'Middelburg',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30348,'Noord-Beveland',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30349,'Oostburg',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30350,'Reimerswaal',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30351,'Sas van Gent',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30352,'Schouwen-Duiveland',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30353,'Sluis-Aardenburg',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30354,'Terneuzen',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30355,'Tholen',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30356,'Veere',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30357,'Vlissingen',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30358,'Zierikzee',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30359,'Zijpe',2598,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30360,'\'s-Gravendeel',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30361,'\'s-Gravenhage',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30362,'\'s-Gravenzande',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30363,'Alblasserdam',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30364,'Albrandswaard',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30365,'Alkemade',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30366,'Alphen',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30367,'Alphen aan den Rijn',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30368,'Barendrecht',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30369,'Bergambacht',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30370,'Bergschenhoek',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30371,'Berkel en Rodenrijs',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30372,'Binnenmaas',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30373,'Bleiswijk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30374,'Bodegraven',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30375,'Boskoop',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30376,'Brielle',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30377,'Capelle',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30378,'Cromstrijen',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30379,'De Lier',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30380,'Delft',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30381,'Dirksland',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30382,'Dordrecht',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30383,'Giessenlanden',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30384,'Goedereede',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30385,'Gorinchem',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30386,'Gouda',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30387,'Graafstroom',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30388,'Hardinxveld-Giessendam',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30389,'Heerjansdam',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30390,'Hellevoetsluis',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30391,'Hendrik-Ido-Ambacht',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30392,'Jacobswoude',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30393,'Katwijk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30394,'Kinderdijk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30395,'Krimpen',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30396,'Leiden',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30397,'Leiderdorp',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30398,'Leidschendam-Voorburg',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30399,'Liemeer',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30400,'Liesveld',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30401,'Lisse',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30402,'Maasland',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30403,'Maassluis',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30404,'Middelharnis',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30405,'Monster',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30406,'Moordrecht',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30407,'Naaldwijk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30408,'Nederlek',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30409,'Nieuw-Lekkerland',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30410,'Nieuwekerk aan den IJssel',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30411,'Nieuwkoop',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30412,'Noordwijk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30413,'Noordwijkerhout',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30414,'Oegestgeest',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30415,'Oostflakkee',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30416,'Oud-Beijerland',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30417,'Ouderkerk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30418,'Papendrecht',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30419,'Pijnacker-Nootdorp',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30420,'Reeuwijk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30421,'Ridderkerk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30422,'Rijnsburg',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30423,'Rijnwoude',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30424,'Rijswijk',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30425,'Rotterdam',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30426,'Sassenheim',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30427,'Schiedam',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30428,'Schipluiden',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30429,'Schoonhoven',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30430,'Sliedrecht',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30431,'Spijkenisse',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30432,'Strijen',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30433,'Ter Aar',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30434,'The Hague',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30435,'Valkenburg',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30436,'Vierpolders',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30437,'Vlaardingen',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30438,'Vlist',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30439,'Voorhout',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30440,'Voorschoten',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30441,'Waddinxveen',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30442,'Warmond',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30443,'Wassenaar',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30444,'Wateringen',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30445,'West Maas en Waal',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30446,'Westvoorne',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30447,'Zederik',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30448,'Zevenhuizen-Moerkapelle',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30449,'Zoetermeer',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30450,'Zoeterwoude',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30451,'Zwijndrecht',2599,155,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30452,'Belep',2600,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30453,'Fayaoue',2600,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30454,'Tadine',2600,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30455,'Vao',2600,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30456,'We',2600,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30457,'Canala',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30458,'Hienghene',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30459,'Houailu',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30460,'Kaala Gomen',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30461,'Kone',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30462,'Koumac',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30463,'Ouegoa',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30464,'Poindimie',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30465,'Ponerihouen',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30466,'Pouebo',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30467,'Pouembout',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30468,'Poum',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30469,'Poya',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30470,'Touho',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30471,'Voh',2601,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30472,'Bouloupari',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30473,'Bourail',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30474,'Dumbea',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30475,'Farino',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30476,'La Foa',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30477,'Moindou',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30478,'Mont-Dore',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30479,'Noumea',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30480,'Paita',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30481,'Sarramea',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30482,'Thio',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30483,'Yate',2602,156,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30484,'Auckland',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30485,'Helensville',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30486,'Henderson',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30487,'Hillsborough',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30488,'Lynfield',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30489,'Manukau',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30490,'Manurewa',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30491,'Mt. Roskill',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30492,'North Shore',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30493,'Onehunga',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30494,'Orewa',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30495,'Otahuhu',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30496,'Panmure',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30497,'Papakura',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30498,'Papatoetoe',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30499,'Ponsonby',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30500,'Royal Oak',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30501,'Sandringham',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30502,'Snells Beach',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30503,'Takanini',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30504,'Waiheke',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30505,'Waitakere',2604,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30506,'Amberley',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30507,'Ashburton',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30508,'Christchurch',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30509,'Fairlie',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30510,'Geraldine',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30511,'Kaikoura',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30512,'Leeston',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30513,'Lyttelton',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30514,'Oamaru',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30515,'Rangiora',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30516,'Temuka',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30517,'Timaru',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30518,'Waimate',2606,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30519,'Gisborne',2608,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30520,'Dannevirke',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30521,'Feilding',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30522,'Foxton',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30523,'Levin',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30524,'Marton',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30525,'Palmerston North',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30526,'Picton',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30527,'Taumarunui',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30528,'Wanganui',2610,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30529,'Blenheim',2611,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30530,'Havelock',2611,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30531,'Nelson',2612,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30532,'Dargaville',2613,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30533,'Kaikohe',2613,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30534,'Kaitaia',2613,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30535,'Kerikeri',2613,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30536,'Maungatapere',2613,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30537,'Whangarei',2613,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30538,'Alexandra',2614,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30539,'Balclutha',2614,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30540,'Dunedin',2614,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30541,'Queenstown',2614,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30542,'Wanaka',2614,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30543,'Warkworth',2615,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30544,'Gore',2616,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30545,'Invercargill',2616,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30546,'Eltham',2617,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30547,'Hawera',2617,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30548,'Inglewood',2617,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30549,'New Plymouth',2617,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30550,'Oakura',2617,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30551,'Stratford',2617,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30552,'Waitara',2617,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30553,'Motueka',2618,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30554,'Richmond',2618,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30555,'Cambridge',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30556,'Coromandel',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30557,'Hamilton',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30558,'Hillcrest',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30559,'Huntly',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30560,'Matamata',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30561,'Morrinsville',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30562,'Ngaruawahia',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30563,'Otorohanga',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30564,'Paeroa',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30565,'Pukekohe',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30566,'Putaruru',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30567,'Taupo',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30568,'Te Aroha',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30569,'Te Awamutu',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30570,'Te Kuiti',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30571,'Thames',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30572,'Tokoroa',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30573,'Turangi',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30574,'Waiuku',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30575,'Whangamata',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30576,'Whitianga',2619,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30577,'Carterton',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30578,'Kapiti',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30579,'Lower Hutt',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30580,'Martinborough',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30581,'Masterton',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30582,'Otaki',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30583,'Paraparaumu',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30584,'Porirua',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30585,'Upper Hutt',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30586,'Wairarapa',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30587,'Wellington',2620,157,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30588,'Boaco',2624,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30589,'Camoapa',2624,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30590,'San Lorenzo',2624,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30591,'Diriamba',2625,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30592,'Dolores',2625,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30593,'Jinotepe',2625,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30594,'Masatepe',2625,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30595,'San Marcos',2625,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30596,'Santa Teresa',2625,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30597,'Chichigalpa',2626,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30598,'Chinandega',2626,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30599,'Corinto',2626,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30600,'El Viejo',2626,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30601,'Puerto Morazan',2626,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30602,'Somotillo',2626,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30603,'Acoyapa',2627,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30604,'Juigalpa',2627,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30605,'Santo Domingo',2627,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30606,'Santo Tomas',2627,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30607,'Villa Sandino',2627,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30608,'Condega',2628,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30609,'Esteli',2628,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30610,'La Trinidad',2628,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30611,'Diriomo',2629,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30612,'Granada',2629,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30613,'Nandaime',2629,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30614,'Jinotega',2630,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30615,'Wiwili',2630,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30616,'El Sauce',2631,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30617,'La Paz Centro',2631,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30618,'Larreynaga',2631,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30619,'Leon',2631,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30620,'Nagarote',2631,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30621,'Telica',2631,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30622,'Somoto',2632,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30623,'Managua',2633,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30624,'Mateare',2633,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30625,'San Rafael del Sur',2633,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30626,'Ticuantepe',2633,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30627,'Tipitapa',2633,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30628,'La Concepcion',2634,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30629,'Masaya',2634,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30630,'Nandasmo',2634,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30631,'Nindiri',2634,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30632,'Niquinohomo',2634,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30633,'Ciudad Dario',2635,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30634,'Esquipulas',2635,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30635,'Matagalpa',2635,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30636,'Matiguas',2635,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30637,'Rio Blanco',2635,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30638,'San Isidro',2635,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30639,'Sebaco',2635,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30640,'Belen',2638,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30641,'Rivas',2638,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30642,'San Jorge',2638,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30643,'San Juan del Sur',2638,158,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30644,'Agadez',2639,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30645,'Arlit',2639,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30646,'Bilma',2639,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30647,'Fachi',2639,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30648,'Ingall',2639,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30649,'Tchirozerine',2639,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30650,'Diffa',2640,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30651,'Maine-Soroa',2640,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30652,'N\'Guigmi',2640,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30653,'Birni N\'Gaoure',2641,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30654,'Boboye',2641,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30655,'Dogondoutchi',2641,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30656,'Dosso',2641,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30657,'Gaya',2641,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30658,'Loga',2641,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30659,'Aguie',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30660,'Dakoro',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30661,'Gazaoua',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30662,'Guidan Roumdji',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30663,'Madarounfa',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30664,'Maradi',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30665,'Mayahi',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30666,'Tessaoua',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30667,'Tibiri',2642,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30668,'Niamey',2643,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30669,'Birni N\'Konni',2644,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30670,'Bouza',2644,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30671,'Illela',2644,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30672,'Keita',2644,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30673,'Madaoua',2644,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30674,'Malbaza\'uzine',2644,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30675,'Tahoua',2644,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30676,'Tchintabaraden',2644,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30677,'Ayorou',2645,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30678,'Filingue',2645,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30679,'Kollo',2645,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30680,'Ouallam',2645,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30681,'Say',2645,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30682,'Tera',2645,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30683,'Tillabery',2645,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30684,'Goure',2646,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30685,'Kantche',2646,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30686,'Magaria',2646,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30687,'Matameye',2646,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30688,'Mirriah',2646,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30689,'Tanout',2646,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30690,'Zinder',2646,159,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30691,'Aba',2647,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30692,'Amaigbo',2647,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30693,'Arochukwu',2647,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30694,'Bende',2647,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30695,'Ohafia',2647,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30696,'Okwe',2647,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30697,'Umuahia',2647,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30698,'Demsa',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30699,'Ganye',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30700,'Girei',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30701,'Gombi',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30702,'Jada',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30703,'Jimeta',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30704,'Lamurde',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30705,'Madagala',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30706,'Maiha',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30707,'Mubi',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30708,'Ngurore',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30709,'Numan',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30710,'Shelleng',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30711,'Song',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30712,'Toungo',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30713,'Yola',2649,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30714,'Aguata',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30715,'Agulu',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30716,'Anambra',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30717,'Awka',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30718,'Enugu Ukwu',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30719,'Igbo Ukwu',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30720,'Ihiala',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30721,'Nkpor',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30722,'Nnewi',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30723,'Obosi',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30724,'Okija',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30725,'Okpoko',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30726,'Onitsha',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30727,'Ozubulu',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30728,'Uga',2651,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30729,'Alkaleri',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30730,'Azare',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30731,'Bauchi',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30732,'Bogoro',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30733,'Bununu Dass',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30734,'Darazo',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30735,'Gamawa',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30736,'Ganjuwa',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30737,'Jamari',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30738,'Katagum',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30739,'Misau',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30740,'Ningi',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30741,'Tafawa Balewa',2652,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30742,'Brass',2653,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30743,'Ekeremor',2653,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30744,'Nembe',2653,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30745,'Yenagoa',2653,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30746,'Aliade',2654,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30747,'Gboko',2654,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30748,'Katsina-Ala',2654,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30749,'Makurdi',2654,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30750,'Otukpo',2654,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30751,'Ukum',2654,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30752,'Zaki Biam',2654,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30753,'Abadan',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30754,'Askira',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30755,'Bama',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30756,'Biu',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30757,'Chibok',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30758,'Damboa',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30759,'Dikwa',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30760,'Gamboru',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30761,'Gubio',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30762,'Gwoza',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30763,'Kaga',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30764,'Kala',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30765,'Konduga',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30766,'Kukawa',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30767,'Mafa',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30768,'Magumeri',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30769,'Maiduguri',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30770,'Marte',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30771,'Monguno',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30772,'Ngala',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30773,'Shani',2655,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30774,'Agbor',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30775,'Asaba',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30776,'Bomadi',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30777,'Burutu',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30778,'Okpe',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30779,'Patani',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30780,'Sapele',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30781,'Ughelli',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30782,'Warri',2657,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30783,'Abakaliki',2658,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30784,'Afikpo',2658,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30785,'Effium',2658,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30786,'Ezza',2658,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30787,'Ishieke',2658,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30788,'Uburu',2658,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30789,'Auchi',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30790,'Benin',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30791,'Ekpoma',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30792,'Igarra',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30793,'Ikpoba',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30794,'Irrua',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30795,'Sabongida',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30796,'Ubiaja',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30797,'Uromi',2659,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30798,'Ado',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30799,'Aramoko',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30800,'Efon Alaye',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30801,'Emure',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30802,'Igbara Odo',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30803,'Igede',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30804,'Ijero',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30805,'Ikere',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30806,'Ikole',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30807,'Ilawe',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30808,'Ipoti',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30809,'Ise',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30810,'Ode',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30811,'Omuo',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30812,'Osi',2660,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30813,'Agwa',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30814,'Aku',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30815,'Awgu',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30816,'Eha Amufu',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30817,'Enugu',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30818,'Enugu Ezike',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30819,'Enugu Ngwo',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30820,'Ezeagu',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30821,'Mberubu',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30822,'Nsukka',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30823,'Oji',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30824,'Udi',2661,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30825,'Ako',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30826,'Deba',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30827,'Duku',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30828,'Garko',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30829,'Gombe',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30830,'Kaltungo',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30831,'Kumo',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30832,'Nafada',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30833,'Pindiga',2662,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30834,'Aboh',2663,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30835,'Etiti',2663,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30836,'Ihite',2663,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30837,'Nkwerre',2663,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30838,'Oguta',2663,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30839,'Okigwe',2663,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30840,'Owerri',2663,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30841,'Babura',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30842,'Birnin Kudu',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30843,'Buji',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30844,'Dutse',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30845,'Garki',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30846,'Gumel',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30847,'Gwaram',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30848,'Gwiwa',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30849,'Hadejia',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30850,'Jahun',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30851,'Kaugama',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30852,'Kazaure',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30853,'Keffin Hausa',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30854,'Kiyawa',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30855,'Maigatari',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30856,'Malammaduri',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30857,'Ringim',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30858,'Sule Tankarkar',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30859,'Taura',2664,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30860,'Birnin Gwari',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30861,'Doka',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30862,'Giwa',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30863,'Gwagwada',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30864,'Hunkuyi',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30865,'Igabi',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30866,'Ikara',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30867,'Jemaa',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30868,'Kachia',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30869,'Kaduna',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30870,'Kafanchan',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30871,'Kagarko',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30872,'Kagoro',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30873,'Kaura',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30874,'Kudan',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30875,'Lere',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30876,'Makarfi',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30877,'Sabon Birnin Gwari',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30878,'Sabongari',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30879,'Sanga',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30880,'Soba',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30881,'Tudun Wada',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30882,'Zangon Katab',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30883,'Zaria',2665,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30884,'Ajingi',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30885,'Albasu',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30886,'Bagwai',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30887,'Bebeji',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30888,'Bichi',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30889,'Bunkure',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30890,'Dambarta',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30891,'Dawakin Tofe',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30892,'Fagge',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30893,'Garko',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30894,'Garun Mallam',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30895,'Gaya',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30896,'Gezawa',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30897,'Gwarzo',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30898,'Kabo',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30899,'Kano',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30900,'Karaye',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30901,'Kibiya',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30902,'Kiru',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30903,'Kumbotso',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30904,'Kunchi',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30905,'Kura',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30906,'Madobi',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30907,'Makoda',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30908,'Nassarawa',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30909,'Rano',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30910,'Rimin Gado',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30911,'Shanono',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30912,'Sumaila',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30913,'Takai',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30914,'Tofa',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30915,'Tudun Wada',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30916,'Wudil',2666,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30917,'Bakori',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30918,'Batsari',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30919,'Bindawa',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30920,'Cheranchi',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30921,'Dan Dume',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30922,'Danja',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30923,'Daura',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30924,'Dutsi',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30925,'Dutsin Ma',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30926,'Faskari',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30927,'Funtua',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30928,'Ingawa',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30929,'Jibiya',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30930,'Kangiwa',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30931,'Kankara',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30932,'Kankiya',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30933,'Katsina',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30934,'Kurfi',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30935,'Malumfashi',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30936,'Mani',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30937,'Mashi',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30938,'Musawa',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30939,'Rimi',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30940,'Sandamu',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30941,'Zango',2667,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30942,'Argungu',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30943,'Augie',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30944,'Bagudo',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30945,'Birnin Kebbi',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30946,'Birnin Yauri',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30947,'Bunza',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30948,'Fakai',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30949,'Gwandu',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30950,'Jega',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30951,'Kalgo',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30952,'Koko',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30953,'Maiyema',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30954,'Sakaba',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30955,'Shanga',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30956,'Suru',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30957,'Wasagu',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30958,'Zuru',2668,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30959,'Ajaokuta',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30960,'Ankpa',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30961,'Dekina',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30962,'Idah',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30963,'Kabba',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30964,'Koton-Karifi',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30965,'Kuroro',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30966,'Lokoja',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30967,'Mopa',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30968,'Ogaminana',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30969,'Ogori',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30970,'Okene',2669,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30971,'Ajasse',2670,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30972,'Ilorin',2670,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30973,'Jebba',2670,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30974,'Kaiama',2670,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30975,'Lafiagi',2670,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30976,'Offa',2670,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30977,'Pategi',2670,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30978,'Apapa',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30979,'Badagri',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30980,'Epe',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30981,'Ibeju',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30982,'Iganmi',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30983,'Ikeja',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30984,'Ikorodu',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30985,'Lagos',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30986,'Ojo',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30987,'Surulere',2671,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30988,'Akwanga',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30989,'Awe',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30990,'Doma',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30991,'Keana',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30992,'Keffi',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30993,'Lafia',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30994,'Nassarawa',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30995,'Obi',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30996,'Toto',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30997,'Wamba',2672,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30998,'Agale',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(30999,'Babana',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31000,'Bida',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31001,'Bosso',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31002,'Chanchaga',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31003,'Gbako',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31004,'Kontagora',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31005,'Lapai',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31006,'Minna',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31007,'Mokwa',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31008,'New Bussa',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31009,'Rijau',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31010,'Shiroro',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31011,'Suleja',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31012,'Wushishi',2673,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31013,'Abeokuta',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31014,'Ado Odo',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31015,'Agbara',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31016,'Aiyetoro',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31017,'Ewekoro',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31018,'Ifo',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31019,'Ijebu Igbo',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31020,'Ijebu Ode',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31021,'Ikene',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31022,'Ilaro',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31023,'Ipokia',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31024,'Odogbolu',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31025,'Owode',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31026,'Sango Ota',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31027,'Shagamu',2674,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31028,'Akure',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31029,'Idanre',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31030,'Ikare',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31031,'Irele',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31032,'Odigbo',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31033,'Oka',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31034,'Okitipupa',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31035,'Ondo',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31036,'Owo',2675,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31037,'Apomu',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31038,'Ede',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31039,'Ejigbo',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31040,'Erin-Oshogbo',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31041,'Gbongan',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31042,'Ife',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31043,'Ifon Osun',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31044,'Ijesha',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31045,'Ikire',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31046,'Ikirun',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31047,'Ila',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31048,'Ilesha',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31049,'Ilobu',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31050,'Inisa',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31051,'Iwo',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31052,'Modakeke',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31053,'Oke-Mesi',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31054,'Olorunda',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31055,'Olupona',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31056,'Ore',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31057,'Orolu',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31058,'Oshogbo',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31059,'Oyan',2676,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31060,'Akinyele',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31061,'Egbeda',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31062,'Eruwa',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31063,'Fiditi',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31064,'Ibadan',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31065,'Ibeto',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31066,'Igbo Ora',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31067,'Igboho',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31068,'Iseyin',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31069,'Kajola',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31070,'Kishi',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31071,'Lalupon',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31072,'Ogbomosho',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31073,'Ogo',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31074,'Oke-Iho',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31075,'Oyo',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31076,'Shaki',2677,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31077,'Barakin',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31078,'Bassa',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31079,'Bokkos',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31080,'Bukuru',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31081,'Jos',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31082,'Langtang',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31083,'Pankshin',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31084,'Riyom',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31085,'Shendam',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31086,'Vom',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31087,'Wase',2678,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31088,'Abonnema',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31089,'Abua',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31090,'Ahoada',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31091,'Bonny',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31092,'Bugama',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31093,'Degema',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31094,'Egbema',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31095,'Ogu',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31096,'Okrika',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31097,'Omoko',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31098,'Opobo',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31099,'Oyigbo',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31100,'Port Harcourt',2679,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31101,'Binji',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31102,'Bodinga',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31103,'Dange',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31104,'Gada',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31105,'Goronyo',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31106,'Gwadabawa',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31107,'Illela',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31108,'Kebbe',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31109,'Kware',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31110,'Rabah',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31111,'Raka',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31112,'Sabon Birni',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31113,'Sokoto',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31114,'Tambawel',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31115,'Tureta',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31116,'Wamako',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31117,'Wurno',2680,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31118,'Bali',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31119,'Gashaka',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31120,'Gassol',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31121,'Ibi',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31122,'Jalingo',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31123,'Lau',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31124,'Takum',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31125,'Wukari',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31126,'Yorro',2681,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31127,'Damaturu',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31128,'Fika',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31129,'Gashua',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31130,'Geidam',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31131,'Gorgoram',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31132,'Gujba',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31133,'Gulani',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31134,'Jakusko',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31135,'Matsena',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31136,'Nguru',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31137,'Potiskum',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31138,'Yusufari',2682,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31139,'Anka',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31140,'Bungudu',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31141,'Chafe',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31142,'Gummi',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31143,'Gusau',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31144,'Isa',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31145,'Kaura Namoda',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31146,'Kiyawa',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31147,'Maradun',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31148,'Maru',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31149,'Shinkafe',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31150,'Talata Mafara',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31151,'Zurmi',2683,160,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31152,'Niue',2684,161,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31153,'Songsong',2687,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31154,'Capital Hill',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31155,'Chalan Kanoa',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31156,'Dandan',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31157,'Garapan',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31158,'Gualo Rai',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31159,'Kagman',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31160,'Koblerville',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31161,'San Antonio',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31162,'San Jose',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31163,'San Roque',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31164,'San Vicente',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31165,'Susupe',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31166,'Tanapag',2688,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31167,'San Jose',2689,163,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31168,'Asker',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31169,'Billingstad',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31170,'Haslum',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31171,'Hosle',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31172,'Kjeller',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31173,'Lillestrom',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31174,'Lorenskog',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31175,'Lysaker',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31176,'L%�^%�%�,%U%renskog',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31177,'Rud',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31178,'Sandvika',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31179,'Strommen',2690,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31180,'Kokstad',2692,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31181,'Drammen',2693,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31182,'Hokksund',2693,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31183,'Honefoss',2693,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31184,'Kongsberg',2693,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31185,'Lyngdal',2693,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31186,'N%�^%�%�,%�rsnes',2693,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31187,'Vestby',2693,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31188,'Baatsfjord',2694,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31189,'Hammerfest',2694,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31190,'Brumunddal',2695,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31191,'Elverum',2695,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31192,'Hamar',2695,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31193,'Ilseng',2695,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31194,'Rena',2695,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31195,'Trysil',2695,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31196,'Bergen',2696,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31197,'H%�^%�%�,%U%ylandsbygd',2696,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31198,'Lonevag',2696,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31199,'Straume',2696,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31200,'Tysnes',2696,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31201,'Voss',2696,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31202,'Bodo',2699,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31203,'Mosjoen',2699,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31204,'Narvik',2699,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31205,'Nesna',2699,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31206,'Saltdal',2699,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31207,'Sortland',2699,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31208,'Steigen',2699,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31209,'Askim',2700,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31210,'Fredrikstad',2700,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31211,'Halden',2700,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31212,'Hovik',2700,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31213,'Moss',2700,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31214,'Mysen',2700,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31215,'Sarpsborg',2700,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31216,'Tistedal',2700,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31217,'Lena',2701,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31218,'Lillehammer',2701,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31219,'Oslo',2702,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31220,'Skedsmo',2702,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31221,'Skjetten',2702,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31222,'Egersund',2703,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31223,'Haugesund',2703,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31224,'Kleppe',2703,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31225,'Sandnes',2703,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31226,'Sola',2703,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31227,'Stavanger',2703,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31228,'Stavern',2706,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31229,'Sykkylven',2707,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31230,'Notodden',2708,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31231,'Skien',2708,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31232,'Harstad',2709,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31233,'Troms',2709,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31234,'Troms%�^%�%�,%U%',2709,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31235,'Horten',2711,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31236,'Hus%�^%�%�,%U%ysund',2711,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31237,'Larvik',2711,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31238,'Rygge',2711,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31239,'Sandefjord',2711,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31240,'T%�^%�%�,%U%nsberg',2711,164,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31241,'Salalah',2714,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31242,'Azaiba',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31243,'Bawshar',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31244,'Madinat Qabus',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31245,'Masqat',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31246,'Matrah',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31247,'Muscat',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31248,'Muttrah',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31249,'Qurayyat',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31250,'Qurm',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31251,'Ruwi',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31252,'Wadi Al Kabir',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31253,'as-Sib',2715,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31254,'Khasab',2716,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31255,'Rusayl',2717,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31256,'Bahla\'',2719,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31257,'Nizwa',2719,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31258,'Sumayl',2719,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31259,'\'Ibri',2720,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31260,'al-Buraymi',2720,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31261,'Al khuwair',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31262,'Barkah',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31263,'Saham',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31264,'Shinas',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31265,'Suhar',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31266,'al-Khaburah',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31267,'al-Masna\'ah',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31268,'ar-Rustaq',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31269,'as-Suwayq',2721,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31270,'Ibra',2722,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31271,'Sur',2722,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31272,'al-Mudaybi',2722,165,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31273,'Barkhan',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31274,'Bela',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31275,'Bhag',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31276,'Chaman',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31277,'Chitkan',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31278,'Dalbandin',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31279,'Dera Allah Yar',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31280,'Dera Bugti',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31281,'Dera Murad Jamali',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31282,'Dhadar',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31283,'Duki',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31284,'Gaddani',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31285,'Gwadar',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31286,'Harnai',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31287,'Hub',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31288,'Jiwani',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31289,'Kalat',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31290,'Kharan',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31291,'Khuzdar',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31292,'Kohlu',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31293,'Loralai',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31294,'Mach',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31295,'Mastung',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31296,'Nushki',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31297,'Ormara',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31298,'Pasni',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31299,'Pishin',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31300,'Quetta',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31301,'Sibi',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31302,'Sohbatpur',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31303,'Surab',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31304,'Turbat',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31305,'Usta Muhammad',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31306,'Uthal',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31307,'Wadh',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31308,'Winder',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31309,'Zehri',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31310,'Zhob',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31311,'Ziarat',2723,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31312,'\'Abdul Hakim',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31313,'Ahmadpur East',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31314,'Ahmadpur Lumma',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31315,'Ahmadpur Sial',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31316,'Ahmedabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31317,'Alipur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31318,'Alipur Chatha',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31319,'Arifwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31320,'Attock',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31321,'Baddomalhi',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31322,'Bagh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31323,'Bahawalnagar',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31324,'Bahawalpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31325,'Bai Pheru',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31326,'Basirpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31327,'Begowala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31328,'Bhakkar',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31329,'Bhalwal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31330,'Bhawana',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31331,'Bhera',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31332,'Bhopalwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31333,'Burewala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31334,'Chak Azam Sahu',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31335,'Chak Jhumra',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31336,'Chak Sarwar Shahid',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31337,'Chakwal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31338,'Chawinda',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31339,'Chichawatni',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31340,'Chiniot',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31341,'Chishtian Mandi',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31342,'Choa Saidan Shah',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31343,'Chuhar Kana',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31344,'Chunian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31345,'Dajal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31346,'Darya Khan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31347,'Daska',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31348,'Daud Khel',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31349,'Daultala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31350,'Dera Din Panah',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31351,'Dera Ghazi Khan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31352,'Dhanote',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31353,'Dhonkal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31354,'Dijkot',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31355,'Dina',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31356,'Dinga',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31357,'Dipalpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31358,'Dullewala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31359,'Dunga Bunga',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31360,'Dunyapur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31361,'Eminabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31362,'Faisalabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31363,'Faqirwali',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31364,'Faruka',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31365,'Fateh Jang',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31366,'Fatehpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31367,'Fazalpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31368,'Ferozwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31369,'Fort Abbas',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31370,'Garh Maharaja',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31371,'Ghakar',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31372,'Ghurgushti',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31373,'Gojra',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31374,'Gujar Khan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31375,'Gujranwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31376,'Gujrat',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31377,'Hadali',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31378,'Hafizabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31379,'Harnoli',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31380,'Harunabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31381,'Hasan Abdal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31382,'Hasilpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31383,'Haveli',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31384,'Hazro',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31385,'Hujra Shah Muqim',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31386,'Isa Khel',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31387,'Jahanian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31388,'Jalalpur Bhattian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31389,'Jalalpur Jattan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31390,'Jalalpur Pirwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31391,'Jalla Jeem',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31392,'Jamke Chima',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31393,'Jampur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31394,'Jand',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31395,'Jandanwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31396,'Jandiala Sherkhan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31397,'Jaranwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31398,'Jatoi',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31399,'Jauharabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31400,'Jhang',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31401,'Jhawarian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31402,'Jhelum',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31403,'Kabirwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31404,'Kahna Nau',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31405,'Kahror Pakka',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31406,'Kahuta',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31407,'Kalabagh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31408,'Kalaswala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31409,'Kaleke',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31410,'Kalur Kot',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31411,'Kamalia',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31412,'Kamar Mashani',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31413,'Kamir',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31414,'Kamoke',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31415,'Kamra',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31416,'Kanganpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31417,'Karampur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31418,'Karor Lal Esan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31419,'Kasur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31420,'Khairpur Tamewali',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31421,'Khanewal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31422,'Khangah Dogran',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31423,'Khangarh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31424,'Khanpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31425,'Kharian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31426,'Khewra',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31427,'Khundian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31428,'Khurianwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31429,'Khushab',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31430,'Kot Abdul Malik',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31431,'Kot Addu',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31432,'Kot Mithan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31433,'Kot Moman',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31434,'Kot Radha Kishan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31435,'Kot Samaba',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31436,'Kotli Loharan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31437,'Kundian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31438,'Kunjah',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31439,'Lahore',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31440,'Lalamusa',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31441,'Lalian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31442,'Liaqatabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31443,'Liaqatpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31444,'Lieah',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31445,'Liliani',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31446,'Lodhran',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31447,'Ludhewala Waraich',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31448,'Mailsi',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31449,'Makhdumpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31450,'Makhdumpur Rashid',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31451,'Malakwal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31452,'Mamu Kanjan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31453,'Mananwala Jodh Singh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31454,'Mandi Bahauddin',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31455,'Mandi Sadiq Ganj',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31456,'Mangat',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31457,'Mangla',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31458,'Mankera',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31459,'Mian Channun',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31460,'Miani',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31461,'Mianwali',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31462,'Minchinabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31463,'Mitha Tiwana',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31464,'Multan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31465,'Muridke',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31466,'Murree',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31467,'Mustafabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31468,'Muzaffargarh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31469,'Nankana Sahib',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31470,'Narang',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31471,'Narowal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31472,'Noorpur Thal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31473,'Nowshera',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31474,'Nowshera Virkan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31475,'Okara',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31476,'Pakpattan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31477,'Pasrur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31478,'Pattoki',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31479,'Phalia',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31480,'Phularwan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31481,'Pind Dadan Khan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31482,'Pindi Bhattian',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31483,'Pindi Gheb',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31484,'Pirmahal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31485,'Qadirabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31486,'Qadirpur Ran',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31487,'Qila Disar Singh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31488,'Qila Sobha Singh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31489,'Quaidabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31490,'Rabwah',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31491,'Rahim Yar Khan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31492,'Raiwind',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31493,'Raja Jang',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31494,'Rajanpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31495,'Rasulnagar',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31496,'Rawalpindi',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31497,'Renala Khurd',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31498,'Rojhan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31499,'Saddar Gogera',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31500,'Sadiqabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31501,'Safdarabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31502,'Sahiwal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31503,'Samasatta',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31504,'Sambrial',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31505,'Sammundri',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31506,'Sangala Hill',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31507,'Sanjwal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31508,'Sarai Alamgir',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31509,'Sarai Sidhu',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31510,'Sargodha',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31511,'Shadiwal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31512,'Shahkot',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31513,'Shahpur City',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31514,'Shahpur Saddar',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31515,'Shakargarh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31516,'Sharqpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31517,'Shehr Sultan',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31518,'Shekhupura',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31519,'Shujaabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31520,'Sialkot',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31521,'Sillanwali',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31522,'Sodhra',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31523,'Sohawa',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31524,'Sukheke',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31525,'Talagang',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31526,'Tandlianwala',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31527,'Taunsa',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31528,'Taxila',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31529,'Tibba Sultanpur',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31530,'Toba Tek Singh',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31531,'Tulamba',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31532,'Uch',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31533,'Vihari',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31534,'Wah',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31535,'Warburton',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31536,'Wazirabad',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31537,'Yazman',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31538,'Zafarwal',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31539,'Zahir Pir',2728,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31540,'Adilpur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31541,'Badah',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31542,'Badin',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31543,'Bagarji',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31544,'Bakshshapur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31545,'Bandhi',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31546,'Berani',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31547,'Bhan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31548,'Bhiria City',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31549,'Bhiria Road',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31550,'Bhit Shah',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31551,'Bozdar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31552,'Bulri',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31553,'Chak',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31554,'Chambar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31555,'Chohar Jamali',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31556,'Chor',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31557,'Dadu',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31558,'Daharki',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31559,'Daro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31560,'Darya Khan Mari',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31561,'Daulatpur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31562,'Daur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31563,'Dhoronaro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31564,'Digri',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31565,'Diplo',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31566,'Dokri',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31567,'Faqirabad',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31568,'Gambat',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31569,'Garello',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31570,'Garhi Khairo',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31571,'Garhi Yasin',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31572,'Gharo',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31573,'Ghauspur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31574,'Ghotki',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31575,'Golarchi',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31576,'Guddu',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31577,'Gulistan-E-Jauhar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31578,'Hala',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31579,'Hingorja',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31580,'Hyderabad',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31581,'Islamkot',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31582,'Jacobabad',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31583,'Jam Nawaz Ali',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31584,'Jam Sahib',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31585,'Jati',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31586,'Jhol',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31587,'Jhudo',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31588,'Johi',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31589,'Kadhan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31590,'Kambar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31591,'Kandhra',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31592,'Kandiari',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31593,'Kandiaro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31594,'Karachi',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31595,'Karampur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31596,'Kario Ghanwar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31597,'Karoondi',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31598,'Kashmor',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31599,'Kazi Ahmad',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31600,'Keti Bandar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31601,'Khadro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31602,'Khairpur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31603,'Khairpur Nathan Shah',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31604,'Khandh Kot',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31605,'Khanpur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31606,'Khipro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31607,'Khoski',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31608,'Khuhra',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31609,'Khyber',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31610,'Kot Diji',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31611,'Kot Ghulam Mohammad',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31612,'Kotri',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31613,'Kumb',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31614,'Kunri',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31615,'Lakhi',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31616,'Larkana',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31617,'Madeji',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31618,'Matiari',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31619,'Matli',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31620,'Mehar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31621,'Mehrabpur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31622,'Miro Khan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31623,'Mirpur Bathoro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31624,'Mirpur Khas',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31625,'Mirpur Mathelo',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31626,'Mirpur Sakro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31627,'Mirwah',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31628,'Mithi',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31629,'Moro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31630,'Nabisar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31631,'Nasarpur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31632,'Nasirabad',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31633,'Naudero',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31634,'Naukot',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31635,'Naushahro Firoz',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31636,'Nawabshah',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31637,'Oderolal Station',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31638,'Pacca Chang',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31639,'Padidan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31640,'Pano Aqil',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31641,'Perumal',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31642,'Phulji',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31643,'Pirjo Goth',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31644,'Piryaloi',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31645,'Pithoro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31646,'Radhan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31647,'Rajo Khanani',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31648,'Ranipur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31649,'Ratodero',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31650,'Rohri',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31651,'Rustam',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31652,'Saeedabad',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31653,'Sakrand',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31654,'Samaro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31655,'Sanghar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31656,'Sann',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31657,'Sarhari',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31658,'Sehwan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31659,'Setharja',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31660,'Shah Dipalli',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31661,'Shahdadkot',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31662,'Shahdadpur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31663,'Shahpur Chakar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31664,'Shahpur Jahania',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31665,'Shikarpur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31666,'Sinjhoro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31667,'Sita Road',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31668,'Sobhodero',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31669,'Sujawal',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31670,'Sukkur',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31671,'Talhar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31672,'Tando Adam',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31673,'Tando Allah Yar',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31674,'Tando Bagho',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31675,'Tando Ghulam Ali',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31676,'Tando Jam',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31677,'Tando Jan Mohammad',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31678,'Tando Mitha Khan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31679,'Tando Muhammad Khan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31680,'Tangwani',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31681,'Thano Bula Khan',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31682,'Thari Mirwah',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31683,'Tharushah',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31684,'Thatta',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31685,'Ther I',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31686,'Ther I Mohabat',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31687,'Thul',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31688,'Ubauro',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31689,'Umarkot',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31690,'Warah',2729,166,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31691,'Ulimang',2730,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31692,'Airai',2731,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31693,'Ngaramash',2732,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31694,'Hatohobei',2733,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31695,'Kayangel',2734,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31696,'Koror',2735,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31697,'Meyungs',2735,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31698,'Melekeok',2736,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31699,'Ngermechau',2737,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31700,'Chol',2738,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31701,'Ollei',2739,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31702,'Oikul',2740,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31703,'Ngerkeai',2741,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31704,'Imeong',2742,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31705,'Ngetkip',2743,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31706,'Kloulklubed',2744,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31707,'Dongosaru',2745,167,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31708,'Ariha',2746,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31709,'Beit Jala',2748,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31710,'Dayr-al-Balah',2749,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31711,'al-Burayj',2749,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31712,'al-Insayrat',2749,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31713,'al-Maghazi',2749,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31714,'Ghazzah',2750,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31715,'Ghazzah',2751,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31716,'Janin',2752,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31717,'Qabatiyah',2752,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31718,'Nabulus',2754,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31719,'Qalqilyah',2755,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31720,'Rafah',2756,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31721,'Tall as-Sultan',2756,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31722,'Salfit',2758,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31723,'Tubas',2759,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31724,'Tulkarm',2760,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31725,'Dura',2761,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31726,'Halhul',2761,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31727,'Yattah',2761,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31728,'ad-Dahiriyah',2761,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31729,'al-Khalil',2761,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31730,'Ma\'ale Adummim',2762,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31731,'al-Quds',2762,168,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31732,'Alanje',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31733,'Bajo Boquete',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31734,'Boqueron',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31735,'Bugaba',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31736,'David',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31737,'Dolega',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31738,'Gualaca',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31739,'Horconcitos',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31740,'Las Lajas',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31741,'Puerto Armuelles',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31742,'Remedios',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31743,'Rio Sereno',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31744,'Tole',2764,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31745,'Aguadulce',2765,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31746,'Anton',2765,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31747,'La Pintada',2765,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31748,'Nata',2765,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31749,'Ola',2765,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31750,'Penonome',2765,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31751,'Colon',2766,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31752,'Miguel de la Borda',2766,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31753,'Nuevo Chagres',2766,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31754,'Portobelo',2766,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31755,'Santa Isabel',2766,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31756,'El Real de Santa Maria',2767,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31757,'La Palma',2767,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31758,'Cirilo Guainora',2768,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31759,'Rio Sabalo',2768,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31760,'Chitre',2769,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31761,'Las Minas',2769,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31762,'Los Pozos',2769,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31763,'Ocu',2769,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31764,'Parita',2769,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31765,'Pese',2769,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31766,'Santa Maria',2769,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31767,'Arraijan',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31768,'Capira',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31769,'Chame',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31770,'Chepo',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31771,'Chiman',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31772,'La Chorrera',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31773,'Panama',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31774,'San Carlos',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31775,'San Miguel',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31776,'San Miguelito',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31777,'Taboga',2773,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31778,'Atalaya',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31779,'Calobre',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31780,'Canazas',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31781,'La Mesa',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31782,'Las Palmas',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31783,'Montijo',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31784,'Rio de Jesus',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31785,'San Francisco',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31786,'Santa Fe',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31787,'Santiago',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31788,'Sona',2774,169,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31789,'Laiagam',2778,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31790,'Porgera',2778,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31791,'Wabag',2778,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31792,'Kerema',2780,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31793,'Finschhafen',2781,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31794,'Madang',2781,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31795,'Lorengau',2782,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31796,'Bulolo',2784,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31797,'Lae',2784,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31798,'Wau',2784,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31799,'Kokoda',2788,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31800,'Popondetta',2788,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31801,'Vanimo',2789,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31802,'Kundiawa',2790,170,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31803,'Bella Vista',2796,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31804,'Capitan Bado',2796,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31805,'Pedro Juan Caballero',2796,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31806,'Asuncion',2797,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31807,'Doctor Pedro P. Pena',2798,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31808,'Filadelfia',2798,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31809,'Marechal Estigarribia',2798,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31810,'Menno',2798,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31811,'Neuland',2798,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31812,'Caaguazu',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31813,'Carayao',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31814,'Coronel Oviedo',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31815,'Doctor Cecilio Baez',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31816,'Doctor Eulogio Estigarribia',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31817,'Doctor Juan Manuel Frutos',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31818,'Jose Ocampos',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31819,'La Pastoria',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31820,'Marechal Francisco Solano Lope',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31821,'Mbutuy',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31822,'Nueva Londres',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31823,'Raul Arsenio Oviedo',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31824,'Repatriacion',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31825,'San Joaquin',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31826,'San Jose de los Arroyos',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31827,'Simon Bolivar',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31828,'Tres Corrales',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31829,'Tres de Febrero',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31830,'Vaqueria',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31831,'Yhu',2799,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31832,'Abai',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31833,'Buena Vista',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31834,'Caazapa',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31835,'Doctor Moises Bertoni',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31836,'General Higinio Morinigo',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31837,'Maciel',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31838,'San Juan Nepomuceno',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31839,'Tavai',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31840,'Yegros',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31841,'Yuty',2800,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31842,'Corpus Christi',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31843,'Curuguaty',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31844,'General Francisco Alvarez',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31845,'Itanara',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31846,'Katuete',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31847,'La Paloma',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31848,'Nueva Esperanza',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31849,'Salto del Guaira',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31850,'Ygatimi',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31851,'Ypehu',2801,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31852,'Aregua',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31853,'Capiata',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31854,'Fernando de la Mora',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31855,'Guarambare',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31856,'Ita',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31857,'Itaugua',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31858,'Juan Augusto Saldivar',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31859,'Lambare',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31860,'Limpio',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31861,'Luque',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31862,'Nemby',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31863,'Nueva Italia',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31864,'San Antonio',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31865,'San Lorenzo',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31866,'Villa Elisa',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31867,'Villeta',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31868,'Ypacarai',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31869,'Ypane',2802,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31870,'Belen',2803,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31871,'Concepcion',2803,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31872,'Horqueta',2803,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31873,'Loreto',2803,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31874,'San Carlos',2803,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31875,'San Lazaro',2803,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31876,'Altos',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31877,'Arroyos y Esteros',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31878,'Atyra',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31879,'Caacupe',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31880,'Caraguatay',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31881,'Emboscada',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31882,'Eusebio Ayala',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31883,'Isla Pucu',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31884,'Itacurubi de la Cordillera',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31885,'Juan de Mena',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31886,'Loma Grande',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31887,'Mbocayty del Yhaguy',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31888,'Nueva Colombia',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31889,'Piribebuy',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31890,'Primero de Marzo',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31891,'San Bernardino',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31892,'San Jose Obrero',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31893,'Santa Elena',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31894,'Tobati',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31895,'Valenzuela',2804,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31896,'Borja',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31897,'Capitan Mauricio Jose Troche',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31898,'Coronel Martinez',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31899,'Doctor Botrell',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31900,'Felix Perez Cardozo',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31901,'General Eugenio Alejandrino Ga',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31902,'Independencia',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31903,'Itape',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31904,'Iturbe',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31905,'Jose Fasardi',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31906,'Mbocayaty',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31907,'Natalicio Talavera',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31908,'Numi',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31909,'Paso Yobai',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31910,'San Salvador',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31911,'Villarrica',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31912,'Yataity',2805,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31913,'Alto Vera',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31914,'Bella Vista',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31915,'Cambyreta',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31916,'Capitan Meza',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31917,'Capitan Miranda',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31918,'Carlos Antonio Lopez',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31919,'Carmen del Parana',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31920,'Coronel Bogado',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31921,'Edelira',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31922,'Encarnacion',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31923,'Fram',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31924,'General Artigas',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31925,'General Delgado',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31926,'Hohenau',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31927,'Itapua Poty',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31928,'Jesus',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31929,'La Paz',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31930,'Leandro Oviedo',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31931,'Mayor Otano',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31932,'Natalio',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31933,'Nueva Alborada',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31934,'Obligado',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31935,'Pirapo',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31936,'San Cosme y Damian',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31937,'San Juan del Parana',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31938,'San Pedro del Parana',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31939,'San Rafael del Parana',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31940,'Tomas Romero Pereira',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31941,'Trinidad',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31942,'Yatytay',2806,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31943,'Ayolas',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31944,'San Ignacio',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31945,'San Juan Bautista',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31946,'San Miguel',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31947,'San Patricio',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31948,'Santa Maria',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31949,'Santa Rosa',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31950,'Santiago',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31951,'Villa Florida',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31952,'Yabebyry',2807,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31953,'Alberdi',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31954,'Cerrito',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31955,'Desmochados',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31956,'General Jose Eduvigis Diaz',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31957,'Guazu Cua',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31958,'Humaita',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31959,'Isla Umbu',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31960,'Laureles',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31961,'Mayor Jose Dejesus Martinez',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31962,'Paso de Patria',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31963,'Pilar',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31964,'San Juan Bautista de Neembucu',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31965,'Tacuaras',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31966,'Villa Franca',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31967,'Villa Oliva',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31968,'Villalbin',2808,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31969,'Acahay',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31970,'Caapucu',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31971,'Carapegua',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31972,'Escobar',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31973,'General Bernardino Caballero',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31974,'La Colmena',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31975,'Mbuyapey',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31976,'Paraguari',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31977,'Pirayu',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31978,'Quiindy',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31979,'Quyquyho',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31980,'San Roque Gonzalez de Santa Cr',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31981,'Sapucai',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31982,'Tebicuarymi',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31983,'Yaguaron',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31984,'Ybycui',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31985,'Ybytimi',2809,171,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31986,'Bagua Grande',2812,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31987,'Cajaruro',2812,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31988,'Chachapoyas',2812,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31989,'Jazan',2812,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31990,'La Peca',2812,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31991,'Ancash',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31992,'Caraz',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31993,'Carhuaz',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31994,'Casma',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31995,'Chimbote',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31996,'Choishco',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31997,'Huallanca',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31998,'Huaraz',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(31999,'Huari',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32000,'Huarmey',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32001,'Pomabamba',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32002,'Santa',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32003,'Yungay',2813,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32004,'Abancay',2814,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32005,'Andahuaylas',2814,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32006,'San Jeronimo',2814,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32007,'Talavera',2814,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32008,'Acari',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32009,'Arequipa',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32010,'Camana',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32011,'Chivay',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32012,'Cocachacra',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32013,'Dean Valdivia',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32014,'Lluta',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32015,'Mollendo',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32016,'Nicolas de Pierola',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32017,'Orcopampa',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32018,'Punta de Bombon',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32019,'Rio Grande',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32020,'Yura',2815,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32021,'Ayacucho',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32022,'Ayna',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32023,'Coracora',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32024,'Huanta',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32025,'Puquio',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32026,'San Miguel',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32027,'Santa Rosa',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32028,'Silvia',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32029,'Tambo',2816,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32030,'Bambamarca',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32031,'Bellavista',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32032,'Cajabamba',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32033,'Cajamarca',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32034,'Celendin',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32035,'Chota',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32036,'Cutervo',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32037,'Jaen',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32038,'Pedro Galvez',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32039,'Pucara',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32040,'San Ignacio',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32041,'Santa Cruz',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32042,'Yonan',2817,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32043,'Anta',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32044,'Calca',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32045,'Cusco',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32046,'Espinar',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32047,'Oropesa',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32048,'Quillabamba',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32049,'Santa Ana',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32050,'Santo Tomas',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32051,'Sicuani',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32052,'Urcos',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32053,'Urubamba',2818,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32054,'Huancavelica',2819,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32055,'Lircay',2819,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32056,'Pampas',2819,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32057,'Ambos',2820,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32058,'Huanuco',2820,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32059,'Jose Crespo y Castillo',2820,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32060,'La Union',2820,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32061,'Llata',2820,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32062,'Rupa-Rupa',2820,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32063,'San Miguel de Cauri',2820,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32064,'Tingo Maria',2820,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32065,'Chincha Alta',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32066,'Ica',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32067,'Los Aquijes',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32068,'Marcona',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32069,'Nazca',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32070,'Pachacutec',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32071,'Palpa',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32072,'Pisco',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32073,'Salas',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32074,'San Andres',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32075,'San Clemente',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32076,'San Juan Bautista',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32077,'Santiago',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32078,'Subtanjalla',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32079,'Tupac Amaru Inca',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32080,'Vista Alegre',2821,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32081,'Acobamba',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32082,'Acolla',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32083,'Carhuamayo',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32084,'Chanchamayo',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32085,'Chupaca',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32086,'Concepcion',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32087,'Huancayo',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32088,'Huasahuasi',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32089,'Huayucachi',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32090,'Jauja',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32091,'Junin',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32092,'La Oroya',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32093,'Mazamari',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32094,'Morococha',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32095,'Orcotuna',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32096,'Pangoa',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32097,'Perene',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32098,'Pichanaqui',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32099,'Pilcomayo',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32100,'San Agustin',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32101,'San Jeronimo de Tunan',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32102,'San Pedro de Cajas',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32103,'San Ramon',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32104,'Santa Rosa de Saco',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32105,'Satipo',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32106,'Sicaya',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32107,'Tarma',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32108,'Yauli',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32109,'Yauya',2822,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32110,'Chiclayo',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32111,'Chongoyape',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32112,'Eten',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32113,'Ferrenafe',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32114,'Illimo',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32115,'Jayanca',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32116,'Lagunas',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32117,'Lambayeque',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32118,'Manuel Mesones Muro',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32119,'Mochumi',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32120,'Monsefu',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32121,'Morrope',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32122,'Motupe',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32123,'Olmos',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32124,'Oyotun',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32125,'Picsi',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32126,'Pimentel',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32127,'Pueblo Nuevo',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32128,'Reque',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32129,'San Jose',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32130,'Sana',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32131,'Santa Rosa',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32132,'Tucume',2824,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32133,'Barranca',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32134,'Contamana',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32135,'Fernando Lores',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32136,'Iquitos',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32137,'Lagunas',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32138,'Nauta',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32139,'Paucarpata',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32140,'Ramon Castilla',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32141,'Requena',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32142,'Saquena',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32143,'Vargas Guerra',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32144,'Yurimaguas',2826,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32145,'Ilo',2828,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32146,'Moquegua',2828,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32147,'Pacocha',2828,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32148,'Torata',2828,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32149,'Cerro de Pasco',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32150,'Chaupimarca',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32151,'Oxapampa',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32152,'Paucartambo',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32153,'Simon Bolivar',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32154,'Tinyahuarco',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32155,'Villa Rica',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32156,'Yanacancha',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32157,'Yanahuanca',2829,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32158,'Ayabaca',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32159,'Bernal',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32160,'Buenos Aires',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32161,'Catacaos',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32162,'Chulucanas',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32163,'Colan',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32164,'Cura Mori',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32165,'El Alto',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32166,'Huancabamba',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32167,'Ignacio Escudero',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32168,'La Arena',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32169,'La Brea',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32170,'La Huaca',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32171,'La Matanza',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32172,'La Union',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32173,'Las Lomas',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32174,'Los Organos',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32175,'Mancora',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32176,'Marcavelica',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32177,'Morropon',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32178,'Paita',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32179,'Piura',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32180,'Querecotillo',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32181,'Salitral',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32182,'San Juan de Bigote',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32183,'Sechura',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32184,'Sullana',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32185,'Talara',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32186,'Tamarindo',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32187,'Tambo Grande',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32188,'Vice',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32189,'Vichayal',2830,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32190,'Ayaviri',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32191,'Azangaro',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32192,'Desaguadero',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32193,'Huancane',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32194,'Ilave',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32195,'Juli',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32196,'Juliaca',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32197,'Lampa',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32198,'Macusani',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32199,'Nunoa',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32200,'Puno',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32201,'Putina',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32202,'Santa Lucia',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32203,'Yanahuara',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32204,'Yunguyo',2831,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32205,'Ilabaya',2833,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32206,'Tacna',2833,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32207,'Tarata',2833,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32208,'Aguas Verdes',2834,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32209,'Corrales',2834,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32210,'La Cruz',2834,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32211,'Papayal',2834,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32212,'San Jacinto',2834,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32213,'Tumbes',2834,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32214,'Zarumilla',2834,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32215,'Zorritos',2834,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32216,'Campoverde',2835,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32217,'Padre Abad',2835,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32218,'Pucallpa',2835,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32219,'Raymondi',2835,172,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32220,'San Juan',2836,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32221,'Albay',2837,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32222,'Daet',2837,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32223,'Iriga',2837,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32224,'Legaspi',2837,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32225,'Naga',2837,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32226,'Sorsogon',2837,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32227,'Bulacan',2838,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32228,'Marilao',2838,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32229,'Cagayan de Oro',2839,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32230,'Santiago',2839,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32231,'Solano',2839,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32232,'Tuguegarao',2839,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32233,'Bislig',2840,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32234,'Butuan',2840,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32235,'Surigao',2840,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32236,'Baguio',2844,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32237,'Bangued',2844,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32238,'Davao',2845,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32239,'Dagupan',2848,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32240,'Laoag',2848,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32241,'Manaoag',2848,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32242,'Mangaldan',2848,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32243,'San Fernando',2848,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32244,'Urdaneta',2848,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32245,'Vigan',2848,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32246,'Binan',2849,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32247,'Laguna',2849,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32248,'Pangil',2849,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32249,'San Pedro',2849,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32250,'Manila',2850,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32251,'Marikina',2850,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32252,'Mactan',2851,173,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32253,'Fabryczna',2861,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32254,'Bielawa',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32255,'Bogatynia',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32256,'Boguszow-Gorce',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32257,'Boleslawiec',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32258,'Brzeg Dolny',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32259,'Bystrzyca Klodzka',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32260,'Chojnow',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32261,'Dzierzoniow',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32262,'Glogow',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32263,'Gora',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32264,'Jawor',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32265,'Jelcz-Laskowice',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32266,'Jelenia Gora',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32267,'Kamienna Gora',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32268,'Klodzko',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32269,'Kowary',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32270,'Kudowa-Zdroj',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32271,'Legnica',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32272,'Luban',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32273,'Lubin',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32274,'Lwowek Slaski',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32275,'Milicz',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32276,'Nowa Ruda',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32277,'Olawa',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32278,'Olesnica',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32279,'Piechowice',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32280,'Pieszyce',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32281,'Polkowice',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32282,'Strzegom',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32283,'Strzelin',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32284,'Swidnica',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32285,'Swiebodzice',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32286,'Sycow',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32287,'Trzebnica',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32288,'Walbrzych',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32289,'Wolow',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32290,'Wroclaw',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32291,'Zabkowice Slaskie',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32292,'Zgorzelec',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32293,'Ziebice',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32294,'Zlotoryja',2862,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32295,'Hopowo',2864,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32296,'Chwaszczyno',2865,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32297,'Smigiel',2866,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32298,'Jerzmanowice',2867,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32299,'Zabierzow',2867,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32300,'Aleksandrow Kujawski',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32301,'Brodnica',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32302,'Bydgoszcz',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32303,'Chelmno',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32304,'Chelmza',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32305,'Ciechocinek',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32306,'Golub-Dobrzyn',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32307,'Grudziadz',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32308,'Inowroclaw',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32309,'Janikowo',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32310,'Koronowo',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32311,'Kruszwica',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32312,'Lipno',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32313,'Mogilno',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32314,'Naklo nad Notecia',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32315,'Radziejow',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32316,'Rypin',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32317,'Sepolno Krajenskie',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32318,'Solec Kujawski',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32319,'Swiecie',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32320,'Szubin',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32321,'Torun',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32322,'Tuchola',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32323,'Wabrzezno',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32324,'Wloclawek',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32325,'Znin',2868,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32326,'Aleksandrow Lodzki',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32327,'Belchatow',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32328,'Bratoszewice',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32329,'Brzeziny',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32330,'Glowno',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32331,'Koluszki',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32332,'Konstantynow Lodzki',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32333,'Kutno',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32334,'Lask',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32335,'Leczyca',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32336,'Lodz',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32337,'Lowicz',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32338,'Opoczno',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32339,'Ozorkow',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32340,'Pabianice',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32341,'Piotrkow Trybunalski',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32342,'Radomsko',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32343,'Rawa Mazowiecka',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32344,'Sieradz',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32345,'Skierniewice',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32346,'Tomaszow Mazowiecki',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32347,'Tuszyn',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32348,'Wielun',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32349,'Zdunska Wola',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32350,'Zgierz',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32351,'Zychlin',2869,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32352,'Biala Podlaska',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32353,'Bilgoraj',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32354,'Chelm',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32355,'Deblin',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32356,'Hrubieszow',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32357,'Janow Lubelski',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32358,'Krasnik',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32359,'Krasnystaw',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32360,'Leczna',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32361,'Lubartow',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32362,'Lublin',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32363,'Lukow',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32364,'Miedzyrzec Podlaski',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32365,'Opole Lubelskie',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32366,'Parczew',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32367,'Poniatowa',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32368,'Pulawy',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32369,'Radzyn Podlaski',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32370,'Ryki',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32371,'Swidnik',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32372,'Tomaszow Lubelski',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32373,'Wlodawa',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32374,'Zamosc',2870,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32375,'Drezdenko',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32376,'Gorzow Wielkopolski',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32377,'Gubin',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32378,'Kostrzyn',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32379,'Kozuchow',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32380,'Krosno Odrzanskie',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32381,'Lubsko',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32382,'Miedzyrzecz',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32383,'Nowa Sol',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32384,'Skwierzyna',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32385,'Slubice',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32386,'Strzelce Krajenskie',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32387,'Sulechow',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32388,'Sulecin',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32389,'Swiebodzin',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32390,'Szprotawa',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32391,'Wschowa',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32392,'Zagan',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32393,'Zary',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32394,'Zielona Gora',2871,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32395,'Malomice',2872,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32396,'Andrychow',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32397,'Bochnia',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32398,'Brzesko',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32399,'Brzeszcze',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32400,'Bukowno',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32401,'Chelmek',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32402,'Chrzanow',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32403,'Dabrowa Tarnowska',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32404,'Gorlice',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32405,'Kety',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32406,'Krakow',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32407,'Krynica',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32408,'Krzeszowice',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32409,'Libiaz',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32410,'Limanowa',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32411,'Miechow',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32412,'Myslenice',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32413,'Nowy Sacz',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32414,'Nowy Targ',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32415,'Olkusz',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32416,'Oswiecim',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32417,'Poronin',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32418,'Rabka',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32419,'Skawina',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32420,'Stary Sacz',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32421,'Sucha Beskidzka',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32422,'Tarnow',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32423,'Trzebinia',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32424,'Wadowice',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32425,'Wieliczka',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32426,'Wolbrom',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32427,'Zakopane',2873,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32428,'Blonie',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32429,'Brwinow',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32430,'Ciechanow',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32431,'Garwolin',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32432,'Gora Kalwaria',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32433,'Gostynin',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32434,'Grodzisk Mazowiecki',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32435,'Grojec',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32436,'Jozefow',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32437,'Karczew',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32438,'Kobylka',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32439,'Konstancin-Jeziorna',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32440,'Kozienice',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32441,'Legionowo',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32442,'Lomianki',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32443,'Makow Mazowiecki',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32444,'Marki',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32445,'Milanowek',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32446,'Minsk Mazowiecki',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32447,'Mlawa',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32448,'Nowy Dwor Mazowiecki',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32449,'Ostroleka',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32450,'Ostrow Mazowiecka',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32451,'Otwock',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32452,'Piaseczno',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32453,'Piastow',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32454,'Pionki',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32455,'Plock',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32456,'Plonsk',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32457,'Pruszkow',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32458,'Przasnysz',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32459,'Pultusk',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32460,'Radom',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32461,'Siedlce',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32462,'Sierpc',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32463,'Sochaczew',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32464,'Sokolow Podlaski',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32465,'Sulejowek',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32466,'Szydlowiec',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32467,'Warka',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32468,'Warszawa',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32469,'Wegrow',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32470,'Wesola',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32471,'Wolomin',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32472,'Wyszkow',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32473,'Zabki',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32474,'Zielonka',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32475,'Zyrardow',2874,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32476,'Dlugoteka',2875,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32477,'Brzeg',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32478,'Glubczyce',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32479,'Glucholazy',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32480,'Grodkow',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32481,'Kedzierzyn-Kozle',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32482,'Kluczbork',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32483,'Krapkowice',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32484,'Namyslow',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32485,'Niemodlin',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32486,'Nysa',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32487,'Olesno',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32488,'Opole',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32489,'Ozimek',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32490,'Prudnik',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32491,'Strzelce Opolskie',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32492,'Zawadzkie',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32493,'Zdzieszowice',2876,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32494,'Cmielow',2877,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32495,'Debica',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32496,'Jaroslaw',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32497,'Jaslo',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32498,'Krosno',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32499,'Lancut',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32500,'Lezajsk',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32501,'Lubaczow',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32502,'Mielec',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32503,'Nisko',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32504,'Nowa Deba',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32505,'Przemysl',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32506,'Przeworsk',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32507,'Ropczyce',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32508,'Rzeszow',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32509,'Sanok',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32510,'Stalowa Wola',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32511,'Tarnobrzeg',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32512,'Ustrzyki Dolne',2878,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32513,'Augustow',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32514,'Bialystok',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32515,'Bielsk Podlaski',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32516,'Czarna Bialostocka',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32517,'Grajewo',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32518,'Hajnowka',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32519,'Kolno',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32520,'Lapy',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32521,'Lomza',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32522,'Monki',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32523,'Siemiatycze',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32524,'Sokolka',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32525,'Suwalki',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32526,'Wysokie Mazowieckie',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32527,'Zambrow',2879,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32528,'Bogumilowice',2880,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32529,'Bytow',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32530,'Chojnice',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32531,'Czersk',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32532,'Czluchow',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32533,'Gdansk',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32534,'Gdynia',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32535,'Kartuzy',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32536,'Koscierzyna',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32537,'Kwidzyn',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32538,'Lebork',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32539,'Malbork',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32540,'Miastko',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32541,'Nowy Dwor Gdanski',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32542,'Pruszcz Gdanski',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32543,'Puck',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32544,'Reda',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32545,'Rumia',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32546,'Slupsk',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32547,'Sopot',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32548,'Starogard Gdanski',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32549,'Sztum',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32550,'Tczew',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32551,'Ustka',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32552,'Wejherowo',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32553,'Wladyslawowo',2881,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32554,'Komorniki',2882,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32555,'Steszew',2882,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32556,'Raszyn',2883,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32557,'Rymanowska',2884,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32558,'Glogow Malopolski',2885,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32559,'Bedzin',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32560,'Bielsko-Biala',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32561,'Bierun',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32562,'Blachowania',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32563,'Bytom',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32564,'Chorzow',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32565,'Cieszyn',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32566,'Czechowice-Dziedzice',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32567,'Czeladz',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32568,'Czerwionka-Leszczyny',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32569,'Czestochowa',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32570,'Dabrowa Gornicza',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32571,'Gliwice',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32572,'Jastrzebie-Zdroj',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32573,'Jaworzno',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32574,'Kalety',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32575,'Katowice',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32576,'Klobuck',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32577,'Knurow',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32578,'Laziska Gorne',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32579,'Ledziny',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32580,'Lubliniec',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32581,'Mikolow',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32582,'Myslowice',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32583,'Myszkow',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32584,'Orzesze',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32585,'Piekary Slaskie',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32586,'Poreba',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32587,'Pszczyna',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32588,'Pszow',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32589,'Pyskowice',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32590,'Raciborz',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32591,'Radlin',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32592,'Radzionkow',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32593,'Ruda Slaska',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32594,'Rybnik',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32595,'Rydultowy',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32596,'Siemianowice Slaskie',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32597,'Skoczow',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32598,'Sosnowiec',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32599,'Swietochlowice',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32600,'Tarnowskie Gory',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32601,'Tychy',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32602,'Ustron',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32603,'Wisla',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32604,'Wodzislaw Slaski',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32605,'Wojkowice',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32606,'Zabrze',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32607,'Zawiercie',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32608,'Zory',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32609,'Zywiec',2886,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32610,'Busko-Zdroj',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32611,'Jedrzejow',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32612,'Kielce',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32613,'Konskie',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32614,'Ostrowiec Swietokrzyski',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32615,'Pinczow',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32616,'Polaniec',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32617,'Sandomierz',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32618,'Skarzysko-Kamienna',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32619,'Starachowice',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32620,'Staszow',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32621,'Suchedniow',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32622,'Wloszczowa',2888,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32623,'Bartoszyce',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32624,'Biskupiec',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32625,'Braniewo',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32626,'Dobre Miasto',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32627,'Dzialdowo',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32628,'Elblag',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32629,'Elk',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32630,'Gizycko',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32631,'Goldap',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32632,'Ilawa',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32633,'Ketrzyn',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32634,'Lidzbark Warminski',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32635,'Lubawa',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32636,'Morag',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32637,'Mragowo',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32638,'Nidzica',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32639,'Nowe Miasto Lubawskie',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32640,'Olecko',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32641,'Olsztyn',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32642,'Orneta',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32643,'Ostroda',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32644,'Paslek',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32645,'Pisz',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32646,'Szczytno',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32647,'Wegorzewo',2889,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32648,'Nadarzyn',2890,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32649,'Szemud',2890,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32650,'Warsaw',2890,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32651,'Goscicino',2891,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32652,'Chodziez',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32653,'Czarnkow',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32654,'Gniezno',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32655,'Gostyn',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32656,'Grodzisk Wielkopolski',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32657,'Jarocin',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32658,'Kalisz',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32659,'Kepno',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32660,'Kolo',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32661,'Konin',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32662,'Koscian',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32663,'Krotoszyn',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32664,'Leszno',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32665,'Lubon',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32666,'Miedzychod',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32667,'Mosina',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32668,'Murowana Goslina',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32669,'Nowy Tomysl',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32670,'Oborniki',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32671,'Opalenica',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32672,'Ostrow Wielkopolski',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32673,'Ostrzeszow',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32674,'Pila',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32675,'Pleszew',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32676,'Poznan',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32677,'Rawicz',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32678,'Rogozno',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32679,'Slupca',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32680,'Srem',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32681,'Sroda Wielkopolska',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32682,'Swarzedz',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32683,'Szamotuly',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32684,'Trzcianka',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32685,'Tuliszkow',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32686,'Turek',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32687,'Wagrowiec',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32688,'Wolsztyn',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32689,'Wronki',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32690,'Wrzesnia',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32691,'Zlotow',2892,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32692,'Borowa',2893,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32693,'Barlinek',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32694,'Bialogard',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32695,'Choszczno',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32696,'Darlowo',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32697,'Debno',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32698,'Drawsko Pomorskie',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32699,'Goleniow',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32700,'Gryfice',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32701,'Gryfino',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32702,'Kamien Pomorski',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32703,'Kolobrzeg',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32704,'Koszalin',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32705,'Lobez',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32706,'Mysliborz',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32707,'Nowogard',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32708,'Polczyn-Zdroj',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32709,'Police',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32710,'Pyrzyce',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32711,'Slawno',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32712,'Stargard Szczecinski',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32713,'Swidwin',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32714,'Swinoujscie',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32715,'Szczecin',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32716,'Szczecinek',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32717,'Trzebiatow',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32718,'Walcz',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32719,'Zlocieniec',2894,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32720,'Zukowskie',2895,175,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32721,'Tramagal',2896,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32722,'Angra',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32723,'Arrifes',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32724,'Faja de Baixo',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32725,'Horta',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32726,'Lagoa',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32727,'Ponta Delgada',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32728,'Praia da Vitoria',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32729,'Rabo de Peixe',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32730,'Ribeira Grande',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32731,'Rosto do Cao',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32732,'Vila Franca do Campo',2897,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32733,'Alcacer do Sal',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32734,'Aljustrel',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32735,'Beja',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32736,'Borba',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32737,'Caia e Sao Pedro',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32738,'Campo Maior',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32739,'Castro Verde',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32740,'Cercal',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32741,'Elvas',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32742,'Estremoz',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32743,'Evora',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32744,'Ferreira do Alentejo',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32745,'Grandola',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32746,'Montemor-o-Novo',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32747,'Moura',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32748,'Odemira',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32749,'Ponte de Sor',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32750,'Portalegre',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32751,'Redondo',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32752,'Reguengos de Monsaraz',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32753,'Santiago do Cacem',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32754,'Santo Andre',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32755,'Sao Teotonio',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32756,'Serpa',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32757,'Sines',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32758,'Vendas Novas',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32759,'Vila Nova de Milfontes',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32760,'Vila Vicosa',2898,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32761,'Albufeira',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32762,'Aljezur',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32763,'Almancil',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32764,'Alvor',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32765,'Armacao de Pera',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32766,'Boliqueime',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32767,'Castro Marim',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32768,'Estombar',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32769,'Faro',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32770,'Ferreiras',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32771,'Guia',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32772,'Lagoa',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32773,'Lagos',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32774,'Loule',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32775,'Luz',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32776,'Moncarapacho',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32777,'Monchique',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32778,'Monte Gordo',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32779,'Montenegro',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32780,'Olhao',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32781,'Portimao',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32782,'Quarteira',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32783,'Santa Barbara de Nexe',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32784,'Sao Bartolomeu de Messines',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32785,'Sao Bras de Alportel',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32786,'Silves',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32787,'Tavira',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32788,'Vila Real de Santo Antonio',2899,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32789,'Fafe',2900,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32790,'Forjaes',2900,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32791,'Vianna do Castello',2900,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32792,'Abraveses',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32793,'Aguada de Cima',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32794,'Agueda',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32795,'Albergaria-A-Velha',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32796,'Alcains',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32797,'Alhadas',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32798,'Amor',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32799,'Aradas',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32800,'Arazede',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32801,'Arcos',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32802,'Arganil',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32803,'Avanca',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32804,'Aveiro',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32805,'Batalha',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32806,'Beduido',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32807,'Branca',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32808,'Buarcos',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32809,'Campo',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32810,'Cantanhede',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32811,'Caranguejeira',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32812,'Castanheira de Pera',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32813,'Castelo Branco',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32814,'Castro Daire',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32815,'Coimbra',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32816,'Condeixa-A-Nova',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32817,'Cortegaca',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32818,'Covilha',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32819,'Eixo',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32820,'Esmoriz',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32821,'Figueira da Foz',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32822,'Fundao',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32823,'Gafanha da Encarnacao',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32824,'Gafanha da Nazare',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32825,'Guarda',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32826,'Ilhavo',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32827,'Lavos',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32828,'Leiria',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32829,'Lorvao',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32830,'Lourical',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32831,'Lousa',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32832,'Maceira',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32833,'Mangualde',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32834,'Marinha Grande',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32835,'Mealhada',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32836,'Mira',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32837,'Mira de Aire',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32838,'Miranda do Corvo',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32839,'Monte Redondo',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32840,'Nelas',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32841,'Oia',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32842,'Oliveira do Bairro',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32843,'Oliveira do Hospital',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32844,'Oliveirinha',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32845,'Ovar',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32846,'Pampilhosa',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32847,'Pardilho',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32848,'Poiares',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32849,'Pombal',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32850,'Porto de Mos',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32851,'Proenca-A-Nova',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32852,'Rio de Loba',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32853,'Salreu',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32854,'Sangalhos',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32855,'Santa Catarina da Serra',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32856,'Sao Joao',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32857,'Sao Pedro do Sul',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32858,'Satao',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32859,'Seia',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32860,'Serta',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32861,'Soure',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32862,'Souto da Carpalhosa',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32863,'Tavarede',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32864,'Teixoso',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32865,'Tondela',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32866,'Tortosendo',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32867,'Vagos',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32868,'Valega',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32869,'Valongo do Vouga',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32870,'Vieira de Leiria',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32871,'Viseu',2901,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32872,'Camacha',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32873,'Camara de Lobos',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32874,'Campanario',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32875,'Canico',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32876,'Funchal',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32877,'Machico',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32878,'Ponta do Sol',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32879,'Porto Santo',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32880,'Ribeira Brava',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32881,'Santa Cruz',2907,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32882,'A Ver-o-Mar',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32883,'Adaufe',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32884,'Aguas Santas',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32885,'Agucadoura',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32886,'Alfena',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32887,'Alpendurada e Matos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32888,'Amarante',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32889,'Anta',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32890,'Antas',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32891,'Apulia',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32892,'Arcozelo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32893,'Areosa',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32894,'Argoncilhe',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32895,'Aroes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32896,'Arrifana',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32897,'Arvore',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32898,'Aves',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32899,'Avintes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32900,'Baguim do Monte',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32901,'Baltar',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32902,'Barcelos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32903,'Barrosas',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32904,'Bougado',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32905,'Braga',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32906,'Braganca',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32907,'Brito',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32908,'Caldas de Vizela',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32909,'Caldelas',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32910,'Calendario',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32911,'Campo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32912,'Candoso',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32913,'Canedo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32914,'Canelas',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32915,'Canidelo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32916,'Carvalhosa',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32917,'Casteloes de Cepeda',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32918,'Chaves',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32919,'Coronado',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32920,'Couto',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32921,'Custoias',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32922,'Darque',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32923,'Ermesinde',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32924,'Espinho',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32925,'Fafe',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32926,'Fanzeres',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32927,'Feira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32928,'Ferreira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32929,'Ferreiros',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32930,'Fiaes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32931,'Figueiro',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32932,'Foz do Sousa',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32933,'Frazao',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32934,'Freamunde',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32935,'Galegos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32936,'Gandra',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32937,'Gemunde',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32938,'Godim',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32939,'Gondomar',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32940,'Grijo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32941,'Gueifaes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32942,'Guifoes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32943,'Guimaraes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32944,'Gulpilhares',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32945,'Joane',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32946,'Jovim',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32947,'Lamego',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32948,'Lavra',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32949,'Leca da Palmeira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32950,'Leca do Bailio',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32951,'Lobao',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32952,'Lordelo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32953,'Lourosa',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32954,'Lustosa',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32955,'Macedo de Cavaleiros',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32956,'Macieira de Cambra',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32957,'Madalena',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32958,'Maia',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32959,'Margaride',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32960,'Marinhas',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32961,'Matosinhos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32962,'Meadela',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32963,'Meinedo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32964,'Milheiros',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32965,'Milheiros de Poiares',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32966,'Mirandela',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32967,'Mogadouro',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32968,'Moreira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32969,'Moreira de Conegos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32970,'Mozelos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32971,'Negrelos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32972,'Nogueira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32973,'Nogueira da Regedoura',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32974,'Olival',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32975,'Oliveira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32976,'Oliveira de Azemeis',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32977,'Oliveira do Douro',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32978,'Pacos de Brandao',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32979,'Pacos de Ferreira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32980,'Pedroso',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32981,'Pedroucos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32982,'Penafiel',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32983,'Perafita',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32984,'Perozinho',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32985,'Peso da Regua',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32986,'Ponte',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32987,'Porto',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32988,'Povoa de Lanhoso',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32989,'Povoa de Varzim',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32990,'Real',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32991,'Rebordosa',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32992,'Recarei',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32993,'Refojos de Basto',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32994,'Ribeirao',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32995,'Rio Meao',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32996,'Rio Tinto',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32997,'Ronfe',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32998,'Sande',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(32999,'Sandim',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33000,'Santa Cruz do Bispo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33001,'Santa Maria de Lamas',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33002,'Santiago da Riba-Ul',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33003,'Santo Tirso',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33004,'Sao Felix da Marinha',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33005,'Sao Joao da Madeira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33006,'Sao Joao de Ver',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33007,'Sao Mamede de Infesta',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33008,'Sao Pedro da Cova',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33009,'Sao Pedro de Casteloes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33010,'Sao Roque',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33011,'Selho',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33012,'Senhora da Hora',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33013,'Seroa',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33014,'Serzedelo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33015,'Serzedo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33016,'Silvalde',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33017,'Sobrado',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33018,'Sobreira',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33019,'Souto',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33020,'Teloes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33021,'Urgezes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33022,'Valadares',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33023,'Valbom',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33024,'Vale',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33025,'Valongo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33026,'Valpacos',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33027,'Viana do Castelo',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33028,'Vila Cha',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33029,'Vila Frescainha',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33030,'Vila Nova da Telha',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33031,'Vila Nova de Famalicao',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33032,'Vila Nova de Gaia',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33033,'Vila Praia de Ancora',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33034,'Vila Real',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33035,'Vila Verde',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33036,'Vila de Cucujaes',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33037,'Vila de Prado',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33038,'Vila do Conde',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33039,'Vilar de Andorinho',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33040,'Vilar do Paraiso',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33041,'Vilarinho',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33042,'Vilela',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33043,'Vizela',2908,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33044,'Paivas',2909,176,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33045,'Arecibo',2910,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33046,'Barceloneta',2910,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33047,'Camuy',2910,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33048,'Dorado',2910,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33049,'Isabela',2910,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33050,'Manati',2910,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33051,'Vega Alta',2910,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33052,'Vega Baja',2910,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33053,'Bayamon',2911,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33054,'Catano',2911,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33055,'Guaynabo',2911,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33056,'Levittown',2911,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33057,'Valencia',2911,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33058,'Canovanas',2912,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33059,'Carolina',2912,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33060,'Trujillo Alto',2912,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33061,'Florida',2913,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33062,'Aibonito',2914,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33063,'Arroyo',2914,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33064,'Barranquitas',2914,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33065,'Cayey',2914,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33066,'Coamo',2914,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33067,'Corozal',2914,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33068,'Guayama',2914,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33069,'Juana Diaz',2914,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33070,'Aguas Buenas',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33071,'Caguas',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33072,'Culebra',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33073,'Fajardo',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33074,'Gurabo',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33075,'Humacao',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33076,'Juncos',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33077,'Rio Grande',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33078,'Vieques',2915,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33079,'Aguada',2916,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33080,'Aguadilla',2916,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33081,'Anasco',2916,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33082,'Cabo Rojo',2916,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33083,'Hormigueros',2916,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33084,'Mayaguez',2916,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33085,'San German',2916,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33086,'San Sebastian',2916,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33087,'Adjuntas',2917,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33088,'Guanica',2917,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33089,'Ponce',2917,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33090,'Utuado',2917,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33091,'Yauco',2917,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33092,'Salinas',2918,177,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33093,'Doha',2920,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33094,'Umm Bab',2921,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33095,'ad-Dawhah',2923,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33096,'al-Ghuwayriyah',2924,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33097,'Dukhan',2925,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33098,'al-Jumayliyah',2925,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33099,'al-Khawr',2926,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33100,'Musay\'id',2927,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33101,'al-Wakrah',2927,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33102,'al-Wukayr',2927,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33103,'ar-Rayyan',2928,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33104,'ash-Shahaniyah',2928,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33105,'ar-Ruways',2929,178,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33106,'Bras-Panon',2930,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33107,'Saint-Andre',2930,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33108,'Saint-Benoit',2930,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33109,'Sainte-Rose',2930,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33110,'Salazie',2930,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33111,'La Possession',2931,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33112,'Le Port',2931,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33113,'Saint-Denis',2931,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33114,'Sainte-Marie',2931,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33115,'Sainte-Suzanne',2931,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33116,'L\'Etang-Sale',2932,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33117,'Les Aviron',2932,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33118,'Les Trois-Bassins',2932,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33119,'Saint-Leu',2932,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33120,'Saint-Paul',2932,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33121,'Cilaos',2933,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33122,'Entre-Deux',2933,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33123,'Le Tampon',2933,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33124,'Petite-Ile',2933,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33125,'Saint-Joseph',2933,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33126,'Saint-Louis',2933,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33127,'Saint-Philippe',2933,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33128,'Saint-Pierre',2933,179,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33129,'Abrud',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33130,'Aiud',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33131,'Alba Iulia',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33132,'Albac',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33133,'Almasu Mare',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33134,'Arieseni',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33135,'Avram Iancu',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33136,'Baia de Aries',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33137,'Berghin',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33138,'Bistra',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33139,'Blaj',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33140,'Blandiana',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33141,'Bucium',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33142,'Calnic',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33143,'Campeni',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33144,'Cenade',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33145,'Cergau',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33146,'Ceru-Bacainti',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33147,'Cetatea de Balta',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33148,'Ciugud',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33149,'Ciuruleasa',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33150,'Craciunelu de Jos',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33151,'Cricau',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33152,'Cugir',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33153,'Daia Romana',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33154,'Dostat',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33155,'Farau',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33156,'Galda de Jos',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33157,'Garbova',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33158,'Garda de Sus',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33159,'Hoparta',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33160,'Horea',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33161,'Ighiu',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33162,'Intregalde',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33163,'Jidvei',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33164,'Livezile',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33165,'Lopadea Noua',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33166,'Lunca Muresului',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33167,'Lupsa',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33168,'Metes',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33169,'Mihalt',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33170,'Miraslau',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33171,'Mogos',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33172,'Noslac',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33173,'Ocna Mures',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33174,'Ocolis',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33175,'Ohaba',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33176,'Pianu',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33177,'Poiana Vadului',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33178,'Ponor',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33179,'Posaga',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33180,'Radesti',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33181,'Ramet',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33182,'Rimetea',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33183,'Rosia Montana',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33184,'Rosia de Secas',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33185,'Salciua',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33186,'Salistea',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33187,'Sancel',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33188,'Santimbru',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33189,'Sasciori',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33190,'Scarisoara',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33191,'Sebes',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33192,'Sibot',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33193,'Sohodol',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33194,'Sona',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33195,'Spring',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33196,'Stremt',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33197,'Sugag',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33198,'Teius',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33199,'Unirea',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33200,'Vadu Motilor',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33201,'Valea Lunga',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33202,'Vidra',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33203,'Vintu de Jos',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33204,'Zlatna',2934,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33205,'Almas',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33206,'Apateu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33207,'Arad',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33208,'Archis',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33209,'Barsa',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33210,'Barzava',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33211,'Bata',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33212,'Beliu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33213,'Birchis',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33214,'Bocsig',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33215,'Brazii',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33216,'Buteni',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33217,'Carand',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33218,'Cermei',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33219,'Chisindia',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33220,'Chisineu Cris',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33221,'Conop',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33222,'Covasint',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33223,'Craiva',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33224,'Curtici',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33225,'Dezna',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33226,'Dieci',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33227,'Dorgos',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33228,'Fantanele',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33229,'Felnac',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33230,'Ghioroc',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33231,'Graniceri',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33232,'Gurahont',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33233,'Halmagel',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33234,'Halmagiu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33235,'Hasmas',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33236,'Ignesti',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33237,'Ineu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33238,'Iratosu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33239,'Lipova',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33240,'Livada',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33241,'Macea',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33242,'Masca',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33243,'Moneasa',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33244,'Nadlac',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33245,'Olari',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33246,'Pancota',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33247,'Paulis',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33248,'Pecica',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33249,'Peregu Mare',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33250,'Petris',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33251,'Pilu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33252,'Plescuta',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33253,'Sagu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33254,'Santana',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33255,'Savarsin',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33256,'Sebis',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33257,'Secusigiu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33258,'Seitin',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33259,'Seleus',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33260,'Semlac',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33261,'Sepreus',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33262,'Sicula',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33263,'Silindia',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33264,'Simand',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33265,'Sintea Mare',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33266,'Siria',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33267,'Sistarovat',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33268,'Socodor',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33269,'Sofronea',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33270,'Tarnova',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33271,'Taut',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33272,'Varadia de Mures',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33273,'Varfurile',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33274,'Vinga',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33275,'Vladimirescu',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33276,'Zabrani',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33277,'Zarand',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33278,'Zerind',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33279,'Zimandu Nou',2935,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33280,'Albesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33281,'Albestii-Pamanteni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33282,'Albota',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33283,'Aninoasa',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33284,'Arefu',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33285,'Babana',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33286,'Baiculesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33287,'Balilesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33288,'Barla',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33289,'Bascov',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33290,'Beleti-Negresti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33291,'Berevoesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33292,'Bogati',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33293,'Boteni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33294,'Botesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33295,'Bradu',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33296,'Bradulet',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33297,'Budeasa',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33298,'Bughea de Jos',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33299,'Buzoesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33300,'Caldararu',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33301,'Calinesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33302,'Campulung',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33303,'Cateasca',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33304,'Cepari',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33305,'Cetateni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33306,'Cicanesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33307,'Ciofrangeni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33308,'Ciomagesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33309,'Cocu',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33310,'Corbeni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33311,'Corbi',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33312,'Cosesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33313,'Costesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33314,'Cotmeana',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33315,'Cuca',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33316,'Curtea de Arges',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33317,'Dambovicioara',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33318,'Darmanesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33319,'Davidesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33320,'Dobresti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33321,'Domnesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33322,'Draganu',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33323,'Dragoslavele',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33324,'Godeni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33325,'Harsesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33326,'Hartiesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33327,'Izvoru',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33328,'Leordeni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33329,'Leresti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33330,'Lunca Corbului',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33331,'Malureni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33332,'Maracineni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33333,'Merisani',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33334,'Micesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33335,'Mihaesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33336,'Mioarele',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33337,'Mioveni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33338,'Mirosi',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33339,'Moraresti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33340,'Mosoaia',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33341,'Mozaceni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33342,'Musatesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33343,'Negrasi',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33344,'Nucsoara',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33345,'Oarja',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33346,'Pietrosani',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33347,'Pitesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33348,'Poenari',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33349,'Poiana Lacului',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33350,'Popesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33351,'Priboieni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33352,'Ratesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33353,'Recea',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33354,'Rociu',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33355,'Rucar',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33356,'Salatrucu',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33357,'Sapata',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33358,'Schitu-Golesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33359,'Slobozia',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33360,'Stalpeni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33361,'Stefan cel Mare',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33362,'Stefanesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33363,'Stoenesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33364,'Stolnici',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33365,'Suici',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33366,'Suseni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33367,'Teiu',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33368,'Tigveni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33369,'Titesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33370,'Topoloveni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33371,'Uda',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33372,'Ungheni',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33373,'Valea Danului',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33374,'Valea Iasului',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33375,'Valea Mare-Pravat',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33376,'Vedea',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33377,'Vladesti',2936,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33378,'Agas',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33379,'Ardeoani',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33380,'Asau',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33381,'Bacau',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33382,'Balcani',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33383,'Barsanesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33384,'Beresti-Bistrita',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33385,'Beresti-Tazlau',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33386,'Berzunti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33387,'Blagesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33388,'Bogdanesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33389,'Brusturoasa',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33390,'Buhoci',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33391,'Buhusi',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33392,'Caiuti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33393,'Casin',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33394,'Cleja',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33395,'Colonesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33396,'Comanesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33397,'Corbasca',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33398,'Cotofanesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33399,'Damienesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33400,'Darmanesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33401,'Dealu Morii',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33402,'Dofteana',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33403,'Faraoani',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33404,'Filipeni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33405,'Filipesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33406,'Gaiceana',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33407,'Garleni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33408,'Ghimes-Faget',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33409,'Glavanesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33410,'Gura Vaii',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33411,'Helegiu',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33412,'Hemeius',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33413,'Horgesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33414,'Huruesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33415,'Izvoru Berheciului',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33416,'Letea Veche',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33417,'Lipova',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33418,'Livezi',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33419,'Luizi-Calugara',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33420,'Magiresti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33421,'Magura',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33422,'Manastirea Casin',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33423,'Margineni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33424,'Moinesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33425,'Motoseni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33426,'Negri',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33427,'Nicolae Balcescu',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33428,'Oituz',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33429,'Oncesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33430,'Onesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33431,'Orbeni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33432,'Palanca',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33433,'Pancesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33434,'Parava',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33435,'Pargaresti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33436,'Parincea',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33437,'Parjol',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33438,'Plopana',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33439,'Podu Turcului',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33440,'Poduri',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33441,'Racaciuni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33442,'Rachitoasa',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33443,'Racova',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33444,'Rosiori',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33445,'Sanduleni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33446,'Sascut',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33447,'Saucesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33448,'Scorteni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33449,'Secuieni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33450,'Slanic-Moldova',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33451,'Solont',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33452,'Stanisesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33453,'Stefan cel Mare',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33454,'Strugari',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33455,'Tamasi',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33456,'Targu Ocna',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33457,'Targu-Trotus',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33458,'Tatarasti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33459,'Traian',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33460,'Ungureni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33461,'Urechesti',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33462,'Valea Seaca',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33463,'Vultureni',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33464,'Zemes',2937,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33465,'Abram',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33466,'Abramut',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33467,'Alesd',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33468,'Astileu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33469,'Auseu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33470,'Avram Iancu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33471,'Balc',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33472,'Batar',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33473,'Beius',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33474,'Biharia',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33475,'Boianu Mare',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33476,'Borod',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33477,'Bors',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33478,'Bratca',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33479,'Brusturi',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33480,'Budureasa',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33481,'Buduslau',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33482,'Bulz',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33483,'Buntesti',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33484,'Cabesti',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33485,'Campani',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33486,'Capalna',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33487,'Carpinet',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33488,'Cefa',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33489,'Ceica',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33490,'Cetariu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33491,'Cherechiu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33492,'Chislaz',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33493,'Ciuhoiu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33494,'Ciumeghiu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33495,'Cociuba Mare',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33496,'Copacel',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33497,'Cristioru de Jos',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33498,'Curatele',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33499,'Curtuiseni',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33500,'Derna',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33501,'Diosig',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33502,'Dobresti',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33503,'Draganesti',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33504,'Dragesti',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33505,'Finis',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33506,'Girisu de Cris',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33507,'Hidiselu de Sus',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33508,'Holod',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33509,'Husasau de Tinca',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33510,'Ineu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33511,'Lazareni',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33512,'Lazuri de Beius',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33513,'Lugasu de Jos',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33514,'Lunca',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33515,'Madaras',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33516,'Magesti',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33517,'Marghita',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33518,'Nojorid',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33519,'Nucet',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33520,'Olcea',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33521,'Oradea',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33522,'Osorheiu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33523,'Pietroasa',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33524,'Pocola',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33525,'Pomezeu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33526,'Popesti',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33527,'Rabagani',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33528,'Remetea',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33529,'Rieni',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33530,'Rosia',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33531,'Sacadat',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33532,'Sacueni',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33533,'Salacea',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33534,'Salard',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33535,'Salonta',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33536,'Sambata',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33537,'Sanmartin',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33538,'Santandrei',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33539,'Sarbi',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33540,'Simian',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33541,'Sinteu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33542,'Soimi',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33543,'Spinus',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33544,'Stei',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33545,'Suncuius',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33546,'Suplacu de Barcau',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33547,'Tarcaia',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33548,'Tarcea',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33549,'Tauteu',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33550,'Tetchea',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33551,'Tileagd',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33552,'Tinca',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33553,'Tulca',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33554,'Uileacu de Beius',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33555,'Vadu Crisului',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33556,'Valea lui Mihai',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33557,'Varciorog',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33558,'Vascau',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33559,'Viisoara',2938,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33560,'Beclean',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33561,'Bistrita',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33562,'Bistrita Bargaului',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33563,'Branistea',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33564,'Budacu de Jos',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33565,'Budesti',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33566,'Caianu Mic',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33567,'Cetate',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33568,'Chiochis',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33569,'Chiuza',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33570,'Ciceu-Giurgesti',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33571,'Cosbuc',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33572,'Dumitra',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33573,'Feldru',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33574,'Galatii Bistritei',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33575,'Ilva Mare',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33576,'Ilva Mica',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33577,'Josenii Bargaului',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33578,'Lechinta',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33579,'Lesu',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33580,'Livezile',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33581,'Lunca Ilvei',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33582,'Magura Ilvei',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33583,'Maieru',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33584,'Mariselu',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33585,'Matei',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33586,'Micestii de Campie',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33587,'Milas',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33588,'Monor',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33589,'Nasaud',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33590,'Nimigea',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33591,'Nuseni',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33592,'Parva',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33593,'Petru Rares',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33594,'Prundu Bargaului',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33595,'Rebra',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33596,'Rebrisoara',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33597,'Rodna',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33598,'Romuli',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33599,'Salva',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33600,'Sangeorz-Bai',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33601,'Sanmihaiu de Campie',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33602,'Sant',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33603,'Sieu',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33604,'Sieu-Magherus',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33605,'Sieu-Odorhei',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33606,'Sieut',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33607,'Silvasu de Campie',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33608,'Sintereag',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33609,'Spermezeu',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33610,'Tarlisua',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33611,'Teaca',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33612,'Telciu',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33613,'Tiha Bargaului',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33614,'Uriu',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33615,'Urmenis',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33616,'Zagra',2939,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33617,'Albesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33618,'Avrameni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33619,'Baluseni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33620,'Botosani',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33621,'Braesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33622,'Broscauti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33623,'Bucecea',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33624,'Calarasi',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33625,'Concesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33626,'Copalau',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33627,'Cordareni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33628,'Corlateni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33629,'Corni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33630,'Cotusca',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33631,'Cristesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33632,'Cristinesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33633,'Curtesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33634,'Dangeni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33635,'Darabani',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33636,'Dersca',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33637,'Dobarceni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33638,'Dorohoi',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33639,'Draguseni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33640,'Durnesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33641,'Flamanzi',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33642,'Frumusica',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33643,'George Enescu',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33644,'Gorbanesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33645,'Hanesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33646,'Havarna',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33647,'Hiliseu-Horia',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33648,'Hlipiceni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33649,'Hudesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33650,'Ibanesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33651,'Leorda',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33652,'Lunca',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33653,'Manoleasa',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33654,'Mihail Eminescu',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33655,'Mihaileni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33656,'Mihalaseni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33657,'Mileanca',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33658,'Mitoc',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33659,'Nicseni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33660,'Paltinis',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33661,'Pomarla',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33662,'Prajeni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33663,'Rachiti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33664,'Radauti-Prut',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33665,'Rauseni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33666,'Ripiceni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33667,'Roma',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33668,'Romanesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33669,'Santa-Maria',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33670,'Saveni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33671,'Sendriceni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33672,'Stauceni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33673,'Stefanesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33674,'Stiubieni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33675,'Suharau',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33676,'Sulita',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33677,'Todireni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33678,'Trusesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33679,'Tudora',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33680,'Ungureni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33681,'Unteni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33682,'Vaculesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33683,'Varfu Campului',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33684,'Viisoara',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33685,'Vladeni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33686,'Vlasinesti',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33687,'Vorniceni',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33688,'Vorona',2940,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33689,'Baraganul',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33690,'Bertestii de Jos',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33691,'Bordei Verde',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33692,'Braila',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33693,'Chiscani',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33694,'Ciocile',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33695,'Ciresu',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33696,'Dudesti',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33697,'Faurei',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33698,'Frecatei',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33699,'Galbenu',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33700,'Gemenele',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33701,'Gradistea',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33702,'Gropeni',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33703,'Ianca',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33704,'Insuratei',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33705,'Jirlau',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33706,'Marasu',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33707,'Maxineni',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33708,'Mircea Voda',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33709,'Movila Miresei',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33710,'Racovita',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33711,'Ramnicelu',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33712,'Romanu',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33713,'Rosiori',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33714,'Salcia Tudor',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33715,'Scortaru Nou',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33716,'Silistea',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33717,'Stancuta',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33718,'Surdila-Gaiseanca',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33719,'Surdila-Greci',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33720,'Sutesti',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33721,'Tichilesti',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33722,'Traian',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33723,'Tudor Vladimirescu',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33724,'Tufesti',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33725,'Ulmu',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33726,'Unirea',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33727,'Vadeni',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33728,'Victoria',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33729,'Visani',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33730,'Viziru',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33731,'Zavoaia',2941,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33732,'Apata',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33733,'Beclean',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33734,'Bod',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33735,'Bran',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33736,'Brasov',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33737,'Budila',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33738,'Bunesti',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33739,'Cata',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33740,'Cincu',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33741,'Codlea',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33742,'Comana',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33743,'Cristian',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33744,'Dumbravita',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33745,'Fagaras',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33746,'Feldioara',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33747,'Fundata',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33748,'Ghimbav',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33749,'Halchiu',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33750,'Harman',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33751,'Harseni',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33752,'Hoghiz',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33753,'Homorod',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33754,'Jibert',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33755,'Lisa',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33756,'Maierus',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33757,'Mandra',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33758,'Moeciu',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33759,'Ormenis',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33760,'Parau',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33761,'Poiana Marului',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33762,'Predeal',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33763,'Prejmer',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33764,'Racos',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33765,'Rasnov',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33766,'Recea',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33767,'Rupea',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33768,'Sacele',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33769,'Sanpetru',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33770,'Sercaia',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33771,'Sinca',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33772,'Soars',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33773,'Tarlungeni',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33774,'Teliu',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33775,'Ticusul',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33776,'Ucea',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33777,'Ungra',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33778,'Vama Buzaului',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33779,'Victoria',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33780,'Vistea',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33781,'Voila',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33782,'Vulcan',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33783,'Zarnesti',2942,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33784,'Bucharest',2943,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33785,'Bucuresti',2943,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33786,'Amaru',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33787,'Balaceanu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33788,'Balta Alba',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33789,'Beceni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33790,'Berca',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33791,'Bisoca',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33792,'Blajani',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33793,'Boldu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33794,'Bozioru',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33795,'Bradeanu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33796,'Braesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33797,'Breaza',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33798,'Buda',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33799,'Buzau',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33800,'Calvini',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33801,'Canesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33802,'Catina',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33803,'Cernatesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33804,'Chiliile',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33805,'Chiojdu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33806,'Cilibia',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33807,'Cislau',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33808,'Cochirleanca',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33809,'Colti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33810,'Constantin Rosetti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33811,'Costesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33812,'Cozieni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33813,'Galbinasi',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33814,'Gheraseni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33815,'Ghergheasa',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33816,'Glodeanu-Silistea',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33817,'Glodeanul Sarat',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33818,'Grebanu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33819,'Gura Teghii',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33820,'Largu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33821,'Lopatari',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33822,'Luciu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33823,'Magura',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33824,'Manzalesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33825,'Maracineni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33826,'Margaritesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33827,'Merei',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33828,'Mihailesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33829,'Movila Banului',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33830,'Murgesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33831,'Naeni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33832,'Nehoiu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33833,'Odaile',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33834,'Padina',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33835,'Panatau',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33836,'Pardosi',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33837,'Parscov',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33838,'Patarlagele',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33839,'Pietroasele',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33840,'Podgoria',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33841,'Pogoanele',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33842,'Posta Calnau',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33843,'Puiesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33844,'Racoviteni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33845,'Ramnicelu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33846,'Ramnicu Sarat',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33847,'Robeasca',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33848,'Rusetu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33849,'Sageata',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33850,'Sahateni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33851,'Sapoca',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33852,'Sarulesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33853,'Scortoasa',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33854,'Scutelnici',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33855,'Siriu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33856,'Smeeni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33857,'Stalpu',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33858,'Tintesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33859,'Tisau',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33860,'Topliceni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33861,'Ulmeni',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33862,'Vadu Pasii',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33863,'Valcelele',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33864,'Valea Ramnicului',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33865,'Valea Salciei',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33866,'Vernesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33867,'Vintila Voda',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33868,'Viperesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33869,'Zarnesti',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33870,'Ziduri',2944,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33871,'Alexandru Odobescu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33872,'Belciugatele',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33873,'Borcea',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33874,'Budesti',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33875,'Calarasi',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33876,'Cascioarele',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33877,'Chirnogi',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33878,'Chiselet',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33879,'Ciocanesti',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33880,'Curcani',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33881,'Cuza Voda',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33882,'Dichiseni',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33883,'Dor Marunt',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33884,'Dorobantu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33885,'Dragalina',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33886,'Dragos Voda',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33887,'Frasinet',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33888,'Frumusani',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33889,'Fundeni',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33890,'Fundulea',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33891,'Gradistea',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33892,'Gurbanesti',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33893,'Ileana',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33894,'Independenta',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33895,'Jegalia',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33896,'Lehliu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33897,'Lehliu-Gara',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33898,'Luica',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33899,'Lupsanu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33900,'Manastirea',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33901,'Mitreni',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33902,'Modelu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33903,'Nana',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33904,'Nicolae Balcescu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33905,'Oltenita',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33906,'Perisoru',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33907,'Plataresti',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33908,'Radovanu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33909,'Roseti',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33910,'Sarulesti',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33911,'Sohatu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33912,'Soldanu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33913,'Spantov',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33914,'Stefan Voda',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33915,'Stefan cel Mare',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33916,'Tamadau Mare',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33917,'Ulmeni',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33918,'Ulmu',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33919,'Unirea',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33920,'Valcelele',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33921,'Valea Argovei',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33922,'Vasilati',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33923,'Vlad Tepes',2945,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33924,'Anina',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33925,'Armenis',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33926,'Baile Herculane',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33927,'Bania',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33928,'Bautar',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33929,'Berliste',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33930,'Berzasca',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33931,'Berzovia',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33932,'Bocsa',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33933,'Bolvasnita',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33934,'Bozovici',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33935,'Brebu',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33936,'Brebu Nou',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33937,'Buchin',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33938,'Bucosnita',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33939,'Caransebes',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33940,'Carasova',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33941,'Carbunari',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33942,'Ciclova Romana',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33943,'Ciuchici',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33944,'Ciudanovita',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33945,'Constantin Daicoviciu',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33946,'Copacele',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33947,'Cornea',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33948,'Cornereva',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33949,'Coronini',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33950,'Dalboset',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33951,'Doclin',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33952,'Dognecea',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33953,'Domasnea',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33954,'Eftimie Murgu',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33955,'Ezeris',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33956,'Farliug',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33957,'Forotic',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33958,'Garnic',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33959,'Glimboca',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33960,'Goruia',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33961,'Gradinari',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33962,'Iablanita',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33963,'Lapusnicel',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33964,'Lapusnicu Mare',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33965,'Luncavita',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33966,'Lupac',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33967,'Marga',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33968,'Maureni',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33969,'Mehadia',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33970,'Mehadica',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33971,'Moldova Noua',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33972,'Naidas',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33973,'Obreja',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33974,'Ocna de Fier',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33975,'Oravita',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33976,'Otelu Rosu',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33977,'Paltinis',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33978,'Pojejena',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33979,'Prigor',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33980,'Racasdia',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33981,'Ramna',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33982,'Resita',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33983,'Rusca Montana',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33984,'Sacu',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33985,'Sasca Montana',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33986,'Sichevita',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33987,'Slatina-Timis',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33988,'Socol',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33989,'Sopotu Nou',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33990,'Tarnova',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33991,'Teregova',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33992,'Ticvaniu Mare',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33993,'Toplet',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33994,'Turnu Ruieni',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33995,'Valiug',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33996,'Varadia',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33997,'Vermes',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33998,'Vrani',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(33999,'Zavoi',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34000,'Zorlentu Mare',2946,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34001,'Aghiresu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34002,'Aiton',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34003,'Alunis',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34004,'Apahida',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34005,'Aschileu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34006,'Baciu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34007,'Baisoara',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34008,'Belis',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34009,'Bobalna',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34010,'Bontida',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34011,'Borsa',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34012,'Buza',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34013,'Caianu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34014,'Calarasi',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34015,'Calatele',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34016,'Camarasu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34017,'Campia Turzii',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34018,'Capusu Mare',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34019,'Caseiu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34020,'Catcau',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34021,'Catina',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34022,'Ceanu Mare',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34023,'Chinteni',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34024,'Chiuiesti',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34025,'Ciucea',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34026,'Ciurila',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34027,'Cluj-Napoca',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34028,'Cojocna',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34029,'Cornesti',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34030,'Cuzdrioara',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34031,'Dabaca',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34032,'Dej',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34033,'Feleacu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34034,'Fizesu Gherlii',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34035,'Floresti',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34036,'Frata',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34037,'Garbau',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34038,'Geaca',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34039,'Gherla',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34040,'Gilau',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34041,'Huedin',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34042,'Iara',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34043,'Iclod',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34044,'Izvoru Crisului',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34045,'Jichisu de Jos',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34046,'Jucu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34047,'Luna',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34048,'Maguri-Racatau',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34049,'Manastireni',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34050,'Margau',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34051,'Marisel',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34052,'Mica',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34053,'Mihai Viteazu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34054,'Mintiu Gherlii',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34055,'Mociu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34056,'Moldovenesti',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34057,'Palatca',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34058,'Panticeu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34059,'Petrestii de Jos',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34060,'Ploscos',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34061,'Poieni',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34062,'Rasca',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34063,'Recea Cristur',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34064,'Sacuieu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34065,'Sancraiu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34066,'Sandulesti',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34067,'Sanmartin',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34068,'Sanpaul',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34069,'Savadisla',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34070,'Sic',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34071,'Suatu',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34072,'Taga',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34073,'Tritenii de Jos',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34074,'Turda',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34075,'Tureni',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34076,'Unguras',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34077,'Vad',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34078,'Valea Ierii',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34079,'Viisoara',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34080,'Vultureni',2947,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34081,'Adamclisi',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34082,'Agigea',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34083,'Albesti',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34084,'Aliman',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34085,'Amzacea',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34086,'Baneasa',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34087,'Basarabi',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34088,'Castelu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34089,'Cerchezu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34090,'Cernavoda',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34091,'Chirnogeni',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34092,'Ciobanu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34093,'Ciocarlia',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34094,'Cobadin',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34095,'Cogealac',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34096,'Comana',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34097,'Constanta',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34098,'Corbu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34099,'Costinesti',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34100,'Crucea',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34101,'Cumpana',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34102,'Deleni',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34103,'Dobromir',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34104,'Douazeci si Trei August',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34105,'Dumbraveni',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34106,'Eforie',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34107,'Garliciu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34108,'Ghindaresti',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34109,'Harsova',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34110,'Horia',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34111,'Independenta',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34112,'Ion Corvin',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34113,'Istria',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34114,'Limanu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34115,'Lipnita',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34116,'Lumina',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34117,'Mangalia',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34118,'Medgidia',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34119,'Mereni',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34120,'Mihai Viteazu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34121,'Mihail Kogalniceanu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34122,'Mircea Voda',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34123,'Navodari',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34124,'Negru Voda',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34125,'Nicolae Balcescu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34126,'Oltina',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34127,'Ostrov',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34128,'Ovidiu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34129,'Pantelimon',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34130,'Pecineaga',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34131,'Pestera',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34132,'Poarta Alba',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34133,'Rasova',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34134,'Sacele',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34135,'Saraiu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34136,'Seimeni',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34137,'Silistea',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34138,'Targusor',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34139,'Techirghiol',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34140,'Topalu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34141,'Topraisar',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34142,'Tortoman',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34143,'Tuzla',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34144,'Valu lui Traian',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34145,'Vulturu',2948,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34146,'Aita Mare',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34147,'Baraolt',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34148,'Barcani',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34149,'Batani',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34150,'Belin',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34151,'Bodoc',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34152,'Borosneu Mare',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34153,'Bradut',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34154,'Brates',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34155,'Bretcu',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34156,'Catalina',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34157,'Cernat',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34158,'Chichis',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34159,'Comandau',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34160,'Covasna',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34161,'Dobarlau',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34162,'Ghelinta',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34163,'Ghidfalau',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34164,'Haghig',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34165,'Ilieni',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34166,'Intorsura Buzaului',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34167,'Lemnia',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34168,'Malnas',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34169,'Moacsa',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34170,'Ojdula',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34171,'Ozun',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34172,'Poian',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34173,'Reci',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34174,'Sanzieni',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34175,'Sfantu Gheorghe',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34176,'Sita Buzaului',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34177,'Targu Secuiesc',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34178,'Turia',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34179,'Valcele',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34180,'Valea Crisului',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34181,'Valea Mare',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34182,'Varghis',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34183,'Zabala',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34184,'Zagon',2949,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34185,'Aninoasa',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34186,'Baleni',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34187,'Barbuletu',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34188,'Bezdead',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34189,'Bilciuresti',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34190,'Branesti',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34191,'Branistea',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34192,'Brezoaiele',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34193,'Buciumeni',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34194,'Bucsani',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34195,'Butimanu',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34196,'Candesti',2950,180,0.00,0,'2021-04-06 01:13:49','2021-04-06 01:13:49',NULL),(34197,'Ciocanesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34198,'Cobia',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34199,'Cojasca',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34200,'Comisani',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34201,'Contesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34202,'Corbii Mari',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34203,'Cornatelu',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34204,'Cornesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34205,'Costestii din Vale',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34206,'Crangurile de Sus',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34207,'Crevedia',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34208,'Darmanesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34209,'Dobra',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34210,'Doicesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34211,'Dragodana',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34212,'Dragomiresti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34213,'Edera de Jos',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34214,'Fieni',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34215,'Finta',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34216,'Gaesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34217,'Glodeni',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34218,'Gura Foii',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34219,'Gura Ocnitei',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34220,'Gura Sutii',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34221,'Hulubesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34222,'Ion luca Caragiale',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34223,'Lucieni',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34224,'Ludesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34225,'Lunguletu',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34226,'Malu cu Flori',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34227,'Manesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34228,'Matasaru',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34229,'Mogosani',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34230,'Moreni',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34231,'Moroeni',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34232,'Morteni',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34233,'Motaeni',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34234,'Niculesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34235,'Nucet',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34236,'Ocnita',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34237,'Odobesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34238,'Petresti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34239,'Pietrosita',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34240,'Poiana',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34241,'Potlogi',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34242,'Produlesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34243,'Pucheni',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34244,'Pucioasa',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34245,'Racari',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34246,'Razvad',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34247,'Runcu',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34248,'Salcioara',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34249,'Selaru',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34250,'Slobozia Moara',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34251,'Sotanga',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34252,'Targoviste',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34253,'Tartasesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34254,'Tatarani',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34255,'Titu',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34256,'Uliesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34257,'Ulmi',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34258,'Vacaresti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34259,'Valea Lunga',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34260,'Valea Mare',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34261,'Valeni-Dambovita',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34262,'Varfuri',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34263,'Visina',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34264,'Visinesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34265,'Voinesti',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34266,'Vulcana Bai',2950,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34267,'Afumati',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34268,'Almajiu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34269,'Amarastii de Jos',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34270,'Amarastii de Sus',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34271,'Apele Vii',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34272,'Argetoaia',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34273,'Bailesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34274,'Barca',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34275,'Bechet',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34276,'Bistret',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34277,'Botosesti-Paia',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34278,'Brabova',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34279,'Bradesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34280,'Bralostita',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34281,'Bratovoesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34282,'Breasta',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34283,'Bucovat',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34284,'Bulzesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34285,'Calafat',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34286,'Calarasi',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34287,'Calopar',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34288,'Caraula',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34289,'Carpen',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34290,'Castra-Nova',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34291,'Celaru',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34292,'Ceratu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34293,'Cernatesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34294,'Cetate',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34295,'Cioroiasiu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34296,'Ciupercenii Noi',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34297,'Cosoveni',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34298,'Cotofenii din Dos',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34299,'Craiova',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34300,'Dabuleni',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34301,'Daneti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34302,'Desa',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34303,'Diosti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34304,'Dobresti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34305,'Dragotesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34306,'Dranic',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34307,'Farcasu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34308,'Filiasi',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34309,'Galicea Mare',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34310,'Gangiova',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34311,'Ghercesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34312,'Gighera',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34313,'Giubega',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34314,'Giurgita',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34315,'Gogosu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34316,'Goicea',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34317,'Goiesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34318,'Grecesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34319,'Isalnita',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34320,'Izvoare',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34321,'Leu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34322,'Lipovu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34323,'Macesu de Jos',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34324,'Macesu de Sus',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34325,'Maglavit',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34326,'Malu Mare',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34327,'Marsani',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34328,'Melinesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34329,'Mischii',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34330,'Motatei',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34331,'Murgasi',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34332,'Negoi',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34333,'Orodel',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34334,'Ostroveni',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34335,'Perisor',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34336,'Pielesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34337,'Piscu Vechi',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34338,'Plenita',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34339,'Podari',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34340,'Poiana Mare',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34341,'Predesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34342,'Radovan',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34343,'Rastu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34344,'Robanesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34345,'Sadova',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34346,'Salcuta',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34347,'Scaesti',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34348,'Seaca de Camp',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34349,'Seaca de Padure',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34350,'Secu',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34351,'Segarcea',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34352,'Silistea Crucii',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34353,'Simnicu de Sus',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34354,'Sopot',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34355,'Teasc',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34356,'Terpezita',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34357,'Teslui',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34358,'Tuglui',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34359,'Unirea',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34360,'Urzicuta',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34361,'Valea Stanciului',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34362,'Vartop',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34363,'Varvoru',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34364,'Vela',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34365,'Verbita',2951,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34366,'Balabanesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34367,'Balasesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34368,'Baleni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34369,'Baneasa',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34370,'Barcea',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34371,'Beresti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34372,'Beresti-Sat',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34373,'Brahasesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34374,'Branistea',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34375,'Buciumeni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34376,'Cavadinesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34377,'Certesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34378,'Corni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34379,'Corod',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34380,'Cosmesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34381,'Costache Negri',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34382,'Cuca',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34383,'Cudalbi',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34384,'Draganesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34385,'Draguseni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34386,'Fartanesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34387,'Foltesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34388,'Frumusita',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34389,'Fundeni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34390,'Galati',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34391,'Ghidigeni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34392,'Gohor',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34393,'Grivita',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34394,'Independenta',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34395,'Ivesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34396,'Jorasti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34397,'Liesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34398,'Mastacani',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34399,'Matca',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34400,'Movileni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34401,'Munteni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34402,'Namoloasa',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34403,'Nicoresti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34404,'Oancea',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34405,'Pechea',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34406,'Piscu',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34407,'Priponesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34408,'Rediu',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34409,'Scanteiesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34410,'Schela',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34411,'Sendreni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34412,'Slobozia-Conachi',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34413,'Smardan',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34414,'Smulti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34415,'Suceveni',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34416,'Targu Bujor',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34417,'Tecuci',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34418,'Tepu',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34419,'Tudor Vladimirescu',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34420,'Tulucesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34421,'Umbraresti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34422,'Valea Marului',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34423,'Vanatori',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34424,'Varlezi',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34425,'Vladesti',2952,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34426,'Adunatii-Copaceni',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34427,'Baneasa',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34428,'Bolintin Deal',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34429,'Bolintinu-din-Vale',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34430,'Bucsani',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34431,'Bulbucata',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34432,'Buturugeni',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34433,'Calugareni',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34434,'Clejani',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34435,'Colibasi',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34436,'Comana',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34437,'Crevedia Mare',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34438,'Daia',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34439,'Floresti-Stoenesti',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34440,'Fratesti',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34441,'Gaiseni',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34442,'Gaujani',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34443,'Ghimpati',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34444,'Giurgiu',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34445,'Gogosari',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34446,'Gostinari',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34447,'Gostinu',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34448,'Gradinari',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34449,'Greaca',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34450,'Hotarele',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34451,'Iepuresti',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34452,'Izvoarele',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34453,'Joita',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34454,'Letca Noua',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34455,'Marsa',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34456,'Mihai Bravu',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34457,'Mihailesti',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34458,'Ogrezeni',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34459,'Oinacu',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34460,'Prundu',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34461,'Putineiu',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34462,'Rasuceni',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34463,'Roata de Jos',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34464,'Schitu',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34465,'Singureni',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34466,'Slobozia',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34467,'Stanesti',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34468,'Stoenesti',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34469,'Toporu',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34470,'Ulmi',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34471,'Valea Dragului',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34472,'Vanatorii Mici',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34473,'Varasti',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34474,'Vedea',2953,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34475,'Albeni',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34476,'Alimpesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34477,'Aninoasa',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34478,'Arcani',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34479,'Baia de Fier',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34480,'Balanesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34481,'Balesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34482,'Balteni',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34483,'Barbatesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34484,'Bengesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34485,'Berlesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34486,'Bolbosi',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34487,'Borascu',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34488,'Branesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34489,'Bumbesti-Jiu',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34490,'Bumbesti-Piticu',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34491,'Bustuchin',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34492,'Calnic',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34493,'Capreni',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34494,'Catunele',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34495,'Ciuperceni',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34496,'Crasna',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34497,'Crusetu',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34498,'Danciulesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34499,'Danesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34500,'Dragotesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34501,'Dragutesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34502,'Farcasesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34503,'Glogova',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34504,'Godinesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34505,'Hurezani',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34506,'Ionesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34507,'Jupanesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34508,'Lelesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34509,'Licuriciu',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34510,'Logresti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34511,'Matasari',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34512,'Motru',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34513,'Musetesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34514,'Negomiru',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34515,'Novaci',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34516,'Pades',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34517,'Pestisani',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34518,'Plopsoru',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34519,'Polovragi',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34520,'Prigoria',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34521,'Rosia de Amaradia',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34522,'Rovinari',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34523,'Runcu',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34524,'Sacelu',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34525,'Samarinesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34526,'Saulesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34527,'Schela',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34528,'Scoarta',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34529,'Slivilesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34530,'Stanesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34531,'Stejari',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34532,'Stoina',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34533,'Tantareni',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34534,'Targu Carbunesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34535,'Targu Jiu',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34536,'Telesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34537,'Ticleni',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34538,'Tismana',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34539,'Turburea',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34540,'Turceni',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34541,'Turcinesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34542,'Urdari',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34543,'Vagiulesti',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34544,'Vladimir',2954,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34545,'Atid',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34546,'Avramesti',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34547,'Baile Tusnad',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34548,'Balan',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34549,'Bilbor',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34550,'Borsec',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34551,'Bradesti',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34552,'Capalnita',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34553,'Carta',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34554,'Ciucsangeorgiu',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34555,'Ciumani',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34556,'Corbu',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34557,'Corund',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34558,'Cristuru Secuiesc',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34559,'Danesti',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34560,'Darjiu',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34561,'Dealu',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34562,'Ditrau',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34563,'Feliceni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34564,'Frumoasa',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34565,'Galautas',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34566,'Gheorgheni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34567,'Joseni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34568,'Lazarea',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34569,'Lueta',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34570,'Lunca de Jos',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34571,'Lunca de Sus',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34572,'Lupeni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34573,'Martinis',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34574,'Meresti',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34575,'Miercurea-Ciuc',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34576,'Mihaileni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34577,'Mugeni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34578,'Ocland',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34579,'Odorheiu Secuiesc',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34580,'Pauleni-Ciuc',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34581,'Plaiesii-de-Jos',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34582,'Praid',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34583,'Remetea',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34584,'Sacel',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34585,'Sancraieni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34586,'Sandominic',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34587,'Sanmartin',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34588,'Sansimion',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34589,'Sarmas',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34590,'Secuieni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34591,'Siculeni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34592,'Simonesti',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34593,'Subcetate',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34594,'Suseni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34595,'Toplita',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34596,'Tulghes',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34597,'Tusnad',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34598,'Ulies',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34599,'Varsag',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34600,'Vlahita',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34601,'Voslobeni',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34602,'Zetea',2955,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34603,'Aninoasa',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34604,'Bacia',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34605,'Baia de Cris',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34606,'Baita',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34607,'Balsa',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34608,'Banita',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34609,'Baru',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34610,'Batrana',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34611,'Beriu',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34612,'Berthelot',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34613,'Blajeni',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34614,'Bosorod',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34615,'Brad',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34616,'Branisca',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34617,'Bretea Romana',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34618,'Buces',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34619,'Bucuresci',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34620,'Bulzesti',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34621,'Bunila',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34622,'Burjuc',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34623,'Calan',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34624,'Carjiti',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34625,'Cerbal',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34626,'Certeju de Sus',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34627,'Criscior',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34628,'Densus',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34629,'Deva',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34630,'Dobra',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34631,'Geoagiu',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34632,'Ghelari',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34633,'Gurasada',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34634,'Harau',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34635,'Hateg',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34636,'Hunedoara',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34637,'Ilia',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34638,'Lapugiu de Jos',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34639,'Lelese',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34640,'Lunca Cernii de Jos',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34641,'Luncoiu de Jos',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34642,'Lupeni',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34643,'Martinesti',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34644,'Orastie',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34645,'Orastioara de Sus',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34646,'Pestisu Mic',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34647,'Petrila',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34648,'Petrosani',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34649,'Pui',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34650,'Rachitova',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34651,'Rapoltu Mare',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34652,'Rau de Mori',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34653,'Ribita',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34654,'Romos',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34655,'Salasu de Sus',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34656,'Santamaria Orlea',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34657,'Sarmizegetusa',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34658,'Simeria',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34659,'Soimus',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34660,'Teliucu Inferior',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34661,'Tomesti',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34662,'Toplita',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34663,'Totesti',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34664,'Turdas',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34665,'Uricani',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34666,'Valisoara',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34667,'Vata de Jos',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34668,'Vetel',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34669,'Vorta',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34670,'Vulcan',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34671,'Zam',2956,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34672,'Adancata',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34673,'Albesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34674,'Alexeni',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34675,'Amara',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34676,'Andrasesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34677,'Armasesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34678,'Axintele',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34679,'Balaciu',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34680,'Barcanesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34681,'Bordusani',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34682,'Brazii',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34683,'Bucu',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34684,'Cazanesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34685,'Ciocarlia',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34686,'Ciochina',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34687,'Ciulnita',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34688,'Cocora',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34689,'Cosambesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34690,'Cosereni',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34691,'Dragoesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34692,'Dridu',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34693,'Facaeni',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34694,'Fetesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34695,'Fierbinti-Targ',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34696,'Garbovi',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34697,'Gheorghe Doja',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34698,'Gheorghe Lazar',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34699,'Giurgeni',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34700,'Grindu',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34701,'Grivita',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34702,'Ion Roata',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34703,'Jilavele',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34704,'Manasia',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34705,'Mihail Kogalniceanu',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34706,'Milosesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34707,'Movila',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34708,'Movilita',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34709,'Munteni Buzau',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34710,'Perieti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34711,'Reviga',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34712,'Salcioara',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34713,'Saveni',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34714,'Scanteia',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34715,'Sfantu Gheorghe',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34716,'Sinesti',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34717,'Slobozia',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34718,'Stelnica',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34719,'Suditi',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34720,'Tandarei',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34721,'Urziceni',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34722,'Valea Ciorii',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34723,'Valea Macrisului',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34724,'Vladeni',2957,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34725,'Alexandru Ioan Cuza',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34726,'Andrieseni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34727,'Aroneanu',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34728,'Baltati',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34729,'Barnova',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34730,'Belcesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34731,'Bivolari',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34732,'Braesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34733,'Butea',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34734,'Ceplenita',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34735,'Ciortesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34736,'Ciurea',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34737,'Coarnele Caprei',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34738,'Comarna',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34739,'Costuleni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34740,'Cotnari',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34741,'Cozmesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34742,'Cristesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34743,'Cucuteni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34744,'Dagata',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34745,'Deleni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34746,'Dobrovat',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34747,'Dolhesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34748,'Dumesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34749,'Erbiceni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34750,'Focuri',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34751,'Golaesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34752,'Gorban',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34753,'Grajduri',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34754,'Gropnita',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34755,'Grozesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34756,'Halaucesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34757,'Harlau',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34758,'Helesteni Harmaneasa',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34759,'Holboca',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34760,'Horlesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34761,'Iasi',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34762,'Ipatele',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34763,'Lespezi',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34764,'Letcani',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34765,'Lungani',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34766,'Madarjac',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34767,'Mircesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34768,'Mironeasa',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34769,'Miroslava',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34770,'Miroslovesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34771,'Mogosesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34772,'Mogosesti-Siret',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34773,'Mosna',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34774,'Motca',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34775,'Movileni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34776,'Oteleni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34777,'Pascani',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34778,'Plugari',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34779,'Podu Iloaiei',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34780,'Popesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34781,'Popricani',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34782,'Prisacani',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34783,'Probota',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34784,'Raducaneni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34785,'Rediu',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34786,'Romanesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34787,'Ruginoasa',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34788,'Scanteia',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34789,'Scheia',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34790,'Schitu-Duca',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34791,'Scobinti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34792,'Sinesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34793,'Sipote',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34794,'Siretel',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34795,'Stolniceni-Prajescu',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34796,'Strunga',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34797,'Tansa',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34798,'Targu Gangiulesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34799,'Tatarusi',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34800,'Tibana',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34801,'Tibanesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34802,'Tiganasi',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34803,'Todiresti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34804,'Tomesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34805,'Trifesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34806,'Tutora',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34807,'Ungheni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34808,'Valea Seaca',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34809,'Vanatori',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34810,'Victoria',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34811,'Vladeni',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34812,'Voinesti',2958,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34813,'Afumati',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34814,'Balotesti',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34815,'Berceni',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34816,'Bragadiru',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34817,'Branesti',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34818,'Buftea',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34819,'Cernica',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34820,'Chiajna',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34821,'Chitila',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34822,'Ciolpani',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34823,'Ciorogarla',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34824,'Clinceni',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34825,'Corbeanca',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34826,'Cornetu',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34827,'Darasti-Ilfov',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34828,'Dascalu',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34829,'Dobroesti',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34830,'Domnesti',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34831,'Dragomiresti-Vale',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34832,'Ganeasa',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34833,'Glina',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34834,'Gradistea',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34835,'Gruiu',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34836,'Jilava',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34837,'Magurele',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34838,'Moara Vlasiei',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34839,'Mogosoaia',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34840,'Nuci',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34841,'Otopeni',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34842,'Pantelimon',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34843,'Peris',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34844,'Petrachioaia',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34845,'Popesti-Leordeni',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34846,'Prim Decembrie',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34847,'Snagov',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34848,'Stefanestii de Jos',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34849,'Tunari',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34850,'Vidra',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34851,'Voluntari',2959,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34852,'Ardusat',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34853,'Arinis',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34854,'Asuaju de Sus',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34855,'Baia Mare',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34856,'Baia-Sprie',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34857,'Baita de sub Codru',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34858,'Baiut',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34859,'Barsana',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34860,'Basesti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34861,'Bicaz',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34862,'Bistra',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34863,'Bocicoiu Mare',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34864,'Bogdan Voda',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34865,'Boiu Mare',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34866,'Borsa',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34867,'Botiza',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34868,'Budesti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34869,'Calinesti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34870,'Campulung la Tisa',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34871,'Cavnic',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34872,'Cernesti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34873,'Cicarlau',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34874,'Copalnic Manastur',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34875,'Coroieni',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34876,'Cupseni',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34877,'Desesti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34878,'Dragomiresti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34879,'Dumbravita',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34880,'Farcasa',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34881,'Giulesti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34882,'Grosi',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34883,'Ieud',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34884,'Lapus',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34885,'Leordina',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34886,'Miresu Mare',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34887,'Moisei',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34888,'Oarta de Jos',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34889,'Ocna Sugatag',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34890,'Petrova',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34891,'Poienile Izei',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34892,'Poienile de sub Munte',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34893,'Recea',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34894,'Remetea Chioarului',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34895,'Remeti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34896,'Repedea',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34897,'Rona de Jos',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34898,'Rona de Sus',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34899,'Rozavlea',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34900,'Ruscova',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34901,'Sacalaseni',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34902,'Sacel',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34903,'Salistea de Sus',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34904,'Salsig',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34905,'Sapanta',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34906,'Sarasau',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34907,'Sasar',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34908,'Satulung',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34909,'Seini',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34910,'Sighetu Marmatiei',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34911,'Sisesti',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34912,'Somcuta Mare',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34913,'Stramtura',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34914,'Suciu de Sus',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34915,'Targu-Lapus',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34916,'Tautii Margheraus',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34917,'Ulmeni',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34918,'Vadu Izei',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34919,'Valea Chioarului',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34920,'Vima Mica',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34921,'Viseu de Jos',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34922,'Viseu de Sus',2960,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34923,'Baclesu',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34924,'Baia de Arama',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34925,'Bala',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34926,'Balacita',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34927,'Balta',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34928,'Balvanesti',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34929,'Breznita Ocol',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34930,'Breznita-Motru',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34931,'Brosteni',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34932,'Burila Mare',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34933,'Butoiesti',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34934,'Cazanesti',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34935,'Ciresu',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34936,'Corcova',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34937,'Corlatel',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34938,'Cujmir',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34939,'Darvari',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34940,'Devesel',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34941,'Drobeta-Turnu Severin',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34942,'Dubova',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34943,'Dumbrava',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34944,'Eselnita',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34945,'Floresti',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34946,'Garla Mare',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34947,'Godeanu',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34948,'Gogosu',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34949,'Greci',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34950,'Grozesti',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34951,'Gruia',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34952,'Hinova',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34953,'Husnicioara',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34954,'Ilovat',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34955,'Ilovita',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34956,'Isverna',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34957,'Izvoru Barzii',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34958,'Jiana',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34959,'Livezile',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34960,'Malovat',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34961,'Obarsia Noua',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34962,'Obarsia-Closani',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34963,'Oprisor',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34964,'Orsova',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34965,'Padina',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34966,'Patulele',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34967,'Podeni',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34968,'Ponoarele',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34969,'Poroina Mare',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34970,'Pristol',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34971,'Prunisor',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34972,'Punghina',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34973,'Rogova',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34974,'Salcia',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34975,'Simian',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34976,'Sisesti',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34977,'Sovarna',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34978,'Stangaceaua',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34979,'Strehaia',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34980,'Svinita',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34981,'Tamna',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34982,'Vanatori',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34983,'Vanju Mare',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34984,'Vanjulet',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34985,'Vladaia',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34986,'Voloiac',2961,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34987,'Acatari',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34988,'Adamus',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34989,'Albesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34990,'Alunis',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34991,'Apold',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34992,'Atintis',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34993,'Bagaciu',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34994,'Bahnea',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34995,'Bala',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34996,'Balauseri',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34997,'Band',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34998,'Batos',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(34999,'Beica de Jos',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35000,'Bichis',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35001,'Bogata',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35002,'Brancovenesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35003,'Breaza',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35004,'Ceuasul-de Campie',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35005,'Chetani',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35006,'Chiheru de Jos',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35007,'Coroisanmartin',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35008,'Cozma',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35009,'Craciunesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35010,'Craiesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35011,'Cristesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35012,'Cucerdea',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35013,'Cuci',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35014,'Danes',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35015,'Deda',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35016,'Eremitu',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35017,'Ernei',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35018,'Fantanele',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35019,'Faragau',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35020,'Galesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35021,'Ganesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35022,'Gheorghe Doja',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35023,'Ghindari',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35024,'Glodeni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35025,'Gornesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35026,'Grebenisu de Campie',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35027,'Gurghiu',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35028,'Hodac',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35029,'Hodosa',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35030,'Ibanesti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35031,'Iclanzel',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35032,'Ideciu de Jos',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35033,'Iernut',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35034,'Livezeni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35035,'Ludus',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35036,'Lunca',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35037,'Lunca Bradului',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35038,'Magherani',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35039,'Mica',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35040,'Miercurea Nirajului',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35041,'Mihesu de Campie',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35042,'Nades',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35043,'Neaua',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35044,'Ogra',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35045,'Panet',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35046,'Papiu Ilarian',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35047,'Pasareni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35048,'Petelea',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35049,'Pogaceaua',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35050,'Raciu',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35051,'Rastolita',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35052,'Reghin',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35053,'Rusii Munti',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35054,'Sancraiul-de-Mures',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35055,'Sangeorg-de Mures',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35056,'Sangeorgiu-de-Padure',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35057,'Sanger',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35058,'Sanpaul',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35059,'Sanpetru-de-Campie',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35060,'Santana-de-Mures',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35061,'Sarmasu',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35062,'Saschiz',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35063,'Saulia',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35064,'Sighisoara',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35065,'Sincai',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35066,'Solovastru',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35067,'Sovata',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35068,'Stanceni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35069,'Suplac',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35070,'Suseni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35071,'Targu-Mures',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35072,'Tarnaveni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35073,'Taureni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35074,'Ungheni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35075,'Valea Larga',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35076,'Vanatori',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35077,'Vargata',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35078,'Vatava',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35079,'Vetca',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35080,'Viisoara',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35081,'Voivodeni',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35082,'Zagar',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35083,'Zau de Campie',2962,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35084,'Agapia',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35085,'Bahna',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35086,'Baltatesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35087,'Bara',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35088,'Bargaoani',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35089,'Bicaz',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35090,'Bicaz Chei',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35091,'Bicazu Ardelean',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35092,'Bodesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35093,'Borca',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35094,'Borlesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35095,'Botesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35096,'Bozieni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35097,'Brusturi-Draganesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35098,'Candesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35099,'Ceahlau',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35100,'Cordun',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35101,'Costisa',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35102,'Cracaoani',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35103,'Damuc',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35104,'Dobreni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35105,'Doljesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35106,'Dragomiresti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35107,'Dulcesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35108,'Dumbrava Rosie',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35109,'Farcasa',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35110,'Faurei',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35111,'Garcina',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35112,'Gheraesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35113,'Girov',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35114,'Grinties',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35115,'Grumazesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35116,'Hangu',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35117,'Horia',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35118,'Icusesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35119,'Ion Creanga',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35120,'Margineni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35121,'Moldoveni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35122,'Oniceni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35123,'Pangarati',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35124,'Pastraveni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35125,'Petricani',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35126,'Piatra Neamt',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35127,'Piatra Soimului',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35128,'Pipirig',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35129,'Podoleni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35130,'Poiana Teiului',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35131,'Poienari',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35132,'Raucesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35133,'Razboieni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35134,'Rediu',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35135,'Roman',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35136,'Romani',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35137,'Roznov',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35138,'Sabaoani',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35139,'Sagna',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35140,'Savinesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35141,'Secuieni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35142,'Stanita',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35143,'Stefan cel Mare',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35144,'Tamaseni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35145,'Tarcau',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35146,'Targu-Neamt',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35147,'Tasca',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35148,'Tazlau',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35149,'Tibucani',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35150,'Timisesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35151,'Trifesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35152,'Tupilati',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35153,'Urecheni',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35154,'Valea Ursului',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35155,'Vanatori-Neamt',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35156,'Viisoara',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35157,'Zanesti',2963,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35158,'Babiciu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35159,'Baldovinesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35160,'Bals',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35161,'Barasti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35162,'Barza',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35163,'Bobicesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35164,'Brancoveni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35165,'Brastavatu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35166,'Brebeni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35167,'Bucinisu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35168,'Caracal',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35169,'Carlogani',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35170,'Cezieni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35171,'Cilieni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35172,'Colonesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35173,'Corabia',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35174,'Corbu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35175,'Coteana',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35176,'Crampoaia',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35177,'Cungrea',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35178,'Curtisoara',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35179,'Daneasa',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35180,'Deveselu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35181,'Dobretu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35182,'Dobrosloveni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35183,'Dobroteasa',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35184,'Dobrun',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35185,'Draganesti-Olt',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35186,'Draghiceni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35187,'Fagetelu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35188,'Falcoiu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35189,'Farcasele',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35190,'Ganeasa',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35191,'Garcovu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35192,'Giuvarasti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35193,'Gostavatu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35194,'Gradinari',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35195,'Grojdibodu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35196,'Ianca',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35197,'Iancu Jianu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35198,'Icoana',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35199,'Izbiceni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35200,'Izvoarele',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35201,'Leleasca',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35202,'Maruntei',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35203,'Mihaesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35204,'Milcov',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35205,'Morunglav',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35206,'Movileni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35207,'Nicolae Titulescu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35208,'Obarsia',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35209,'Oboga',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35210,'Oporelu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35211,'Optasi',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35212,'Orlea',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35213,'Osica de Sus',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35214,'Parscoveni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35215,'Perieti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35216,'Piatra Olt',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35217,'Plesoiu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35218,'Poboru',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35219,'Potcoava',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35220,'Priseaca',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35221,'Radomiresti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35222,'Redea',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35223,'Rotunda',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35224,'Rusanesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35225,'Samburesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35226,'Scarisoara',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35227,'Schitu',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35228,'Scornicesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35229,'Seaca',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35230,'Serbanesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35231,'Slatina',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35232,'Slatioara',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35233,'Spineni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35234,'Sprancenata',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35235,'Stefan cel Mare',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35236,'Stoenesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35237,'Stoicanesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35238,'Strejesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35239,'Studina',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35240,'Tatulesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35241,'Teslui',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35242,'Tia Mare',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35243,'Topana',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35244,'Traian',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35245,'Tufeni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35246,'Urzica',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35247,'Vadastra',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35248,'Vadastrita',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35249,'Valcele',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35250,'Valea Mare',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35251,'Valeni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35252,'Verguleasa',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35253,'Visina',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35254,'Vitomiresti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35255,'Vladila',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35256,'Voineasa',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35257,'Vulpeni',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35258,'Vulturesti',2964,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35259,'Adunati',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35260,'Albesti-Paleologu',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35261,'Alunis',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35262,'Apostolache',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35263,'Aricestii-Rahtivani',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35264,'Aricestii-Zeletin',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35265,'Azuga',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35266,'Baba Ana',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35267,'Baicoi',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35268,'Balta Doamnei',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35269,'Baltesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35270,'Banesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35271,'Barcanesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35272,'Berceni',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35273,'Bertea',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35274,'Blejoi',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35275,'Boldesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35276,'Boldesti-Scaeni',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35277,'Brazi',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35278,'Breaza',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35279,'Brebu',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35280,'Bucov',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35281,'Busteni',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35282,'Calugareni',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35283,'Campina',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35284,'Carbunesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35285,'Ceptura',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35286,'Cerasu',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35287,'Chiojdeanca',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35288,'Ciorani',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35289,'Cocorastii-Misli',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35290,'Colceag',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35291,'Comarnic',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35292,'Cornu',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35293,'Cosminele',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35294,'Doftana',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35295,'Draganesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35296,'Drajna',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35297,'Dumbrava',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35298,'Dumbravesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35299,'Fantanele',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35300,'Filipestii de Padure',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35301,'Filipestii de Targ',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35302,'Floresti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35303,'Fulga',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35304,'Gherghita',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35305,'Gorgota',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35306,'Gornet',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35307,'Gornet-Cricov',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35308,'Gura Vadului',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35309,'Gura Vitioarei',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35310,'Iordacheanu',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35311,'Izvoarele',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35312,'Jugureni',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35313,'Lapos',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35314,'Lipanesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35315,'Magurele',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35316,'Magureni',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35317,'Maneciu',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35318,'Manesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35319,'Mizil',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35320,'Pacureti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35321,'Paulesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35322,'Ploiesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35323,'Plopeni',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35324,'Plopu',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35325,'Podenii Noi',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35326,'Poenarii-Burchi',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35327,'Poiana Campina',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35328,'Posesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35329,'Predeal-Sarari',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35330,'Provita de Jos',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35331,'Provita de Sus',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35332,'Puchenii Mari',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35333,'Rafov',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35334,'Salcia',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35335,'Salciile',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35336,'Sangeru',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35337,'Scorteni',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35338,'Secaria',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35339,'Sinaia',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35340,'Sirna',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35341,'Slanic',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35342,'Soimari',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35343,'Sotrile',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35344,'Starchiojd',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35345,'Stefesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35346,'Surani',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35347,'Talea',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35348,'Targsorul-Vechi',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35349,'Tataru',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35350,'Teisani',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35351,'Telega',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35352,'Tinosu',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35353,'Tomsani',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35354,'Urlati',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35355,'Valcanesti',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35356,'Valea Calugareasca',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35357,'Valenii de Munte',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35358,'Varbilau',2965,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35359,'Agrij',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35360,'Almasu',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35361,'Babeni',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35362,'Balan',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35363,'Banisor',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35364,'Benesat',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35365,'Bobota',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35366,'Bocsa',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35367,'Buciumi',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35368,'Camar',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35369,'Carastelec',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35370,'Cehu Silvaniei',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35371,'Chiesd',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35372,'Cizer',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35373,'Coseiu',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35374,'Crasna',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35375,'Creaca',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35376,'Criseni',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35377,'Cristolt',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35378,'Cuzaplac',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35379,'Dobrin',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35380,'Dragu',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35381,'Fildu de Jos',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35382,'Galgau',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35383,'Garbou',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35384,'Halmasd',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35385,'Hereclean',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35386,'Hida',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35387,'Horoatu Crasnei',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35388,'Ileanda',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35389,'Ip',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35390,'Jibou',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35391,'Letca',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35392,'Lozna',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35393,'Maeriste',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35394,'Marca',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35395,'Mesesenii de Jos',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35396,'Mirsid',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35397,'Napradea',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35398,'Nusfalau',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35399,'Periceiu',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35400,'Plopis',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35401,'Poiana Blenchii',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35402,'Romanasi',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35403,'Rus',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35404,'Sag',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35405,'Salatig',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35406,'Samsud',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35407,'Sanmihaiul-Almasului',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35408,'Sarmasag',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35409,'Simleu Silvaniei',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35410,'Somes-Odorhei',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35411,'Surduc',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35412,'Treznea',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35413,'Valcau de Jos',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35414,'Varsolt',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35415,'Zalau',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35416,'Zalha',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35417,'Zimbor',2966,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35418,'Agnita',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35419,'Altina',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35420,'Apoldu de Jos',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35421,'Arpasu de Jos',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35422,'Atel',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35423,'Avrig',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35424,'Axente Sever',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35425,'Barghis',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35426,'Bazna',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35427,'Biertan',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35428,'Blajel',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35429,'Bradeni',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35430,'Brateiu',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35431,'Bruiu',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35432,'Carta',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35433,'Cartisoara',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35434,'Chirpar',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35435,'Cisnadie',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35436,'Copsa Mica',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35437,'Cristian',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35438,'Darlos',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35439,'Dumbraveni',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35440,'Gura Raului',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35441,'Hoghilag',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35442,'Iacobeni',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35443,'Jina',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35444,'Laslea',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35445,'Loamnes',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35446,'Ludos',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35447,'Marpod',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35448,'Medias',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35449,'Merghindeal',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35450,'Micasasa',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35451,'Miercurea Sibiului',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35452,'Mihaileni',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35453,'Mosna',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35454,'Nocrich',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35455,'Ocna Sibiului',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35456,'Orlat',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35457,'Pauca',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35458,'Poiana Sibiului',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35459,'Poplaca',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35460,'Porumbacu de Jos',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35461,'Racovita',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35462,'Rasinari',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35463,'Rau Sadului',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35464,'Rosia',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35465,'Sadu',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35466,'Saliste',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35467,'Seica Mare',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35468,'Seica Mica',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35469,'Selimbar',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35470,'Sibiu',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35471,'Slimnic',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35472,'Sura Mare',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35473,'Sura Mica',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35474,'Talmaciu',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35475,'Tarnava',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35476,'Tilisca',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35477,'Turnu Rosu',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35478,'Valea Viilor',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35479,'Vurpar',2968,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35480,'Sondelor',2969,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35481,'Adancata',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35482,'Arbore',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35483,'Baia',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35484,'Balcauti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35485,'Bilca',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35486,'Bogdanesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35487,'Boroaia',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35488,'Bosanci',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35489,'Botosana',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35490,'Breaza',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35491,'Brodina',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35492,'Brosteni',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35493,'Bunesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35494,'Cacica',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35495,'Cajvana',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35496,'Calafindesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35497,'Campulung Moldovenesc',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35498,'Carlibaba',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35499,'Ciprian Porumbescu',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35500,'Cornu Luncii',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35501,'Crucea',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35502,'Darmanesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35503,'Dolhasca',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35504,'Dolhesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35505,'Dorna',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35506,'Dorna Candrenilor',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35507,'Dornesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35508,'Dragoesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35509,'Draguseni',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35510,'Dumbraveni',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35511,'Falticeni',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35512,'Fantanele',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35513,'Forasti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35514,'Frasin',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35515,'Fratautii Noi',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35516,'Fratautii Vechi',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35517,'Frumosu',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35518,'Fundu Moldovei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35519,'Galanesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35520,'Gramesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35521,'Granicesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35522,'Gura Humorului',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35523,'Horodniceni',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35524,'Horodnicu',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35525,'Iacobeni',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35526,'Ipotesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35527,'Izvoarele Sucevei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35528,'Liteni',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35529,'Malini',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35530,'Manastirea Homorului',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35531,'Marginea',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35532,'Milisauti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35533,'Mitocu Dragomirnei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35534,'Moara',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35535,'Moldova Sulita',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35536,'Moldovita',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35537,'Musenita',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35538,'Ostra',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35539,'Paltinoasa',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35540,'Panaci',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35541,'Partestii de Jos',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35542,'Patrauti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35543,'Poiana Stampei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35544,'Pojorata',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35545,'Preutesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35546,'Putna',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35547,'Radaseni',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35548,'Radauti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35549,'Rasca',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35550,'Sadova',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35551,'Salcea',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35552,'Saru Dornei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35553,'Satu Mare',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35554,'Scheia',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35555,'Siminicea',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35556,'Siret',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35557,'Slatina',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35558,'Solca',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35559,'Straja',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35560,'Stroiesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35561,'Stulpicani',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35562,'Suceava',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35563,'Sucevita',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35564,'Todiresti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35565,'Udesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35566,'Ulma',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35567,'Vadu Moldovei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35568,'Valea Moldovei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35569,'Vama',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35570,'Vatra Dornei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35571,'Vatra Moldovitei',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35572,'Veresti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35573,'Vicovu de Jos',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35574,'Vicovu de Sus',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35575,'Volovat',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35576,'Vulturesti',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35577,'Zamostea',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35578,'Zvoristea',2970,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35579,'Alexandria',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35580,'Babaita',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35581,'Balaci',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35582,'Blejesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35583,'Bogdana',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35584,'Botoroaga',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35585,'Bragadiru',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35586,'Branceni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35587,'Bujoreni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35588,'Bujoru',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35589,'Buzescu',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35590,'Calinesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35591,'Calmatuiu',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35592,'Cervenia',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35593,'Ciolanesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35594,'Ciuperceni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35595,'Contesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35596,'Cosmesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35597,'Crangeni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35598,'Crangu',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35599,'Crevenicu',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35600,'Didesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35601,'Dobrotesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35602,'Dracsenei',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35603,'Draganesti de Vede',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35604,'Draganesti-Vlasca',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35605,'Frumoasa',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35606,'Furculesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35607,'Galateni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35608,'Gratia',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35609,'Islaz',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35610,'Izvoarele',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35611,'Lisa',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35612,'Lita',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35613,'Lunca',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35614,'Magura',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35615,'Maldaeni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35616,'Marzanesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35617,'Mavrodin',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35618,'Mereni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35619,'Mosteni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35620,'Nanov',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35621,'Nasturelu',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35622,'Necsesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35623,'Olteni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35624,'Orbeasca',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35625,'Peretu',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35626,'Piatra',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35627,'Pietrosani',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35628,'Plopii Slavitesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35629,'Plosca',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35630,'Poeni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35631,'Poroschia',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35632,'Putineiu',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35633,'Radoiesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35634,'Rasmiresti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35635,'Rosiori de Vede',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35636,'Saceni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35637,'Salcia',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35638,'Sarbeni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35639,'Scrioastea',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35640,'Scurtu Mare',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35641,'Seaca',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35642,'Segarcea Vale',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35643,'Sfintesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35644,'Silistea',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35645,'Silistea-Gumesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35646,'Slobozia-Mandra',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35647,'Smardioasa',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35648,'Stejaru',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35649,'Storobaneasa',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35650,'Suhaia',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35651,'Talpa',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35652,'Tatarastii de Jos',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35653,'Tatarastii de Sus',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35654,'Tiganesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35655,'Traian',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35656,'Trivalea-Mosteni',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35657,'Troianul',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35658,'Turnu Magurele',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35659,'Vartoapele-de-Jos',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35660,'Vedea',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35661,'Videle',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35662,'Viisoara',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35663,'Vitanesti',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35664,'Zambreasca',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35665,'Zimnicea',2971,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35666,'Balint',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35667,'Banloc',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35668,'Bara',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35669,'Barna',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35670,'Beba Veche',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35671,'Becicherecu Mic',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35672,'Belint',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35673,'Bethausen',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35674,'Biled',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35675,'Bogda',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35676,'Boldur',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35677,'Brestovat',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35678,'Buzias',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35679,'Carpinis',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35680,'Cenad',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35681,'Cenei',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35682,'Cheveresu Mare',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35683,'Ciacova',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35684,'Comlosu Mare',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35685,'Costeiu',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35686,'Criciova',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35687,'Curtea',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35688,'Darova',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35689,'Denta',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35690,'Deta',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35691,'Dudestii Vechi',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35692,'Dumbrava',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35693,'Dumbravita',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35694,'Faget',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35695,'Fardea',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35696,'Foeni',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35697,'Gataia',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35698,'Gavojdia',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35699,'Ghiroda',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35700,'Ghizela',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35701,'Giarmata',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35702,'Giera',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35703,'Giroc',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35704,'Giulvaz',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35705,'Jamu Mare',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35706,'Jebel',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35707,'Jimbolia',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35708,'Lenauheim',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35709,'Liebling',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35710,'Lovrin',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35711,'Lugoj',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35712,'Manastiur',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35713,'Margina',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35714,'Masloc',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35715,'Moravita',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35716,'Mosnita Noua',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35717,'Nadrag',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35718,'Nitchidorf',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35719,'Ohaba Lunga',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35720,'Ortisoara',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35721,'Peciu Nou',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35722,'Periam',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35723,'Pietroasa',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35724,'Pischia',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35725,'Racovita',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35726,'Recas',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35727,'Remetea Mare',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35728,'Sacalaz',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35729,'Sacosu Turcesc',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35730,'Sag',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35731,'Sanandrei',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35732,'Sanmihaiu Roman',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35733,'Sannicolaul Mare',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35734,'Sanpetrul-Mare',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35735,'Satchinez',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35736,'Secas',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35737,'Stiuca',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35738,'Teremia Mare',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35739,'Timisoara',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35740,'Tomesti',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35741,'Topolovatu Mare',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35742,'Tormac',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35743,'Traian Vuia',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35744,'Uivar',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35745,'Varias',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35746,'Victor Vlad Delamarina',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35747,'Voiteg',2972,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35748,'Babadag',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35749,'Baia',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35750,'Beidaud',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35751,'Carcaliu',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35752,'Casimcea',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35753,'Ceamurlia de Jos',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35754,'Ceatalchioi',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35755,'Cerna',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35756,'Chilia Veche',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35757,'Ciucurova',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35758,'Constantin Rosetti',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35759,'Crisan',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35760,'Daeni',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35761,'Dorobantu',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35762,'Frecatei',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35763,'Greci',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35764,'Grindu',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35765,'Hamcearca',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35766,'Horia',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35767,'Ion Bratianu',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35768,'Isaccea',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35769,'Izvoarele',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35770,'Jijila',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35771,'Jurilovca',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35772,'Luncavita',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35773,'Macin',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35774,'Mahmudia',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35775,'Malnas',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35776,'Mihai Bravu',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35777,'Mihail Kogalniceanu',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35778,'Murighiol',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35779,'Nalbant',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35780,'Niculitel',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35781,'Nufaru',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35782,'Ostrov',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35783,'Pardina',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35784,'Peceneaga',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35785,'Sarichioi',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35786,'Sfantu Gheorghe',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35787,'Slava Cercheza',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35788,'Smardan',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35789,'Somova',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35790,'Stejaru',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35791,'Sulina',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35792,'Topolog',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35793,'Tulcea',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35794,'Turcoaia',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35795,'Valea Nucarilor',2973,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35796,'Alunu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35797,'Amarasti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35798,'Babeni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35799,'Baile Govora',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35800,'Baile Olanesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35801,'Balcesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35802,'Barbatesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35803,'Berbesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35804,'Berislavesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35805,'Boisoara',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35806,'Brezoi',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35807,'Budesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35808,'Bujoreni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35809,'Bunesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35810,'Caineni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35811,'Calimanesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35812,'Cernisoara',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35813,'Copaceni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35814,'Costesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35815,'Creteni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35816,'Daesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35817,'Danicei',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35818,'Dragasani',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35819,'Dragoesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35820,'Fartatesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35821,'Fauresti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35822,'Francesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35823,'Galicea',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35824,'Ghioroiu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35825,'Glavile',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35826,'Golesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35827,'Gradistea',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35828,'Gusoeni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35829,'Horezu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35830,'Ionesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35831,'Ladesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35832,'Lalosu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35833,'Lapusata',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35834,'Livezi',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35835,'Lungesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35836,'Maciuca',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35837,'Madulari',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35838,'Malaia',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35839,'Maldaresti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35840,'Mateesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35841,'Mihaesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35842,'Milcoiu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35843,'Muereasca',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35844,'Nicolae Balcescu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35845,'Ocnele Mari',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35846,'Olanu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35847,'Orlesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35848,'Otesani',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35849,'Pausesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35850,'Pausesti-Maglasi',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35851,'Perisani',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35852,'Pesceana',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35853,'Pietrari',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35854,'Popesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35855,'Prundeni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35856,'Racovita',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35857,'Ramnicu Valcea',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35858,'Roesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35859,'Rosiile',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35860,'Runcu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35861,'Salatrucel',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35862,'Scundu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35863,'Sinesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35864,'Sirineasa',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35865,'Slatioara',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35866,'Stanesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35867,'Stefanesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35868,'Stoenesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35869,'Stoilesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35870,'Stroesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35871,'Susani',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35872,'Sutesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35873,'Tetoiu',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35874,'Tomsani',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35875,'Vaideeni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35876,'Valea Mare',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35877,'Vladesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35878,'Voicesti',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35879,'Voineasa',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35880,'Zatreni',2974,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35881,'Albesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35882,'Alexandru Vlahuta',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35883,'Arsura',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35884,'Bacani',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35885,'Bacesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35886,'Balteni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35887,'Banca',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35888,'Barlad',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35889,'Berezeni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35890,'Blagesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35891,'Bogdana',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35892,'Bogdanesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35893,'Bogdanita',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35894,'Botesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35895,'Bunesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35896,'Codaesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35897,'Coroiesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35898,'Costesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35899,'Cretesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35900,'Danesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35901,'Deleni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35902,'Delesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35903,'Dimitrie Cantemir',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35904,'Dragomiresti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35905,'Dranceni Sat',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35906,'Duda',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35907,'Dumesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35908,'Epureni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35909,'Falciu',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35910,'Gagesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35911,'Garceni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35912,'Gherghesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35913,'Grivita',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35914,'Hoceni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35915,'Husi',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35916,'Iana',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35917,'Ivanesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35918,'Ivesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35919,'Laza',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35920,'Lipovat',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35921,'Lunca Banului',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35922,'Malusteni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35923,'Miclesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35924,'Muntenii de Jos',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35925,'Murgeni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35926,'Negresti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35927,'Oltenesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35928,'Osesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35929,'Padureni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35930,'Perieni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35931,'Pogana',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35932,'Poienesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35933,'Puiesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35934,'Pungesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35935,'Rebricea',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35936,'Rosiesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35937,'Solesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35938,'Stanilesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35939,'Stefan cel Mare',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35940,'Suletea',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35941,'Tacuta',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35942,'Tanacu',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35943,'Tatarani',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35944,'Todiresti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35945,'Tutova',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35946,'Valeni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35947,'Vaslui',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35948,'Vetrisoaia',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35949,'Viisoara',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35950,'Vinderei',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35951,'Voinesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35952,'Vulturesti',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35953,'Vutcani',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35954,'Zapodeni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35955,'Zorleni',2975,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35956,'Adjud',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35957,'Andreiasu de Jos',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35958,'Balesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35959,'Barsesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35960,'Boghesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35961,'Bolotesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35962,'Bordesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35963,'Brosteni',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35964,'Campineanca',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35965,'Campuri',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35966,'Carligele',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35967,'Chiojdeni',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35968,'Ciorasti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35969,'Corbita',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35970,'Cotesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35971,'Dumbraveni',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35972,'Dumitresti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35973,'Fitionesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35974,'Focsani',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35975,'Garoafa',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35976,'Golesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35977,'Gugesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35978,'Gura Calitei',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35979,'Homocea',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35980,'Jaristea',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35981,'Jitia',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35982,'Maicanesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35983,'Marasesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35984,'Mera',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35985,'Milcovul',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35986,'Movilita',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35987,'Nanesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35988,'Naruja',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35989,'Nereju',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35990,'Nistoresti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35991,'Odobesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35992,'Paltin',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35993,'Panciu',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35994,'Paunesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35995,'Poiana Cristei',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35996,'Pufesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35997,'Racoasa',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35998,'Reghiu',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(35999,'Ruginesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36000,'Sihlea',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36001,'Slobozia Bradului',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36002,'Slobozia-Ciorasti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36003,'Soveja',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36004,'Straoane',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36005,'Suraia',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36006,'Tamboesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36007,'Tanasoaia',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36008,'Tataranu',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36009,'Tifesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36010,'Tulnici',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36011,'Urechesti',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36012,'Valea Sarii',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36013,'Vanatori',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36014,'Vartescoiu',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36015,'Vidra',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36016,'Vintileasca',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36017,'Vizantea',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36018,'Vrancioaia',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36019,'Vulturu',2976,180,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36020,'Adygejsk',2977,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36021,'Enem',2977,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36022,'Jablonovskij',2977,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36023,'Kamennomostskij',2977,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36024,'Majkop',2977,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36025,'Tulskij',2977,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36026,'Aginskoje',2978,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36027,'Alagir',2979,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36028,'Ardon',2979,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36029,'Beslan',2979,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36030,'Digora',2979,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36031,'Mozdok',2979,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36032,'Vladikavkaz',2979,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36033,'Zavodskoj',2979,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36034,'Alejsk',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36035,'Barnaul',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36036,'Belojarsk',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36037,'Belokuriha',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36038,'Bijsk',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36039,'Blagoveshchenka',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36040,'Gornjak',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36041,'Jarovoe',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36042,'Juzhnyj',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36043,'Kamen-na-Obi',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36044,'Novoaltajsk',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36045,'Novosilikatnyj',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36046,'Rubcovsk',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36047,'Sibirskiy',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36048,'Slavgorod',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36049,'Talmenka',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36050,'Zarinsk',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36051,'Zmeinogorsk',2980,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36052,'Arhara',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36053,'Belogorsk',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36054,'Blagoveshchensk',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36055,'Jerofej Pavlovich',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36056,'Magdagachi',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36057,'Novoburejskij',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36058,'Progress',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36059,'Rajchihinsk',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36060,'Seryshevo',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36061,'Shimanovsk',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36062,'Skovorodino',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36063,'Svobodnyj',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36064,'Tynda',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36065,'Urusha',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36066,'Zavitinsk',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36067,'Zeja',2981,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36068,'Arhangelsk',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36069,'Jemca',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36070,'Jercevo',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36071,'Kargopol',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36072,'Konosha',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36073,'Korjazhma',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36074,'Kotlas',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36075,'Kuloj',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36076,'Maloshujka',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36077,'Mirnyj',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36078,'Njandoma',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36079,'Novodvinsk',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36080,'Obozjorskij',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36081,'Oktjabrskij',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36082,'Onega',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36083,'Plesetsk',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36084,'Podjuga',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36085,'Puksoozero',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36086,'Samoded',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36087,'Savinskij',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36088,'Severodvinsk',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36089,'Shenkursk',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36090,'Udimskij',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36091,'Urdoma',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36092,'Velsk',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36093,'Vychegodskij',2982,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36094,'Ahtubinsk',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36095,'Astrahan',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36096,'Harabali',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36097,'Kamyzjak',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36098,'Kapustin Jar',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36099,'Liman',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36100,'Narimanov',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36101,'Verhnij Baskunchak',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36102,'Volodarskij',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36103,'Znamensk',2983,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36104,'Agidel',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36105,'Bajmak',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36106,'Belebej',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36107,'Beloreck',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36108,'Birsk',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36109,'Blagoveshchensk',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36110,'Chishmy',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36111,'Davlekanovo',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36112,'Djurtjuli',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36113,'Iglino',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36114,'Ishimbaj',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36115,'Janaul',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36116,'Jermolajevo',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36117,'Kandry',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36118,'Krasnousolskij',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36119,'Kumertau',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36120,'Meleuz',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36121,'Mezhgorje',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36122,'Neftekamsk',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36123,'Oktjabrskij',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36124,'Oktyabrsky',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36125,'Prijutovo',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36126,'Rajevskij',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36127,'Salavat',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36128,'Serafimovskij',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36129,'Sibaj',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36130,'Sterlitamak',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36131,'Tujmazy',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36132,'Uchaly',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36133,'Ufa',2984,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36134,'Aleksejevka',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36135,'Belgorod',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36136,'Borisovka',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36137,'Chernjanka',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36138,'Grajvoron',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36139,'Gubkin',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36140,'Novyj Oskol',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36141,'Rakitnoe',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36142,'Razumnoe',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36143,'Shebekino',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36144,'Staryj Oskol',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36145,'Stroitel',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36146,'Tomarovka',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36147,'Valujki',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36148,'Volokonovka',2985,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36149,'Belye Berega',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36150,'Brjansk',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36151,'Djatkovo',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36152,'Fokino',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36153,'Karachev',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36154,'Kletnja',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36155,'Klimovo',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36156,'Klincy',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36157,'Lokot',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36158,'Navlja',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36159,'Novozybkov',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36160,'Pochjop',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36161,'Pogar',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36162,'Selco',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36163,'Starodub',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36164,'Surazh',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36165,'Suzjomka',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36166,'Trubchjovsk',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36167,'Unecha',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36168,'Zhukovka',2986,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36169,'Gusinoozjorsk',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36170,'Kamensk',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36171,'Kjahta',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36172,'Novyj Uojan',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36173,'Onohoj',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36174,'Selenginsk',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36175,'Severobajkalsk',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36176,'Taksimo',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36177,'Ulan-Ude',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36178,'Zakamensk',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36179,'Zarechnyj',2987,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36180,'Groznyj',2988,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36181,'Gudermes',2988,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36182,'Malgobek',2988,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36183,'Urus-Martan',2988,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36184,'Asha',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36185,'Bakal',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36186,'Bazhovo',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36187,'Berdjaush',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36188,'Chebarkul',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36189,'Cheljabinsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36190,'Chelyabinsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36191,'Gornjak',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36192,'Jemanzhelinsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36193,'Jurjuzan',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36194,'Juznouralsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36195,'Karabash',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36196,'Kartaly',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36197,'Kasli',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36198,'Katav-Ivanovsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36199,'Kopejsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36200,'Korkino',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36201,'Krasnogorskij',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36202,'Kusa',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36203,'Kyshtym',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36204,'Lokomotivnyj',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36205,'Magnitka',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36206,'Magnitogorsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36207,'Miass',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36208,'Minjar',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36209,'Njazepetrovsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36210,'Novosineglazovskij',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36211,'Ozjorsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36212,'Pervomajskij',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36213,'Plast',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36214,'Roza',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36215,'Satka',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36216,'Sim',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36217,'Snezhinsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36218,'Starokamyshinsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36219,'Suleja',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36220,'Trjohgornij',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36221,'Troick',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36222,'Ust-Katav',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36223,'Verhneuralsk',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36224,'Verhnij Ufalej',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36225,'Zlatoust',2989,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36226,'Atamanovka',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36227,'Balej',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36228,'Borzja',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36229,'Bukachacha',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36230,'Chernyshevsk',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36231,'Chita',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36232,'Darasun',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36233,'Gornyy',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36234,'Hilok',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36235,'Karymskoje',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36236,'Krasnokamensk',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36237,'Mogocha',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36238,'Nerchinsk',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36239,'Novaja Chara',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36240,'Novokruchuninskij',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36241,'Olovjannaja',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36242,'Pervomajskij',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36243,'Petrovsk-Zabajkalskij',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36244,'Sherlovaja Gora',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36245,'Shilka',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36246,'Sretensk',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36247,'Vershino-Darasunskij',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36248,'Zabajkalsk',2990,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36249,'Anadyr',2991,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36250,'Bilibino',2991,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36251,'Pevek',2991,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36252,'Ugolnyje Kopi',2991,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36253,'Alatyr',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36254,'Cheboksary',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36255,'Civilsk',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36256,'Ibresi',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36257,'Jadrin',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36258,'Kanash',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36259,'Kozlovka',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36260,'Kugesy',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36261,'Mariinskij Posad',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36262,'Novocheboksarsk',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36263,'Shumerlja',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36264,'Vurnary',2992,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36265,'Belidzhi',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36266,'Bujnaksk',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36267,'Dagestanskije Ogni',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36268,'Derbent',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36269,'Hasavjurt',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36270,'Izberbash',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36271,'Juzhno-Suhokumsk',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36272,'Kaspijsk',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36273,'Kiziljurt',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36274,'Kizljar',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36275,'Mahackala',2993,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36276,'Tura',2994,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36277,'Gorno-Altajsk',2995,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36278,'Amursk',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36279,'Bikin',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36280,'Chegdomyn',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36281,'Cherdomyn',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36282,'Habarovsk',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36283,'Hor',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36284,'Jelban',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36285,'Komsomolsk-na-Amure',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36286,'Litovko',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36287,'Nikolajevsk-na-Amure',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36288,'Ohotsk',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36289,'Perejaslavka',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36290,'Solnechnyj',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36291,'Sovetskaja Gavan',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36292,'Uglegorsk',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36293,'Vanino',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36294,'Vjazemskij',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36295,'Zavety Iljicha',2996,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36296,'Abakan',2997,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36297,'Abaza',2997,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36298,'Cherjomushki',2997,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36299,'Chernogorsk',2997,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36300,'Sajanogorsk',2997,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36301,'Shira',2997,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36302,'Sorsk',2997,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36303,'Ust-Abakan',2997,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36304,'Belojarskij',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36305,'Belyj Jar',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36306,'Fjodorovskij',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36307,'Hanty-Mansijsk',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36308,'Igrim',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36309,'Izluchinsk',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36310,'Jugorsk',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36311,'Kogalym',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36312,'Langepas',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36313,'Ljantor',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36314,'Megion',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36315,'Mezhdurechenskij',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36316,'Neftejugansk',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36317,'Nizhnevartovsk',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36318,'Njagan',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36319,'Novoagansk',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36320,'Pojkovskij',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36321,'Pokachi',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36322,'Raduzhnyj',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36323,'Sovetskij',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36324,'Surgut',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36325,'Uraj',2998,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36326,'Karabulak',2999,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36327,'Nazran',2999,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36328,'Angarsk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36329,'Bajkalsk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36330,'Balagansk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36331,'Birjusinsk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36332,'Bodajbo',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36333,'Bratsk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36334,'Cheremhovo',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36335,'Chunskij',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36336,'Irkutsk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36337,'Kirensk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36338,'Kujtun',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36339,'Mihajlovka',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36340,'Nizhneudinsk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36341,'Novaja Igirma',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36342,'Sajansk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36343,'Shelehov',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36344,'Sljudjanka',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36345,'Svirsk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36346,'Tajshet',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36347,'Tulun',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36348,'Usolje-Sibirskoje',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36349,'Ust-Ilimsk',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36350,'Ust-Kut',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36351,'Vihorevka',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36352,'Zalari',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36353,'Zheleznodorozhnyj',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36354,'Zheleznogorsk-Ilimskij',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36355,'Zima',3000,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36356,'Furmanov',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36357,'Ivanovo',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36358,'Jurjevec',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36359,'Juzha',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36360,'Kineshma',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36361,'Kohma',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36362,'Komsomolsk',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36363,'Lezhnjovo',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36364,'Navoloki',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36365,'Privolzhsk',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36366,'Puchezh',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36367,'Rodniki',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36368,'Shuja',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36369,'Tejkovo',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36370,'Vichuga',3001,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36371,'Gubkinskij',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36372,'Korotchajevo',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36373,'Labytnangi',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36374,'Muravlenko',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36375,'Nadym',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36376,'Nojabrsk',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36377,'Novyj Urengoj',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36378,'Pangody',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36379,'Salehard',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36380,'Tarko-Sale',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36381,'Urengoj',3002,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36382,'Danilov',3003,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36383,'Gavrilov-Jam',3003,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36384,'Jaroslavl',3003,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36385,'Pereslavl-Zalesskij',3003,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36386,'Rostov',3003,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36387,'Rybinsk',3003,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36388,'Tutajev',3003,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36389,'Uglich',3003,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36390,'Birakan',3004,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36391,'Birobidzhan',3004,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36392,'Imeni Telmana',3004,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36393,'Izvestkovyj',3004,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36394,'Londoko',3004,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36395,'Obluchje',3004,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36396,'Teploozjorsk',3004,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36397,'Baksan',3005,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36398,'Chegem Pervyj',3005,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36399,'Majskij',3005,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36400,'Nalchik',3005,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36401,'Nartkala',3005,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36402,'Prohladnyj',3005,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36403,'Terek',3005,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36404,'Tyrnyauz',3005,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36405,'Bagrationovsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36406,'Baltijsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36407,'Chernjahovsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36408,'Gurjevsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36409,'Gusev',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36410,'Gvardejsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36411,'Kaliningrad',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36412,'Mamonovo',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36413,'Neman',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36414,'Nesterov',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36415,'Ozjorsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36416,'Pionerskij',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36417,'Sovetsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36418,'Svetlogorsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36419,'Svetlyj',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36420,'Zeljenogradsk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36421,'Znamensk',3006,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36422,'Elista',3007,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36423,'Gorodovikovsk',3007,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36424,'Lagan',3007,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36425,'Balabanovo',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36426,'Belousovo',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36427,'Borovsk',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36428,'Jermolino',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36429,'Kaluga',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36430,'Kirov',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36431,'Kondrovo',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36432,'Kozelsk',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36433,'Kremenki',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36434,'Ljudinovo',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36435,'Malojaroslavec',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36436,'Obninsk',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36437,'Sosenskij',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36438,'Suhinichi',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36439,'Tarusa',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36440,'Tovarkovo',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36441,'Zhukov',3008,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36442,'Jelizovo',3009,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36443,'Kljuchi',3009,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36444,'Mohovaja',3009,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36445,'Petropavlovsk-Kamchatskij',3009,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36446,'Ust-Kamchatsk',3009,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36447,'Viljuchinsk',3009,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36448,'Vulkannyj',3009,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36449,'Cherkessk',3010,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36450,'Karachajevsk',3010,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36451,'Ust-Dzheguta',3010,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36452,'Belomorsk',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36453,'Kem',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36454,'Kondopoga',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36455,'Kostomuksha',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36456,'Lahdenpohja',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36457,'Medvezhjegorsk',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36458,'Nadvoicy',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36459,'Olonec',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36460,'Petrozavodsk',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36461,'Pitkjaranta',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36462,'Pudozh',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36463,'Segezha',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36464,'Sortavala',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36465,'Suojarvi',3011,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36466,'Anzhero-Sudzhensk',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36467,'Bachatskij',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36468,'Belovo',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36469,'Berjozovskij',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36470,'Gramoteino',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36471,'Gurjevsk',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36472,'Inskoj',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36473,'Jashkino',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36474,'Jurga',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36475,'Kaltan',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36476,'Kedrovka',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36477,'Kemerovo',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36478,'Kiseljovsk',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36479,'Krasnobrodskij',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36480,'Leninsk-Kuzneckij',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36481,'Malinovka',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36482,'Mariinsk',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36483,'Mezhdurechensk',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36484,'Myski',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36485,'Novokuzneck',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36486,'Novokuznetsk',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36487,'Novyj Gorodok',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36488,'Osinniki',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36489,'Polsaevo',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36490,'Prokopjevsk',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36491,'Promyshlennaja',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36492,'Promyshlennovskij',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36493,'Salair',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36494,'Starobachaty',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36495,'Tajga',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36496,'Tajzhina',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36497,'Tashtagol',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36498,'Temirtau',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36499,'Tisul',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36500,'Tjazhinskij',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36501,'Topki',3012,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36502,'Belaja Holunica',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36503,'Jaransk',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36504,'Jurja',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36505,'Kirov',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36506,'Kirovo-Chepeck',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36507,'Kirs',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36508,'Kotelnich',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36509,'Ljangasovo',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36510,'Luza',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36511,'Malmyzh',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36512,'Murashi',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36513,'Nolinsk',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36514,'Omutninsk',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36515,'Orichi',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36516,'Orlov',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36517,'Pervomajskij',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36518,'Peskovka',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36519,'Slobodskoj',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36520,'Sosnovka',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36521,'Sovetsk',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36522,'Urzhum',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36523,'Vahrushi',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36524,'Vjatskije Poljany',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36525,'Zujevka',3014,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36526,'Blagoevo',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36527,'Inta',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36528,'Jarega',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36529,'Jeletskij',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36530,'Jemva',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36531,'Komsomolskij',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36532,'Krasnozatonskij',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36533,'Mikun',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36534,'Nizhnij Odes',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36535,'Pechora',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36536,'Promyshlennyj',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36537,'Severnyj',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36538,'Sosnogorsk',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36539,'Syktyvkar',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36540,'Troicko-Pechorsk',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36541,'Uhta',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36542,'Usinsk',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36543,'Usogorsk',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36544,'Vorgashor',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36545,'Vorkuta',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36546,'Vuktyl',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36547,'Zheshart',3015,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36548,'Kudymkar',3016,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36549,'Palana',3017,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36550,'Buj',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36551,'Galich',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36552,'Kostroma',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36553,'Makarjev',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36554,'Manturovo',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36555,'Neja',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36556,'Nerehta',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36557,'Sharja',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36558,'Vetluzhskij',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36559,'Volgorechensk',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36560,'Zavolzhsk',3018,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36561,'Abinsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36562,'Achujevo',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36563,'Afipskij',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36564,'Ahtyrskij',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36565,'Anapa',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36566,'Apsheronsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36567,'Armavir',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36568,'Belorechensk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36569,'Gelendzhik',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36570,'Gorjachi Kljuch',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36571,'Gulkevichi',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36572,'Hadyzhensk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36573,'Ilskij',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36574,'Jejsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36575,'Kalinino',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36576,'Korenovsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36577,'Krasnodar',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36578,'Kropotkin',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36579,'Krymsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36580,'Kurganinsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36581,'Labinsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36582,'Mostovskoj',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36583,'Neftegorsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36584,'Novokubansk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36585,'Novomihajlovskij',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36586,'Novorossijsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36587,'Pashkovskij',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36588,'Primorsko-Ahtarsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36589,'Psebaj',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36590,'Slavjansk-na-Kubani',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36591,'Sochi',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36592,'Srednjaja Ahtuba',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36593,'Temrjuk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36594,'Tihoreck',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36595,'Timashevsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36596,'Tuapse',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36597,'Ust-Labinsk',3019,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36598,'Aban',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36599,'Achinsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36600,'Artjomovsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36601,'Berjozovka',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36602,'Bogotol',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36603,'Borodino',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36604,'Divnogorsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36605,'Dubinino',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36606,'Igarka',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36607,'Ilanskij',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36608,'Jemeljanovo',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36609,'Jenisejsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36610,'Kajerkan',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36611,'Kansk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36612,'Kedrovyj',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36613,'Kodinsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36614,'Krasnojarsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36615,'Kuragino',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36616,'Lesosibirsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36617,'Minusinsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36618,'Nazarovo',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36619,'Nizhnjaja Pojma',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36620,'Norilsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36621,'Podgornyj',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36622,'Sharypovo',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36623,'Shushenskoe',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36624,'Solnechnyj',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36625,'Sosnovoborsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36626,'Talnah',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36627,'Ujar',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36628,'Uzhur',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36629,'Zaozjornyj',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36630,'Zelenogorsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36631,'Zheleznogorsk',3020,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36632,'Dalmatovo',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36633,'Kargapolje',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36634,'Katajsk',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36635,'Kurgan',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36636,'Kurtamysh',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36637,'Makushino',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36638,'Petuhovo',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36639,'Shadrinsk',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36640,'Shumiha',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36641,'Vargashi',3022,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36642,'Dmitriev Lgovskij',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36643,'Imeni Karla Libknehta',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36644,'Kurchatov',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36645,'Kursk',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36646,'Lgov',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36647,'Obojan',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36648,'Rylsk',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36649,'Shchigry',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36650,'Shchuchje',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36651,'Sudzha',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36652,'Zheleznogorsk',3023,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36653,'Boksitogorsk',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36654,'Dubrovka',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36655,'Gatchina',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36656,'Imeni Morozova',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36657,'Ivangorod',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36658,'Kingisepp',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36659,'Kirishi',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36660,'Kirovsk',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36661,'Kolpino',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36662,'Kommunar',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36663,'Kuzmolovskiy',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36664,'Lodejnoje Pole',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36665,'Luga',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36666,'Nikolskoe',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36667,'Novaja Ladoga',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36668,'Otradnoe',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36669,'Pikaljovo',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36670,'Podporozhje',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36671,'Priozjorsk',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36672,'Sertolovo',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36673,'Shlisselburg',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36674,'Siverskij',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36675,'Sjasstroj',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36676,'Slancy',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36677,'Sosnovyj Bor',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36678,'Svetogorsk',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36679,'Tihvin',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36680,'Tosno',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36681,'Uljanovka',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36682,'Volhov',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36683,'Volosovo',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36684,'Vsevolozhsk',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36685,'Vyborg',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36686,'Vyrica',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36687,'Zarskoje Selo',3024,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36688,'Chaplygin',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36689,'Dankov',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36690,'Dobrinka',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36691,'Grjazi',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36692,'Jelec',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36693,'Lebedjan',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36694,'Lipeck',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36695,'Usman',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36696,'Zadonsk',3025,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36697,'Jagodnoje',3026,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36698,'Magadan',3026,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36699,'Ola',3026,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36700,'Omsukchan',3026,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36701,'Palatka',3026,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36702,'Sinegorje',3026,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36703,'Susuman',3026,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36704,'Ust-Omchug',3026,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36705,'Ardatov',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36706,'Chamzinka',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36707,'Insar',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36708,'Komsomolskij',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36709,'Kovylkino',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36710,'Krasnoslobodsk',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36711,'Luhovka',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36712,'Romodanovo',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36713,'Ruzajevka',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36714,'Saransk',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36715,'Temnikov',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36716,'Torbeevo',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36717,'Zubova Poljana',3028,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36718,'Moscow',3029,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36719,'Moskva',3032,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36720,'Vostochnyj',3032,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36721,'Zeljenograd',3032,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36722,'Apatity',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36723,'Gadzhievo',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36724,'Kandalaksha',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36725,'Kirovsk',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36726,'Kola',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36727,'Kovdor',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36728,'Monchegorsk',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36729,'Murmansk',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36730,'Murmashi',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36731,'Nikel',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36732,'Olenegorsk',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36733,'Ostrovnoj',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36734,'Poljarnye Zory',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36735,'Poljarnyj',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36736,'Revda',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36737,'Severomorsk',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36738,'Snezhnogorsk',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36739,'Zaozjorsk',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36740,'Zapoljarnyj',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36741,'Zeljenoborskij',3033,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36742,'Narjan-Mar',3034,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36743,'Borovichi',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36744,'Chudovo',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36745,'Krestcy',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36746,'Malaja Vishera',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36747,'Okulovka',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36748,'Pestovo',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36749,'Proletarij',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36750,'Solcy',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36751,'Staraja Russa',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36752,'Uglovka',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36753,'Valdaj',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36754,'Velikij Novgorod',3036,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36755,'Novokusnezk',3037,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36756,'Barabinsk',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36757,'Berdsk',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36758,'Bolotnoe',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36759,'Chany',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36760,'Cherepanovo',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36761,'Chulym',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36762,'Iskitim',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36763,'Karasuk',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36764,'Kargat',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36765,'Kochenjovo',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36766,'Kolcovo',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36767,'Kolyvan',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36768,'Krasnoobsk',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36769,'Krasnozerskoe',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36770,'Kujbyshev',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36771,'Kupino',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36772,'Linjovo',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36773,'Masljanino',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36774,'Novosibirsk',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36775,'Ob',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36776,'Suzun',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36777,'Tatarsk',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36778,'Toguchin',3038,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36779,'Bolsherechje',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36780,'Cherlak',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36781,'Isilkul',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36782,'Kalachinsk',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36783,'Kormilovka',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36784,'Ljubinskij',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36785,'Moskaljoni',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36786,'Muromcevo',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36787,'Nazyvajevsk',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36788,'Omsk',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36789,'Tara',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36790,'Tavricheskoje',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36791,'Tjukalinsk',3039,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36792,'Abdulino',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36793,'Buguruslan',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36794,'Buzuluk',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36795,'Jasnyj',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36796,'Komarovskiy',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36797,'Kuvandyk',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36798,'Mednogorsk',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36799,'Novotroick',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36800,'Orenburg',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36801,'Orsk',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36802,'Sol-Ileck',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36803,'Sorochinsk',3040,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36804,'Bolhov',3041,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36805,'Gaj',3041,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36806,'Livny',3041,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36807,'Mcensk',3041,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36808,'Orjol',3041,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36809,'Znamenka',3041,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36810,'Bashmakovo',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36811,'Bekovo',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36812,'Belinskiy',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36813,'Kamenka',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36814,'Kolyshlej',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36815,'Kuzneck',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36816,'Mokshan',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36817,'Nikolsk',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36818,'Nizhnij Lomov',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36819,'Pachelma',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36820,'Penza',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36821,'Serdobsk',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36822,'Sursk',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36823,'Zarechnyj',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36824,'Zemetchino',3042,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36825,'Aleksandrovsk',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36826,'Berezniki',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36827,'Chajkovskij',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36828,'Chermoz',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36829,'Chernushka',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36830,'Chusovoj',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36831,'Dobrjanka',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36832,'Gornozavodsk',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36833,'Gremjachinsk',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36834,'Gubaha',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36835,'Jajva',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36836,'Kizel',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36837,'Komsomolsky',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36838,'Krasnokamsk',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36839,'Krasnovishersk',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36840,'Kungur',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36841,'Lysva',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36842,'Novye Ljady',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36843,'Nytva',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36844,'Ocher',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36845,'Oktjabrskij',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36846,'Osa',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36847,'Pashija',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36848,'Perm',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36849,'Polazna',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36850,'Skalnyj',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36851,'Solikamsk',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36852,'Ugleuralskij',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36853,'Uralskij',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36854,'Usolje',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36855,'Vereshchagino',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36856,'Zvjozdnyj',3043,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36857,'Arsenjev',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36858,'Artjom',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36859,'Artjomovskij',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36860,'Bolshoj Kamen',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36861,'Dalnegorsk',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36862,'Dalnerechensk',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36863,'Dunaj',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36864,'Fokino',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36865,'Jaroslavskij',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36866,'Kavalerovo',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36867,'Kirovskiy',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36868,'Lesozavodsk',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36869,'Lipovcy',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36870,'Livadija',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36871,'Luchegorsk',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36872,'Nahodka',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36873,'Novoshahtinskij',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36874,'Partizansk',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36875,'Pogranichnyj',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36876,'Preobrazhenie',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36877,'Putjatin',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36878,'Sibircevo',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36879,'Slavjanka',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36880,'Spassk-Dalnij',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36881,'Tavrichanka',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36882,'Trudovoe',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36883,'Uglekamensk',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36884,'Uglovoe',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36885,'Ussurijsk',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36886,'Vladivostok',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36887,'Vrangel',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36888,'Zavodskoj',3044,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36889,'Dedovichi',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36890,'Dno',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36891,'Nevel',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36892,'Novosokolniki',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36893,'Opochka',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36894,'Ostrov',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36895,'Pechory',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36896,'Porhov',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36897,'Pskov',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36898,'Sebezh',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36899,'Strugi-Krasnye',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36900,'Velikije Luki',3045,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36901,'Kasimov',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36902,'Korablino',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36903,'Mihajlov',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36904,'Novomichurinsk',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36905,'Rjazan',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36906,'Rjazhsk',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36907,'Rybnoje',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36908,'Sasovo',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36909,'Shilovo',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36910,'Skopin',3047,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36911,'Ajutinskij',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36912,'Aksaj',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36913,'Azov',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36914,'Batajsk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36915,'Belaja Kalitva',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36916,'Cimljansk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36917,'Doneck',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36918,'Donskoj',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36919,'Gigant',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36920,'Glubokij',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36921,'Gornjackij',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36922,'Gukovo',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36923,'Kamenolomni',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36924,'Kamensk-Shahtinskij',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36925,'Konstantinovsk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36926,'Krasnyj Sulin',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36927,'Lihovskoj',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36928,'Majskij',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36929,'Millerovo',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36930,'Morozovsk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36931,'Novocherkassk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36932,'Novoshahtinsk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36933,'Proletarsk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36934,'Rostov',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36935,'Rostov-na-Donu',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36936,'Salsk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36937,'Semikarakorsk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36938,'Shahty',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36939,'Sholohovskij',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36940,'Sinegorskij',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36941,'Sokolovo',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36942,'Taganrog',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36943,'Ust-Doneckij',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36944,'Volgodonsk',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36945,'Zernograd',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36946,'Zhirnov',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36947,'Zverevo',3048,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36948,'Ajhan',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36949,'Aldan',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36950,'Cherskij',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36951,'Chulman',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36952,'Deputatskij',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36953,'Jakutsk',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36954,'Lensk',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36955,'Marha',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36956,'Mirnyj',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36957,'Nerjungri',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36958,'Njurba',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36959,'Oljokminsk',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36960,'Pokrovsk',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36961,'Sangar',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36962,'Serebrjanyj Bor',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36963,'Tiksi',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36964,'Tommot',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36965,'Udachnyj',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36966,'Ust-Nera',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36967,'Verhojansk',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36968,'Viljujsk',3049,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36969,'Aleksandrovsk-Sahalinskij',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36970,'Dolinsk',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36971,'Gornozavodsk',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36972,'Holmsk',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36973,'Juzhno-Sahalinsk',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36974,'Korsakov',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36975,'Makarov',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36976,'Nevelsk',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36977,'Nogliki',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36978,'Oha',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36979,'Poronajsk',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36980,'Shahtjorsk',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36981,'Tymovskoje',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36982,'Uglegorsk',3050,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36983,'Aleksejevka',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36984,'Bezenchuk',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36985,'Chapajevsk',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36986,'Fjodorovka',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36987,'Kinel',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36988,'Mirnyj',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36989,'Novokujbyshevsk',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36990,'Novosemejkino',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36991,'Oktjabrsk',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36992,'Otradnyj',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36993,'Pohvistnevo',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36994,'Povolzhskij',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36995,'Pribrezhnyj',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36996,'Roscinskij',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36997,'Samara',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36998,'Smyshljaevka',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(36999,'Suhodol',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37000,'Syzran',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37001,'Timashjovo',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37002,'Toljatti',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37003,'Zhigulevsk',3051,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37004,'Togliatti',3052,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37005,'Saint Petersburg',3053,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37006,'Sankt Peterburg',3053,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37007,'Arkadak',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37008,'Atkarsk',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37009,'Balakovo',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37010,'Balashov',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37011,'Bazarnyj Karabulak',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37012,'Dergachi',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37013,'Engels',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37014,'Hvalynsk',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37015,'Jershov',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37016,'Kalininsk',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37017,'Krasnoarmejsk',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37018,'Krasnyj Kut',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37019,'Marks',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37020,'Novouzensk',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37021,'Ozinki',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37022,'Petrovsk',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37023,'Privolzhskij',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37024,'Pugachjov',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37025,'Rtishchevo',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37026,'Saratov',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37027,'Shihany',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37028,'Stepnoe',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37029,'Svetlyj',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37030,'Tatishchevo',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37031,'Volsk',3054,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37032,'Demidov',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37033,'Desnogorsk',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37034,'Dorogobuzh',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37035,'Gagarin',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37036,'Hislavichi',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37037,'Jarcevo',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37038,'Jelnja',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37039,'Pochinok',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37040,'Roslavl',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37041,'Rudnja',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37042,'Safonovo',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37043,'Smolensk',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37044,'Verhnedneprovskij',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37045,'Vjazma',3055,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37046,'Blagodarnyj',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37047,'Budjonnovsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37048,'Georgijevsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37049,'Gorjachevodskij',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37050,'Inozemcevo',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37051,'Ipatovo',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37052,'Izobilnyj',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37053,'Jessentuki',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37054,'Kislovodsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37055,'Lermontov',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37056,'Mihajlovsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37057,'Mineralnyje Vody',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37058,'Neftekumsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37059,'Nevinnomyssk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37060,'Novoaleksandrovsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37061,'Novopavlovsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37062,'Pjatigorsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37063,'Solnechnodolsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37064,'Stavropol',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37065,'Svetlograd',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37066,'Svobody',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37067,'Zeljenokumsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37068,'Zheleznovodsk',3056,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37069,'Alapajevsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37070,'Aramil',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37071,'Arti',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37072,'Artjomovskij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37073,'Asbest',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37074,'Baranchinskij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37075,'Belojarskij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37076,'Berjozovskij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37077,'Bisert',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37078,'Bogdanovich',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37079,'Bulanash',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37080,'Degtjarsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37081,'Ekaterinburg',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37082,'Irbit',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37083,'Ivdel',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37084,'Izumrud',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37085,'Jekaterinburg',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37086,'Kachkanar',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37087,'Kamensk-Uralskij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37088,'Kamyshlov',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37089,'Karpinsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37090,'Kirovgrad',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37091,'Kolcovo',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37092,'Krasnoturinsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37093,'Krasnoufimsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37094,'Krasnouralsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37095,'Kushva',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37096,'Lesnoj',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37097,'Leviha',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37098,'Lobva',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37099,'Malysheva',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37100,'Mihajlovsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37101,'Monetnyj',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37102,'Nevjansk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37103,'Nizhnie Sergi',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37104,'Nizhnij Tagil',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37105,'Nizhnjaja Salda',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37106,'Nizhnjaja Tura',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37107,'Novaja Ljalja',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37108,'Novouralsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37109,'Pervouralsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37110,'Polevskoj',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37111,'Pyshma',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37112,'Pyt-Jah',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37113,'Reftinskij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37114,'Revda',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37115,'Rezh',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37116,'Serov',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37117,'Severouralsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37118,'Sosva',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37119,'Sredneuralsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37120,'Suhoj Log',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37121,'Svobodnyj',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37122,'Sysert',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37123,'Talica',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37124,'Tavda',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37125,'Troickij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37126,'Turinsk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37127,'Uralskij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37128,'Verhnij Tagil',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37129,'Verhnjaja Pyshma',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37130,'Verhnjaja Salda',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37131,'Verhnjaja Sinyachiha',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37132,'Verhnjaja Tura',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37133,'Verhoturje',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37134,'Volchansk',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37135,'Yekaterinburg',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37136,'Zarechnyj',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37137,'Zjuzelskij',3057,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37138,'Dudinka',3058,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37139,'Dmitrievka',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37140,'Inzhavino',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37141,'Kirsanov',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37142,'Kotovsk',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37143,'Michurinsk',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37144,'Morshansk',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37145,'Pervomajskij',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37146,'Rasskazovo',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37147,'Sosnovka',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37148,'Tambov',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37149,'Uvarovo',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37150,'Zherdevka',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37151,'Znamenka',3059,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37152,'Agryz',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37153,'Aksubajevo',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37154,'Aktjubinskij',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37155,'Aleksejevskoje',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37156,'Almetjevsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37157,'Arsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37158,'Aznakajevo',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37159,'Bavly',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37160,'Bugulma',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37161,'Buinsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37162,'Chistopol',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37163,'Dzhalil',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37164,'Jelabuga',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37165,'Kamskie Poljany',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37166,'Kazan',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37167,'Kukmor',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37168,'Leninogorsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37169,'Mamadysh',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37170,'Mendelejevsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37171,'Menzelinsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37172,'Naberezhnyje Chelny',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37173,'Nizhnekamsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37174,'Niznjaja Maktama',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37175,'Nurlat',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37176,'Tetjushi',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37177,'Urussu',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37178,'Vasiljevo',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37179,'Zainsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37180,'Zeljonodolsk',3060,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37181,'Bogandinskij',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37182,'Borovskij',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37183,'Golyshmanovo',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37184,'Ishim',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37185,'Jalutorovosk',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37186,'Tjumen',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37187,'Tobolsk',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37188,'Vinzili',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37189,'Zavodoukovsk',3061,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37190,'Asino',3062,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37191,'Jaja',3062,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37192,'Kolpashevo',3062,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37193,'Seversk',3062,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37194,'Strezhevoj',3062,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37195,'Tomsk',3062,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37196,'Agejevo',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37197,'Aleksin',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37198,'Beljov',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37199,'Bogoroditsk',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37200,'Bolohovo',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37201,'Donskoj',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37202,'Dubovka',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37203,'Jasnogorsk',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37204,'Jefremov',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37205,'Kimovsk',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37206,'Kirejevsk',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37207,'Kosaja Gora',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37208,'Leninskij',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37209,'Lipki',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37210,'Mendelejevskij',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37211,'Novomoskovsk',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37212,'Pervomajskij',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37213,'Plavsk',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37214,'Severo-Zadonsk',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37215,'Shchjokino',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37216,'Skuratovskij',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37217,'Sokolniki',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37218,'Sovetsk',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37219,'Suvorov',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37220,'Tovarkovskij',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37221,'Tula',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37222,'Uzlovaja',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37223,'Venjov',3063,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37224,'Andreapol',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37225,'Bezheck',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37226,'Bologoe',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37227,'Kaljazin',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37228,'Kashin',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37229,'Kimry',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37230,'Konakovo',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37231,'Kuvshinovo',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37232,'Lihoslavl',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37233,'Maksatiha',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37234,'Ostashkov',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37235,'Ozjornyj',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37236,'Pelidovo',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37237,'Rameshki',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37238,'Redkino',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37239,'Rzhev',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37240,'Solnechnyj',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37241,'Starica',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37242,'Toropec',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37243,'Torzhok',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37244,'Tver',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37245,'Udomlja',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37246,'Vyshnij Volochok',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37247,'Zapadnaja Dvina',3064,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37248,'Ak-Dovurak',3065,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37249,'Kyzyl',3065,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37250,'Balezino',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37251,'Glazov',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37252,'Igra',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37253,'Izhevsk',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37254,'Kambarka',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37255,'Kez',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37256,'Kizner',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37257,'Mozhga',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37258,'Sarapul',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37259,'Uva',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37260,'Votkinsk',3066,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37261,'Barysh',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37262,'Cherdakly',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37263,'Dimitrovgrad',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37264,'Inza',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37265,'Isheevka',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37266,'Novospasskoe',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37267,'Novouljanovsk',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37268,'Sengilej',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37269,'Uljanovsk',3067,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37270,'Ust-Ordynskij',3069,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37271,'Aleksandrov',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37272,'Balakirevo',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37273,'Gorohovec',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37274,'Gus-Hrustalnyj',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37275,'Jurjev Polskij',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37276,'Kameshkovo',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37277,'Karabanovo',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37278,'Kirzhach',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37279,'Kolchugino',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37280,'Kosterovo',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37281,'Kovrov',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37282,'Krasnaja Gorbatka',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37283,'Krasnyj Oktjabr',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37284,'Lakinsk',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37285,'Melenki',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37286,'Murom',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37287,'Novovjazniki',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37288,'Pokrov',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37289,'Raduzhnyj',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37290,'Sobinka',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37291,'Strunino',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37292,'Sudogda',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37293,'Suzdal',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37294,'Vjazniki',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37295,'Vladimir',3070,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37296,'Dubovka',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37297,'Frolovo',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37298,'Gorkovskij',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37299,'Gorodishche',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37300,'Ilovlja',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37301,'Jelan',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37302,'Kalach-na-Donu',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37303,'Kamyshin',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37304,'Kotelnikovo',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37305,'Kotovo',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37306,'Krasnoslobodsk',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37307,'Leninsk',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37308,'Mihajlovka',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37309,'Nikolajevsk',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37310,'Nizhny Novgorod',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37311,'Novoanninskij',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37312,'Novonikolajevskij',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37313,'Pallasovka',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37314,'Petrov Val',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37315,'Serafimovich',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37316,'Surovikino',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37317,'Svetlyj Jar',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37318,'Urjupinsk',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37319,'Volgograd',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37320,'Volzhskij',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37321,'Zhirnovsk',3071,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37322,'Babajevo',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37323,'Belozjorsk',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37324,'Cherepovec',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37325,'Grjazovec',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37326,'Harovsk',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37327,'Kaduj',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37328,'Krasavino',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37329,'Sheksna',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37330,'Sokol',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37331,'Totma',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37332,'Velikij Ustjug',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37333,'Vologda',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37334,'Vytegra',3072,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37335,'Anna',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37336,'Bobrov',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37337,'Boguchar',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37338,'Borisoglebsk',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37339,'Buturlinovka',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37340,'Ertil',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37341,'Gribanovskij',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37342,'Kalach',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37343,'Kamenka',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37344,'Kantemirovka',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37345,'Liski',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37346,'Novohopjorsk',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37347,'Novovoronezh',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37348,'Ostrogozhsk',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37349,'Pavlovsk',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37350,'Povorino',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37351,'Pridonskij',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37352,'Rossosh',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37353,'Semiluki',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37354,'Somovo',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37355,'Talovaja',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37356,'Voronezh',3073,181,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37357,'Butare',3074,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37358,'Nyanza',3074,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37359,'Byumba',3075,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37360,'Cyangugu',3076,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37361,'Gikongoro',3077,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37362,'Gisenyi',3078,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37363,'Gitarama',3079,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37364,'Kibungo',3080,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37365,'Rwamagana',3080,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37366,'Kibuye',3081,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37367,'Kigali',3082,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37368,'Ruhengeri',3083,182,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37369,'Georgetown',3084,183,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37370,'Anse-la-Raye',3102,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37371,'Canaries',3103,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37372,'Castries',3104,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37373,'Choc',3104,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37374,'Choiseul',3105,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37375,'Dennery',3106,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37376,'Laborie',3108,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37377,'Micoud',3109,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37378,'Soufriere',3110,185,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37379,'Miquelon',3112,186,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37380,'Saint-Pierre',3113,186,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37381,'Biabou',3114,187,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37382,'Byera',3114,187,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37383,'Georgetown',3114,187,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37384,'Dovers',3115,187,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37385,'Hamilton',3115,187,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37386,'Port Elizabeth',3115,187,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37387,'Falelatai',3120,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37388,'Mulifanua',3121,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37389,'Solosolo',3122,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37390,'Safotulafai',3123,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37391,'Samalae\'ulu',3124,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37392,'A\'opo',3125,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37393,'Taga',3126,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37394,'Gautavai',3127,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37395,'Apia',3128,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37396,'Samamea',3129,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37397,'Neiafu',3130,188,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37398,'Acquaviva',3131,189,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37399,'Chiesanuova',3133,189,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37400,'Domagnano',3134,189,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37401,'Faetano',3135,189,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37402,'Fiorentino',3136,189,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37403,'Montegiardino',3137,189,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37404,'Serravalle',3139,189,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37405,'Santana',3141,190,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37406,'Neves',3142,190,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37407,'Santo Amaro',3143,190,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37408,'Trindade',3144,190,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37409,'Santo Antonio',3145,190,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37410,'Mahayel',3147,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37411,'Abha',3149,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37412,'Abu \'Aris',3149,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37413,'Khamis Mushayt',3149,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37414,'Qal\'at Bishah',3149,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37415,'Ha\'il',3152,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37416,'Jawf',3153,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37417,'Sakakah',3153,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37418,'Jizan',3154,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37419,'Sabya',3154,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37420,'Makkah',3155,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37421,'Rabig',3155,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37422,'al-Hawiyah',3155,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37423,'at-Ta\'if',3155,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37424,'Dar\'iyah',3156,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37425,'Najran',3156,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37426,'Sharurah',3156,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37427,'\'Unayzah',3157,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37428,'Buraydah',3157,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37429,'ar-Rass',3157,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37430,'Tabuk',3158,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37431,'Umm Lajj',3158,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37432,'al-Bahah',3160,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37433,'Ara\'ar',3161,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37434,'Rafha',3161,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37435,'Turayf',3161,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37436,'al-Qurayyat',3161,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37437,'Yanbu',3162,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37438,'al-Madinah',3162,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37439,'\'Afif',3163,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37440,'ad-Dawadimi',3163,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37441,'ad-Dilam',3163,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37442,'al-Kharj',3163,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37443,'al-Majma\'ah',3163,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37444,'ar-Riyad',3163,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37445,'az-Zulfi',3163,191,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37446,'Dakar',3164,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37447,'Bambey',3165,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37448,'Diourbel',3165,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37449,'Mbacke',3165,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37450,'Touba',3165,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37451,'Diofior',3166,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37452,'Fatick',3166,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37453,'Foundiougne',3166,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37454,'Gossas',3166,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37455,'Guinguineo',3166,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37456,'Kahone',3166,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37457,'Passy',3166,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37458,'Sokone',3166,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37459,'Gandiaye',3167,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37460,'Kaffrine',3167,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37461,'Kaolack',3167,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37462,'Koungheul',3167,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37463,'Medina',3167,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37464,'Ndoffane Lagheme',3167,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37465,'Nioro du Rip',3167,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37466,'Toubakouta',3167,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37467,'Dabo',3168,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37468,'Goudomp',3168,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37469,'Kolda',3168,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37470,'Marsassoum',3168,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37471,'Medina Gounas',3168,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37472,'Sedhiou',3168,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37473,'Velingara',3168,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37474,'Wassadou',3168,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37475,'Dahra',3169,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37476,'Kebemer',3169,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37477,'Linguere',3169,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37478,'Louga',3169,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37479,'Dagana',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37480,'Gollere',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37481,'Kanel',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37482,'Matam',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37483,'Ndioum',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37484,'Ourossogui',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37485,'Podor',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37486,'Richard Toll',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37487,'Saint-Louis',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37488,'Semme',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37489,'Thilogne',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37490,'Waounde',3170,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37491,'Bakel',3171,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37492,'Kedougou',3171,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37493,'Tambacounda',3171,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37494,'Joal-Fadiouth',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37495,'Kayar',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37496,'Khombole',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37497,'Mbour',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37498,'Meckhe',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37499,'Nguekhokh',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37500,'Pout',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37501,'Thiadiaye',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37502,'Thies',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37503,'Tivaouane',3172,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37504,'Bignona',3173,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37505,'Oussouye',3173,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37506,'Thionck-Essyl',3173,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37507,'Ziguinchor',3173,192,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37508,'Cascade',3179,194,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37509,'Takamaka',3180,194,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37510,'Mahe',3181,194,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37511,'Biama',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37512,'Daru',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37513,'Kailahun',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37514,'Kenema',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37515,'Koidu',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37516,'Koindu',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37517,'Pendembu',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37518,'Sefadu',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37519,'Segbwema',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37520,'Yengema',3182,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37521,'Kabala',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37522,'Kambia',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37523,'Lungi',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37524,'Lunsar',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37525,'Magburaka',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37526,'Makeni',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37527,'Mambolo',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37528,'Moyamba',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37529,'Pepel',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37530,'Port Loko',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37531,'Yele',3183,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37532,'Binkolo',3184,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37533,'Bo',3184,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37534,'Bonthe',3184,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37535,'Bumpe',3184,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37536,'Matru',3184,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37537,'Pujehun',3184,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37538,'Taiama',3184,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37539,'Freetown',3185,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37540,'York',3185,195,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37541,'Singapore',3186,196,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37542,'Banska Bystrica',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37543,'Banska Shtiavnica',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37544,'Brezno',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37545,'Chierny Balog',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37546,'Detva',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37547,'Fil\'akovo',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37548,'Hnusht\'a',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37549,'Hrinova',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37550,'Kremnica',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37551,'Krupina',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37552,'Luchenec',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37553,'Nova Bana',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37554,'Podbrezova',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37555,'Poltar',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37556,'Revuca',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37557,'Rimavska Sobota',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37558,'Sliach',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37559,'Tisovec',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37560,'Tornal\'a',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37561,'Vel\'ky Krtish',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37562,'Vlkanova',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37563,'Zharnovica',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37564,'Zhiar',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37565,'Ziar nad Hronom',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37566,'Zvolen',3187,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37567,'Bernolakovo',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37568,'Bratislava',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37569,'Ivanka pri Dunaji',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37570,'Malacky',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37571,'Modra',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37572,'Pezinok',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37573,'Senec',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37574,'Shenkvice',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37575,'Stupava',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL); INSERT INTO `cities` VALUES (37576,'Svaty Jur',3188,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37577,'Chana',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37578,'Chierna nad Tisou',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37579,'Dobshina',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37580,'Gelnica',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37581,'Kosice',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37582,'Kral\'ovsky Chlmec',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37583,'Krompachy',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37584,'Medzev',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37585,'Michalovce',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37586,'Moldava nad Bodvou',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37587,'Pavlovce nad Uhom',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37588,'Rozhnava',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37589,'Sechovce',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37590,'Smizhany',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37591,'Sobrance',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37592,'Strazhske',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37593,'Trebishov',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37594,'Vel\'ke Kapushany',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37595,'Vranov',3189,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37596,'Dvory nad Zhitavou',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37597,'Hurbanovo',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37598,'Kolarovo',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37599,'Komarno',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37600,'Komjatice',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37601,'Levice',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37602,'Levocha',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37603,'Mocenok',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37604,'Nesvady',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37605,'Nitra',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37606,'Nove Zamky',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37607,'Palarikovo',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37608,'Shahy',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37609,'Shal\'a',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37610,'Shturovo',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37611,'Shurany',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37612,'Svodin',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37613,'Tlmache',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37614,'Tvrdoshovce',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37615,'Vrable',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37616,'Zlate Moravce',3190,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37617,'Bardejov',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37618,'Giraltovce',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37619,'Humenne',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37620,'Jarovnice',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37621,'Kezhmarok',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37622,'Lipany',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37623,'Medzilaborce',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37624,'Podolinec',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37625,'Poprad',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37626,'Preshov',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37627,'Presov',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37628,'Sabinov',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37629,'Snina',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37630,'Spishska Bela',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37631,'Spishska Nova Ves',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37632,'Spishske Podhradie',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37633,'Stara L\'ubovna',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37634,'Stropkov',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37635,'Svidnik',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37636,'Svit',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37637,'Vel\'ky Sharish',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37638,'Vysoke Tatry',3191,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37639,'Banovce',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37640,'Belusha',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37641,'Bojnice',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37642,'Boshany',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37643,'Dubnica',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37644,'Handlova',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37645,'Ilava',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37646,'Lednicke Rovne',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37647,'Lendak',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37648,'Myjava',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37649,'Nemshova',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37650,'Nova Dubnica',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37651,'Novaky',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37652,'Nove Mesto',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37653,'Partizanske',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37654,'Povazhska Bystrica',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37655,'Prievidza',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37656,'Puchov',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37657,'Stara Tura',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37658,'Topol\'chany',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37659,'Trenchianske Teplice',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37660,'Trenchin',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37661,'Trencin',3192,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37662,'Brezova pod Bradlom',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37663,'Dunajska Streda',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37664,'Gabchikovo',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37665,'Galanta',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37666,'Gbely',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37667,'Hlohovec',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37668,'Holich',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37669,'Kuty',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37670,'Leopoldov',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37671,'Piesht\'any',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37672,'Piestany',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37673,'Senica',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37674,'Sered\'',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37675,'Shamorin',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37676,'Shashtin-Strazhe',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37677,'Shoporna',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37678,'Skalica',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37679,'Sladkovichovo',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37680,'Trnava',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37681,'Vel\'ke Ul\'any',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37682,'Vel\'ky Meder',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37683,'Vrbove',3193,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37684,'Bytcha',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37685,'Chadca',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37686,'Chierne',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37687,'Dolny Kubin',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37688,'Krasno nad Kysucou',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37689,'Kysucke Nove Mesto',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37690,'Liptovsky Hradok',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37691,'Liptovsky Mikulash',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37692,'Martin',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37693,'Namestovo',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37694,'Nizhna',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37695,'Oshchadnica',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37696,'Rabcha',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37697,'Rajec',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37698,'Rakova',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37699,'Ruzhomberok',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37700,'Ruzomberok',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37701,'Shtiavnik',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37702,'Skalite',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37703,'Suchany',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37704,'Terchova',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37705,'Trstena',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37706,'Turany',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37707,'Turchianske Teplice',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37708,'Turzovka',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37709,'Tvrdoshin',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37710,'Vel\'ke Rovne',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37711,'Vrutky',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37712,'Zakamenne',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37713,'Zhilina',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37714,'Zilina',3194,197,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37715,'Semic',3195,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37716,'Skofljica',3195,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37717,'Zelezniki',3195,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37718,'Begunje na Gorenjskem',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37719,'Bistrica ob Trzhichu',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37720,'Bled',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37721,'Blejska Dobrava',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37722,'Bohinjska Bistrica',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37723,'Britof',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37724,'Cerklje na Gorenjskem',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37725,'Golnik',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37726,'Gorenja Vas',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37727,'Hrastje',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37728,'Hrushica',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37729,'Jesenice',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37730,'Kokrica',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37731,'Koroshka Bela',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37732,'Kranj',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37733,'Kranjska Gora',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37734,'Krizhe',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37735,'Kropa',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37736,'Lesce',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37737,'Mlaka pri Kranju',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37738,'Mojstrana',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37739,'Preddvor',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37740,'Predoslje',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37741,'Pristava',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37742,'Radovljica',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37743,'Shenchur',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37744,'Shkofja Loka',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37745,'Slovenski Javornik',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37746,'Spodnja Besnica',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37747,'Spodnje Gorje',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37748,'Stara Loka',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37749,'Sveti Duh',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37750,'Trzhich',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37751,'Visoko',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37752,'Zasip',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37753,'Zgornje Bitnje',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37754,'Zhelezniki',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37755,'Zhiri',3196,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37756,'Ajdovshchina',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37757,'Bilje',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37758,'Bovec',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37759,'Branik',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37760,'Cerkno',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37761,'Deskle',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37762,'Idrija',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37763,'Kanal',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37764,'Kobarid',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37765,'Kromberk',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37766,'Lokavec',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37767,'Miren',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37768,'Nova Gorica',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37769,'Prvachina',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37770,'Renche',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37771,'Rozhna Dolina',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37772,'Shempas',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37773,'Shempeter',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37774,'Solkan',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37775,'Spodnja Idrija',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37776,'Tolmin',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37777,'Vipava',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37778,'Vrtojba',3197,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37779,'Chrna na Koroshkem',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37780,'Dravograd',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37781,'Legen',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37782,'Mezhica',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37783,'Mislinja',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37784,'Muta',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37785,'Otishki Vrh',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37786,'Pameche',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37787,'Podgorje',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37788,'Prevalje',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37789,'Radlje ob Dravi',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37790,'Ravne',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37791,'Shmartno pri Slovenj Gradcu',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37792,'Slovenj Gradec',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37793,'Vuhred',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37794,'Vuzenica',3199,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37795,'Cerknica',3200,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37796,'Ilirska Bistrica',3200,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37797,'Pivka',3200,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37798,'Postojna',3200,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37799,'Rakek',3200,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37800,'Stari trg pri Lozhu',3200,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37801,'Ankaran',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37802,'Bertoki',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37803,'Dekani',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37804,'Divacha',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37805,'Hrvatni',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37806,'Izola',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37807,'Jagodje',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37808,'Koper',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37809,'Lucija',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37810,'Pareceg',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37811,'Piran',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37812,'Pobegi',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37813,'Portorozh',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37814,'Prade',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37815,'Secha',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37816,'Sezhana',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37817,'Spodnje Shkofije',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37818,'Sveti Anton',3201,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37819,'Borovnica',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37820,'Brezovica pri Ljubljani',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37821,'Dob',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37822,'Dobrova',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37823,'Domzhale',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37824,'Dragomer',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37825,'Grosuplje',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37826,'Horjul',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37827,'Ig',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37828,'Ivanchna Gorica',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37829,'Kamnik',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37830,'Komenda',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37831,'Lavrica',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37832,'Litija',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37833,'Ljubljana',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37834,'Log pri Brezovici',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37835,'Logatec',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37836,'Medvode',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37837,'Mekinje',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37838,'Mengesh',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37839,'Moravche',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37840,'Notranje',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37841,'Podgorje',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37842,'Preserje pri Radomljah',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37843,'Radomlje',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37844,'Rovte',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37845,'Shentvid pri Stichni',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37846,'Shkofljica',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37847,'Shmarca',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37848,'Shmartno pri Litiji',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37849,'Smarje-Sap',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37850,'Trzin',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37851,'Verd',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37852,'Vir',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37853,'Vishnja Gora',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37854,'Vnanje Gorice',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37855,'Vodice',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37856,'Vrhnika',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37857,'Zgornje Pirniche',3204,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37858,'Bistrica ob Dravi',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37859,'Bresternica',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37860,'Bukovci',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37861,'Dogoshe',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37862,'Dornava',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37863,'Fram',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37864,'Hotinja Vas',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37865,'Kamnica',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37866,'Kidrichevo',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37867,'Koshaki',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37868,'Krchevina pri Vurbergu',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37869,'Lenart',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37870,'Limbush',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37871,'Lovrenc na Pohorju',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37872,'Maribor',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37873,'Miklavzh na Dravskem Polju',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37874,'Ormozh',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37875,'Pekre',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37876,'Pesnica pri Mariboru',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37877,'Pobrezhje',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37878,'Podvinci',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37879,'Poljchane',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37880,'Pragersko',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37881,'Ptuj',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37882,'Rache',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37883,'Radizel',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37884,'Razvanje',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37885,'Rogoza',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37886,'Rushe',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37887,'Selnica ob Dravi',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37888,'Selnica ob Muri',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37889,'Shentilj',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37890,'Skoke',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37891,'Slovenska Bistrica',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37892,'Spodnja Polskava',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37893,'Spodnje Hoche',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37894,'Spodnji Duplek',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37895,'Spuhlja',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37896,'Sredishche ob Dravi',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37897,'Stojnci',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37898,'Zgornja Polskava',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37899,'Zgornje Poljchane',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37900,'Zgornji Duplek',3205,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37901,'Bakovci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37902,'Beltinci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37903,'Chernelavci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37904,'Chrenshovci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37905,'Dobrovnik',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37906,'Doklezhovje',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37907,'Ganchani',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37908,'Gornja Radgona',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37909,'Izhakovci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37910,'Krog',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37911,'Lendava',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37912,'Lipovci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37913,'Ljutomer',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37914,'Melinci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37915,'Murska Sobota',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37916,'Odranci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37917,'Petishovci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37918,'Radenci',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37919,'Rakichan',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37920,'Turnishche',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37921,'Velika Polana',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37922,'Verzej',3206,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37923,'Breg pri Polzeli',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37924,'Celje',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37925,'Gornji Grad',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37926,'Gotovlje',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37927,'Kasaze',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37928,'Lashko',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37929,'Ljubechna',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37930,'Ljubno ob Savinji',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37931,'Loka pri Zusmu',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37932,'Lokovica',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37933,'Mozirje',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37934,'Naklo',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37935,'Nazarje',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37936,'Oplotnica',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37937,'Petrovche',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37938,'Polzela',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37939,'Prebold',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37940,'Radeche',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37941,'Ravne',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37942,'Rimske Toplica',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37943,'Rogashka Slatina',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37944,'Rogatec',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37945,'Sentjernej',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37946,'Shempeter',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37947,'Shentjur',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37948,'Shkale',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37949,'Shmarje pri Jelshah',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37950,'Shoshtanj',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37951,'Shtore',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37952,'Slovenske Konjice',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37953,'Topolshica',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37954,'Trnovlje pri Celju',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37955,'Velenje',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37956,'Vitanje',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37957,'Vojnik',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37958,'Zabukovica',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37959,'Zadobrova',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37960,'Zhalec',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37961,'Zreche',3207,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37962,'Brestanica',3209,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37963,'Brezhice',3209,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37964,'Krshko',3209,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37965,'Leskovac pri Krshkem',3209,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37966,'Senovo',3209,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37967,'Sevnica',3209,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37968,'Dol pri Hrastniku',3210,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37969,'Hrastnik',3210,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37970,'Izlake',3210,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37971,'Kisovec',3210,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37972,'Trbovlje',3210,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37973,'Zagorje ob Savi',3210,198,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37974,'Adamstown',3211,199,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37975,'Tulagi',3212,200,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37976,'Taro Island',3213,200,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37977,'Honiara',3214,200,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37978,'Buala',3215,200,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37979,'Auki',3217,200,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37980,'Lata',3219,200,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37981,'Gizo',3220,200,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37982,'Baki',3221,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37983,'Borama',3221,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37984,'Gebilay',3221,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37985,'Sayla\'',3221,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37986,'Tayeglo',3222,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37987,'Xuddur',3222,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37988,'Yet',3222,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37989,'Muqdisho',3223,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37990,'\'Alula',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37991,'Bandarbeyla',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37992,'Bandarmu\'ayo',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37993,'Bargal',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37994,'Bereda',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37995,'Bosaso',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37996,'Iskushuban',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37997,'Qandala',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37998,'Qardho',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(37999,'Xafun',3224,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38000,'Baydhabo',3225,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38001,'Bur Hakkaba',3225,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38002,'Dinsor',3225,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38003,'\'Elbur',3226,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38004,'\'Eldhere',3226,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38005,'Dhusa Marreb',3226,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38006,'Bardhere',3227,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38007,'Dolaw',3227,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38008,'Dujuma',3227,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38009,'Garbaharey',3227,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38010,'Luq',3227,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38011,'Sa\'o',3227,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38012,'Wajid',3227,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38013,'Bal\'ad',3228,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38014,'Beled Weyne',3228,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38015,'Bulobarde',3228,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38016,'Jalalassi',3228,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38017,'Galka\'yo',3231,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38018,'Hobyo',3231,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38019,'Xarardhere',3231,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38020,'Eyl',3232,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38021,'Garowe',3232,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38022,'Las\'anod',3232,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38023,'\'Erigabo',3233,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38024,'Lasqoray',3233,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38025,'\'Ek',3236,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38026,'Bur\'o',3236,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38027,'Odweyne',3236,201,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38028,'Alberton',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38029,'Alrode',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38030,'Benmore',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38031,'Benoni',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38032,'Boksburg',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38033,'Booysens',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38034,'Brakpan',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38035,'Bronkhorstspruit',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38036,'Bryanston',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38037,'Carltonville',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38038,'Centurion',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38039,'Cullinan',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38040,'Dainfern',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38041,'Edenvale',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38042,'Ferndale',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38043,'Fourways',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38044,'Gardenview',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38045,'Gauteng',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38046,'Grant Park',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38047,'Heidelberg',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38048,'Isando',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38049,'Johannesburg',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38050,'Kelvin',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38051,'Krugersdorp',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38052,'Linmeyer',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38053,'Maraisburg',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38054,'Midrand',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38055,'Nigel',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38056,'Northmead',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38057,'Petervale',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38058,'Pinegowrie',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38059,'Pretoria',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38060,'Primrose',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38061,'Randburg',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38062,'Randfontein',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38063,'Randvaal',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38064,'Rivonia',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38065,'Robertville',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38066,'Soweto',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38067,'Springs',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38068,'Temba',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38069,'Tembisa',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38070,'Troyeville',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38071,'Vanderbijlpark',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38072,'Vereeniging',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38073,'Verwoerdburg',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38074,'Vorna Valley',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38075,'Wadeville',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38076,'Westonaria',3240,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38077,'Sandton',3242,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38078,'Bela-Bela',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38079,'Dendron',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38080,'Duiwelskloof',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38081,'Ellisras',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38082,'Giyani',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38083,'Lebowakgomo',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38084,'Louis Trichardt',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38085,'Lulekani',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38086,'Mankweng',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38087,'Messina',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38088,'Mogalakwena',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38089,'Mutale',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38090,'Nkowakowa',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38091,'Nylstroom',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38092,'Phalaborwa',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38093,'Pietersburg',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38094,'Polokwane',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38095,'Soekmekaar',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38096,'Southdale',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38097,'Thabazimbi',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38098,'Thohoyandou',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38099,'Thulamahashe',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38100,'Tzaneen',3244,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38101,'Botleng',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38102,'Ekangala',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38103,'Embalenhle',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38104,'Emjindini',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38105,'Empuluzi',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38106,'Emzinoni',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38107,'Ermelo',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38108,'Ethandakukhanja',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38109,'Groblersdal',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38110,'Komatipoort',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38111,'Kriel',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38112,'KwaZanele',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38113,'Kwazamokuhle',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38114,'Lebohang',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38115,'Marblehall',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38116,'Mashishing',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38117,'Mhluzi',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38118,'Nelspruit',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38119,'Phola',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38120,'Sakhile',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38121,'Secunda',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38122,'Siyabuswa',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38123,'Siyathemba',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38124,'Siyathuthuka',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38125,'Vukuzakhe',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38126,'Witbank',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38127,'Witrivier',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38128,'eLukwatini',3245,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38129,'Parow',3248,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38130,'Umtentweni',3250,202,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38131,'ALbatera',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38132,'Alacant',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38133,'Alcoi',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38134,'Almoradi',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38135,'Altea',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38136,'Aspe',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38137,'Benidorm',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38138,'Benissa',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38139,'Callosa de Segura',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38140,'Calp',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38141,'Cocentaina',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38142,'Crevillent',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38143,'Denia',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38144,'El Campello',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38145,'Elda',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38146,'Elx',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38147,'Guardamar del Segura',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38148,'Ibi',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38149,'L\'Alfas del Pi',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38150,'La Vila Joiosa',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38151,'Monover',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38152,'Mutxamel',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38153,'Novelda',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38154,'Orihuela',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38155,'Pedreguer',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38156,'Pego',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38157,'Petrer',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38158,'Pilar de la Horadada',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38159,'Pinoso',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38160,'Rojales',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38161,'Sant Joan d\'Alacant',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38162,'Sant Vicent del Raspeig',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38163,'Santa Pola',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38164,'Sax',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38165,'Teulada',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38166,'Torrevieja',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38167,'Villena',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38168,'Xabia',3255,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38169,'Amurrio',3256,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38170,'Llodio',3256,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38171,'Vitoria',3256,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38172,'Albacete',3257,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38173,'Almansa',3257,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38174,'Caudete',3257,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38175,'Hellin',3257,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38176,'La Roda',3257,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38177,'Villarrobledo',3257,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38178,'Adra',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38179,'Albox',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38180,'Almeria',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38181,'Berja',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38182,'Cuevas del Almanzora',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38183,'El Ejido',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38184,'Huercal de Almeria',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38185,'Huercal-Overa',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38186,'Nijar',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38187,'Roquetas de Mar',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38188,'Vicar',3258,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38189,'Benalmadena',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38190,'Aller',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38191,'Aviles',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38192,'C/ Pena Salon',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38193,'Cangas del Narcea',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38194,'Carreno',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38195,'Castrillon',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38196,'Corvera de Asturias',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38197,'Gijon',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38198,'Gozon',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38199,'Grado',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38200,'Langreo',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38201,'Laviana',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38202,'Lena',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38203,'Llanera',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38204,'Llanes',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38205,'Mieres',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38206,'Navia',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38207,'Oviedo',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38208,'Pilona',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38209,'Pravia',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38210,'San Martin del Rey Aurelio',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38211,'Siero',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38212,'Tineo',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38213,'Valdes',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38214,'Villaviciosa',3260,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38215,'Avila',3261,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38216,'Almendralejo',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38217,'Azuaga',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38218,'Badajoz',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38219,'Don Benito',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38220,'Jerez de los Caballeros',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38221,'Merida',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38222,'Montijo',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38223,'Olivenza',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38224,'Villafranca de los Barros',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38225,'Villanueva de la Serena',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38226,'Zafra',3262,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38227,'Alayor-Menorca',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38228,'Alcudia',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38229,'Calvia',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38230,'Capdepera',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38231,'Ciutadella de Menorca',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38232,'Eivissa',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38233,'Felanitx',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38234,'Inca',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38235,'Llucmajor',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38236,'Mahon',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38237,'Manacor',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38238,'Marratxi',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38239,'Palma',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38240,'Pollenca',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38241,'Sa Pobla',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38242,'Sant Antoni de Portmany',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38243,'Sant Josep de sa Talaia',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38244,'Santa Eulalia del Rio',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38245,'Santanyi',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38246,'Soller',3263,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38247,'Abrera',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38248,'Alella',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38249,'Arenys de Mar',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38250,'Argentona',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38251,'Badalona',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38252,'Badia del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38253,'Barbera del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38254,'Barcelona',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38255,'Berga',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38256,'Cabrera de Mar',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38257,'Caldes de Montbui',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38258,'Calella',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38259,'Canet de Mar',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38260,'Canovelles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38261,'Cardedeu',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38262,'Castellar del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38263,'Castellbisbal',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38264,'Castelldefels',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38265,'Cerdanyola',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38266,'Corbera de Llobregat',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38267,'Cornella',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38268,'El Masnou',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38269,'El Prat de Llobregat',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38270,'Esparreguera',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38271,'Esplugues de Llobregat',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38272,'Gava',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38273,'Granollers',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38274,'Igualada',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38275,'L\'Hospitalet de Llobregat',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38276,'La Garriga',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38277,'La Llagosta',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38278,'Les Franquesas del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38279,'Llica d\'Amunt',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38280,'Malgrat de Mar',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38281,'Manlleu',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38282,'Manresa',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38283,'Martorell',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38284,'Mataro',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38285,'Molins de Rei',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38286,'Mollet del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38287,'Montcada i Reixac',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38288,'Montgat',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38289,'Montmelo',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38290,'Montornes del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38291,'Olesa de Montserrat',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38292,'Palau-solita i Plegamans',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38293,'Palleja',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38294,'Parets del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38295,'Piera',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38296,'Pineda de Mar',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38297,'Premia de Dalt',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38298,'Premia de Mar',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38299,'Ripollet',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38300,'Rubi',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38301,'Sabadell',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38302,'Sant Adria de Besos',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38303,'Sant Andreu de la Barca',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38304,'Sant Boi de Llobregat',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38305,'Sant Celoni',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38306,'Sant Cugat del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38307,'Sant Feliu de Llobregat',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38308,'Sant Joan Despi',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38309,'Sant Joan de Vilatorrada',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38310,'Sant Just Desvern',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38311,'Sant Pere de Ribes',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38312,'Sant Quirze del Valles',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38313,'Sant Sadurni d\'Anoia',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38314,'Sant Vicenc dels Horts',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38315,'Santa Coloma de Gramenet',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38316,'Santa Margarida de Montbui',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38317,'Santa Perpetua de Mogoda',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38318,'Sitges',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38319,'Son Servera',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38320,'Terrassa',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38321,'Tordera',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38322,'Torello',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38323,'Vallirana',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38324,'Vic',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38325,'Viladecans',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38326,'Viladecavalls',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38327,'Vilafranca del Penedes',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38328,'Vilanova del Cami',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38329,'Vilanova i la Geltru',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38330,'Vilassar del Mar',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38331,'Bertamirans',3254,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38332,'Berriatua',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38333,'Derio',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38334,'Elorio',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38335,'Loiu',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38336,'Aranda de Duero',3267,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38337,'Burgos',3267,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38338,'Miranda de Ebro',3267,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38339,'Caceres',3268,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38340,'Coria',3268,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38341,'Miajadas',3268,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38342,'Navalmoral de la Mata',3268,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38343,'Plasencia',3268,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38344,'Talayuela',3268,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38345,'Trujillo',3268,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38346,'Algeciras',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38347,'Arcos de la Frontera',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38348,'Barbate',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38349,'Cadiz',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38350,'Chiclana',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38351,'Chipiona',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38352,'Conil',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38353,'El Puerto de Santa Maria',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38354,'Jerez',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38355,'Jimena de la Frontera',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38356,'La Linea',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38357,'Los Barrios',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38358,'Medina-Sidonia',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38359,'Olvera',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38360,'Puerto Real',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38361,'Rota',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38362,'San Fernando',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38363,'San Roque',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38364,'Sanlucar de Barrameda',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38365,'Tarifa',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38366,'Ubrique',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38367,'Vejer de la Frontera',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38368,'Villamartin',3269,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38369,'Camargo',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38370,'Castro-Urdiales',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38371,'El Astillero',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38372,'Laredo',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38373,'Los Corrales de Buelna',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38374,'Pielagos',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38375,'Reinosa',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38376,'San Felices De Buelna',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38377,'Santa Cruz de Bezana',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38378,'Santander',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38379,'Santona',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38380,'Torrelavega',3270,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38381,'Almassora',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38382,'Benicarlo',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38383,'Benicassim',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38384,'Burriana',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38385,'Castello',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38386,'L\'Alcora',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38387,'La Vall d\'Uixo',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38388,'Nules',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38389,'Onda',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38390,'Segorbe',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38391,'Vila-real',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38392,'Vinaros',3271,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38393,'Barcelona',3264,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38394,'Ceuta',3273,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38395,'Aguilar de la Frontera',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38396,'Baena',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38397,'Bujalance',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38398,'Cabra',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38399,'Cordoba',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38400,'Fernan-Nunez',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38401,'Fuente Palmera',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38402,'La Carlota',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38403,'Lucena',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38404,'Luque',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38405,'Montilla',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38406,'Montoro',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38407,'Palma del Rio',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38408,'Penarroya-Pueblonuevo',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38409,'Pozoblanco',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38410,'Priego de Cordoba',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38411,'Puente Genil',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38412,'Rute',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38413,'Villanueva de Cordoba',3281,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38414,'Cuenca',3282,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38415,'Tarancon',3282,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38416,'Aduna',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38417,'Lazakao',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38418,'Banyoles',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38419,'Blanes',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38420,'Empuriabrava',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38421,'Figueres',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38422,'Girona',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38423,'La Bisbal d\'Emporda',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38424,'Lloret de Mar',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38425,'Massanet de la Selva',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38426,'Olot',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38427,'Palafrugell',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38428,'Palamos',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38429,'Ripoll',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38430,'Roses',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38431,'Salt',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38432,'Sant Feliu de Guixols',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38433,'Santa Coloma de Farners',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38434,'Torroella de Montgri',3284,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38435,'Albolote',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38436,'Almunecar',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38437,'Armilla',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38438,'Atarfe',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38439,'Baza',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38440,'Granada',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38441,'Guadix',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38442,'Huescar',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38443,'Huetor Tajar',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38444,'Huetor Vega',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38445,'Illora',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38446,'La Zubia',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38447,'Las Gabias',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38448,'Loja',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38449,'Maracena',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38450,'Motril',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38451,'Ogijares',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38452,'Peligros',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38453,'Pinos Puente',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38454,'Salobrena',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38455,'Santa Fe',3285,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38456,'Azuqueca de Henares',3286,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38457,'Guadalajara',3286,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38458,'Andoain',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38459,'Anoeta',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38460,'Arrasate',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38461,'Azkoitia',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38462,'Azpeitia',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38463,'Beasain',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38464,'Bergara',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38465,'Donostia',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38466,'Eibar',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38467,'Elgoibar',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38468,'Errenteria',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38469,'Guipuuzcoa',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38470,'Hernani',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38471,'Hondarribia',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38472,'Irun',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38473,'Legazpi',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38474,'Mendaro',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38475,'Mondragon',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38476,'Oiartzun',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38477,'Onati',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38478,'Ordizia',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38479,'Oria',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38480,'Pasaia',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38481,'Tolosa',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38482,'Zarautz',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38483,'Zumaia',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38484,'Zumarraga',3287,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38485,'Aljaraque',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38486,'Almonte',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38487,'Ayamonte',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38488,'Bollullos Par del Condado',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38489,'Cartaya',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38490,'Gibraleon',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38491,'Huelva',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38492,'Isla Cristina',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38493,'La Palma del Condado',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38494,'Lepe',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38495,'Moguer',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38496,'Punta Umbria',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38497,'Valverde del Camino',3288,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38498,'Barbastro',3289,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38499,'Binefar',3289,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38500,'Fraga',3289,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38501,'Huesca',3289,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38502,'Jaca',3289,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38503,'Monzon',3289,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38504,'Sabinanigo',3289,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38505,'Alcala la Real',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38506,'Alcaudete',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38507,'Andujar',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38508,'Baeza',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38509,'Bailen',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38510,'Cazorla',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38511,'Jaen',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38512,'Jodar',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38513,'La Carolina',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38514,'Linares',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38515,'Mancha Real',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38516,'Martos',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38517,'Mengibar',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38518,'Torre del Campo',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38519,'Torredonjimeno',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38520,'Ubeda',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38521,'Villacarrillo',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38522,'Villanueva del Arzobispo',3290,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38523,'Astorga',3293,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38524,'Bembibre',3293,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38525,'La Baneza',3293,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38526,'Leon',3293,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38527,'Ponferrada',3293,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38528,'San Andres del Rabanedo',3293,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38529,'Villablino',3293,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38530,'Villaquilambre',3293,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38531,'Tora',3295,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38532,'Balaguer',3295,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38533,'La Seu d\'Urgell',3295,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38534,'Lleida',3295,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38535,'Mollerussa',3295,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38536,'Tarrega',3295,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38537,'Burela',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38538,'Cervo',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38539,'Chantada',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38540,'Foz',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38541,'Lugo',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38542,'Monforte de Lemos',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38543,'Ribadeo',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38544,'Sarria',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38545,'Vilalba',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38546,'Viveiro',3296,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38547,'Alcala de Henares',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38548,'Alcobendas',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38549,'Alcorcon',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38550,'Algete',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38551,'Alpedrete',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38552,'Aranjuez',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38553,'Arganda del Rey',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38554,'Boadilla del Monte',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38555,'Ciempozuelos',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38556,'Collado Villalba',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38557,'Colmenar Viejo',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38558,'Coslada',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38559,'El Escorial',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38560,'Fuenlabrada',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38561,'Galapagar',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38562,'Getafe',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38563,'Guadarrama',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38564,'Humanes de Madrid',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38565,'Las Rozas de Madrid',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38566,'Leganes',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38567,'Madrid',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38568,'Majadahonda',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38569,'Meco',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38570,'Mejorada del Campo',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38571,'Mostoles',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38572,'Navalcarnero',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38573,'Parla',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38574,'Pinto',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38575,'Pozuelo de Alarcon',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38576,'Rivas-Vaciamadrid',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38577,'San Fernando de Henares',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38578,'San Lorenzo de El Escorial',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38579,'San Martin de la Vega',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38580,'San Sebastian de los Reyes',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38581,'Torrejon de Ardoz',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38582,'Torrelodones',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38583,'Tres Cantos',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38584,'Valdemoro',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38585,'Velilla de San Antonio',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38586,'Villanueva de la Canada',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38587,'Villaviciosa de Odon',3297,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38588,'Alhaurin de la Torre',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38589,'Alhaurin el Grande',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38590,'Alora',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38591,'Antequera',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38592,'Apartado',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38593,'Archidona',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38594,'Benalmadena',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38595,'Cartama',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38596,'Coin',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38597,'Estepona',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38598,'Fuengirola',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38599,'Malaga',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38600,'Marbella',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38601,'Mijas',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38602,'Nerja',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38603,'Rincon de la Victoria',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38604,'Ronda',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38605,'Torremolinos',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38606,'Torrox',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38607,'Velez-Malaga',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38608,'maro',3298,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38609,'Melilla',3299,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38610,'Abaran',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38611,'Aguilas',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38612,'Alcantarilla',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38613,'Alhama de Murcia',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38614,'Archena',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38615,'Beniel',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38616,'Bullas',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38617,'Calasparra',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38618,'Caravaca de la Cruz',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38619,'Cartagena',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38620,'Cehegin',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38621,'Cieza',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38622,'Fuente Alamo de Murcia',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38623,'Jumilla',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38624,'La Union',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38625,'Las Torres de Cotillas',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38626,'Lorca',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38627,'Los Alcazares',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38628,'Mazarron',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38629,'Molina de Segura',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38630,'Moratella',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38631,'Mula',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38632,'Murcia',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38633,'Puerto Lumbreras',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38634,'San Javier',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38635,'San Pedro del Pinatar',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38636,'Santomera',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38637,'Torre Pacheco',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38638,'Torre-Pacheco',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38639,'Totana',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38640,'Yecla',3300,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38641,'Ansoain',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38642,'Atarrabia',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38643,'Baranain',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38644,'Burlata',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38645,'Iruna',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38646,'Lizarra',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38647,'Navarra',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38648,'Orkoien',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38649,'Tafalla',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38650,'Tudela',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38651,'Zizur Nagusia',3301,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38652,'O Barco de Valdeorras',3302,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38653,'O Carballino',3302,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38654,'Ourense',3302,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38655,'Verin',3302,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38656,'Xinzo de Limia',3302,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38657,'Guardo',3304,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38658,'Palencia',3304,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38659,'A Estrada',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38660,'A Guarda',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38661,'Baiona',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38662,'Bueu',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38663,'Caldas de Reis',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38664,'Cambados',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38665,'Cangas',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38666,'Cangas De Morrazo',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38667,'Gondomar',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38668,'Lalin',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38669,'Marin',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38670,'Moana',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38671,'Mos',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38672,'Nigran',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38673,'O Grove',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38674,'O Porrino',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38675,'Poio',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38676,'Ponteareas',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38677,'Pontevedra',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38678,'Redondela',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38679,'Salvaterra de Mino',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38680,'Sanxenxo',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38681,'Silleda',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38682,'Tomino',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38683,'Tui',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38684,'Vigo',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38685,'Vilagarcia de Arousa',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38686,'Vilanova de Arousa',3305,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38687,'Bejar',3306,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38688,'Ciudad Rodrigo',3306,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38689,'Salamanca',3306,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38690,'Santa Marta de Tormes',3306,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38691,'Cuellar',3308,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38692,'Segovia',3308,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38693,'Alcala de Guadaira',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38694,'Alcala del Rio',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38695,'Arahal',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38696,'Bormujos',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38697,'Brenes',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38698,'Camas',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38699,'Cantillana',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38700,'Carmona',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38701,'Castilleja de la Cuesta',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38702,'Coria del Rio',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38703,'Dos Hermanas',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38704,'Ecija',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38705,'El Viso del Alcor',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38706,'Estepa',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38707,'Gines',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38708,'Guillena',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38709,'La Algaba',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38710,'La Puebla de Cazalla',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38711,'La Puebla del Rio',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38712,'La Rinconada',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38713,'Las Cabezas de San Juan',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38714,'Lebrija',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38715,'Lora del Rio',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38716,'Los Palacios y Villafranca',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38717,'Mairena del Alcor',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38718,'Mairena del Aljarafe',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38719,'Marchena',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38720,'Moron de la Frontera',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38721,'Olivares',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38722,'Osuna',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38723,'Pilas',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38724,'San Juan de Aznalfarache',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38725,'Sanlucar la Mayor',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38726,'Sevilla',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38727,'Tocina',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38728,'Tomares',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38729,'Utrera',3309,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38730,'Soria',3310,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38731,'Alcanar',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38732,'Amposta',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38733,'Calafell',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38734,'Cambrils',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38735,'Deltrebe',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38736,'El Vendrell',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38737,'Reus',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38738,'Salou',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38739,'Sant Carles de la Rapita',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38740,'Tarragona',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38741,'Torredembarra',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38742,'Tortosa',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38743,'Valls',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38744,'Vila-seca',3311,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38745,'Tenerife',3312,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38746,'Alcaniz',3313,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38747,'Teruel',3313,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38748,'Consuegra',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38749,'Illescas',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38750,'Madridejos',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38751,'Mora',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38752,'Pepino',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38753,'Quintanar de la Orden',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38754,'Sonseca',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38755,'Talavera de la Reina',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38756,'Toledo',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38757,'Torrijos',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38758,'Villacanas',3314,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38759,'Agullent',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38760,'Alaquas',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38761,'Albal',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38762,'Alberic',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38763,'Alboraya',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38764,'Aldaia',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38765,'Alfafar',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38766,'Algemesi',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38767,'Alginet',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38768,'Alzira',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38769,'Benaguasil',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38770,'Benetusser',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38771,'Benifaio',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38772,'Beniparrell',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38773,'Betera',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38774,'Bunol',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38775,'Burjassot',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38776,'Canals',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38777,'Carcaixent',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38778,'Carlet',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38779,'Catarroja',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38780,'Chiva',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38781,'Cullera',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38782,'Elche',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38783,'Gandia',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38784,'Godella',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38785,'L\'Alcudia',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38786,'L\'Eliana',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38787,'La Pobla de Vallbona',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38788,'Lliria',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38789,'Los Montesinos',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38790,'Manises',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38791,'Massamagrell',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38792,'Meliana',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38793,'Mislata',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38794,'Moncada',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38795,'Oliva',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38796,'Ontinyent',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38797,'Paiporta',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38798,'Paterna',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38799,'Picanya',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38800,'Picassent',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38801,'Pucol',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38802,'Quart de Poblet',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38803,'Requena',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38804,'Riba-roja de Turia',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38805,'Sagunt',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38806,'Sedavi',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38807,'Silla',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38808,'Sueca',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38809,'Tavernes Blanques',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38810,'Tavernes de la Valldigna',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38811,'Torrent',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38812,'Utiel',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38813,'Valencia',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38814,'Xativa',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38815,'Xirivella',3315,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38816,'Laguna de Duero',3316,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38817,'Medina del Campo',3316,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38818,'Tordesillas',3316,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38819,'Valladolid',3316,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38820,'Abadiano',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38821,'Abanto Zierbena',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38822,'Amorebieta',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38823,'Arrigorriaga',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38824,'Barakaldo',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38825,'Basauri',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38826,'Bermeo',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38827,'Berriz',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38828,'Bilbao',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38829,'Durango',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38830,'Erandio',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38831,'Ermua',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38832,'Etxano',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38833,'Galdakao',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38834,'Gernika-Lumo',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38835,'Getxo',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38836,'Igorre',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38837,'Leioa',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38838,'Mungia',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38839,'Ondarroa',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38840,'Ortuella',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38841,'Portugalete',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38842,'Santurtzi',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38843,'Sestao',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38844,'Sopelana',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38845,'Trapagaran',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38846,'Zamudio',3317,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38847,'Benavente',3318,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38848,'Toro',3318,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38849,'Zamora',3318,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38850,'Calatayud',3319,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38851,'Ejea de los Caballeros',3319,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38852,'Tarazona',3319,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38853,'Utebo',3319,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38854,'Zaragoza',3319,205,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38855,'Amparai',3320,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38856,'Galmune',3320,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38857,'Anuradhapuraya',3321,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38858,'Badulla',3322,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38859,'Bandarawela',3322,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38860,'Haputale',3322,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38861,'Boralesgamuwa',3323,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38862,'Battaramulla',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38863,'Colombo',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38864,'Dehiwala-Mount Lavinia',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38865,'Homagama',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38866,'Jayawardanapura',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38867,'Kolonnawa',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38868,'Kotikawatta',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38869,'Maharagama',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38870,'Moratuwa',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38871,'Mulleriyawa',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38872,'Ratmalana',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38873,'Seethawakapura',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38874,'Sri Jayawardanapura',3324,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38875,'Ambalamgoda',3325,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38876,'Galla',3325,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38877,'Daluguma',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38878,'Gampaha',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38879,'Hendala',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38880,'Jaela',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38881,'Kandana',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38882,'Katunayaka',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38883,'Kelaniya',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38884,'Migamuwa',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38885,'Minuwangoda',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38886,'Peliyagoda',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38887,'Ragama',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38888,'Wattala',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38889,'Welesara',3326,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38890,'Hambantota',3327,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38891,'Tanggalla',3327,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38892,'Beruwala',3328,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38893,'Horana',3328,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38894,'Kalutara',3328,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38895,'Keselwatta',3328,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38896,'Panadraya',3328,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38897,'Kegalla',3329,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38898,'Kilinochchi',3330,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38899,'Kuliyapitiya',3331,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38900,'Kurunegala',3331,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38901,'Polgahawela',3331,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38902,'Eravur',3332,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38903,'Katankudi',3332,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38904,'Madakalpuwa',3332,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38905,'Malwana',3334,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38906,'Mannarama',3335,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38907,'Dambulla',3336,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38908,'Matale',3336,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38909,'Sigiriya',3336,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38910,'Matara',3337,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38911,'Weligama',3337,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38912,'Monaragala',3338,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38913,'Wattegama',3338,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38914,'Mullaitivu',3339,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38915,'Polonnaruwa',3343,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38916,'Halawata',3344,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38917,'Puttalama',3344,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38918,'Balangoda',3345,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38919,'Ratnapuraya',3345,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38920,'Tirikunamalaya',3347,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38921,'Querceta',3348,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38922,'Vavuniyawa',3349,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38923,'Chavakachcheri',3351,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38924,'Peduru Tuduwa',3351,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38925,'Valvedditturai',3351,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38926,'Yapanaya',3351,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38927,'Mahara',3352,206,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38928,'Kodok',3353,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38929,'Malakal',3353,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38930,'Nasir',3353,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38931,'ar-Rank',3353,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38932,'Juba',3354,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38933,'Yei',3354,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38934,'Maridi',3359,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38935,'Nzara',3359,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38936,'Tambura',3359,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38937,'Yambio',3359,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38938,'Bur',3362,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38939,'Aruma',3363,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38940,'Halfa al-Jadidah',3363,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38941,'Kassala',3363,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38942,'Khashm-al-Qirbah',3363,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38943,'Wagar',3363,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38944,'al-Masnah',3363,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38945,'\'Atbarah',3364,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38946,'Barbar',3364,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38947,'Kabushiyah',3364,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38948,'Shandi',3364,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38949,'ad-Damir',3364,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38950,'al-Bawga',3364,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38951,'al-Matammah',3364,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38952,'Kapoeta',3368,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38953,'Torit',3368,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38954,'Abu Hijar',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38955,'Galgani',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38956,'Hajj \'Abdallah',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38957,'Karkawj',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38958,'Mayurnu',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38959,'Sinjah',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38960,'Sinnar',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38961,'Sinnar-at-Tagatu',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38962,'Umm Shawkah',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38963,'ad-Dindar',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38964,'as-Suki',3369,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38965,'Mashra ar-Raqq',3370,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38966,'Tonj',3370,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38967,'Warab',3370,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38968,'Bur Sudan',3372,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38969,'Gabait',3372,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38970,'Sawakin',3372,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38971,'Sinkat',3372,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38972,'Tawkar',3372,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38973,'Rumbik',3373,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38974,'Yirol',3373,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38975,'Abu \'Usar',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38976,'Arba\'atun wa \'Ishrun-al-Qurash',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38977,'Maharaybah',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38978,'Miallayab',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38979,'Rufa\'a',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38980,'Sharafat',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38981,'Tabat',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38982,'Tambul',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38983,'Wad Madani',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38984,'Wad Rawah',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38985,'al-Hawsh',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38986,'al-Hilaliyah',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38987,'al-Huda',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38988,'al-Husayhisah',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38989,'al-Kamilin',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38990,'al-Karaymat',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38991,'al-Manaqil',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38992,'al-Mu\'sadiyah',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38993,'al-Musallamiyah',3374,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38994,'Umm Dawm',3375,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38995,'Umm Durman',3375,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38996,'al-Khartum',3375,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38997,'al-Khartum Bahri',3375,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38998,'Doka',3376,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(38999,'Qala\'-an-Nahl',3376,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39000,'Shuwak',3376,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39001,'al-Faw',3376,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39002,'al-Hawatah',3376,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39003,'al-Qadarif',3376,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39004,'Bentiu',3377,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39005,'Ler',3377,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39006,'Asalaya',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39007,'Bufi',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39008,'Gulli',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39009,'Kinanah',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39010,'Kusti',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39011,'Marabba',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39012,'Rabak',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39013,'Shabashah',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39014,'Tandalti',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39015,'Umm Jarr',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39016,'Wad-az-Zaki',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39017,'ad-Duwaym',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39018,'al-Jazirah',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39019,'al-Kawah',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39020,'al-Qutaynah',3378,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39021,'ad-Damazin',3379,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39022,'al-Kurumuk',3379,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39023,'al-Quwaysi',3379,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39024,'ar-Rusayris',3379,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39025,'Argu',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39026,'Dalqu',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39027,'Dunqulah',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39028,'Kanisah',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39029,'Karmah-an-Nuzul',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39030,'Kuraymah',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39031,'Kurti',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39032,'Marawi',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39033,'Tangasi-ar-Ru\'ays',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39034,'Wadi Halfa',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39035,'ad-Dabbah',3380,207,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39036,'Brokopondo',3381,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39037,'Brownsweg',3381,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39038,'Marienburg',3382,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39039,'Meerzorg',3382,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39040,'Nieuw Amsterdam',3382,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39041,'Totness',3383,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39042,'Albina',3384,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39043,'Moengo',3384,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39044,'Nieuw Nickerie',3385,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39045,'Wageningen',3385,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39046,'Onverwacht',3386,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39047,'Paramaribo',3387,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39048,'Groningen',3388,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39049,'Lelydorp',3389,208,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39050,'Barentsburg',3390,209,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39051,'Hornsund',3390,209,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39052,'Isfjord Radio',3390,209,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39053,'Longyearbyen',3390,209,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39054,'Ny-Alesund',3390,209,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39055,'Bulembu',3391,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39056,'Ezulwini',3391,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39057,'Mbabane',3391,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39058,'Ngwenya',3391,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39059,'Pigg\'s Peak',3391,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39060,'Big Bend',3392,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39061,'Mhlume',3392,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39062,'Mpaka',3392,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39063,'Nsoko',3392,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39064,'Simunye',3392,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39065,'Siteki',3392,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39066,'Tshaneni',3392,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39067,'Bhunya',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39068,'Kwaluseni',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39069,'Lobamba',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39070,'Malkerns',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39071,'Mankayane',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39072,'Manzini',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39073,'Matsapha',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39074,'Mhlambanyatsi',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39075,'Sidvokodvo',3393,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39076,'Hlatikulu',3394,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39077,'Hluti',3394,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39078,'Kubuta',3394,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39079,'Lavumisa',3394,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39080,'Nhlangano',3394,210,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39081,'Karlshamn',3397,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39082,'Karlskrona',3397,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39083,'Ronneby',3397,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39084,'Stenungsund',3398,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39085,'Avesta',3399,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39086,'Borlange',3399,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39087,'Falun',3399,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39088,'Hedemora',3399,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39089,'Ludvika',3399,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39090,'Malung',3399,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39091,'Bollnas',3400,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39092,'Bro',3400,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39093,'Gavle',3400,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39094,'Hudiksvall',3400,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39095,'Sandviken',3400,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39096,'Soderhamn',3400,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39097,'Skara',3402,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39098,'Visby',3402,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39099,'Anderstorp',3403,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39100,'Falkenberg',3403,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39101,'Halmstad',3403,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39102,'Ullared',3403,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39103,'Varberg',3403,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39104,'Farjestaden',3404,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39105,'Ostersund',3404,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39106,'Gislaved',3405,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39107,'Jonkoping',3405,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39108,'Nassjo',3405,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39109,'Tranas',3405,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39110,'Varnamo',3405,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39111,'Vetlanda',3405,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39112,'Blomstermala',3406,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39113,'Kalmar',3406,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39114,'Nybro',3406,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39115,'Oskarshamn',3406,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39116,'Solna',3406,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39117,'Torsas',3406,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39118,'Vastervik',3406,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39119,'Habo',3407,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39120,'Limhamn',3407,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39121,'Segeltorp',3407,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39122,'Svedala',3407,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39123,'Ljungby',3408,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39124,'Vaxjo',3408,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39125,'Boden',3409,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39126,'Kiruna',3409,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39127,'Lulea',3409,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39128,'Pitea',3409,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39129,'Askersund',3410,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39130,'Karlskoga',3410,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39131,'Kumla',3410,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39132,'Orebro',3410,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39133,'Finspang',3411,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39134,'Follinge',3411,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39135,'Kisa',3411,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39136,'Linkoping',3411,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39137,'Mjolby',3411,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39138,'Motala',3411,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39139,'Norrkoping',3411,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39140,'Vadstena',3411,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39141,'Skarpovagen',3412,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39142,'Angelholm',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39143,'Arlov',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39144,'Bastad',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39145,'Eslov',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39146,'Hassleholm',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39147,'Helsingborg',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39148,'Hjarup',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39149,'Hoganas',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39150,'Horby',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39151,'Jonstorp',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39152,'Klagstorp',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39153,'Kristianstad',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39154,'Landskrona',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39155,'Lund',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39156,'Malmo',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39157,'Skanor',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39158,'Staffanstorp',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39159,'Trelleborg',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39160,'Ystad',3413,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39161,'Hillerstorp',3414,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39162,'Markaryd',3414,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39163,'Smalandsstenar',3414,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39164,'Eskilstuna',3415,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39165,'Gnesta',3415,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39166,'Katrineholm',3415,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39167,'Nacka Strand',3415,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39168,'Nykoping',3415,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39169,'Strangnas',3415,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39170,'Vingaker',3415,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39171,'Akersberga',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39172,'Boo',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39173,'Bromma',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39174,'Djursholm',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39175,'Hallstavik',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39176,'Jarfalla',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39177,'Johannesfred',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39178,'Lidingo',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39179,'Marsta',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39180,'Norrtalje',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39181,'Norsborg',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39182,'Nynashamn',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39183,'Rosersberg',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39184,'Sodertalje',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39185,'Sollentuna',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39186,'Stockholm',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39187,'Sundbyberg',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39188,'Taby',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39189,'Tumba',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39190,'Upplands-Vasby',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39191,'Vallentuna',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39192,'Vasterhaninge',3416,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39193,'Balsta',3417,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39194,'Enkoping',3417,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39195,'Knivsta',3417,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39196,'Skyttorp',3417,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39197,'Storvreta',3417,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39198,'Uppsala',3417,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39199,'Arvika',3418,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39200,'Hammaro',3418,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39201,'Karlstad',3418,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39202,'Kristinehamn',3418,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39203,'Skoghall',3418,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39204,'Guglingen',3419,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39205,'Robertsfors',3419,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39206,'Skelleftea',3419,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39207,'Umea',3419,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39208,'Gothenburg',3420,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39209,'Kallered',3420,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39210,'Kvanum',3420,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39211,'Timmersdala',3420,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39212,'Harnosand',3421,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39213,'Ornskoldsvik',3421,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39214,'Sundsvall',3421,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39215,'Arboga',3422,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39216,'Fagersta',3422,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39217,'Hallstahammar',3422,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39218,'Koping',3422,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39219,'Sala',3422,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39220,'Vasteras',3422,211,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39221,'Aarau',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39222,'Aarburg',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39223,'Baden',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39224,'Bevilard',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39225,'Bremgarten',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39226,'Brugg',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39227,'Buchs',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39228,'Chevenez',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39229,'Fislisbach',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39230,'Granichen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39231,'Hagglingen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39232,'Kaiseraugst',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39233,'Kleindoettingen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39234,'Klingnau',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39235,'Kuttigen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39236,'Lenzburg',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39237,'Menziken',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39238,'Mohlin',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39239,'Mumpf',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39240,'Muri',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39241,'Neuenhof',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39242,'Niederlenz',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39243,'Niederwangen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39244,'Niederwil',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39245,'Oberentfelden',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39246,'Obersiggenthal',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39247,'Oftringen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39248,'Reinach',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39249,'Rheinfelden',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39250,'Rosshausern',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39251,'Rothrist',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39252,'Rupperswil',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39253,'Schmitten',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39254,'Seon',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39255,'Spreitenbach',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39256,'Stein',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39257,'Suhr',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39258,'Trogen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39259,'Untersiggenthal',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39260,'Villmergen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39261,'Wettingen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39262,'Windisch',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39263,'Wohlen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39264,'Wurenlos',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39265,'Zofingen',3424,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39266,'Aesch',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39267,'Allschwil',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39268,'Arlesheim',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39269,'Binningen',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39270,'Birsfelden',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39271,'Bottmingen',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39272,'Ettingen',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39273,'Frenkendorf',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39274,'Gelterkinden',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39275,'Laufen',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39276,'Lausen',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39277,'Liestal',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39278,'Munchenstein',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39279,'Muttenz',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39280,'Oberwil',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39281,'Pratteln',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39282,'Reinach',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39283,'Sissach',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39284,'Therwil',3427,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39285,'Basel',3428,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39286,'Riehen',3428,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39287,'Belp',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39288,'Bern',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39289,'Berne',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39290,'Biel',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39291,'Biel-Bienne',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39292,'Bolligen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39293,'Burgdorf',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39294,'Frutigen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39295,'Heimberg',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39296,'Herzogenbuchsee',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39297,'Huttwil',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39298,'Interlaken',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39299,'Ittigen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39300,'Kirchberg',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39301,'Koniz',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39302,'Konolfingen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39303,'Langenthal',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39304,'Langnau',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39305,'Lengnau',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39306,'Lyss',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39307,'Meiringen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39308,'Moutier',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39309,'Munchenbuchsee',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39310,'Munsingen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39311,'Muri',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39312,'Nidau',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39313,'Orpund',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39314,'Ostermundingen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39315,'Pieterlen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39316,'Saanen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39317,'Saint-Imier',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39318,'Sonceboz',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39319,'Spiez',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39320,'Steffisburg',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39321,'Sumiswald',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39322,'Thun',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39323,'Uetendorf',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39324,'Unterseen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39325,'Urtenen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39326,'Vechingen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39327,'Wahlern',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39328,'Wohlen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39329,'Worb',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39330,'Zollikofen',3429,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39331,'Bulle',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39332,'Dudingen',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39333,'Fribourg',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39334,'Granges-Paccot',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39335,'Marly',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39336,'Muntelier',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39337,'Murten',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39338,'Remaufens',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39339,'Villars-sur-Glane',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39340,'Villaz-Saint-Pierre',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39341,'Wunnewil-Flamatt',3431,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39342,'Bernex',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39343,'Carouge',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39344,'Chene-Bougeries',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39345,'Chene-Bourg',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39346,'Collonge-Bellerive',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39347,'Cologny',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39348,'Geneva',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39349,'Geneve',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39350,'Lancy',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39351,'Le Grand-Saconnex',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39352,'Meyrin',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39353,'Onex',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39354,'Plan-les-Ouates',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39355,'Thonex',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39356,'Vernier',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39357,'Versoix',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39358,'Veyrier',3432,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39359,'Glarus',3433,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39360,'Nafels',3433,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39361,'Arosa',3434,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39362,'Chur',3434,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39363,'Davos',3434,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39364,'Domat',3434,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39365,'Igis',3434,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39366,'Landquart',3434,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39367,'Maienfeld',3434,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39368,'Sankt Moritz',3434,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39369,'Heerbrugg',3435,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39370,'Delemont',3436,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39371,'Glovelier',3436,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39372,'Le Noirmont',3436,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39373,'Porrentruy',3436,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39374,'Adligenswil',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39375,'Ballwil',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39376,'Buchrain',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39377,'Ebikon',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39378,'Emmen',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39379,'Hochdorf',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39380,'Horw',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39381,'Kriens',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39382,'Littau',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39383,'Luzern',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39384,'Malters',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39385,'Meggen',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39386,'Neuenkirch',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39387,'Perlern',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39388,'Rothenburg',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39389,'Ruswil',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39390,'Sursee',3438,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39391,'Muhen',3440,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39392,'Bole',3441,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39393,'Boudry',3441,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39394,'Colombier',3441,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39395,'La Chaux-de-Fonds',3441,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39396,'Le Locle',3441,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39397,'Neuchatel',3441,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39398,'Peseux',3441,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39399,'Buochs',3442,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39400,'Hergiswil',3442,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39401,'Stans',3442,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39402,'Stansstad',3442,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39403,'Alpnach',3443,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39404,'Kerns',3443,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39405,'Sachseln',3443,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39406,'Sarnen',3443,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39407,'Neuhausen',3445,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39408,'Schaffhausen',3445,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39409,'Altendorf',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39410,'Arth',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39411,'Buron',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39412,'Einsiedeln',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39413,'Feusisberg',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39414,'Freienbach',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39415,'Ingenbohl',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39416,'Kussnacht',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39417,'Lachen',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39418,'Schubelbach',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39419,'Schwyz',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39420,'Wangen',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39421,'Wollerau',3446,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39422,'Balsthal',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39423,'Bellach',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39424,'Bettlach',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39425,'Biberist',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39426,'Derendingen',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39427,'Dornach',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39428,'Dulliken',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39429,'Feldbrunnen',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39430,'Gerlafingen',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39431,'Grenchen',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39432,'Hagendorf',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39433,'Olten',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39434,'Schonenwerd',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39435,'Solothurn',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39436,'Trimbach',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39437,'Wangen',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39438,'Zuchwil',3447,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39439,'Aadorf',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39440,'Amriswil',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39441,'Arbon',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39442,'Bischofszell',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39443,'Felben-Wellhausen',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39444,'Frauenfeld',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39445,'Guttingen',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39446,'Kreuzlingen',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39447,'Romanshorn',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39448,'Sirnach',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39449,'Sulgen',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39450,'Tagerwilen',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39451,'Weinfelden',3448,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39452,'Ascona',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39453,'Bellinzona',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39454,'Biasca',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39455,'Breganzona',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39456,'Cadempino',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39457,'Chiasso',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39458,'Giubiasco',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39459,'Locarno',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39460,'Losone',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39461,'Lugano',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39462,'Massagno',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39463,'Melide',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39464,'Mendrisio',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39465,'Mezzovico',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39466,'Minusio',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39467,'Porza',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39468,'Pregassona',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39469,'Viganello',3449,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39470,'Altdorf',3450,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39471,'Schattdorf',3450,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39472,'Bagnes',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39473,'Brig-Glis',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39474,'Collombey-Muraz',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39475,'Conthey',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39476,'Evionnaz',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39477,'Fully',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39478,'Martigny',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39479,'Monthey',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39480,'Naters',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39481,'Nendaz',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39482,'Niederwald',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39483,'Saviese',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39484,'Sierre',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39485,'Sion',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39486,'Visp',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39487,'Vouvry',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39488,'Zermatt',3451,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39489,'Aigle',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39490,'Ballaigues',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39491,'Bex',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39492,'Blonay',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39493,'Bussigny',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39494,'Chavannes',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39495,'Crissier',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39496,'Ecublens',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39497,'Epalinges',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39498,'Gland',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39499,'La Tour-de-Peilz',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39500,'Lausanne',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39501,'Le Mont-sur-Lausanne',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39502,'Lucerne',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39503,'Lutry',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39504,'Montreux',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39505,'Morges',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39506,'Nyon',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39507,'Ollon',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39508,'Orbe',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39509,'Payerne',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39510,'Prilly',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39511,'Puidoux',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39512,'Pully',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39513,'Renens',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39514,'Romainmotier',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39515,'Saint Sulpice',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39516,'Vevey',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39517,'Yverdon',3452,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39518,'Vauffelin',3453,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39519,'Baar',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39520,'Cham',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39521,'Hunenberg',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39522,'Menzingen',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39523,'Neuheim',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39524,'Oberageri',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39525,'Risch',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39526,'Risch-Rotkreuz',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39527,'Steinhausen',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39528,'Unterageri',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39529,'Zug',3454,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39530,'Adliswil',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39531,'Affoltern',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39532,'Bachenbulach',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39533,'Bassersdorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39534,'Birmensdorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39535,'Bubikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39536,'Bulach',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39537,'Dielsdorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39538,'Dietikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39539,'Dietlikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39540,'Dubendorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39541,'Durnten',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39542,'Ebmatingen',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39543,'Egg',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39544,'Embrach',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39545,'Erlenbach',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39546,'Fallanden',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39547,'Fehraltdorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39548,'Geroldswil',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39549,'Gossau',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39550,'Greifensee',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39551,'Herrliberg',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39552,'Hinwil',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39553,'Hombrechtikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39554,'Horgen',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39555,'Illnau-Effretikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39556,'Kilchberg',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39557,'Kloten',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39558,'Kusnacht',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39559,'Langnau',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39560,'Mannedorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39561,'Maur',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39562,'Meilen',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39563,'Neftenbach',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39564,'Niederhasli',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39565,'Nurensdorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39566,'Oberengstringen',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39567,'Oberglatt',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39568,'Oberrieden',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39569,'Opfikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39570,'Pfaffikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39571,'Rafz',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39572,'Regensdorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39573,'Richterswil',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39574,'Rumlang',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39575,'Ruschlikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39576,'Ruti',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39577,'Schlieren',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39578,'Schwerzenbach',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39579,'Seuzach',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39580,'Stafa',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39581,'Thalwil',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39582,'Uetikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39583,'Urdorf',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39584,'Uster',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39585,'Volketswil',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39586,'Wadenswil',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39587,'Wald',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39588,'Wallisellen',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39589,'Wangen-Bruttisellen',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39590,'Weiningen',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39591,'Wetzikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39592,'Winterthur',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39593,'Zell',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39594,'Zollikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39595,'Zumikon',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39596,'Zurich',3455,212,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39597,'Aleppo',3456,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39598,'Dar\'a',3457,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39599,'Nawa',3457,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39600,'Abu Kamal',3458,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39601,'Dayr az-Zawr',3458,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39602,'al-Mayadin',3458,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39603,'Damascus',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39604,'Darayya',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39605,'Duma',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39606,'Hajar Aswad',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39607,'Harasta al-Bas',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39608,'Jaramanah',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39609,'Kabir-as-Sit',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39610,'Kesweh',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39611,'Qatana',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39612,'Yabrud',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39613,'al-Qutayfah',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39614,'an-Nabk',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39615,'at-Tall',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39616,'az-Zabadani',3459,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39617,'\'Afrin',3460,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39618,'\'Ayn-al-\'Arab',3460,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39619,'A\'zaz',3460,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39620,'Halab',3460,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39621,'Manbij',3460,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39622,'al-Bab',3460,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39623,'as-Safirah',3460,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39624,'Hamah',3461,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39625,'Masyaf',3461,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39626,'Muhradah',3461,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39627,'Salamiyah',3461,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39628,'Hims',3462,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39629,'Homs',3462,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39630,'Tudmur',3462,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39631,'al-Qusayr',3462,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39632,'ar-Rastan',3462,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39633,'Ariha',3463,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39634,'Idlib',3463,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39635,'Jisr-ash-Shughur',3463,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39636,'Ma\'arrat-an-Nu\'man',3463,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39637,'Baniyas',3465,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39638,'Safita',3465,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39639,'Tartus',3465,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39640,'Ra\'s-al-\'Ayn',3466,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39641,'al-Hasakah',3466,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39642,'al-Malikiyah',3466,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39643,'al-Qamishli',3466,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39644,'Jablah',3467,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39645,'Lattakia',3467,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39646,'al-Ladhiqiyah',3467,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39647,'al-Qunaytirah',3468,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39648,'ar-Raqqah',3469,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39649,'ath-Thawrah',3469,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39650,'as-Suwayda',3470,213,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39651,'Changhua City',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39652,'Changhwa',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39653,'Chihu',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39654,'Erhlin',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39655,'Hemei',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39656,'Homei',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39657,'Hua Tan Hsiang',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39658,'Huatan Township',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39659,'Lukang',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39660,'Peitou',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39661,'Puyen Hsiang',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39662,'Tienchung',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39663,'Yuanlin',3471,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39664,'Fenglin',3477,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39665,'Hualian',3477,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39666,'Yuli',3477,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39667,'Ilan',3478,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39668,'Lotung',3478,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39669,'Suao',3478,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39670,'Toucheng',3478,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39671,'Kincheng',3482,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39672,'Kinhsia',3482,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39673,'Kinhu',3482,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39674,'Cholan',3483,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39675,'Chunan',3483,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39676,'Houlung',3483,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39677,'Miaoli',3483,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39678,'Toufen',3483,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39679,'Tunghsiao',3483,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39680,'Yuanli',3483,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39681,'Zaociao',3483,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39682,'Chichi',3484,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39683,'Chushan',3484,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39684,'Nantou',3484,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39685,'Puli',3484,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39686,'Tsaotun',3484,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39687,'Makung',3486,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39688,'Chaochou',3487,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39689,'Hengchun',3487,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39690,'Pingtung',3487,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39691,'Tungkang',3487,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39692,'Dali',3488,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39693,'South District',3488,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39694,'Ta-Ya Shang',3488,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39695,'Dali',3489,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39696,'South District',3489,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39697,'Ta-Ya Shang',3489,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39698,'Dali',3490,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39699,'South District',3490,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39700,'Ta-Ya Shang',3490,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39701,'Kuanshan',3495,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39702,'Taitung',3495,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39703,'Chengkung',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39704,'Chungli',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39705,'Kuan Yin',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39706,'Pate',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39707,'Pingchen',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39708,'Ta Yuan',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39709,'Tachi',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39710,'Taoyuan',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39711,'Tungshih',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39712,'Yangmei',3496,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39713,'Wujie',3497,214,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39714,'Hsilo',3499,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39715,'Huwei',3499,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39716,'Peikang',3499,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39717,'Touliu',3499,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39718,'Tounan',3499,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39719,'Tuku',3499,NULL,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39720,'Dushanbe',3500,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39721,'Khorug',3501,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39722,'Murgob',3501,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39723,'Garm',3502,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39724,'Hisor',3502,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39725,'Kofarnihon',3502,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39726,'Leninskiy',3502,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39727,'Rogun',3502,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39728,'Shakhrinau',3502,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39729,'Tursunzoda',3502,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39730,'Dangara',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39731,'Farkhor',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39732,'Jilikul',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39733,'Khojamaston',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39734,'Kolhozobod',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39735,'Kulob',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39736,'Kumsangir',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39737,'Moskva',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39738,'Mu\'minobod',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39739,'Nurak',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39740,'Pyanj',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39741,'Qurgonteppa',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39742,'Sarband',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39743,'Shaartuz',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39744,'Sovetskiy',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39745,'Vakhsh',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39746,'Vose',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39747,'Yovon',3503,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39748,'Adrasmon',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39749,'Asht',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39750,'Ayni',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39751,'Buston',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39752,'Chkalov',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39753,'Chorku',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39754,'Gafurov',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39755,'Ganchi',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39756,'Isfara',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39757,'Khujand',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39758,'Konibodom',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39759,'Matcha',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39760,'Nau',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39761,'Panjakent',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39762,'Proletarsk',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39763,'Qayroqqum',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39764,'Shurob',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39765,'Taboshar',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39766,'Uroteppa',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39767,'Zafarobod',3504,215,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39768,'Arusha',3505,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39769,'Dodoma',3507,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39770,'Kondoa',3507,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39771,'Mpwapwa',3507,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39772,'Iringa',3508,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39773,'Njombe',3508,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39774,'Bukoba',3509,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39775,'Bwanga',3509,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39776,'Ngara',3509,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39777,'Kasulu',3510,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39778,'Kigoma',3510,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39779,'Uvinza',3510,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39780,'Moshi',3511,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39781,'Same',3511,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39782,'Kilwa Kivinje',3512,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39783,'Lindi',3512,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39784,'Nachingwea',3512,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39785,'Musoma',3513,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39786,'Tarime',3513,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39787,'Mbeya',3514,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39788,'Mwaya',3514,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39789,'Tukuyu',3514,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39790,'Kilosa',3515,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39791,'Mahenge',3515,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39792,'Morogoro',3515,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39793,'Masasi',3516,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39794,'Mikindani',3516,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39795,'Mtwara',3516,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39796,'Newala',3516,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39797,'Magu',3517,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39798,'Mwanza',3517,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39799,'Nansio',3517,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39800,'Sengerama',3517,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39801,'Bagamoyo',3518,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39802,'Kibaha',3518,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39803,'Rufiji',3518,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39804,'Utete',3518,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39805,'Mpanda',3519,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39806,'Sumbawanga',3519,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39807,'Songea',3520,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39808,'Tunduru',3520,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39809,'Kahama',3521,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39810,'Maswa',3521,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39811,'Mwadui',3521,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39812,'Old Shinyanga',3521,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39813,'Shinyanga',3521,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39814,'Manyoni',3522,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39815,'Singida',3522,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39816,'Bukene',3523,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39817,'Nzega',3523,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39818,'Tabora',3523,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39819,'Urambo',3523,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39820,'Korogwe',3524,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39821,'Muheza',3524,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39822,'Pangani',3524,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39823,'Tanga',3524,216,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39824,'Bangkhen',3528,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39825,'Bangkok',3528,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39826,'Phatumthanee',3528,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39827,'Bang Khla',3530,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39828,'Bang Pakong',3530,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39829,'Bangpakong',3530,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39830,'Chachoengsao',3530,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39831,'Phanom Sarakham',3530,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39832,'Plaeng Yao',3530,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39833,'Bamnet Narong',3532,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39834,'Chaiyaphum',3532,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39835,'Kaeng Khlo',3532,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39836,'Kaset Sombun',3532,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39837,'Phu Khieo',3532,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39838,'Chanthaburi',3534,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39839,'Khlung',3534,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39840,'Laem Sing',3534,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39841,'Soydow',3534,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39842,'Tha Mai',3534,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39843,'Chumphon',3538,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39844,'Lang Suan',3538,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39845,'Huai Mek',3539,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39846,'Kalasin',3539,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39847,'Kamalasai',3539,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39848,'Khao Wong',3539,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39849,'Kuchinarai',3539,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39850,'Nong Kung Si',3539,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39851,'Yang Talat',3539,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39852,'Bo Phloi',3541,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39853,'Kanchanaburi',3541,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39854,'Phanom Thuan',3541,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39855,'Tha Maka',3541,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39856,'Tha Muang',3541,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39857,'Ao Luk',3543,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39858,'Krabi',3543,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39859,'Lampang',3545,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39860,'Thoen',3545,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39861,'Lamphun',3546,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39862,'Mae Tha',3546,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39863,'Pa Sang',3546,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39864,'Loei',3547,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39865,'Phu Kra Dung',3547,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39866,'Wang Saphung',3547,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39867,'Mukdahan',3551,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39868,'Chiang Klang',3558,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39869,'Nan',3558,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39870,'Bacho',3559,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39871,'Narathiwat',3559,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39872,'Rangae',3559,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39873,'Sungai Kolok',3559,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39874,'Sungai Padi',3559,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39875,'Tak Bai',3559,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39876,'Bang Bo Thong',3562,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39877,'Bang Kruai',3562,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39878,'Bang Yai',3562,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39879,'Nonthaburi',3562,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39880,'Pak Kret',3562,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39881,'Sainoi',3562,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39882,'Nong Chik',3564,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39883,'Pattani',3564,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39884,'Sai Buri',3564,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39885,'Yaring',3564,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39886,'Phangnga',3565,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39887,'Phatthalung',3566,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39888,'Chiang Kham',3567,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39889,'Dok Kham Tai',3567,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39890,'Phayao',3567,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39891,'Pong',3567,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39892,'Chon Daen',3568,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39893,'Lom Sak',3568,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39894,'Nong Phai',3568,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39895,'Phetchabun',3568,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39896,'Wichian Buri',3568,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39897,'Ban Laem',3569,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39898,'Chaam',3569,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39899,'Khao Yoi',3569,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39900,'Phetchaburi',3569,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39901,'Tha Yang',3569,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39902,'Bang Mun Nak',3570,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39903,'Phichit',3570,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39904,'Taphan Hin',3570,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39905,'Thap Khlo',3570,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39906,'Bang Krathum',3571,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39907,'Bang Rakam',3571,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39908,'Nakhon Thai',3571,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39909,'Phitsanulok',3571,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39910,'Den Chai',3573,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39911,'Long',3573,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39912,'Phrae',3573,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39913,'Rong Kwang',3573,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39914,'Kathu',3574,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39915,'Phuket',3574,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39916,'Ranong',3577,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39917,'Ban Pong',3578,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39918,'Bang Phae',3578,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39919,'Chom Bung',3578,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39920,'Damnoen Saduak',3578,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39921,'Photharam',3578,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39922,'Ratchaburi',3578,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39923,'Ban Chang',3579,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39924,'Klaeng',3579,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39925,'Rayong',3579,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39926,'Ban Mo',3586,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39927,'Kaeng Khoi',3586,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39928,'Nong Khae',3586,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39929,'Phra Phutthabat',3586,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39930,'Saraburi',3586,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39931,'Satun',3587,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39932,'Hat Yai',3590,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39933,'Ranot',3590,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39934,'Sadao',3590,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39935,'Singha Nakhon',3590,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39936,'Songkhla',3590,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39937,'Khiri Mat',3591,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39938,'Sawankhalok',3591,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39939,'Si Satchanalai',3591,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39940,'Sukhothai',3591,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39941,'Phasat',3594,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39942,'Surin',3594,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39943,'Ban Tak',3595,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39944,'Mae Ramat',3595,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39945,'Mae Sot',3595,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39946,'Tak',3595,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39947,'Huai Yot',3596,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39948,'Kantang',3596,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39949,'Trang',3596,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39950,'Bo Rai',3597,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39951,'Trat',3597,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39952,'Laplae',3601,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39953,'Uttaradit',3601,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39954,'Betong',3602,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39955,'Yala',3602,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39956,'Yasothon',3603,217,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39957,'Guerin Kouka',3604,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39958,'Sokode',3604,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39959,'Sotouboua',3604,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39960,'Tchamba',3604,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39961,'Bafilo',3605,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39962,'Bassar',3605,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39963,'Kande',3605,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39964,'Kara',3605,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39965,'Kpagouda',3605,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39966,'Niamtougou',3605,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39967,'Agbelouve',3606,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39968,'Aneho',3606,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39969,'Lome',3606,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39970,'Tabligbo',3606,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39971,'Tsevie',3606,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39972,'Vogan',3606,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39973,'Amlame',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39974,'Anie',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39975,'Atakpame',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39976,'Badou',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39977,'Blitta',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39978,'Kouve',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39979,'Kpalime',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39980,'Kpessi',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39981,'Notse',3607,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39982,'Dapaong',3608,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39983,'Mango',3608,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39984,'Tandjouare',3608,218,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39985,'Atafu',3609,219,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39986,'Fakaofo',3610,219,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39987,'Nukunonu',3611,219,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39988,'Ohonua',3612,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39989,'Pangai',3613,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39990,'Hihifo',3614,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39991,'Haveloloto',3615,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39992,'Mu\'a',3615,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39993,'Nuku\'alofa',3615,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39994,'Tofoa-Koloua',3615,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39995,'Vaini',3615,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39996,'Neiafu',3616,220,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39997,'Arima',3617,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39998,'Arouca',3617,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(39999,'Tacarigua',3617,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40000,'Tunapuna',3617,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40001,'Carapichaima',3618,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40002,'Claxton Bay',3618,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40003,'Chaguanas',3619,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40004,'Couva',3620,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40005,'Tabaquite',3620,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40006,'Glencoe',3622,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40007,'Siparia',3631,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40008,'Scarborough',3632,221,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40009,'Aryanah',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40010,'Bordj Aalouine',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40011,'Burj-al-\'Amri',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40012,'La Soukra',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40013,'Qal\'at-al-Andalus',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40014,'Sidi Thabit',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40015,'Taburbah',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40016,'Wadi al-Layl',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40017,'ad-Dandan',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40018,'al-Battan',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40019,'al-Jadidah',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40020,'al-Murnaqiyah',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40021,'at-Tadaman Dawwar Hishar',3633,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40022,'Bajah',3634,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40023,'Majaz-al-Bab',3634,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40024,'Nafzah',3634,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40025,'Quballat',3634,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40026,'Tabursuq',3634,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40027,'Tastur',3634,222,0.00,0,'2021-04-06 01:13:50','2021-04-06 01:13:50',NULL),(40028,'Zahrat Madina',3634,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40029,'al-Ma\'qulah',3634,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40030,'\'Awsajah',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40031,'Binzart',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40032,'Ghar-al-Milh',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40033,'Manzil \'Abd-ar-Rahman',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40034,'Manzil Bu Ruqaybah',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40035,'Manzil Jamil',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40036,'Matir',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40037,'Rafraf',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40038,'Ras-al-Jabal',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40039,'Sajanan',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40040,'Tinjah',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40041,'al-\'Aliyah',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40042,'al-Matlin',3636,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40043,'\'Ayn Darahim',3641,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40044,'Bani Matir',3641,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40045,'Bu Salim',3641,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40046,'Firnanah',3641,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40047,'Ghar-ad-Dima\'',3641,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40048,'Jundubah',3641,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40049,'Tabarqah',3641,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40050,'Wadi Maliz',3641,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40051,'Bani Khaddash',3642,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40052,'Bin Qirdan',3642,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40053,'Jarbah Ajim',3642,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40054,'Jarbah Hawmat-as-Suq',3642,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40055,'Jarbah Midun',3642,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40056,'Jarjis',3642,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40057,'Madaniyin',3642,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40058,'Manubah',3643,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40059,'Monastir',3644,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40060,'Azimur',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40061,'Bani Hiyar',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40062,'Bani Khallad',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40063,'Bu \'Urqub',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40064,'Dar \'Alush',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40065,'Dar Sha\'ban',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40066,'Hammam-al-Aghzaz',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40067,'Manzil Bu Zalafah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40068,'Manzil Hurr',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40069,'Manzil Tamim',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40070,'Nabul',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40071,'Qalibiyah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40072,'Qurbah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40073,'Qurbus',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40074,'Qurunbaliyah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40075,'Sulayman',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40076,'Taklisah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40077,'Tazirkah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40078,'Zawiyat-al-Jadidi',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40079,'al-Hammamat',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40080,'al-Huwariyah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40081,'al-Ma\'murah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40082,'al-Middah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40083,'as-Sama\'ah',3645,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40084,'Ghannush',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40085,'Marath',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40086,'Matmatat-al-Jadidah',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40087,'Matmatat-al-Qadimah',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40088,'Qabis',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40089,'Sanini an-Nahal',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40090,'Wadhraf',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40091,'al-Hammah',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40092,'al-Matwiyah',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40093,'az-Zarat',3646,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40094,'Qafsah',3647,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40095,'Umm-al-\'Arais',3647,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40096,'al-Madilah',3647,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40097,'al-Mitlawi',3647,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40098,'al-Qasr',3647,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40099,'al-Qatar',3647,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40100,'ar-Rudayyif',3647,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40101,'as-Sanad',3647,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40102,'Duz',3648,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40103,'Jamnah',3648,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40104,'Qibili',3648,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40105,'Suq-al-Ahad',3648,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40106,'al-Qal\'ah',3648,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40107,'\'Aqarib',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40108,'Bi\'r Ali Bin Khalifah',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40109,'Jabinyanah',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40110,'Manzil Shakir',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40111,'Qarmadah',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40112,'Qarqannah',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40113,'Safaqis',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40114,'Saqiyat-ad-Dair',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40115,'Saqiyat-az-Zayt',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40116,'Sfax',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40117,'Tinah',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40118,'al-\'Ayn',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40119,'al-Hanashah',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40120,'al-Mahras',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40121,'as-Sukhayrah',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40122,'ash-Shayhiyah',3649,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40123,'Sfax',3650,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40124,'Barqu',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40125,'Bu \'Aradah',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40126,'Bu Ruwis',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40127,'Kasra',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40128,'Makthar',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40129,'Qa\'afur',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40130,'Silyanah',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40131,'al-\'Arusah',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40132,'al-Karib',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40133,'ar-Rawhiyah',3652,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40134,'Akkudah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40135,'Bu Fishah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40136,'Hammam Susah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40137,'Harqalah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40138,'Masakin',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40139,'Qusaybat-ath-Thurayat',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40140,'Sidi Bu \'Ali',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40141,'Sidi al-Hani',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40142,'Susah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40143,'Zawiyat Susah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40144,'al-Masa\'din',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40145,'al-Qal\'at-al-Kabirah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40146,'al-Qal\'at-as-Saghirah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40147,'an-Nafidah',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40148,'az-Zuhur',3653,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40149,'Bi\'r-al-Ahmar',3654,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40150,'Dhahibah',3654,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40151,'Ghumrassin',3654,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40152,'Rimadah',3654,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40153,'Tatawin',3654,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40154,'Daqash',3655,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40155,'Hammat-al-Jarid',3655,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40156,'Naftah',3655,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40157,'Tamaghzah',3655,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40158,'Tawzar',3655,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40159,'Bardaw',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40160,'Ben Arous',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40161,'Carthage',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40162,'Halq-al-Wadi',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40163,'Megrine',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40164,'Qartaj',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40165,'Sidi Bu Sa\'id',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40166,'Tunis',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40167,'al-Marsa',3656,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40168,'Bi\'r Mashariqah',3657,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40169,'Jabal-al-Wust',3657,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40170,'Zaghwan',3657,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40171,'al-Fahs',3657,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40172,'an-Nazur',3657,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40173,'az-Zaribah',3657,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40174,'Manzil Salim',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40175,'Nibbar',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40176,'Qal\'at-as-Sanan',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40177,'Saqiyat Sidi Yussuf',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40178,'Tajarwin',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40179,'ad-Dahmani',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40180,'al-Jarissah',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40181,'al-Kaf',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40182,'al-Qal\'at-al-Khasba\'',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40183,'al-Qusur',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40184,'as-Sars',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40185,'at-Tawiraf',3658,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40186,'Awlad ash-Shamakh',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40187,'Bumirdas',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40188,'Habirah',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40189,'Karkar',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40190,'Mallulash',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40191,'Qusur-as-Saf',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40192,'Rajish',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40193,'Shurban',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40194,'Sidi \'Ulwan',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40195,'al-Baradi\'ah',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40196,'al-Jamm',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40197,'al-Mahdiyah',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40198,'as-Sawasi',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40199,'ash-Shabbah',3659,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40200,'\'Amirat-al-Fahul',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40201,'\'Amirat-al-Hajjaj',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40202,'\'Amirat-at-Tawazarah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40203,'Banan Budar',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40204,'Banblat wal-Manarah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40205,'Bani Hassan',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40206,'Bu Hajjar',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40207,'Ghanadah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40208,'Jammal',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40209,'Khunays',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40210,'Lamtah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40211,'Manzil Farsi',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40212,'Manzil Hayah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40213,'Manzil Kamil',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40214,'Manzil Nur',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40215,'Qasr Hallal',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40216,'Qusaybat-al-Madyuni',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40217,'Sahilin Ma\'atmar',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40218,'Sayyadah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40219,'Sidi \'Amara',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40220,'Sidi Bin Nur',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40221,'Tabulbah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40222,'Tuzah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40223,'Zaramidin',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40224,'Zawiyat Quntash',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40225,'al-Baqalitah',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40226,'al-Masdur',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40227,'al-Muknin',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40228,'al-Munastir',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40229,'al-Wardanin',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40230,'ash-Sharahil',3660,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40231,'Firyanah',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40232,'Fussanah',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40233,'Haydrah',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40234,'Jadliyan',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40235,'Majal Bal \'Abbas',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40236,'Sabibah',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40237,'Subaytilah',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40238,'Talabat',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40239,'Talah',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40240,'al-Qasrayn',3661,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40241,'\'Ayn Jalulah',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40242,'Buhajlah',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40243,'Haffuz',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40244,'Hajib-al-\'Ayun',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40245,'Manzil Mahidi',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40246,'Nasr Allah',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40247,'al-\'Ala',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40248,'al-Qayrawan',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40249,'al-Waslatiyah',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40250,'as-Subaykhah',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40251,'ash-Shabikah',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40252,'ash-Sharardah',3662,222,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40253,'Adana',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40254,'Aladag',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40255,'Ceyhan',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40256,'Feke',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40257,'Imamoglu',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40258,'Karaisali',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40259,'Karatas',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40260,'Kozan',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40261,'Pozanti',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40262,'Saimbeyli',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40263,'Tufanbeyli',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40264,'Yumurtalik',3663,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40265,'Adiyaman',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40266,'Besni',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40267,'Celikhan',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40268,'Gerger',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40269,'Golbasi',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40270,'Kahta',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40271,'Samsat',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40272,'Sincik',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40273,'Tut',3664,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40274,'Afyonkarahisar',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40275,'Basmakci',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40276,'Bayat',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40277,'Bolvadin',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40278,'Cay',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40279,'Dazkiri',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40280,'Dinar',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40281,'Emirdag',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40282,'Evciler',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40283,'Hocalar',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40284,'Ihsaniye',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40285,'Iscehisar',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40286,'Kiziloren',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40287,'Sandikli',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40288,'Sincanli',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40289,'Suhut',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40290,'Sultandagi',3665,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40291,'Diyadin',3666,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40292,'Dogubeyazit',3666,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40293,'Eleskirt',3666,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40294,'Hamur',3666,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40295,'Karakose',3666,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40296,'Patnos',3666,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40297,'Taslicay',3666,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40298,'Tutak',3666,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40299,'Agacoren',3667,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40300,'Aksaray',3667,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40301,'Eskil',3667,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40302,'Gulagac',3667,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40303,'Guzelyurt',3667,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40304,'Ortakoy',3667,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40305,'Sariyahsi',3667,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40306,'Amasya',3668,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40307,'Goynucek',3668,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40308,'Gumushacikoy',3668,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40309,'Hamamozu',3668,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40310,'Merzifon',3668,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40311,'Suluova',3668,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40312,'Tasova',3668,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40313,'Akyurt',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40314,'Ankara',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40315,'Ayas',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40316,'Beypazari',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40317,'Camlidere',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40318,'Cubuk',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40319,'Elmadag',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40320,'Evren',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40321,'Gudul',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40322,'Haymana',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40323,'Kalecik',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40324,'Kazan',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40325,'Kizilcahamam',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40326,'Nallihan',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40327,'Polatli',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40328,'Sereflikochisar',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40329,'Yenisehir',3669,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40330,'Akseki',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40331,'Alanya',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40332,'Antalya',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40333,'Elmali',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40334,'Finike',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40335,'Gazipasa',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40336,'Gundogmus',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40337,'Ibradi',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40338,'Kale',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40339,'Kas',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40340,'Kemer',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40341,'Konya',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40342,'Korkuteli',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40343,'Kumluca',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40344,'Manavgat',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40345,'Serik',3670,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40346,'Ardahan',3671,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40347,'Damal',3671,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40348,'Gole',3671,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40349,'Hanak',3671,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40350,'Posof',3671,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40351,'Ardanuc',3672,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40352,'Arhavi',3672,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40353,'Artvin',3672,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40354,'Borcka',3672,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40355,'Hopa',3672,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40356,'Murgul',3672,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40357,'Savsat',3672,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40358,'Yusufeli',3672,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40359,'Aydin',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40360,'Bozdogan',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40361,'Buharkent',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40362,'Cine',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40363,'Didim',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40364,'Germencik',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40365,'Incirliova',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40366,'Karacasu',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40367,'Karpuzlu',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40368,'Kocarli',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40369,'Kosk',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40370,'Kusadasi',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40371,'Kuyucak',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40372,'Nazilli',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40373,'Soke',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40374,'Sultanhisar',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40375,'Yenipazar',3673,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40376,'Ayvalik',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40377,'Balikesir',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40378,'Balya',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40379,'Bandirma',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40380,'Bigadic',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40381,'Burhaniye',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40382,'Dursunbey',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40383,'Edremit',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40384,'Erdek',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40385,'Gomec',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40386,'Gonen',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40387,'Havran',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40388,'Ivrindi',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40389,'Kepsut',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40390,'Manyas',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40391,'Marmara',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40392,'Sakarya',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40393,'Savastepe',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40394,'Sindirgi',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40395,'Susurluk',3674,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40396,'Amasra',3675,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40397,'Bartin',3675,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40398,'Kurucasile',3675,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40399,'Ulus',3675,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40400,'Batman',3676,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40401,'Besiri',3676,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40402,'Gercus',3676,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40403,'Hasankeyf',3676,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40404,'Kozluk',3676,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40405,'Sason',3676,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40406,'Aydintepe',3677,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40407,'Bayburt',3677,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40408,'Demirozu',3677,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40409,'Bilecik',3678,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40410,'Bozuyuk',3678,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40411,'Golpazari',3678,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40412,'Inhisar',3678,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40413,'Osmaneli',3678,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40414,'Pazaryeri',3678,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40415,'Sogut',3678,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40416,'Yenipazar',3678,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40417,'Adakli',3679,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40418,'Bingol',3679,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40419,'Genc',3679,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40420,'Karliova',3679,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40421,'Kigi',3679,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40422,'Solhan',3679,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40423,'Yayladere',3679,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40424,'Yedisu',3679,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40425,'Adilcevaz',3680,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40426,'Ahlat',3680,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40427,'Bitlis',3680,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40428,'Guroymak',3680,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40429,'Hizan',3680,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40430,'Mutki',3680,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40431,'Tatvan',3680,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40432,'Akcakoca',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40433,'Bolu',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40434,'Dortdivan',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40435,'Gerede',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40436,'Goynuk',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40437,'Kibriscik',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40438,'Mengen',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40439,'Mudurnu',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40440,'Seben',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40441,'Yenicaga',3681,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40442,'Aglasun',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40443,'Altinyayla',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40444,'Bucak',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40445,'Burdur',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40446,'Golhisar',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40447,'Karamanli',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40448,'Kemer',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40449,'Tefenni',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40450,'Yesilova',3682,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40451,'Bursa',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40452,'Buyukorhan',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40453,'Gemlik',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40454,'Gursu',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40455,'Harmancik',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40456,'Inegol',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40457,'Iznik',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40458,'Karacabey',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40459,'Keles',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40460,'Kestel',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40461,'Mudanya',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40462,'Mustafakemalpasa',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40463,'Orhaneli',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40464,'Orhangazi',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40465,'Yenisehir',3683,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40466,'Ayvacik',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40467,'Bayramic',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40468,'Biga',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40469,'Bozcaada',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40470,'Can',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40471,'Canakkale',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40472,'Eceabat',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40473,'Ezine',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40474,'Gelibolu',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40475,'Gokceada',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40476,'Lapseki',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40477,'Yenice',3684,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40478,'Atkaracalar',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40479,'Bayramoren',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40480,'Cankiri',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40481,'Cerkes',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40482,'Eldivan',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40483,'Ilgaz',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40484,'Kizilirmak',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40485,'Korgun',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40486,'Kursunlu',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40487,'Orta',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40488,'Sabanozu',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40489,'Yaprakli',3685,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40490,'Alaca',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40491,'Bayat',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40492,'Corum',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40493,'Dodurga',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40494,'Iskilip',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40495,'Kargi',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40496,'Lacin',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40497,'Mecitozu',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40498,'Oguzlar',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40499,'Ortakoy',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40500,'Osmancik',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40501,'Sungurlu',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40502,'Ugurludag',3686,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40503,'Acipayam',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40504,'Akkoy',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40505,'Babadag',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40506,'Baklan',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40507,'Bekilli',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40508,'Bozkurt',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40509,'Buldan',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40510,'Cardak',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40511,'Civril',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40512,'Denizli',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40513,'Guney',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40514,'Honaz',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40515,'Kale',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40516,'Saraykoy',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40517,'Serinhisar',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40518,'Tavas',3687,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40519,'Bismil',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40520,'Cermik',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40521,'Cinar',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40522,'Cungus',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40523,'Dicle',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40524,'Diyarbakir',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40525,'Egil',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40526,'Ergani',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40527,'Hani',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40528,'Hazro',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40529,'Kocakoy',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40530,'Kulp',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40531,'Lice',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40532,'Silvan',3688,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40533,'Cumayeri',3689,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40534,'Duzce',3689,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40535,'Golyaka',3689,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40536,'Gumusova',3689,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40537,'Kaynasli',3689,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40538,'Yigilca',3689,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40539,'Edirne',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40540,'Enez',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40541,'Havsa',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40542,'Ipsala',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40543,'Kesan',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40544,'Lalapasa',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40545,'Meric',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40546,'Suleoglu',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40547,'Uzunkopru',3690,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40548,'Agin',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40549,'Alacakaya',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40550,'Aricak',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40551,'Baskil',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40552,'Elazig',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40553,'Karakocan',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40554,'Keban',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40555,'Kovancilar',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40556,'Maden',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40557,'Palu',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40558,'Sivrice',3691,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40559,'Erzincan',3692,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40560,'Ilic',3692,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40561,'Kemah',3692,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40562,'Kemaliye',3692,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40563,'Otlukbeli',3692,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40564,'Refahiye',3692,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40565,'Tercan',3692,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40566,'Uzumlu',3692,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40567,'Askale',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40568,'Erzurum',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40569,'Hinis',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40570,'Horasan',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40571,'Ilica',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40572,'Ispir',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40573,'Karacoban',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40574,'Karayazi',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40575,'Koprukoy',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40576,'Narman',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40577,'Oltu',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40578,'Olur',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40579,'Pasinler',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40580,'Pazaryolu',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40581,'Senkaya',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40582,'Tekman',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40583,'Tortum',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40584,'Uzundere',3693,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40585,'Alpu',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40586,'Beylikova',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40587,'Cifteler',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40588,'Eskisehir',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40589,'Gunyuzu',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40590,'Han',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40591,'Inonu',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40592,'Mahmudiye',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40593,'Mihalgazi',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40594,'Mihaliccik',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40595,'Saricakaya',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40596,'Seyitgazi',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40597,'Sivrihisar',3694,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40598,'Araban',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40599,'Gaziantep',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40600,'Islahiye',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40601,'Karkamis',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40602,'Nizip',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40603,'Nurdagi',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40604,'Oguzeli',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40605,'Sehitkamil',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40606,'Yavuzeli',3695,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40607,'Aluca',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40608,'Bulancak',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40609,'Dereli',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40610,'Dogankent',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40611,'Espiye',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40612,'Eynesil',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40613,'Giresun',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40614,'Gorele',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40615,'Guce',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40616,'Kesap',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40617,'Piraziz',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40618,'Sebinkarahisar',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40619,'Tirebolu',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40620,'Yaglidere',3696,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40621,'Gumushane',3697,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40622,'Kelkit',3697,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40623,'Kose',3697,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40624,'Kurtun',3697,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40625,'Siran',3697,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40626,'Torul',3697,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40627,'Cukurca',3698,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40628,'Hakkari',3698,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40629,'Semdinli',3698,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40630,'Yuksekova',3698,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40631,'Altinozu',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40632,'Antakya',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40633,'Belen',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40634,'Dortyol',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40635,'Erzin',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40636,'Hassa',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40637,'Iskenderun',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40638,'Kirikhan',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40639,'Kumlu',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40640,'Reyhanli',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40641,'Samandag',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40642,'Yayladagi',3699,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40643,'Anamur',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40644,'Aydincik',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40645,'Bozyazi',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40646,'Erdemli',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40647,'Gulnar',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40648,'Mersin',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40649,'Mut',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40650,'Silifke',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40651,'Tarsus',3700,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40652,'Aralik',3701,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40653,'Igdir',3701,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40654,'Karakoyunlu',3701,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40655,'Tuzluca',3701,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40656,'Aksu',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40657,'Atabey',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40658,'Egirdir',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40659,'Gelendost',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40660,'Gonen',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40661,'Isparta',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40662,'Keciborlu',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40663,'Sarkikaraagac',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40664,'Senirkent',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40665,'Sutculer',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40666,'Uluborlu',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40667,'Yalvac',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40668,'Yenisarbademli',3702,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40669,'Buyukcekmece',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40670,'Catalca',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40671,'Eminonu',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40672,'Esenler',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40673,'Istanbul',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40674,'Kad%���� %�,%�%koy',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40675,'Sile',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40676,'Silivri',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40677,'Sultanbeyli',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40678,'Topkap%���� %�,%�%',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40679,'Tuzla',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40680,'Umraniye',3703,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40681,'Aliaga',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40682,'Alsancak',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40683,'Bayindir',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40684,'Bergama',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40685,'Beyagac',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40686,'Bornova',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40687,'Cesme',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40688,'Digor',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40689,'Dikili',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40690,'Foca',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40691,'Izmir',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40692,'Karaburun',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40693,'Kemalpasa',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40694,'Kinik',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40695,'Kiraz',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40696,'Menderes',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40697,'Menemen',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40698,'Merkezi',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40699,'Mersinli',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40700,'Odemis',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40701,'Seferihisar',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40702,'Selcuk',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40703,'Tire',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40704,'Torbali',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40705,'Urla',3704,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40706,'Afsin',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40707,'Andirin',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40708,'Caglayancerit',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40709,'Ekinozu',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40710,'Elbistan',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40711,'Goksun',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40712,'Kahramanmaras',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40713,'Nurhak',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40714,'Pazarcik',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40715,'Turkoglu',3705,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40716,'Eflani',3706,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40717,'Eskipazar',3706,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40718,'Karabuk',3706,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40719,'Ovacik',3706,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40720,'Safranbolu',3706,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40721,'Yenice',3706,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40722,'Ayranci',3707,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40723,'Basyayla',3707,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40724,'Ermenek',3707,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40725,'Karaman',3707,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40726,'Kazimkarabekir',3707,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40727,'Sariveliler',3707,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40728,'Akyaka',3708,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40729,'Arpacay',3708,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40730,'Kagizman',3708,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40731,'Kars',3708,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40732,'Sarikamis',3708,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40733,'Selim',3708,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40734,'Susuz',3708,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40735,'Karsiyaka',3709,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40736,'Abana',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40737,'Agli',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40738,'Arac',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40739,'Azdavay',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40740,'Bozkurt',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40741,'Daday',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40742,'Devrekani',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40743,'Doganyurt',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40744,'Hanonu',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40745,'Ihsangazi',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40746,'Inebolu',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40747,'Kastamonu',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40748,'Kure',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40749,'Pinarbasi',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40750,'Senpazar',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40751,'Seydiler',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40752,'Taskopru',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40753,'Tosya',3710,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40754,'Akkisla',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40755,'Bunyan',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40756,'Develi',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40757,'Felahiye',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40758,'Hacilar',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40759,'Incesu',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40760,'Kayseri',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40761,'Ozvatan',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40762,'Pinarbasi',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40763,'Sarioglan',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40764,'Sariz',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40765,'Talas',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40766,'Tomarza',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40767,'Yahyali',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40768,'Yesilhisar',3711,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40769,'Elbeyli',3712,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40770,'Kilis',3712,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40771,'Musabeyli',3712,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40772,'Polateli',3712,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40773,'Bahsili',3713,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40774,'Baliseyh',3713,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40775,'Delice',3713,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40776,'Karakecili',3713,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40777,'Keskin',3713,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40778,'Kirikkale',3713,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40779,'Sulakyurt',3713,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40780,'Yahsihan',3713,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40781,'Babaeski',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40782,'Demirkoy',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40783,'Kirklareli',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40784,'Kofcaz',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40785,'Kumkoy',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40786,'Luleburgaz',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40787,'Pehlivankoy',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40788,'Pinarhisar',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40789,'Vize',3714,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40790,'Akcakent',3715,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40791,'Akpinar',3715,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40792,'Boztepe',3715,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40793,'Kaman',3715,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40794,'Kirsehir',3715,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40795,'Mucur',3715,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40796,'Cay%���� %�,%�%rova',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40797,'Derince',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40798,'Dilovas%���� %�,%�%',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40799,'Gebze',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40800,'Golcuk',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40801,'Izmit',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40802,'Kandira',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40803,'Karamursel',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40804,'Kocaeli',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40805,'Korfez',3716,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40806,'Ahirli',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40807,'Akoren',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40808,'Aksehir',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40809,'Altinekin',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40810,'Beysehir',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40811,'Bozkir',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40812,'Cihanbeyli',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40813,'Cumra',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40814,'Derbent',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40815,'Derebucak',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40816,'Doganhisar',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40817,'Emirgazi',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40818,'Eregli',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40819,'Guneysinir',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40820,'Hadim',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40821,'Halkapinar',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40822,'Huyuk',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40823,'Ilgin',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40824,'Kadinhani',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40825,'Karapinar',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40826,'Konya',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40827,'Kulu',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40828,'Sarayonu',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40829,'Seydisehir',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40830,'Taskent',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40831,'Tuzlukcu',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40832,'Yalihuyuk',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40833,'Yunak',3717,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40834,'Altinas',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40835,'Aslanapa',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40836,'Domanic',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40837,'Dumlupinar',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40838,'Emet',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40839,'Gediz',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40840,'Kutahya',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40841,'Pazarlar',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40842,'Saphane',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40843,'Simav',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40844,'Tavsanli',3718,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40845,'Lefkosa',3719,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40846,'Akcadag',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40847,'Arapkir',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40848,'Arguvan',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40849,'Battalgazi',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40850,'Darende',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40851,'Dogansehir',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40852,'Doganyol',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40853,'Hekimhan',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40854,'Kale',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40855,'Kuluncak',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40856,'Malatya',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40857,'Poturge',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40858,'Yazihan',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40859,'Yesilyurt',3720,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40860,'Ahmetli',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40861,'Akhisar',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40862,'Alasehir',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40863,'Demirci',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40864,'Golmarmara',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40865,'Gordes',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40866,'Kirkagac',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40867,'Koprubasi',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40868,'Kula',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40869,'Manisa',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40870,'Salihli',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40871,'Sarigol',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40872,'Saruhanli',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40873,'Selendi',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40874,'Soma',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40875,'Turgutlu',3721,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40876,'Dargecit',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40877,'Derik',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40878,'Kiziltepe',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40879,'Mardin',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40880,'Mazidagi',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40881,'Midyat',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40882,'Nusaybin',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40883,'Omerli',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40884,'Savur',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40885,'Yesilli',3722,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40886,'Bodrum',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40887,'Dalaman',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40888,'Datca',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40889,'Fethiye',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40890,'Kavaklidere',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40891,'Koycegiz',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40892,'Marmaris',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40893,'Milas',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40894,'Mugla',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40895,'Ortaca',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40896,'Ula',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40897,'Yatagan',3723,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40898,'Bulanik',3724,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40899,'Haskoy',3724,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40900,'Korkut',3724,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40901,'Malazgirt',3724,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40902,'Mus',3724,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40903,'Varto',3724,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40904,'Acigol',3725,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40905,'Avanos',3725,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40906,'Derinkuyu',3725,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40907,'Gulsehir',3725,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40908,'Hacibektas',3725,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40909,'Kozakli',3725,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40910,'Nevsehir',3725,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40911,'Urgup',3725,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40912,'Altunhisar',3726,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40913,'Bor',3726,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40914,'Nigde',3726,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40915,'Ulukisla',3726,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40916,'Akkus',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40917,'Aybasti',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40918,'Camas',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40919,'Fatsa',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40920,'Golkoy',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40921,'Gulyali',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40922,'Gurgentepe',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40923,'Ikizce',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40924,'Kabaduz',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40925,'Kabatas',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40926,'Korgan',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40927,'Kumru',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40928,'Mesudiye',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40929,'Ordu',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40930,'Persembe',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40931,'Ulubey',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40932,'Unye',3727,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40933,'Bahce',3728,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40934,'Duzici',3728,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40935,'Hasanbeyli',3728,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40936,'Kadirli',3728,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40937,'Osmaniye',3728,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40938,'Sumbas',3728,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40939,'Toprakkale',3728,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40940,'Ardesen',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40941,'Cayeli',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40942,'Derepazan',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40943,'Findikli',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40944,'Guneysu',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40945,'Hemsin',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40946,'Ikizdere',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40947,'Iyidere',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40948,'Kalkandere',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40949,'Pazar',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40950,'Rize',3729,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40951,'Adapazari',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40952,'Akyazi',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40953,'Ferizli',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40954,'Geyve',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40955,'Hendek',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40956,'Karapurcek',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40957,'Karasu',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40958,'Kaynarca',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40959,'Kocaali',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40960,'Pamukova',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40961,'Sapanca',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40962,'Sogutlu',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40963,'Tarakli',3730,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40964,'Akcakale',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40965,'Alacam',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40966,'Asarcik',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40967,'Ayvacik',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40968,'Bafra',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40969,'Carsamba',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40970,'Havza',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40971,'Kavak',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40972,'Ladik',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40973,'Mayis 19',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40974,'Salipazan',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40975,'Samsun',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40976,'Tekkekoy',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40977,'Terme',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40978,'Vezirkopru',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40979,'Yakakent',3731,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40980,'Birecik',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40981,'Bozova',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40982,'Ceylanpinar',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40983,'Halfeti',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40984,'Harran',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40985,'Hilvan',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40986,'Sanliurfa',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40987,'Siverek',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40988,'Suruc',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40989,'Urfa',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40990,'Viransehir',3732,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40991,'Aydinlar',3733,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40992,'Baykan',3733,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40993,'Eruh',3733,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40994,'Kurtalan',3733,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40995,'Pervari',3733,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40996,'Siirt',3733,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40997,'Sirvan',3733,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40998,'Ayancik',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(40999,'Boyabat',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41000,'Dikmen',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41001,'Duragan',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41002,'Erfelek',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41003,'Gerze',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41004,'Sarayduzu',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41005,'Sinop',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41006,'Turkeli',3734,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41007,'Beytussebap',3735,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41008,'Cizre',3735,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41009,'Guclukonak',3735,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41010,'Idil',3735,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41011,'Silopi',3735,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41012,'Sirnak',3735,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41013,'Uludere',3735,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41014,'Akincilar',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41015,'Altinyayla',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41016,'Divrigi',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41017,'Dogansar',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41018,'Gemerek',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41019,'Golova',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41020,'Gurun',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41021,'Hafik',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41022,'Imranli',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41023,'Kangal',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41024,'Koyulhisar',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41025,'Sarkisla',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41026,'Sivas',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41027,'Susehri',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41028,'Ulas',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41029,'Yildizeli',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41030,'Zara',3736,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41031,'Cerkezkoy',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41032,'Corlu',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41033,'Hayrabolu',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41034,'Malkara',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41035,'Marmaraereglisi',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41036,'Muratli',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41037,'Saray',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41038,'Sarkoy',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41039,'Tekirdag',3737,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41040,'Almus',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41041,'Artova',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41042,'Basciftlik',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41043,'Erbaa',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41044,'Niksar',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41045,'Pazar',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41046,'Resadiye',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41047,'Sulusaray',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41048,'Tokat',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41049,'Turhal',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41050,'Yesilyurt',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41051,'Zile',3738,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41052,'Akcaabat',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41053,'Arakli',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41054,'Arsin',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41055,'Besikduzu',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41056,'Caykara',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41057,'Dernekpazari',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41058,'Duzkoy',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41059,'Hayrat',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41060,'Koprubasi',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41061,'Macka',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41062,'Of',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41063,'Salpazari',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41064,'Surmene',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41065,'Tonya',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41066,'Trabzon',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41067,'Vakfikebir',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41068,'Yomra',3739,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41069,'Hozat',3740,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41070,'Mazgirt',3740,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41071,'Nazimiye',3740,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41072,'Ovacik',3740,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41073,'Pertek',3740,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41074,'Pulumur',3740,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41075,'Tunceli',3740,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41076,'Banaz',3741,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41077,'Esme',3741,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41078,'Karahalli',3741,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41079,'Sivasli',3741,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41080,'Ulubey',3741,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41081,'Usak',3741,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41082,'Bahcesaray',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41083,'Baskale',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41084,'Caldiran',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41085,'Edremit',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41086,'Ercis',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41087,'Gevas',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41088,'Gurpinar',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41089,'Muradiye',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41090,'Ozalp',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41091,'Saray',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41092,'Van',3742,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41093,'Altinova',3743,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41094,'Armutlu',3743,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41095,'Ciftlikkoy',3743,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41096,'Cinarcik',3743,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41097,'Termal',3743,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41098,'Yalova',3743,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41099,'Akdagmadeni',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41100,'Aydincik',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41101,'Bogaziliyan',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41102,'Candir',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41103,'Cayiralan',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41104,'Cekerek',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41105,'Kadisehri',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41106,'Saraykent',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41107,'Sarikaya',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41108,'Sefaatli',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41109,'Sorgun',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41110,'Yenifakili',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41111,'Yerkoy',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41112,'Yozgat',3744,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41113,'Alapli',3745,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41114,'Caycuma',3745,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41115,'Devrek',3745,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41116,'Eregli',3745,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41117,'Gokcebey',3745,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41118,'Zonguldak',3745,223,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41119,'Ahchadepe',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41120,'Annau',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41121,'Babadayhan',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41122,'Baherden',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41123,'Birleshik Pervi',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41124,'Buzmeyin',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41125,'Dushak',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41126,'Gokedepe',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41127,'Kaka',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41128,'Miana',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41129,'Ovaz Jalatay',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41130,'Saragt',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41131,'Tecen',3746,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41132,'Asgabat',3747,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41133,'Adyndaky',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41134,'Balkanabat',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41135,'Bekdash',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41136,'Gasanguli',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41137,'Gazanjyk',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41138,'Goturdepe',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41139,'Gumdag',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41140,'Jebel',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41141,'Karakala',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41142,'Khazar',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41143,'Serdar',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41144,'Sharlawuk',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41145,'Turkmenbasi',3748,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41146,'Akdepe',3749,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41147,'Boldumsaz',3749,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41148,'Dasoguz',3749,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41149,'Gubadag',3749,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41150,'Kohne Urgenc',3749,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41151,'Moskva',3749,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41152,'Tagta',3749,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41153,'Yilanli',3749,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41154,'Darganata',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41155,'Esenmengli',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41156,'Farap',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41157,'Gazojak',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41158,'Govurdak',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41159,'Halac',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41160,'Kerki',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41161,'Komsomolsk',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41162,'Mukri',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41163,'Sayat',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41164,'Seydi',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41165,'Turkmenabat',3750,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41166,'Bayramali',3751,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41167,'Eloten',3751,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41168,'Mari',3751,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41169,'Murgab',3751,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41170,'Sakarchage',3751,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41171,'Tagtabazar',3751,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41172,'Turkmengala',3751,224,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41173,'Vaiaku',3754,226,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41174,'Tonga',3755,226,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41175,'Lolua',3756,226,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41176,'Kua',3757,226,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41177,'Tanrake',3758,226,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41178,'Savave',3759,226,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41179,'Fangaua',3760,226,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41180,'Asau',3761,226,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41181,'Bombo',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41182,'Bweyogerere',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41183,'Entebbe',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41184,'Jinja-Kawempe',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41185,'Kajansi',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41186,'Kalangala',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41187,'Kampala',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41188,'Kayunga',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41189,'Kiboga',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41190,'Kireka',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41191,'Kyotera',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41192,'Lugazi',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41193,'Lukaya',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41194,'Luwero',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41195,'Lyantonde',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41196,'Masaka',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41197,'Mityana',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41198,'Mpigi',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41199,'Mubende',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41200,'Mukono',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41201,'Nakasongola',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41202,'Namasuba',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41203,'Njeru',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41204,'Nkonkonjeru',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41205,'Rakai',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41206,'Sembabule',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41207,'Wakiso',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41208,'Wobulenzi',3762,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41209,'Bugembe',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41210,'Bugiri',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41211,'Busembatia',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41212,'Busia',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41213,'Buwenge',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41214,'Iganga',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41215,'Jinja',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41216,'Kaberamaido',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41217,'Kamuli',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41218,'Kapchorwa',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41219,'Katakwi',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41220,'Kumi',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41221,'Malaba',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41222,'Mayuge',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41223,'Mbale',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41224,'Ngora',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41225,'Pallisa',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41226,'Sironko',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41227,'Soroti',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41228,'Tororo',3763,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41229,'Adjumani',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41230,'Amudat',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41231,'Apac',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41232,'Arua',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41233,'Gulu',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41234,'Kaabong',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41235,'Kitgum',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41236,'Koboko',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41237,'Kotido',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41238,'Lira',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41239,'Moroto',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41240,'Moyo',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41241,'Nakapiripirit',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41242,'Nebbi',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41243,'Pader',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41244,'Paidha',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41245,'Pakwach',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41246,'Yumbe',3764,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41247,'Bundibugyo',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41248,'Bushenyi',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41249,'Fort Portal',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41250,'Hima',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41251,'Hoima',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41252,'Ibanda',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41253,'Kabale',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41254,'Kabwohe-Itendero',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41255,'Kagadi',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41256,'Kamwenge',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41257,'Kanungu',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41258,'Kasese',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41259,'Katwe',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41260,'Kibaale',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41261,'Kigorobya',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41262,'Kilembe',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41263,'Kisoro',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41264,'Kyenjojo',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41265,'Masindi',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41266,'Masindi-Port',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41267,'Mbarara',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41268,'Muhororo',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41269,'Ntungamo',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41270,'Rukungiri',3765,227,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41271,'Cherkasy',3766,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41272,'Smila',3766,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41273,'Uman\'',3766,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41274,'Chernihiv',3767,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41275,'Nizhyn',3767,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41276,'Pryluky',3767,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41277,'Chernivtsi',3768,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41278,'Alushta',3769,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41279,'Sevastopol',3769,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41280,'Dneprodzerzhinsk',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41281,'Dnipropetrovsk',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41282,'Kryvyy Rih',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41283,'Marhanets\'',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41284,'Nikopol\'',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41285,'Novomoskovs\'k',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41286,'Pavlohrad',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41287,'Plekhanov',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41288,'Zhovti Vody',3770,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41289,'Artemivs\'k',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41290,'Donets\'k',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41291,'Donetsk',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41292,'Druzhkivka',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41293,'Dymytrov',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41294,'Dzerzhyns\'k',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41295,'Horlivka',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41296,'Khartsyz\'k',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41297,'Kostyantynivka',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41298,'Kramators\'k',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41299,'Krasnoarmiys\'k',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41300,'Makiyivka',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41301,'Mariupol\'',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41302,'Shakhtars\'k',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41303,'Slov\'yans\'k',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41304,'Snizhne',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41305,'Torez',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41306,'Yenakiyeve',3771,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41307,'Ivano-Frankivs\'k',3772,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41308,'Kalush',3772,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41309,'Kolomyya',3772,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41310,'Izyum',3773,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41311,'Kharkiv',3773,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41312,'Lozova',3773,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41313,'Volchansk',3774,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41314,'Kherson',3775,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41315,'Nova Kakhovka',3775,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41316,'Geologov',3776,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41317,'Kam\'yanets\'-Podil\'s\'kyy',3776,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41318,'Khmel\'nyts\'kyy',3776,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41319,'Shepetivka',3776,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41320,'khmelnitskiy',3776,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41321,'Kirovohrad',3777,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41322,'Oleksandriya',3777,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41323,'Svidlovodsk',3777,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41324,'Dzhankoy',3778,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41325,'Feodosiya',3778,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41326,'Kerch',3778,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41327,'Simferopol\'',3778,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41328,'Yalta',3778,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41329,'Yevpatoriya',3778,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41330,'Kiev',3779,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41331,'Kyyiv',3779,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41332,'Bila Tserkva',3780,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41333,'Boryspil\'',3780,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41334,'Brovary',3780,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41335,'Fastiv',3780,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41336,'Chervonohrad',3781,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41337,'Drohobych',3781,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41338,'L\'viv',3781,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41339,'Stryy',3781,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41340,'Yavoriv',3781,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41341,'Alchevs\'k',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41342,'Antratsyt',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41343,'Bryanka',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41344,'Krasnodon',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41345,'Krasnyy Luch',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41346,'Luhans\'k',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41347,'Luhansk',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41348,'Lysychans\'k',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41349,'Pervomays\'k',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41350,'Roven\'ky',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41351,'Rubizhne',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41352,'Stakhanov',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41353,'Sverdlovs\'k',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41354,'Syeverodonets\'k',3782,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41355,'Mykolayiv',3783,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41356,'Pervomays\'k',3783,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41357,'Bilhorod-Dnistrovs\'kyy',3784,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41358,'Illichivs\'k',3784,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41359,'Izmayil',3784,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41360,'Odesa',3784,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41361,'Odessa',3785,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41362,'Komsomol\'s\'k',3786,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41363,'Kremenchuh',3786,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41364,'Lubny',3786,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41365,'Poltava',3786,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41366,'Rivne',3787,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41367,'Konotop',3789,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41368,'Okhtyrka',3789,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41369,'Romny',3789,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41370,'Shostka',3789,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41371,'Sumy',3789,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41372,'Ternopil\'',3790,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41373,'Kovel\'',3791,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41374,'Luts\'k',3791,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41375,'Novovolyns\'k',3791,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41376,'Vinnitsa',3792,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41377,'Vinnytsya',3792,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41378,'Mukacheve',3793,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41379,'Uzhhorod',3793,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41380,'Berdyans\'k',3794,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41381,'Enerhodar',3794,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41382,'Melitpol\'',3794,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41383,'Zaporizhia',3794,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41384,'Berdychiv',3795,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41385,'Korosten\'',3795,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41386,'Novohrad-Volyns\'kyy',3795,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41387,'Zhytomyr',3795,228,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41388,'Ajman',3797,229,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41389,'Al Qusais',3798,229,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41390,'Deira',3798,229,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41391,'Dubai',3798,229,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41392,'Jebel Ali',3798,229,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41393,'Sharjah',3800,229,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41394,'Khawr Fakkan',3803,229,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41395,'al-Fujayrah',3803,229,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41396,'Cleveland',3805,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41397,'Gilberdyke',3805,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41398,'Llanrwst',3805,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41399,'Swadlincote',3805,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41400,'Turriff',3805,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41401,'Westhill',3806,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41402,'Oban',3807,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41403,'Craigavon',3808,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41404,'Barton-le-Clay',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41405,'Bedford',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41406,'Biggleswade',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41407,'Caddington',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41408,'Flitton',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41409,'Flitwick',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41410,'Leighton Buzzard',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41411,'Marston Moretaine',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41412,'Sandy',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41413,'Westoning',3809,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41414,'Dundonald',3810,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41415,'Holywood',3810,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41416,'Berkshire',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41417,'Bracknell',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41418,'Littlewick Green',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41419,'Maidenhead',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41420,'Newbury',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41421,'Reading',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41422,'Sandhurst',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41423,'Slough',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41424,'Sunninghill',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41425,'Twyford',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41426,'Windsor',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41427,'Wokingham',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41428,'Woodley',3811,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41429,'Coleshill',3812,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41430,'Edgbaston',3812,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41431,'Hockley',3812,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41432,'Ladywood',3812,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41433,'Nechells',3812,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41434,'Rubery',3812,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41435,'Small Heath',3812,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41436,'Angus',3813,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41437,'Bridgnorth',3814,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41438,'Avon',3815,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41439,'Fishponds',3815,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41440,'Henleaze',3815,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41441,'Thornbury',3815,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41442,'Warmley',3815,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41443,'Amersham',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41444,'Aston Clinton',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41445,'Beaconsfield',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41446,'Bletchley',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41447,'Bourne End',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41448,'Buckingham',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41449,'High Wycombe',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41450,'Iver',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41451,'Marlow',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41452,'Milton Keynes',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41453,'Newport Pagnell',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41454,'Piddington',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41455,'Princes Risborough',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41456,'Rowsham',3816,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41457,'Cambridge',3817,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41458,'Ely',3817,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41459,'Huntingdon',3817,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41460,'Peterborough',3817,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41461,'Cambridge',3818,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41462,'Haddenham',3818,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41463,'Sawtry',3818,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41464,'Wisbech',3818,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41465,'Alderley Edge',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41466,'Altrincham',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41467,'Betley',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41468,'Cheadle Gatley',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41469,'Cheadle Hulme',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41470,'Crewe',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41471,'Dukinfield',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41472,'Holmes Chapel',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41473,'Hyde',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41474,'Knuntsford',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41475,'Knutsford',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41476,'Lymm',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41477,'Malpas',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41478,'Merseyside',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41479,'Middlewich',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41480,'Mobberley',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41481,'Nantwich',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41482,'Saltney',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41483,'Sandbach',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41484,'Stalybridge',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41485,'Stockport',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41486,'Tarporley',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41487,'Timperley',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41488,'Widnes',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41489,'Winsford',3820,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41490,'Redcar',3821,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41491,'Stockton-on-Tees',3821,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41492,'Conwy',3823,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41493,'Llandudno',3823,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41494,'Bude',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41495,'Camborne',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41496,'Fowey',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41497,'Hayle',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41498,'Helston',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41499,'Launceston',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41500,'Liskeard',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41501,'Looe',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41502,'Mevegissey',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41503,'Newquay',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41504,'Penryn',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41505,'Penzance',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41506,'St. Ives',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41507,'Truro',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41508,'Wadebridge',3824,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41509,'Holbrooks',3825,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41510,'Askam-in-Furness',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41511,'Flookburgh',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41512,'Grasmere',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41513,'Kendal',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41514,'Keswick',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41515,'Kirkby Stephen',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41516,'Milnthorpe',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41517,'Penrith',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41518,'Ulverston',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41519,'Windermere',3827,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41520,'Denbigh',3828,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41521,'Ashbourne',3829,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41522,'Buxton',3829,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41523,'Chesterfield',3829,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41524,'Eckington',3829,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41525,'Bakewell',3830,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41526,'Belper',3830,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41527,'Breaston',3830,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41528,'Derby',3830,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41529,'Ilkeston',3830,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41530,'Matlock',3830,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41531,'Ripley',3830,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41532,'Axminster',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41533,'Barnstaple',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41534,'Beaworthy',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41535,'Bideford',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41536,'Bovey Tracey',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41537,'Braunton',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41538,'Brixham',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41539,'Chudleigh',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41540,'Crediton',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41541,'Dalwood',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41542,'Dartmouth',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41543,'Dawlish',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41544,'Exeter',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41545,'Exmouth',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41546,'Great Torrington',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41547,'Holsworthy',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41548,'Kingsbridge',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41549,'Modbury',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41550,'Newton Abbot',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41551,'Okehampton',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41552,'Plymouth',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41553,'Plympton',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41554,'Salcombe',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41555,'Tiverton',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41556,'Torquay',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41557,'Totnes',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41558,'Winkleigh',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41559,'Woodburyd',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41560,'Yelverton',3831,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41561,'Didcot',3833,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41562,'Beaminster',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41563,'Blandford Forum',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41564,'Christchurch',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41565,'Dorset',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41566,'Poole',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41567,'Sherborne',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41568,'Sturminster Newton',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41569,'Swanage',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41570,'Verwood',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41571,'Wimborne',3834,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41572,'Alexandria',3835,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41573,'Crook',3836,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41574,'Spennymoor',3836,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41575,'Abingdon',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41576,'Accrington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41577,'Aldershot',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41578,'Alfreton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41579,'Altrincham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41580,'Amersham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41581,'Andover',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41582,'Arnold',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41583,'Ashford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41584,'Ashington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41585,'Ashton-in-Makerfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41586,'Ashton-under-Lyne',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41587,'Atherton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41588,'Aylesbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41589,'Aylesford-East Malling',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41590,'Banbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41591,'Banstead-Tadworth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41592,'Barnsley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41593,'Barnstaple',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41594,'Barrow-in-Furness',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41595,'Basildon',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41596,'Basingstoke',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41597,'Bath',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41598,'Batley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41599,'Bebington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41600,'Bedford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41601,'Bedworth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41602,'Beeston and Stapleford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41603,'Benfleet',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41604,'Bentley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41605,'Berwick-upon-Tweed',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41606,'Beverley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41607,'Bexhil',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41608,'Bicester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41609,'Bideford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41610,'Billericay',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41611,'Billingham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41612,'Birkenhead',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41613,'Birmingham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41614,'Bishop Auckland',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41615,'Bishop\'s Stortford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41616,'Blackburn',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41617,'Blackpool',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41618,'Bletchley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41619,'Blyth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41620,'Bodmin',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41621,'Bognor Regis',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41622,'Bolton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41623,'Bootle',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41624,'Boston',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41625,'Bournemouth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41626,'Bracknell',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41627,'Bradford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41628,'Braintree',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41629,'Bredbury and Romiley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41630,'Brentwood',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41631,'Bridgwater',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41632,'Bridlington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41633,'Brigg',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41634,'Brighouse',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41635,'Brighton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41636,'Bristol',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41637,'Broadstairs',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41638,'Bromley Cross-Bradshaw',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41639,'Bromsgrove-Catshill',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41640,'Burgess Hill',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41641,'Burnley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41642,'Burntwood',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41643,'Burton-upon-Trent',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41644,'Bury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41645,'Bury Saint Edmunds',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41646,'Camberley-Frimley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41647,'Cambourne-Redruth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41648,'Cambridge',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41649,'Cannock',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41650,'Canterbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41651,'Canvey Island',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41652,'Carlisle',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41653,'Carlton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41654,'Castleford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41655,'Caterham and Warlingham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41656,'Chadderton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41657,'Chapeltown',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41658,'Chatham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41659,'Cheadle and Gatley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41660,'Chelmsford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41661,'Cheltenham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41662,'Chesham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41663,'Cheshunt',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41664,'Chessington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41665,'Chester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41666,'Chester-le-Street',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41667,'Chesterfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41668,'Chichester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41669,'Chippenham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41670,'Chipping Sodbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41671,'Chorley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41672,'Christchurch',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41673,'Clacton-on-Sea',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41674,'Clay Cross-North Wingfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41675,'Cleethorpes',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41676,'Clevedon',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41677,'Coalville',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41678,'Colchester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41679,'Congleton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41680,'Consett',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41681,'Corby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41682,'Coventry',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41683,'Cramlington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41684,'Crawley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41685,'Crosby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41686,'Crowthorne',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41687,'Darlington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41688,'Dartford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41689,'Darwen',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41690,'Deal',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41691,'Denton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41692,'Derby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41693,'Dewsbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41694,'Doncaster',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41695,'Dorchester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41696,'Dover',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41697,'Droitwich',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41698,'Dronfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41699,'Droylsden',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41700,'Dudley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41701,'Dunstable',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41702,'Durham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41703,'East Grinstead',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41704,'East Retford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41705,'Eastbourne',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41706,'Eastleigh',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41707,'Eaton Socon-Saint Neots',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41708,'Eccles',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41709,'Egham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41710,'Ellesmere Port',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41711,'Epsom and Ewell',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41712,'Esher-Molesey',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41713,'Eston and South Bank',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41714,'Exeter',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41715,'Failsworth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41716,'Falmouth-Penryn',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41717,'Fareham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41718,'Farnborough',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41719,'Farnham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41720,'Farnworth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41721,'Farring',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41722,'Felixtowe',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41723,'Felling',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41724,'Ferndown',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41725,'Fleetwood',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41726,'Folkestone',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41727,'Formby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41728,'Frome',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41729,'Fulham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41730,'Gateshead',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41731,'Gillingham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41732,'Glossop',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41733,'Gloucester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41734,'Godalming',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41735,'Golborne',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41736,'Gosforth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41737,'Gosport',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41738,'Grantham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41739,'Gravesend',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41740,'Grays',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41741,'Greasby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41742,'Great Malvern',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41743,'Great Sankey',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41744,'Great Yarmouth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41745,'Grimsby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41746,'Guildford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41747,'Guiseley-Yeadon',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41748,'Halesowen',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41749,'Halifax',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41750,'Harlow',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41751,'Harpenden',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41752,'Harrogate',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41753,'Hartlepool',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41754,'Hastings',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41755,'Hatfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41756,'Hatfield-Stainforth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41757,'Havant',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41758,'Haywards Heath',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41759,'Hazel Grove and Bramhill',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41760,'Hazlemere',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41761,'Heanor',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41762,'Hemel Hempstead',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41763,'Hereford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41764,'Herne Bay',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41765,'Hertford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41766,'Heswall',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41767,'Heywood',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41768,'High Wycombe',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41769,'Hinckley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41770,'Hindley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41771,'Hitchin',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41772,'Hoddesdon',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41773,'Holmfirth-Honley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41774,'Honiton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41775,'Horsham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41776,'Houghton-le-Spring',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41777,'Hove',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41778,'Hoylake-West Kirby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41779,'Hucknall',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41780,'Huddersfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41781,'Huyton-with-Roby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41782,'Hyde',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41783,'Ilfracombe',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41784,'Ilkeston',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41785,'Ipswich',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41786,'Ivybridge',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41787,'Jarrow',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41788,'Keighley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41789,'Kendal',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41790,'Kenilworth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41791,'Kettering',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41792,'Kidderminster',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41793,'Kidsgrove',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41794,'King\'s Lynn',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41795,'Kingsteignton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41796,'Kingston upon Hull',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41797,'Kingswood',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41798,'Kirby in Ashfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41799,'Kirkby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41800,'Lancaster',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41801,'Leamington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41802,'Leatherhead',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41803,'Leeds',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41804,'Leicester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41805,'Leigh',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41806,'Leighton Buzzard',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41807,'Letchworth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41808,'Lewes',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41809,'Leyland',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41810,'Lichfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41811,'Lincoln',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41812,'Litherland',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41813,'Littlehampton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41814,'Liverpool',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41815,'Locks Heath',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41816,'London',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41817,'Long Benton-Killingworth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41818,'Long Eaton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41819,'Loughborough',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41820,'Loughton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41821,'Louth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41822,'Lowestoft',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41823,'Luton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41824,'Lyminge',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41825,'Lytham Saint Anne\'s',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41826,'Mablethorpe and Sutton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41827,'Macclesfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41828,'Maghull-Lydiate',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41829,'Maidenhead',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41830,'Maidstone',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41831,'Manchester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41832,'Mangotsfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41833,'Mansfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41834,'Margate',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41835,'Matlock',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41836,'Melton Mowbray',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41837,'Middlesbrough',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41838,'Middleton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41839,'Midsomer Norton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41840,'Milton Keynes',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41841,'Morecambe',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41842,'Morley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41843,'Nailsea',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41844,'Nantwich',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41845,'Nelson',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41846,'New Addington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41847,'New Milton-Barton-on-Sea',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41848,'Newark-on-Trent',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41849,'Newburn',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41850,'Newbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41851,'Newcastle upon Tyne',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41852,'Newcastle-under-Lyme',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41853,'Newport',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41854,'Newton Abbot',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41855,'Newton Aycliffe',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41856,'North Hykeham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41857,'North Shields',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41858,'Northallerton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41859,'Northam',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41860,'Northampton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41861,'Northfleet',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41862,'Northwich',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41863,'Norwich',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41864,'Nottingham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41865,'Nuneaton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41866,'Oakengates-Donnington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41867,'Oakham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41868,'Oldbury-Smethwick',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41869,'Oldham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41870,'Ormskirk',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41871,'Ossett',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41872,'Oxford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41873,'Paignton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41874,'Penzance',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41875,'Peterborough',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41876,'Peterlee',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41877,'Plymouth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41878,'Pontefract',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41879,'Poole',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41880,'Portsmouth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41881,'Potters Bar',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41882,'Prescot',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41883,'Preston',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41884,'Prestwich',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41885,'Prestwood',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41886,'Pudsey',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41887,'Radcliffe',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41888,'Ramsgate',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41889,'Rawtenstall',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41890,'Rayleigh',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41891,'Reading',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41892,'Redcar',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41893,'Redditch',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41894,'Reigate',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41895,'Rochdale',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41896,'Rochester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41897,'Rotherham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41898,'Rottingdean',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41899,'Royal Tunbridge Wells',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41900,'Royton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41901,'Rugby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41902,'Rugeley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41903,'Runcorn',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41904,'Rushden',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41905,'Ryde',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41906,'Saint Albans',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41907,'Saint Austell',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41908,'Saint Helens',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41909,'Sale',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41910,'Salford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41911,'Salisbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41912,'Scarborough',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41913,'Scunthorpe',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41914,'Seaham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41915,'Sevenoaks',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41916,'Sheffield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41917,'Shipley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41918,'Shrewsbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41919,'Sidmouth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41920,'Sittingbourne',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41921,'Skegness',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41922,'Skelmersdale',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41923,'Sleaford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41924,'Slough',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41925,'Solihull',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41926,'Sompting-Lancing',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41927,'South Shields',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41928,'Southampton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41929,'Southend-on-Sea',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41930,'Southport',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41931,'Spalding-Pinchbeck',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41932,'St. Helens',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41933,'Stafford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41934,'Staines',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41935,'Stalybridge',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41936,'Stamford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41937,'Stanford le Hope-Corringham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41938,'Stanley-Annfield Plain',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41939,'Staveley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41940,'Stevenage',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41941,'Stockport',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41942,'Stockton Heath-Thelwall',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41943,'Stockton-on-Tees',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41944,'Stoke-on-Trent',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41945,'Stourbridge',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41946,'Stratford-upon-Avon',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41947,'Stretford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41948,'Strood',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41949,'Stubbington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41950,'Sunbury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41951,'Sunderland',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41952,'Sutton Coldfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41953,'Sutton in Ashfield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41954,'Swadlincote',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41955,'Swanley-Hextable',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41956,'Swindon',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41957,'Swinton and Pendlebury',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41958,'Tamworth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41959,'Taunton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41960,'Tavistock',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41961,'Teignmouth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41962,'Telford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41963,'Tenbury Wells',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41964,'Thatcham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41965,'The Deepings',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41966,'Thetford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41967,'Thornaby',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41968,'Thornton-Cleveleys',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41969,'Tiverton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41970,'Tonbridge',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41971,'Torquay',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41972,'Totton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41973,'Trowbridge',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41974,'Truro',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41975,'Tyldesley',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41976,'Urmston',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41977,'Wakefield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41978,'Walkden',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41979,'Wallasey',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41980,'Wallsend',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41981,'Walsall',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41982,'Walton and Weybridge',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41983,'Warrington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41984,'Warwick',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41985,'Washington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41986,'Waterlooville',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41987,'Watford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41988,'Wellingborough',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41989,'Welwyn Garden City',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41990,'West Bridgeford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41991,'West Bromwich',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41992,'Westhoughton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41993,'Weston-super-Mare',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41994,'Weymouth',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41995,'Whitefield',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41996,'Whitehaven',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41997,'Whitley Bay',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41998,'Wickford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(41999,'Widnes',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42000,'Wigan',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42001,'Wigston',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42002,'Wilmslow',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42003,'Wimbourne Minster',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42004,'Winchester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42005,'Windsor Berks',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42006,'Windsor-Eton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42007,'Winsford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42008,'Wisbech',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42009,'Witham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42010,'Witney',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42011,'Woking-Byfleet',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42012,'Wokingham',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42013,'Wolverhampton',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42014,'Wolverton-Stony Stratford',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42015,'Worcester',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42016,'Worcestershire',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42017,'Workington',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42018,'Worksop',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42019,'Worthing',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42020,'Yeovil',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42021,'York',3842,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42022,'Barking',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42023,'Basildon',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42024,'Brentwood',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42025,'Cambrridge',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42026,'Canvey Island',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42027,'Chelmsford',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42028,'Clacton-on-Sea',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42029,'Colchester',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42030,'Dagenham',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42031,'Dunmow',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42032,'Epping',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42033,'Essex',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42034,'Grays',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42035,'Harlow',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42036,'Ilford',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42037,'Ingatestone',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42038,'Leigh on Sea',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42039,'Rainham',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42040,'Romford',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42041,'Saffron Walden',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42042,'Stansted',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42043,'Wickford',3843,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42044,'Ballinamallard',3844,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42045,'Kirkcaldy',3845,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42046,'Ewloe',3846,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42047,'Greenfield',3846,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42048,'Imperial Wharf',3847,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42049,'Kirton-in-Lindsey',3848,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42050,'Berkeley',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42051,'Cheltenham',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42052,'Churchham',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42053,'Cirencester',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42054,'East Kilbride',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42055,'Gloucester',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42056,'Lechlade',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42057,'Lydney',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42058,'Moreton in Marsh',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42059,'Stroud',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42060,'Tewkesbury',3849,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42061,'Blackwood',3850,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42062,'Blaenavon',3850,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42063,'Newport',3850,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42064,'Tredegar',3850,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42065,'Aldershot',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42066,'Alton',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42067,'Andover',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42068,'Bordon',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42069,'Botley',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42070,'Fareham',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42071,'Farnborough',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42072,'Fleet',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42073,'Fordingbridge',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42074,'Havant',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42075,'Hayling Island',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42076,'Hook',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42077,'Isle of wight',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42078,'Liphook',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42079,'Longparish',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42080,'Old Bishopstoke',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42081,'Petersfield',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42082,'Portsmouth',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42083,'Ringwood',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42084,'Romsey',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42085,'South Harting',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42086,'Southampton',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42087,'Waterlooville',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42088,'West Wellow',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42089,'Winchester',3851,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42090,'Lymington',3852,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42091,'Pennington',3852,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42092,'Southampton',3852,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42093,'Kington',3853,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42094,'Ledbury',3853,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42095,'Leominster',3853,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42096,'Saint Albans',3853,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42097,'Barnet',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42098,'Bishops Stortford',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42099,'Borehamwood',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42100,'Brookmans Park',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42101,'Bushey',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42102,'Cheshunt',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42103,'Cuffley',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42104,'Elstree',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42105,'Hemel Hempstead',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42106,'Hertfordshire',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42107,'Kings Langley',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42108,'Much Hadham',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42109,'Radlett',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42110,'Rickmansworth',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42111,'Royston',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42112,'Stevenage',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42113,'Waltham Cross',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42114,'Watford',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42115,'Welwyn',3854,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42116,'Newmarket',3858,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42117,'Ashford',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42118,'Beckenham',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42119,'Bromley',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42120,'Brookland',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42121,'Charing',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42122,'Chatam',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42123,'Crayford',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42124,'Edenbridge',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42125,'Erith',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42126,'Faversham',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42127,'Five Oak Green',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42128,'Folkestone',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42129,'Gillingham',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42130,'Gravesend',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42131,'Hartlip',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42132,'Hayes',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42133,'Herne Bay',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42134,'Hythe',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42135,'Lenham',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42136,'Maidstone',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42137,'Minster',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42138,'New Romney',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42139,'Orpington',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42140,'Paddock Wood',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42141,'Royal Tunbridge Wells',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42142,'Sandwich',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42143,'Sheerness',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42144,'Sidcup',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42145,'Sittingbourne',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42146,'Staplehurst',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42147,'Tunbridge Wells',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42148,'West Malling',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42149,'Westerham',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42150,'Whitstable',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42151,'canterbury',3859,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42152,'Ayrshire',3860,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42153,'Airdrie',3861,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42154,'Glasgow',3861,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42155,'Accrington',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42156,'Blackburn',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42157,'Blackpool',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42158,'Burnley',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42159,'Clayton-Le-Moors',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42160,'Cleveleys',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42161,'Darwen',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42162,'Gisburn',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42163,'Glasgow',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42164,'Greater Manchester',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42165,'Hamilton',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42166,'Kirkby Lonsdale',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42167,'Leyland',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42168,'Littleborough',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42169,'Lytham St Annes',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42170,'Nelson',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42171,'Oldham',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42172,'Out Rawcliffe',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42173,'Padiham',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42174,'Preston',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42175,'Rochdale',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42176,'Rossendale',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42177,'Tarleton',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42178,'Todmorden',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42179,'West Lancashire',3862,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42180,'Coalville',3863,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42181,'Fleckney',3863,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42182,'Leicester',3863,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42183,'Loughborough',3863,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42184,'Lutterworth',3863,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42185,'Market Harborough',3863,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42186,'Tur Langton',3863,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42187,'Alford',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42188,'Bourne',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42189,'Casewick',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42190,'Digby',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42191,'Gainsborough',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42192,'Grimsby',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42193,'Immingham',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42194,'Laceby',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42195,'Lincoln',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42196,'Louth',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42197,'Market Deeping',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42198,'Market Rasen',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42199,'Spalding',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42200,'Spilsby',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42201,'Swinderby',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42202,'Thurlby',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42203,'Witham St Hughs',3864,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42204,'Llanymynech',3865,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42205,'Abbeywood',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42206,'Aldgate',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42207,'Alperton',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42208,'Castledawson',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42209,'Edmonton',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42210,'Enfield',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42211,'Forest Gate',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42212,'Greenwich',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42213,'Hainault',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42214,'Hampstead',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42215,'Harrow Weald',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42216,'Hendon',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42217,'Kensington',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42218,'Leyton',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42219,'London',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42220,'Magherafelt',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42221,'Mill Hill',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42222,'Southwark',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42223,'Suffolk',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42224,'Sulham',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42225,'Victoria',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42226,'Walthamstow',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42227,'Wandsworth',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42228,'Wembley',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42229,'Wimbledon',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42230,'Woolwich',3866,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42231,'Ludlow',3867,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42232,'Manchester',3868,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42233,'Prestwich',3868,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42234,'Salford',3868,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42235,'Swinton',3868,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42236,'Worsley',3868,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42237,'Mayfair',3869,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42238,'Southport',3870,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42239,'Brentford',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42240,'Brimsdown',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42241,'Drayton',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42242,'Edgware',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42243,'Feltham',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42244,'Greenford',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42245,'Hampton',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42246,'Harmondsworth',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42247,'Harrow',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42248,'Hayes',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42249,'Isleworth',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42250,'Northolt',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42251,'Northwood',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42252,'Perivale',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42253,'Pinner',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42254,'Ruislip',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42255,'Ruislip Manor',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42256,'South Harrow',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42257,'Southall',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42258,'Staines',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42259,'Stamore',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42260,'Stanmore',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42261,'Stanwell',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42262,'Sunbury',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42263,'Teddington',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42264,'Twickenham',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42265,'Uxbridge',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42266,'Watford',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42267,'Wembley',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42268,'West Drayton',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42269,'Wraysbury',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42270,'hounslow',3872,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42271,'Mildenhall',3873,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42272,'Abergavenny',3874,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42273,'Monmouth',3874,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42274,'Attleborough',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42275,'Bacton',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42276,'Briston',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42277,'Dereham',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42278,'Diss',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42279,'Downham Market',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42280,'Fakenham',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42281,'Garboldisham',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42282,'Gayton',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42283,'Glandford',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42284,'Great Yarmouth',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42285,'Heacham',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42286,'Hopton',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42287,'Kings Lynn',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42288,'Little Cressingham',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42289,'Norwich',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42290,'Sheringham',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42291,'Thetford',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42292,'Trunch',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42293,'Winordhan',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42294,'Wymondham',3876,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42295,'Daventry',3879,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42296,'Irthlingborough',3879,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42297,'Middleton Cheney',3879,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42298,'Oundle',3879,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42299,'Towcester',3879,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42300,'Welford',3879,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42301,'Wellingborough',3879,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42302,'Woodford Halse',3879,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42303,'Brackley',3880,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42304,'Desborough',3880,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42305,'weedon',3880,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42306,'Bedlington',3882,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42307,'Corbridge',3882,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42308,'Cramlington',3882,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42309,'Morpeth',3882,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42310,'Northumberland',3882,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42311,'Ponteland',3882,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42312,'Wooler',3882,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42313,'Burton Joyce',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42314,'Cotgraves',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42315,'Gonalston',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42316,'Mansfield',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42317,'Newark',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42318,'Nottingham',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42319,'Pennyfoot Street',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42320,'Sandiacre',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42321,'Southwell',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42322,'Whatton',3883,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42323,'Bampton',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42324,'Banbury',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42325,'Bicester',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42326,'Blewbury',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42327,'Cheltenham',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42328,'Chipping Norton',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42329,'Drayton',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42330,'Eynsham',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42331,'Farringdon',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42332,'Henely on Thames',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42333,'Henley-on-Thames',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42334,'Oxford',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42335,'Shenington',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42336,'Thame',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42337,'Wantage',3884,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42338,'Builth Wells',3885,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42339,'Knighton',3885,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42340,'Llanbrynmair',3885,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42341,'New town',3885,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42342,'Newtown',3885,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42343,'Rhaeadr',3885,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42344,'Welshpool',3885,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42345,'Hill of Fearn',3886,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42346,'Shoreham',3887,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42347,'Sark',3888,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42348,'Aberdeen',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42349,'Alloa',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42350,'Alness',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42351,'Annan',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42352,'Arbroath',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42353,'Ardrossan',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42354,'Armadale',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42355,'Ayr',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42356,'Bathgate',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42357,'Blairgowrie',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42358,'Blantyre-Hamilton',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42359,'Boness',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42360,'Bonnybridge',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42361,'Broxburn',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42362,'Broxham',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42363,'Buckhaven',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42364,'Burntisland',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42365,'Carluke',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42366,'Carnoustie',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42367,'Coatbridge',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42368,'Cowdenbeath',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42369,'Cumbernauld',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42370,'Cumnock',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42371,'Cupar',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42372,'Dalbeattie',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42373,'Dalkeith',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42374,'Dingwall',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42375,'Dumbarton',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42376,'Dumfries',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42377,'Dundee',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42378,'Dunfermline',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42379,'Dunoon',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42380,'East Kilbride',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42381,'Edimburah',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42382,'Edinburgh',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42383,'Elgin',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42384,'Ellon',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42385,'Erskine',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42386,'Falkirk',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42387,'Forfar',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42388,'Forres',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42389,'Fort William',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42390,'Fraserburgh',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42391,'Galashiels',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42392,'Galston-Newmilns',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42393,'Girvan',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42394,'Glasgow',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42395,'Glenrothes',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42396,'Greengairs',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42397,'Greenock',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42398,'Haddington',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42399,'Hawick',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42400,'Helensburgh',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42401,'Insch',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42402,'Inverkeithing-Dalgety Bay',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42403,'Inverness',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42404,'Inverurie',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42405,'Irvine',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42406,'Isle of Lewis',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42407,'Kilmarnock',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42408,'Kilsyth',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42409,'Kilwinning',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42410,'Kirkcaldy',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42411,'Kirkintilloch-Lenzie',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42412,'Kirkwall',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42413,'Lanark',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42414,'Largs',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42415,'Larkhall',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42416,'Lerwick',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42417,'Linlithgow',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42418,'Livingston',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42419,'Loanhead',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42420,'Montrose',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42421,'Motherwell',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42422,'Nairn',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42423,'Newtown Saint Boswells',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42424,'Paisley',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42425,'Penicuik',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42426,'Perth',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42427,'Peterhead',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42428,'Saint Andrews',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42429,'Selkirkshire',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42430,'Shotts',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42431,'Stirling',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42432,'Stonehaven',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42433,'Stornoway',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42434,'Stranraer',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42435,'Tranent',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42436,'Troon',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42437,'Whitburn',3889,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42438,'Bishops Castle',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42439,'Bridgnorth',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42440,'Bucknell',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42441,'Drayton',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42442,'Greete',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42443,'Hinstock',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42444,'Jackfield',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42445,'Ludlow',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42446,'Much Wenlock',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42447,'Oswestry',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42448,'Ryton',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42449,'Shifnal',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42450,'Shrewsbury',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42451,'Telford',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42452,'Whitchurch',3891,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42453,'Bath',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42454,'Brent Knoll',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42455,'Castle Cary',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42456,'Shepton Mallet',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42457,'Somerset',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42458,'Taunton',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42459,'Wedmore',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42460,'Wellington',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42461,'Weston-super-Mare',3892,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42462,'Burton-on-Trent',3897,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42463,'Hednesford',3897,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42464,'Stoke on Trent',3897,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42465,'Stone',3897,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42466,'Strabane',3898,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42467,'Bury St Edmunds',3899,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42468,'Felixstowe',3899,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42469,'Haverhill',3899,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42470,'Leiston',3899,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42471,'Lowestoft',3899,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42472,'Stowmarket',3899,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42473,'Sudbury',3899,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42474,'Woodbridge',3899,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42475,'Ashtead',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42476,'Bagshot',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42477,'Betchworth',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42478,'Bletchingley',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42479,'Carshalton',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42480,'Chertsey',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42481,'Claygate',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42482,'Croydon',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42483,'Dorking',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42484,'Effingham',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42485,'Epsom',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42486,'Farnham',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42487,'Haslemere',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42488,'Kingston Upon Thames',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42489,'Leatherhead',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42490,'Mitcham',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42491,'New Malden',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42492,'Redhill',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42493,'Richmond',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42494,'Salfords',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42495,'Shepperton',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42496,'Stoneleigh',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42497,'Surbiton',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42498,'Surrey',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42499,'Tadworth',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42500,'Walton on Thames',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42501,'West Molesey',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42502,'Wisley',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42503,'Woking',3900,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42504,'Brighton',3901,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42505,'Henfield',3901,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42506,'Sussex',3901,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42507,'Worthing',3901,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42508,'Twickenham',3902,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42509,'Omagh',3904,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42510,'Santaquin',3905,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42511,'Aberdare',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42512,'Aberystwyth',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42513,'Barry',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42514,'Brecon',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42515,'Bridgend',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42516,'Brynmawr',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42517,'Caernarfon',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42518,'Caerphily',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42519,'Caldicot',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42520,'Cardiff',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42521,'Carmarthen',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42522,'Colwyn Bay',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42523,'Connahs Quay',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42524,'Cwmbran',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42525,'Dolgellau',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42526,'Ebbw Vale',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42527,'Gaerwen',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42528,'Gwynedd',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42529,'Haverfordwest',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42530,'Isle of Anglesey',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42531,'Islwyn',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42532,'Llandrindod Wells',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42533,'Llanelli',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42534,'Llangefni',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42535,'Maesteg',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42536,'Merthyr Tydfil',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42537,'Mold',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42538,'Mountain Ash-Abercynon',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42539,'Neath',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42540,'Newport',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42541,'Pembrokeshire',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42542,'Penarth',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42543,'Pencader',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42544,'Pontypool',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42545,'Pontypridd',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42546,'Port Talbot',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42547,'Queensferry',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42548,'Rhondda',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42549,'Rhyl',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42550,'Ruthin',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42551,'Shotton-Hawarden',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42552,'St. Asaph',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42553,'Swansea',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42554,'West Glamorgan',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42555,'Wrexham',3906,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42556,'Alcester',3907,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42557,'Coventry',3907,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42558,'Henley in Arden',3907,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42559,'Nuneaton',3907,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42560,'Pershore',3907,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42561,'Southam',3907,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42562,'Warwick',3907,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42563,'Whissendine',3912,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42564,'Amesbury',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42565,'Bradford on Avon',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42566,'Calne',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42567,'Chippenham',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42568,'Corsham',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42569,'Cosham',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42570,'Devizes',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42571,'Downton',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42572,'Malmesbury',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42573,'Marlborough',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42574,'Melksham',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42575,'Pewsey',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42576,'Salisbury',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42577,'Southwick',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42578,'Swindon',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42579,'Warminster',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42580,'Westbury',3913,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42581,'Winnersh',3914,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42582,'Evesham',3915,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42583,'Hartlebury',3915,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42584,'Kidderminster',3915,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42585,'Pershore',3915,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42586,'Redditch',3915,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42587,'Worcester',3915,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42588,'Caergwrle',3916,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42589,'Ruabon',3916,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42590,'Neuffen',3917,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42591,'Beverley',3918,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42592,'Malton',3918,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42593,'Mexborough',3918,230,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42594,'Alabaster',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42595,'Albertville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42596,'Alexander City',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42597,'Anniston',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42598,'Arab',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42599,'Ashville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42600,'Athens',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42601,'Atmore',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42602,'Auburn',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42603,'Bessemer',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42604,'Birmingham',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42605,'Capshaw',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42606,'Center Point',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42607,'Childersburg',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42608,'Cullman',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42609,'Daleville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42610,'Daphne',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42611,'Decatur',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42612,'Dothan',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42613,'Enterprise',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42614,'Eufaula',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42615,'Fairfield',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42616,'Fairhope',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42617,'Florence',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42618,'Fort Payne',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42619,'Gadsden',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42620,'Grand Bay',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42621,'Grove Hill',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42622,'Guntersville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42623,'Hampton Cove',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42624,'Hanceville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42625,'Hartselle',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42626,'Headland',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42627,'Helena',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42628,'Hodges',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42629,'Homewood',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42630,'Hoover',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42631,'Hueytown',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42632,'Huntsville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42633,'Jacksonville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42634,'Jasper',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42635,'Leeds',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42636,'Luverne',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42637,'Madison',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42638,'Mobile',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42639,'Montgomery',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42640,'Mountain Brook',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42641,'Muscle Shoals',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42642,'Northport',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42643,'Notasulga',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42644,'Opelika',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42645,'Oxford',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42646,'Ozark',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42647,'Pelham',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42648,'Pell City',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42649,'Pennsylvania',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42650,'Phenix City',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42651,'Prattville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42652,'Prichard',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42653,'Ramer',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42654,'Roanoke',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42655,'Saraland',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42656,'Scottsboro',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42657,'Selma',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42658,'Sheffield',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42659,'Smiths',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42660,'Sumiton',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42661,'Sylacauga',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42662,'Talladega',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42663,'Thomasville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42664,'Trafford',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42665,'Troy',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42666,'Trussville',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42667,'Tuscaloosa',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42668,'Tuskegee',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42669,'Vestavia Hills',3919,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42670,'Anchorage',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42671,'Barrow',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42672,'Bethel',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42673,'College',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42674,'Fairbanks',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42675,'Homer',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42676,'Juneau',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42677,'Kenai',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42678,'Ketchikan',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42679,'Kodiak',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42680,'Nome',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42681,'Palmer',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42682,'Sitka',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42683,'Soldotna',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42684,'Sterling',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42685,'Unalaska',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42686,'Valdez',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42687,'Wasilla',3920,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42688,'Apache Junction',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42689,'Avondale',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42690,'Bisbee',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42691,'Bouse',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42692,'Bullhead City',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42693,'Carefree',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42694,'Casa Grande',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42695,'Casas Adobes',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42696,'Chandler',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42697,'Clarkdale',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42698,'Cottonwood',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42699,'Douglas',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42700,'Drexel Heights',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42701,'El Mirage',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42702,'Flagstaff',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42703,'Florence',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42704,'Flowing Wells',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42705,'Fort Mohave',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42706,'Fortuna Foothills',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42707,'Fountain Hills',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42708,'Gilbert',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42709,'Glendale',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42710,'Globe',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42711,'Goodyear',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42712,'Green Valley',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42713,'Kingman',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42714,'Lake Havasu City',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42715,'Laveen',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42716,'Litchfield Park',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42717,'Marana',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42718,'Mesa',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42719,'New Kingman-Butler',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42720,'Nogales',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42721,'Oracle',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42722,'Oro Valley',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42723,'Paradise Valley',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42724,'Parker',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42725,'Payson',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42726,'Peoria',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42727,'Phoenix',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42728,'Pine',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42729,'Pinetop',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42730,'Prescott',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42731,'Prescott Valley',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42732,'Quartzsite',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42733,'Queen Creek',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42734,'Rio Rico',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42735,'Safford',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42736,'San Luis',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42737,'Scottsdale',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42738,'Sedona',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42739,'Sierra Vista',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42740,'Sierra Vista Southeast',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42741,'Sun City',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42742,'Sun City West',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42743,'Surprise',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42744,'Tempe',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42745,'Tombstone',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42746,'Tucson',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42747,'Winslow',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42748,'Yuma',3921,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42749,'Alexander',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42750,'Arkadelphia',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42751,'Batesville',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42752,'Bella Vista',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42753,'Benton',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42754,'Bentonville',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42755,'Berryville',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42756,'Blytheville',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42757,'Cabot',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42758,'Camden',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42759,'Cherry Valley',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42760,'Conway',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42761,'Corning',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42762,'El Dorado',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42763,'Fayetteville',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42764,'Forrest City',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42765,'Fort Smith',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42766,'Harrison',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42767,'Hope',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42768,'Hot Springs',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42769,'Jacksonville',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42770,'Jonesboro',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42771,'Lake City',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42772,'Little Rock',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42773,'Magnolia',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42774,'Mount Vernon',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42775,'Mountain Home',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42776,'Norfork',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42777,'North Little Rock',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42778,'Paragould',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42779,'Piggott',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42780,'Pine Bluff',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42781,'Pocahontas',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42782,'Prescott',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42783,'Quitman',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42784,'Rogers',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42785,'Russellville',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42786,'Searcy',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42787,'Sheridan',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42788,'Sherwood',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42789,'Siloam Springs',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42790,'Springdale',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42791,'Stuttgart',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42792,'Texarkana',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42793,'Van Buren',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42794,'Ward',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42795,'West Helena',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42796,'West Memphis',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42797,'Wynne',3922,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42798,'Acton',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42799,'Adelanto',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42800,'Agoura Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42801,'Aguanga',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42802,'Alameda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42803,'Alamo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42804,'Albany',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42805,'Alhambra',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42806,'Aliso Viejo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42807,'Alondra Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42808,'Alpine',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42809,'Alta Loma',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42810,'Altadena',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42811,'American Canyon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42812,'Anaheim',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42813,'Anderson',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42814,'Antelope',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42815,'Antioch',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42816,'Apple Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42817,'Aptos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42818,'Arcadia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42819,'Arcata',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42820,'Arden-Arcade',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42821,'Arroyo Grande',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42822,'Artesia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42823,'Arvin',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42824,'Ashland',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42825,'Atascadero',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42826,'Atwater',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42827,'Auburn',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42828,'Avalon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42829,'Avenal',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42830,'Avocado Heights',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42831,'Azusa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42832,'Bakersfield',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42833,'Baldwin Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42834,'Banning',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42835,'Barstow',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42836,'Bay Point',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42837,'Baywood-Los Osos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42838,'Bear Valley Springs',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42839,'Beaumont',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42840,'Bell',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42841,'Bell Gardens',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42842,'Bellflower',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42843,'Belmont',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42844,'Ben Lomond',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42845,'Benicia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42846,'Berkeley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42847,'Beverly Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42848,'Big Bear Lake',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42849,'Bloomington',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42850,'Blythe',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42851,'Bonita',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42852,'Bostonia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42853,'Brawley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42854,'Brea',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42855,'Brentwood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42856,'Brisbane',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42857,'Brookdale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42858,'Buena Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42859,'Burbank',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42860,'Burlingame',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42861,'Burnham',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42862,'Byron',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42863,'Calabasas',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42864,'Calexico',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42865,'California City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42866,'Camarillo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42867,'Cameron Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42868,'Camino',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42869,'Camp Pendleton North',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42870,'Camp Pendleton South',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42871,'Campbell',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42872,'Canoga Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42873,'Canyon Lake',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42874,'Capitola',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42875,'Carlsbad',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42876,'Carmel',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42877,'Carmel Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42878,'Carmichael',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42879,'Carpinteria',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42880,'Carson',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42881,'Casa de Oro-Mount Helix',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42882,'Castaic',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42883,'Castro Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42884,'Cathedral City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42885,'Cayucos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42886,'Ceres',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42887,'Cerritos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42888,'Charter Oak',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42889,'Chatsworth',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42890,'Cherryland',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42891,'Chico',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42892,'Chino',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42893,'Chino Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42894,'Chula Vista',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42895,'Citrus',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42896,'Citrus Heights',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42897,'City of Commerce',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42898,'City of Industry',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42899,'Claremont',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42900,'Clearlake',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42901,'Clovis',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42902,'Coachella',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42903,'Coalinga',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42904,'Colfax',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42905,'Colton',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42906,'Colusa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42907,'Commerce',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42908,'Compton',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42909,'Concord',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42910,'Corcoran',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42911,'Corning',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42912,'Corona',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42913,'Coronado',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42914,'Corte Madera',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42915,'Costa Mesa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42916,'Cotati',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42917,'Cottonwood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42918,'Country Club',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42919,'Covina',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42920,'Crestline',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42921,'Cudahy',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42922,'Culver City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42923,'Cupertino',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42924,'Cypress',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42925,'Daly City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42926,'Dana Point',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42927,'Danville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42928,'Davis',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42929,'Del Mar',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42930,'Delano',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42931,'Desert Hot Springs',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42932,'Diamond Bar',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42933,'Dinuba',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42934,'Dixon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42935,'Downey',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42936,'Duarte',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42937,'Dublin',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42938,'East Foothills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42939,'East Hemet',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42940,'East La Mirada',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42941,'East Palo Alto',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42942,'East San Gabriel',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42943,'El Cajon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42944,'El Centro',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42945,'El Cerrito',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42946,'El Granada',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42947,'El Monte',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42948,'El Paso de Robles',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42949,'El Segundo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42950,'El Sobrante',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42951,'Elk Grove',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42952,'Emeryville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42953,'Encinitas',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42954,'Encino',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42955,'Escondido',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42956,'Etna',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42957,'Eureka',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42958,'Exeter',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42959,'Fair Oaks',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42960,'Fairfax',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42961,'Fairfield',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42962,'Fairview',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42963,'Fallbrook',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42964,'Ferndale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42965,'Fillmore',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42966,'Florence-Graham',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42967,'Florin',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42968,'Folsom',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42969,'Fontana',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42970,'Foothill Farms',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42971,'Foothill Ranch',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42972,'Forestville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42973,'Fort Bragg',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42974,'Fortuna',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42975,'Foster City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42976,'Fountain Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42977,'Freedom',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42978,'Fremont',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42979,'Fresno',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42980,'Fullerton',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42981,'Galt',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42982,'Garberville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42983,'Garden Acres',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42984,'Garden Grove',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42985,'Gardena',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42986,'Georgetown',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42987,'Gilroy',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42988,'Glen Avon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42989,'Glendale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42990,'Glendora',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42991,'Goleta',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42992,'Gonzales',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42993,'Granada Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42994,'Grand Terrace',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42995,'Grass Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42996,'Greenfield',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42997,'Grover Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42998,'Gualala',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(42999,'Guerneville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43000,'Hacienda Heights',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43001,'Half Moon Bay',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43002,'Hanford',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43003,'Harbor City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43004,'Hawaiian Gardens',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43005,'Hawthorne',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43006,'Hayward',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43007,'Hemet',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43008,'Hercules',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43009,'Hermosa Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43010,'Hesperia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43011,'Highland',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43012,'Hillsborough',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43013,'Hollister',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43014,'Hollywood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43015,'Huntington Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43016,'Huntington Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43017,'Idyllwild',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43018,'Imperial Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43019,'Indio',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43020,'Industry',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43021,'Inglewood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43022,'Irvine',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43023,'Irwindale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43024,'Isla Vista',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43025,'Jackson',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43026,'Jamul',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43027,'La Canada Flintridge',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43028,'La Crescenta-Montrose',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43029,'La Habra',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43030,'La Jolla',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43031,'La Mesa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43032,'La Mirada',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43033,'La Palma',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43034,'La Presa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43035,'La Puente',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43036,'La Quinta',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43037,'La Riviera',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43038,'La Verne',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43039,'LaVerne',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43040,'Ladera Ranch',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43041,'Lafayette',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43042,'Laguna',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43043,'Laguna Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43044,'Laguna Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43045,'Laguna Niguel',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43046,'Lake Elsinore',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43047,'Lake Forest',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43048,'Lakeside',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43049,'Lakewood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43050,'Lamont',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43051,'Lancaster',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43052,'Larkspur',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43053,'Lawndale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43054,'Laytonville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43055,'Lemon Grove',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43056,'Lemoore',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43057,'Lennox',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43058,'Linda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43059,'Lindsay',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43060,'Live Oak',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43061,'Livermore',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43062,'Livingston',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43063,'Lodi',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43064,'Loma Linda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43065,'Lomita',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43066,'Lompoc',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43067,'Long Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43068,'Los Alamitos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43069,'Los Altos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43070,'Los Angeles',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43071,'Los Angeles East',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43072,'Los Banos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43073,'Los Gatos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43074,'Los Olivos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43075,'Lynwood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43076,'MacKinleyville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43077,'Madera',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43078,'Magalia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43079,'Malibu',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43080,'Mammoth Lakes',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43081,'Manhattan Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43082,'Manteca',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43083,'Marina',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43084,'Marina del Rey',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43085,'Mariposa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43086,'Marshall',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43087,'Martinez',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43088,'Marysville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43089,'Maywood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43090,'Menlo Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43091,'Merced',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43092,'Middletown',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43093,'Midway City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43094,'Mill Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43095,'Millbrae',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43096,'Milpitas',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43097,'Mira Loma',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43098,'Miranda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43099,'Mission Viejo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43100,'Modesto',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43101,'Monclair',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43102,'Monrovia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43103,'Montara',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43104,'Montclair',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43105,'Montebello',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43106,'Montecito',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43107,'Monterey',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43108,'Monterey Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43109,'Moorpark',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43110,'Moraga Town',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43111,'Moreno Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43112,'Morgan Hill',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43113,'Morro Bay',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43114,'Moss Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43115,'Mount Shasta',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43116,'Mountain View',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43117,'Murrieta',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43118,'N. Hollywood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43119,'Napa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43120,'National City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43121,'Nevada City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43122,'Newark',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43123,'Newport Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43124,'Norco',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43125,'North Auburn',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43126,'North Fair Oaks',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43127,'North Fork',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43128,'North Highlands',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43129,'North Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43130,'North Hollywood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43131,'Northridge',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43132,'Norwalk',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43133,'Novato',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43134,'Nuevo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43135,'Oak View',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43136,'Oakdale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43137,'Oakhurst',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43138,'Oakland',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43139,'Oakley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43140,'Oceanside',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43141,'Oildale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43142,'Ojai',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43143,'Olivehurst',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43144,'Ontario',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43145,'Orange',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43146,'Orangevale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43147,'Orcutt',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43148,'Oregon House',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43149,'Orinda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43150,'Oroville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43151,'Oxnard',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43152,'Pacific Grove',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43153,'Pacific Palisades',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43154,'Pacifica',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43155,'Pacoima',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43156,'Pajaro',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43157,'Palm Desert',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43158,'Palm Springs',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43159,'Palmdale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43160,'Palo Alto',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43161,'Palos Verdes Estates',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43162,'Pamona',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43163,'Panorama City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43164,'Paradise',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43165,'Paramount',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43166,'Parkway-South Sacramento',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43167,'Parlier',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43168,'Pasadena',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43169,'Patterson',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43170,'Pedley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43171,'Perris',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43172,'Petaluma',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43173,'Pico Rivera',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43174,'Piedmont',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43175,'Pinole',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43176,'Pismo Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43177,'Pittsburg',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43178,'Placentia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43179,'Placerville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43180,'Playa del Rey',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43181,'Pleasant Hill',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43182,'Pleasanton',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43183,'Plymouth',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43184,'Point Reyes Station',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43185,'Pollock Pines',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43186,'Pomona',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43187,'Port Costa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43188,'Port Hueneme',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43189,'Porterville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43190,'Poway',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43191,'Quartz Hill',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43192,'Ramona',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43193,'Rancho Cordova',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43194,'Rancho Cucamonga',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43195,'Rancho Dominguez',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43196,'Rancho Mirage',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43197,'Rancho Murieta',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43198,'Rancho Palos Verdes',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43199,'Rancho San Diego',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43200,'Rancho Santa Margarita',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43201,'Red Bluff',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43202,'Redding',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43203,'Redlands',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43204,'Redondo Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43205,'Redway',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43206,'Redwood City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43207,'Reedley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43208,'Reseda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43209,'Rialto',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43210,'Richmond',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43211,'Ridgecrest',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43212,'Rio Linda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43213,'Rio Nido',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43214,'Rio del Mar',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43215,'Riverbank',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43216,'Riverside',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43217,'Rocklin',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43218,'Rohnert Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43219,'Rolling Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43220,'Rosamond',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43221,'Roseland',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43222,'Rosemead',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43223,'Rosemont',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43224,'Roseville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43225,'Rossmoor',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43226,'Rowland Heights',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43227,'Rubidoux',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43228,'Sacramento',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43229,'Salinas',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43230,'San Anselmo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43231,'San Bernardino',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43232,'San Bruno',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43233,'San Buenaventura',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43234,'San Carlos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43235,'San Clemente',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43236,'San Diego',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43237,'San Dimas',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43238,'San Fernando',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43239,'San Francisco',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43240,'San Gabriel',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43241,'San Jacinto',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43242,'San Jose',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43243,'San Juan Capistrano',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43244,'San Leandro',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43245,'San Lorenzo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43246,'San Luis Obispo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43247,'San Marcos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43248,'San Marino',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43249,'San Mateo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43250,'San Pablo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43251,'San Pedro',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43252,'San Rafael',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43253,'San Ramon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43254,'San Ysidro',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43255,'Sanger',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43256,'Santa Ana',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43257,'Santa Barbara',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43258,'Santa Clara',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43259,'Santa Clarita',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43260,'Santa Cruz',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43261,'Santa Fe Springs',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43262,'Santa Maria',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43263,'Santa Monica',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43264,'Santa Paula',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43265,'Santa Rosa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43266,'Santa Ynez',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43267,'Santee',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43268,'Saratoga',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43269,'Sausalito',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43270,'Scotts Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43271,'Seal Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43272,'Seaside',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43273,'Sebastopol',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43274,'Selma',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43275,'Shafter',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43276,'Sherman Oaks',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43277,'Sierra Madre',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43278,'Signal Hill',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43279,'Simi Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43280,'Solana Beach',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43281,'Soledad',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43282,'Solvang',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43283,'Sonoma',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43284,'Sonora',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43285,'Soquel',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43286,'South El Monte',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43287,'South Gate',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43288,'South Lake Tahoe',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43289,'South Pasadena',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43290,'South San Francisco',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43291,'South San Jose Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43292,'South Whittier',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43293,'South Yuba City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43294,'Spring Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43295,'St. Helena',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43296,'Stanford',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43297,'Stanton',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43298,'Stevenson Ranch',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43299,'Stockton',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43300,'Strathmore',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43301,'Studio City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43302,'Suisun City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43303,'Sun City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43304,'Sun Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43305,'Sunland',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43306,'Sunnyvale',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43307,'Susanville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43308,'Sutter',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43309,'Sylmar',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43310,'Tahoe City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43311,'Tamalpais-Homestead Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43312,'Tarzana',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43313,'Tehachapi',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43314,'Temecula',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43315,'Temple City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43316,'Thousand Oaks',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43317,'Tiburon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43318,'Topanga',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43319,'Torrance',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43320,'Trabuco Canyon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43321,'Tracy',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43322,'Trinidad',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43323,'Trona',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43324,'Truckee',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43325,'Tujunga',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43326,'Tulare',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43327,'Turlock',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43328,'Tustin',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43329,'Tustin Foothills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43330,'Twentynine Palms',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43331,'Twentynine Palms Base',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43332,'Ukiah',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43333,'Union City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43334,'Upland',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43335,'Vacaville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43336,'Valencia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43337,'Valinda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43338,'Valle Vista',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43339,'Vallejo',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43340,'Valley Center',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43341,'Valley Glen',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43342,'Valley Village',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43343,'Van Nuys',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43344,'Vandenberg Air Force Base',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43345,'Venice',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43346,'Ventura',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43347,'Vernon',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43348,'Victorville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43349,'View Park-Windsor Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43350,'Vincent',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43351,'Visalia',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43352,'Vista',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43353,'Walnut',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43354,'Walnut Creek',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43355,'Walnut Park',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43356,'Wasco',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43357,'Waterford',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43358,'Watsonville',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43359,'West Athens',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43360,'West Carson',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43361,'West Covina',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43362,'West Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43363,'West Hollywood',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43364,'West Puente Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43365,'West Sacramento',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43366,'West Whittier-Los Nietos',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43367,'Westlake Village',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43368,'Westminster',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43369,'Westmont',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43370,'Whittier',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43371,'Wildomar',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43372,'Willits',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43373,'Willowbrook',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43374,'Wilmington',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43375,'Windsor',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43376,'Woodland',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43377,'Woodland Hills',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43378,'Yorba Linda',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43379,'Yreka',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43380,'Yuba City',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43381,'Yucaipa',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43382,'Yucca Valley',3924,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43383,'Air Force Academy',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43384,'Alamosa',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43385,'Applewood',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43386,'Arvada',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43387,'Aspen',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43388,'Aurora',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43389,'Avon',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43390,'Basalt',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43391,'Bellvue',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43392,'Black Forest',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43393,'Boulder',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43394,'Brighton',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43395,'Broomfield',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43396,'Canon City',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43397,'Carbondale',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43398,'Castle Rock',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43399,'Castlewood',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43400,'Centennial',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43401,'Cimarron Hills',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43402,'Clifton',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43403,'Colorado Springs',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43404,'Columbine',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43405,'Commerce City',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43406,'Cortez',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43407,'Crawford',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43408,'Denver',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43409,'Durango',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43410,'Edwards',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43411,'Elizabeth',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43412,'Englewood',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43413,'Estes Park',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43414,'Evergreen',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43415,'Federal Heights',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43416,'Fort Carson',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43417,'Fort Collins',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43418,'Fort Morgan',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43419,'Fountain',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43420,'Golden',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43421,'Grand Junction',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43422,'Greeley',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43423,'Greenwood Village',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43424,'Gunbarrel',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43425,'Highlands Ranch',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43426,'Holly',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43427,'Ken Caryl',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43428,'Lafayette',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43429,'Lakewood',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43430,'Littleton',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43431,'Longmont',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43432,'Louisville',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43433,'Loveland',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43434,'Lyons',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43435,'Montrose',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43436,'Monument',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43437,'Nederland',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43438,'Niwot',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43439,'Northglenn',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43440,'Pagosa Springs',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43441,'Parker',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43442,'Penrose',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43443,'Peyton',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43444,'Pueblo',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43445,'Redlands',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43446,'Ridgway',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43447,'Rifle',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43448,'Rocky Ford',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43449,'Sanford',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43450,'Security-Widefield',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43451,'Sherrelwood',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43452,'Silver Cliff',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43453,'Snowmass Village',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43454,'Southglenn',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43455,'Steamboat Springs',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43456,'Sterling',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43457,'Superior',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43458,'Telluride',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43459,'Thornton',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43460,'Vail',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43461,'Welby',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43462,'Westcliffe',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43463,'Westminster',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43464,'Wheat Ridge',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43465,'Woodland Park',3926,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43466,'Ansonia',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43467,'Avon',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43468,'Bethel',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43469,'Bethlehem',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43470,'Bloomfield',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43471,'Branford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43472,'Bridgeport',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43473,'Bristol',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43474,'Canaan',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43475,'Canton',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43476,'Central Manchester',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43477,'Cheshire',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43478,'Colchester',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43479,'Conning Towers-Nautilus Park',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43480,'Coscob',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43481,'Cranbury',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43482,'Cromwell',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43483,'Danbury',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43484,'Darien',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43485,'Dayville',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43486,'Derby',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43487,'East Hartford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43488,'East Haven',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43489,'Ellington',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43490,'Enfield',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43491,'Fairfield',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43492,'Farmington',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43493,'Glastonbury',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43494,'Greens Farms',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43495,'Greenwich',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43496,'Groton',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43497,'Guilford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43498,'Haddam',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43499,'Hamden',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43500,'Hartford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43501,'Harwinton',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43502,'Lakeville',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43503,'Lyme',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43504,'Madison',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43505,'Manchester',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43506,'Meriden',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43507,'Middletown',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43508,'Milford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43509,'Monroe',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43510,'Mystic',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43511,'Naugatuck',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43512,'New Britain',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43513,'New Canaan',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43514,'New Hartford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43515,'New Haven',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43516,'New London',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43517,'New Milford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43518,'New Town',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43519,'Newington',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43520,'North Haven',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43521,'North Stonington',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43522,'Norwalk',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43523,'Norwich',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43524,'Old Saybrook',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43525,'Oneco',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43526,'Orange',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43527,'Pawcatuck',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43528,'Plainville',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43529,'Portland',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43530,'Putnam',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43531,'Riverside',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43532,'Rocky Hill',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43533,'Rowayton',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43534,'Sandy Hook',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43535,'Seymour',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43536,'Sharon',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43537,'Shelton',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43538,'South Windsor',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43539,'Southington',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43540,'Southport',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43541,'Stamford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43542,'Sterling',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43543,'Storrs',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43544,'Stratford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43545,'Suffield',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43546,'Taftville',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43547,'Terryville',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43548,'Tolland',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43549,'Torrington',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43550,'Trumbull',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43551,'Vernon',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43552,'Wallingford Center',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43553,'Waterbury',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43554,'Watertown',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43555,'West Hartford',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43556,'West Haven',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43557,'Weston',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43558,'Westport',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43559,'Wethersfield',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43560,'Willimantic',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43561,'Wilton',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43562,'Windsor',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43563,'Windsor Locks',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43564,'Winsted',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43565,'Woodbury',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43566,'Woodstock',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43567,'pomfret',3927,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43568,'Bear',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43569,'Brookside',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43570,'Claymont',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43571,'Dover',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43572,'Dover Base Housing',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43573,'Edgemoor',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43574,'Elsmere',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43575,'Georgetown',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43576,'Greenville',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43577,'Middletown',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43578,'Milford',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43579,'Milton',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43580,'Newark',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43581,'Pike Creek',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43582,'Seaford',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43583,'Smyrna',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43584,'Stanton',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43585,'Talleyville',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43586,'Wilmington',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43587,'Wilmington Manor',3928,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43588,'Alachua',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43589,'Altamonte Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43590,'Apopka',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43591,'Atlantic Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43592,'Auburndale',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43593,'Aventura',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43594,'Avon Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43595,'Azalea Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43596,'Bal Harbour',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43597,'Bartow',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43598,'Bayonet Point',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43599,'Bayshore Gardens',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43600,'Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43601,'Bellair-Meadowbrook Terrace',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43602,'Belle Glade',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43603,'Bellview',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43604,'Beverly Hills',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43605,'Bloomingdale',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43606,'Boca Raton',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43607,'Boca del Mar',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43608,'Bonita Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43609,'Boynton Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43610,'Bradenton',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43611,'Brandon',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43612,'Brent',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43613,'Brooksville',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43614,'Brownsville',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43615,'Buena Ventura Lakes',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43616,'Bunnell',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43617,'Callaway',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43618,'Cape Coral',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43619,'Carol City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43620,'Casselberry',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43621,'Catalina Foothills',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43622,'Celebration',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43623,'Century Village',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43624,'Citrus Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43625,'Clearwater',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43626,'Clermont',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43627,'Cocoa',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43628,'Cocoa Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43629,'Coconut Creek',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43630,'Coconut Grove',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43631,'Conway',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43632,'Cooper City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43633,'Coral Gables',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43634,'Coral Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43635,'Coral Terrace',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43636,'Cortlandt Manor',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43637,'Country Club',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43638,'Crestview',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43639,'Crystal River',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43640,'Cutler',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43641,'Cutler Ridge',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43642,'Cypress Gardens',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43643,'Cypress Lake',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43644,'Dania',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43645,'Dania Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43646,'Davie',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43647,'Daytona Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43648,'De Bary',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43649,'De Funiak Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43650,'De Land',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43651,'Debary',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43652,'Deer Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43653,'Deerfield Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43654,'Del Rio',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43655,'Delray Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43656,'Deltona',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43657,'Destin',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43658,'Doctor Phillips',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43659,'Dora',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43660,'Doral',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43661,'Dundee',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43662,'Dunedin',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43663,'East Lake',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43664,'Edgewater',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43665,'Eglin Air Force Base',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43666,'Egypt Lake-Leto',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43667,'Elfers',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43668,'Englewood',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43669,'Ensley',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43670,'Eustis',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43671,'Fairview Shores',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43672,'Fern Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43673,'Fernandina Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43674,'Ferry Pass',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43675,'Flagler Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43676,'Floral City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43677,'Florida City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43678,'Florida Ridge',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43679,'Forest City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43680,'Fort Lauderdale',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43681,'Fort Myers',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43682,'Fort Myers Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43683,'Fort Pierce',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43684,'Fort Walton Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43685,'Freeport',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43686,'Fruitville',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43687,'Ft. Lauderdale',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43688,'Gainesville',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43689,'Gladeview',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43690,'Glenvar Heights',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43691,'Golden Gate',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43692,'Golden Glades',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43693,'Goldenrod',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43694,'Greater Carrollwood',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43695,'Greater Northdale',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43696,'Green Cove Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43697,'Greenacres',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43698,'Gulf Gate Estates',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43699,'Gulfport',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43700,'Haines City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43701,'Hallandale',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43702,'Hallandale Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43703,'Hammocks',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43704,'Hamptons at Boca Raton',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43705,'Havana',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43706,'Hialeah',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43707,'Hialeah Gardens',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43708,'Highpoint',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43709,'Hobe Sound',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43710,'Holiday',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43711,'Holly Hill',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43712,'Hollywood',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43713,'Homestead',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43714,'Homosassa',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43715,'Hudson',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43716,'Immokalee',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43717,'Inverness',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43718,'Iona',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43719,'Ives Estates',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43720,'Jacksonville',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43721,'Jacksonville Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43722,'Jasmine Estates',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43723,'Jensen Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43724,'Jupiter',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43725,'Kendale Lakes',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43726,'Kendall',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43727,'Kendall West',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43728,'Key Biscayne',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43729,'Key Largo',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43730,'Key West',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43731,'Kings Point',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43732,'Kissimmee',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43733,'Lady Lake',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43734,'Lake Alfred',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43735,'Lake City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43736,'Lake Lucerne',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43737,'Lake Magdalene',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43738,'Lake Mary',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43739,'Lake Placid',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43740,'Lake Wales',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43741,'Lake Worth',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43742,'Lakeland',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43743,'Lakeland Highlands',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43744,'Lakeside',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43745,'Land O\'Lakes',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43746,'Largo',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43747,'Lauderdale Lakes',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43748,'Lauderhill',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43749,'Laurel',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43750,'Lecanto',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43751,'Leesburg',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43752,'Lehigh Acres',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43753,'Leisure City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43754,'Lighthouse Point',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43755,'Lockhart',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43756,'Longwood',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43757,'Loxahatchee',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43758,'Lutz',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43759,'Lynn Haven',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43760,'Madison',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43761,'Maitland',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43762,'Mango',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43763,'Marathon',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43764,'Marco',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43765,'Margate',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43766,'Medley',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43767,'Melbourne',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43768,'Merritt Island',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43769,'Miami',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43770,'Miami Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43771,'Miami Gardens',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43772,'Miami Lakes',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43773,'Miami Shores',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43774,'Miami Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43775,'Micco',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43776,'Milton',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43777,'Mims',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43778,'Miramar',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43779,'Mulberry',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43780,'Myrtle Grove',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43781,'Naples',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43782,'Naples Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43783,'Naranja',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43784,'New Port Richey',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43785,'New Port Richey East',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43786,'New Smyrna Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43787,'Niceville',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43788,'Nokomis',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43789,'Norland',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43790,'North Andrews Gardens',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43791,'North Fort Myers',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43792,'North Lauderdale',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43793,'North Miami',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43794,'North Miami Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43795,'North Naples',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43796,'North Palm Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43797,'North Port',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43798,'Oak Ridge',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43799,'Oakland Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43800,'Ocala',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43801,'Ocoee',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43802,'Ojus',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43803,'Okeechobee',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43804,'Oldsmar',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43805,'Olympia Heights',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43806,'Opa-locka',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43807,'Orange City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43808,'Orange Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43809,'Orlando',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43810,'Ormond Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43811,'Ormond-by-the-Sea',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43812,'Osprey',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43813,'Oviedo',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43814,'Palatka',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43815,'Palm Bay',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43816,'Palm Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43817,'Palm Beach Gardens',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43818,'Palm City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43819,'Palm Coast',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43820,'Palm Harbor',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43821,'Palm River-Clair Mel',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43822,'Palm Valley',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43823,'Palmetto',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43824,'Palmetto Estates',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43825,'Panama City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43826,'Parkland',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43827,'Pembroke Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43828,'Pembroke Pines',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43829,'Pensacola',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43830,'Perrine',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43831,'Pine Castle',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43832,'Pine Hills',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43833,'Pinellas Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43834,'Pinewood',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43835,'Plant City',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43836,'Plantation',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43837,'Pompano Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43838,'Pompano Beach Highlands',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43839,'Ponte Vedra',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43840,'Port Charlotte',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43841,'Port Orange',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43842,'Port Saint John',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43843,'Port Saint Lucie',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43844,'Punta Gorda',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43845,'Quincy',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43846,'Redington Shores',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43847,'Richmond Heights',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43848,'Richmond West',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43849,'Riverview',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43850,'Riviera Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43851,'Rockledge',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43852,'Royal Palm Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43853,'Safety Harbor',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43854,'Saint Augustine',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43855,'Saint Cloud',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43856,'Saint Petersburg',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43857,'Saint Petersburg Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43858,'San Carlos Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43859,'Sandalfoot Cove',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43860,'Sanford',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43861,'Sanibel',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43862,'Sarasota',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43863,'Sarasota Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43864,'Satellite Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43865,'Scott Lake',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43866,'Sebastian',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43867,'Seminole',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43868,'Shalimar',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43869,'South Bradenton',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43870,'South Daytona',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43871,'South Miami',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43872,'South Miami Heights',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43873,'South Patrick Shores',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43874,'South Venice',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43875,'Spring Hill',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43876,'Stuart',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43877,'Sun City Center',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43878,'Sunny Isles',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43879,'Sunrise',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43880,'Sunset',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43881,'Sweetwater',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43882,'Tallahassee',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43883,'Tamarac',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43884,'Tamiami',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43885,'Tampa',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43886,'Tarpon Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43887,'Temple Terrace',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43888,'The Crossings',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43889,'The Hammocks',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43890,'Titusville',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43891,'Town\'n\'Country',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43892,'University',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43893,'University Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43894,'Valrico',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43895,'Venice',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43896,'Vero Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43897,'Vero Beach South',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43898,'Villas',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43899,'Warrington',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43900,'Wekiva Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43901,'Wellington',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43902,'Wesley Chapel',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43903,'West Little River',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43904,'West Palm Beach',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43905,'West Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43906,'West Pensacola',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43907,'West and East Lealman',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43908,'Westchester',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43909,'Weston',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43910,'Westview',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43911,'Westwood Lakes',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43912,'Wilton Manors',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43913,'Windermere',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43914,'Winston',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43915,'Winter Garden',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43916,'Winter Haven',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43917,'Winter Park',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43918,'Winter Springs',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43919,'Wright',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43920,'Yeehaw Junction',3930,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43921,'Acworth',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43922,'Adel',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43923,'Albany',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43924,'Alma',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43925,'Alpharetta',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43926,'Americus',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43927,'Athens',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43928,'Athens-Clarke',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43929,'Atlanta',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43930,'Auburn',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43931,'Augusta-Richmond',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43932,'Austell',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43933,'Bainbridge',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43934,'Barnesville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43935,'Belvedere Park',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43936,'Bogart',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43937,'Bowdon',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43938,'Braselton',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43939,'Brunswick',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43940,'Buford',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43941,'Byron',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43942,'Cairo',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43943,'Calhoun',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43944,'Candler-MacAfee',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43945,'Canton',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43946,'Carrollton',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43947,'Cartersville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43948,'Chamblee',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43949,'Clarkston',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43950,'Cochran',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43951,'College Park',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43952,'Columbus',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43953,'Comer',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43954,'Conley',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43955,'Conyers',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43956,'Cordele',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43957,'Covington',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43958,'Culloden',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43959,'Cumming',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43960,'Dacula',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43961,'Dahlonega',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43962,'Dallas',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43963,'Dalton',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43964,'Decatur',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43965,'Dewy Rose',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43966,'Doraville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43967,'Douglas',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43968,'Douglasville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43969,'Druid Hills',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43970,'Dublin',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43971,'Duluth',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43972,'Dunwoody',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43973,'East Point',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43974,'Elberton',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43975,'Ellenwood',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43976,'Ellijay',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43977,'Evans',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43978,'Fairmount',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43979,'Fayetteville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43980,'Flowery Branch',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43981,'Folkston',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43982,'Forest Park',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43983,'Fort Benning South',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43984,'Fort Gordon',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43985,'Fort Stewart',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43986,'Fort Valley',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43987,'Foxborough',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43988,'Gaines School',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43989,'Gainesville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43990,'Glennville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43991,'Gresham Park',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43992,'Griffin',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43993,'Grovetown',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43994,'Hampton',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43995,'Hartwell',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43996,'Hinesville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43997,'Jackson',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43998,'Jonesboro',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(43999,'Kennesaw',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44000,'Kingsland',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44001,'LaGrange',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44002,'Lawrenceville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44003,'Lilburn',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44004,'Lithia Springs',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44005,'Lithonia',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44006,'Locust Grove',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44007,'Loganville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44008,'Louisville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44009,'Mableton',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44010,'Macon',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44011,'Madison',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44012,'Marietta',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44013,'Martinez',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44014,'McDonough',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44015,'Milledgeville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44016,'Monroe',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44017,'Morrow',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44018,'Moultrie',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44019,'Mountain',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44020,'Mountain Park',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44021,'Newnan',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44022,'Norcross',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44023,'North Atlanta',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44024,'North Decatur',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44025,'North Druid Hills',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44026,'Oakwood',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44027,'Panthersville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44028,'Peachtree City',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44029,'Powder Springs',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44030,'Redan',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44031,'Rex',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44032,'Riverdale',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44033,'Rome',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44034,'Rossville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44035,'Roswell',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44036,'Saint Marys',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44037,'Saint Simons',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44038,'Sandy Springs',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44039,'Savannah',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44040,'Scottdale',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44041,'Sharpsburg',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44042,'Smyrna',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44043,'Snellville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44044,'Sparks',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44045,'Statesboro',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44046,'Stockbridge',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44047,'Stone Mountain',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44048,'Suwanee',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44049,'Thomasville',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44050,'Tifton',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44051,'Tucker',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44052,'Tybee Island',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44053,'Union City',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44054,'Valdosta',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44055,'Vidalia',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44056,'Villa Rica',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44057,'Warner Robins',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44058,'Waycross',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44059,'Wilmington Island',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44060,'Winder',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44061,'Woodbine',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44062,'Woodstock',3931,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44063,'Ahuimanu',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44064,'Aiea',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44065,'Aliamanu',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44066,'Ewa Beach',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44067,'Haiku',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44068,'Halawa',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44069,'Hanalei',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44070,'Hilo',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44071,'Holualoa',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44072,'Honolulu',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44073,'Kahului',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44074,'Kailua',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44075,'Kalaheo',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44076,'Kamuela',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44077,'Kaneohe',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44078,'Kaneohe Station',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44079,'Kapaa',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44080,'Kapolei',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44081,'Kihei',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44082,'Kula',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44083,'Lahaina',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44084,'Lanai City',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44085,'Lihue',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44086,'Makaha',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44087,'Makakilo City',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44088,'Makawao',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44089,'Mi-Wuk Village',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44090,'Mililani Town',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44091,'Naalehu',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44092,'Nanakuli',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44093,'Pahoa',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44094,'Pearl City',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44095,'Schofield Barracks',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44096,'Wahiawa',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44097,'Waialua',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44098,'Waianae',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44099,'Wailuku',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44100,'Waimalu',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44101,'Waipahu',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44102,'Waipio',3932,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44103,'Blackfoot',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44104,'Boise',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44105,'Boise City',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44106,'Boulder Hill',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44107,'Burley',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44108,'Caldwell',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44109,'Coeur d\'Alene',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44110,'Eagle',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44111,'Garden City',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44112,'Idaho Falls',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44113,'Lewiston',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44114,'Meridian',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44115,'Moscow',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44116,'Mountain Home',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44117,'Nampa',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44118,'Payette',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44119,'Pocatello',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44120,'Post Falls',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44121,'Preston',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44122,'Rexburg',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44123,'Rigby',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44124,'Sandpoint',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44125,'Troy',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44126,'Twin Falls',3933,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44127,'Addison',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44128,'Algonquin',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44129,'Alsip',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44130,'Alton',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44131,'Arlington Heights',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44132,'Aurora',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44133,'Bannockburn',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44134,'Barrington',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44135,'Bartlett',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44136,'Batavia',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44137,'Beach Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44138,'Beardstown',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44139,'Bedford Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44140,'Belleville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44141,'Bellwood',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44142,'Belvidere',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44143,'Bensenville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44144,'Berwyn',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44145,'Bloomingdale',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44146,'Bloomington',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44147,'Blue Island',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44148,'Boling Brook',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44149,'Bolingbrook',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44150,'Bourbonnais',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44151,'Bradley',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44152,'Breese',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44153,'Bridgeview',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44154,'Brimfield',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44155,'Broadview',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44156,'Brookfield',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44157,'Buffalo Grove',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44158,'Burbank',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44159,'Burr Ridge',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44160,'Cahokia',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44161,'Calumet City',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44162,'Canton',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44163,'Carbondale',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44164,'Carlinville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44165,'Carol Stream',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44166,'Carpentersville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44167,'Carthage',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44168,'Cary',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44169,'Centralia',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44170,'Champaign',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44171,'Channahon',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44172,'Charleston',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44173,'Chicago',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44174,'Chicago Heights',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44175,'Chicago Ridge',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44176,'Cicero',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44177,'Coal City',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44178,'Collinsville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44179,'Congerville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44180,'Country Club Hills',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44181,'Crest Hill',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44182,'Crestwood',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44183,'Crystal Lake',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44184,'Danville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44185,'Darien',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44186,'DeKalb',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44187,'Decatur',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44188,'Deerfield',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44189,'Des Plaines',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44190,'Dixon',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44191,'Dolton',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44192,'Downers Grove',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44193,'Earlville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44194,'East Dundee',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44195,'East Moline',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44196,'East Peoria',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44197,'East Saint Louis',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44198,'Edwardsville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44199,'Effingham',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44200,'Elburn',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44201,'Elgin',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44202,'Elk Grove',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44203,'Elk Grove Village',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44204,'Elmhurst',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44205,'Elmwood Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44206,'Evanston',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44207,'Evergreen Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44208,'Fairview Heights',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44209,'Flossmoor',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44210,'Forest Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44211,'Frankfort',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44212,'Franklin Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44213,'Freeport',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44214,'Galena',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44215,'Galesburg',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44216,'Geneva',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44217,'Genoa',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44218,'Glen Carbon',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44219,'Glen Ellyn',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44220,'Glencoe',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44221,'Glendale Heights',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44222,'Glenview',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44223,'Godfrey',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44224,'Goodings Grove',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44225,'Granite City',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44226,'Grayslake',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44227,'Gurnee',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44228,'Hamilton',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44229,'Hampshire',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44230,'Hanover Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44231,'Harvard',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44232,'Harvey',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44233,'Hawthorn Woods',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44234,'Hazel Crest',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44235,'Herrin',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44236,'Hickory Hills',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44237,'Highland Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44238,'Hinsdale',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44239,'Hoffman Estates',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44240,'Homewood',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44241,'Huntley',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44242,'Illinois City',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44243,'Ingleside',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44244,'Itasca',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44245,'Jacksonville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44246,'Johnston City',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44247,'Joliet',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44248,'Justice',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44249,'Kankakee',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44250,'Kenilworth',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44251,'Kewanee',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44252,'La Grange',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44253,'La Grange Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44254,'La Salle',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44255,'Lake Bluff',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44256,'Lake Forest',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44257,'Lake Zurich',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44258,'Lake in the Hills',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44259,'Lansing',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44260,'Lemont',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44261,'Libertyville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44262,'Lincoln',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44263,'Lincolnwood',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44264,'Lindenhurst',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44265,'Lindenwood',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44266,'Lisle',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44267,'Lockport',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44268,'Lombard',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44269,'Long Grove',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44270,'Loves Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44271,'Lyons',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44272,'MacHenry',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44273,'Machesney Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44274,'Macomb',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44275,'Marion',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44276,'Markham',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44277,'Marshall',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44278,'Martinsville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44279,'Maryville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44280,'Matteson',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44281,'Mattoon',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44282,'Maywood',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44283,'McHenry',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44284,'Melrose Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44285,'Midlothian',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44286,'Milan',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44287,'Minooka',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44288,'Mokena',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44289,'Moline',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44290,'Momence',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44291,'Montgomery',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44292,'Monticello',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44293,'Morris',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44294,'Morton',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44295,'Morton Grove',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44296,'Mossville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44297,'Mount Prospect',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44298,'Mount Vernon',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44299,'Mount Zion',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44300,'Mundelein',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44301,'Naperville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44302,'New Lenox',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44303,'Niles',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44304,'Normal',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44305,'Norridge',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44306,'North Aurora',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44307,'North Chicago',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44308,'Northbrook',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44309,'Northfield',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44310,'Northlake',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44311,'O\'Fallon',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44312,'Oak Forest',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44313,'Oak Lawn',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44314,'Oak Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44315,'Oakbrook',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44316,'Oakwood',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44317,'Olney',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44318,'Orland Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44319,'Osco',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44320,'Ottawa',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44321,'Palatine',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44322,'Palos Heights',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44323,'Palos Hills',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44324,'Park Forest',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44325,'Park Ridge',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44326,'Pekin',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44327,'Peoria',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44328,'Peru',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44329,'Plainfield',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44330,'Pontiac',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44331,'Princeton',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44332,'Prospect Heights',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44333,'Quincy',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44334,'Ramsey',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44335,'Rantoul',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44336,'Richmond',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44337,'Richton Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44338,'River Forest',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44339,'Riverdale',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44340,'Rochelle',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44341,'Rock Island',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44342,'Rockford',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44343,'Rolling Meadows',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44344,'Romeoville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44345,'Roscoe',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44346,'Roselle',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44347,'Round Lake Beach',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44348,'Saint Charles',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44349,'Sauget',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44350,'Sauk Village',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44351,'Schaumburg',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44352,'Schiller Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44353,'Shumway',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44354,'Skokie',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44355,'South Elgin',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44356,'South Holland',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44357,'Spring Valley',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44358,'Springfield',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44359,'Sterling',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44360,'Streamwood',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44361,'Streator',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44362,'Swansea',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44363,'Sycamore',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44364,'Taylorville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44365,'Tinley Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44366,'Trenton',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44367,'Urbana',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44368,'Ursa',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44369,'Vernon Hills',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44370,'Villa Park',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44371,'Walnut',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44372,'Warrenville',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44373,'Washington',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44374,'Waukegan',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44375,'West Chicago',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44376,'West Dundee',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44377,'Westchester',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44378,'Western Springs',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44379,'Westmont',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44380,'Wheaton',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44381,'Wheeling',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44382,'Willowbrook',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44383,'Wilmette',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44384,'Winnebago',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44385,'Winnetka',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44386,'Wood Dale',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44387,'Wood River',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44388,'Woodridge',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44389,'Woodstock',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44390,'Worth',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44391,'Zion',3934,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44392,'Albion',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44393,'Anderson',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44394,'Angola',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44395,'Auburn',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44396,'Bedford',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44397,'Beech Grove',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44398,'Bloomington',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44399,'Brownsburg',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44400,'Carmel',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44401,'Cedar Lake',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44402,'Chesterton',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44403,'Clarksville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44404,'Columbus',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44405,'Connersville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44406,'Crawfordsville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44407,'Crown Point',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44408,'Dyer',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44409,'East Chicago',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44410,'Elkhart',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44411,'Evansville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44412,'Fishers',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44413,'Fort Wayne',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44414,'Frankfort',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44415,'Franklin',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44416,'Gary',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44417,'Goshen',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44418,'Gosport',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44419,'Granger',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44420,'Greenfield',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44421,'Greensburg',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44422,'Greenwood',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44423,'Griffith',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44424,'Hammond',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44425,'Helmsburg',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44426,'Highland',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44427,'Hobart',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44428,'Huntington',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44429,'Indianapolis',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44430,'Jasper',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44431,'Jeffersonville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44432,'Knightstown',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44433,'Kokomo',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44434,'La Porte',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44435,'Lafayette',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44436,'Lake Station',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44437,'Lawrence',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44438,'Lebanon',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44439,'Liberty',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44440,'Logansport',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44441,'Madison',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44442,'Marion',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44443,'Martinsville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44444,'Merrillville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44445,'Michigan City',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44446,'Mishawaka',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44447,'Muncie',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44448,'Munster',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44449,'N. Albany',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44450,'Nashville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44451,'New Albany',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44452,'New Castle',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44453,'New Haven',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44454,'New Trenton',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44455,'Noblesville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44456,'North Vernon',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44457,'Osceola',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44458,'Peru',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44459,'Plainfield',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44460,'Plymouth',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44461,'Poland',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44462,'Portage',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44463,'Richmond',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44464,'Rising Sun',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44465,'Roanoke',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44466,'Rockport',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44467,'Schererville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44468,'Scottsburg',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44469,'Seymour',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44470,'Shelbyville',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44471,'South Bend',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44472,'Speedway',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44473,'St. John',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44474,'Terre Haute',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44475,'Thorntown',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44476,'Tippecanoe',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44477,'Troy',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44478,'Valparaiso',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44479,'Vermont',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44480,'Vincennes',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44481,'Wabash',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44482,'Warsaw',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44483,'Washington',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44484,'West Lafayette',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44485,'Williams',3935,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44486,'Altoona',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44487,'Ames',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44488,'Ankeny',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44489,'Bettendorf',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44490,'Boone',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44491,'Burlington',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44492,'Carroll',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44493,'Cedar Falls',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44494,'Cedar Rapids',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44495,'Clarinda',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44496,'Clinton',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44497,'Clive',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44498,'Coralville',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44499,'Council Bluffs',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44500,'Davenport',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44501,'Des Moines',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44502,'Dubuque',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44503,'Eldridge',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44504,'Elkader',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44505,'Essex',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44506,'Fairfield',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44507,'Fayette',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44508,'Fort Dodge',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44509,'Fort Madison',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44510,'Harlan',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44511,'Indianola',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44512,'Iowa City',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44513,'Kalona',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44514,'Keokuk',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44515,'Marion',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44516,'Marshalltown',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44517,'Mason City',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44518,'Muscatine',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44519,'Newton',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44520,'Orange City',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44521,'Oskaloosa',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44522,'Ottumwa',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44523,'Pella',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44524,'Sioux City',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44525,'Spencer',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44526,'Storm Lake',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44527,'Urbandale',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44528,'Waterloo',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44529,'West Des Moines',3936,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44530,'Arkansas City',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44531,'Atchison',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44532,'Coffeyville',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44533,'Derby',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44534,'Dodge City',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44535,'El Dorado',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44536,'Elk City',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44537,'Emporia',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44538,'Fort Riley North',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44539,'Garden City',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44540,'Great Bend',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44541,'Hays',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44542,'Hutchinson',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44543,'Independence',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44544,'Junction City',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44545,'Kansas City',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44546,'Kingman',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44547,'Lawrence',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44548,'Leavenworth',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44549,'Leawood',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44550,'Lenexa',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44551,'Liberal',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44552,'MacPherson',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44553,'Manhattan',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44554,'Merriam',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44555,'Minneapolis',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44556,'Moscow',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44557,'Moundridge',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44558,'Nashville',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44559,'Newton',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44560,'Olathe',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44561,'Ottawa',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44562,'Overland Park',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44563,'Parsons',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44564,'Pittsburg',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44565,'Prairie Village',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44566,'Rose Hill',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44567,'Salina',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44568,'Shawnee',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44569,'Topeka',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44570,'Wichita',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44571,'Winfield',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44572,'tecumseh',3937,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44573,'Albany',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44574,'Ashland',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44575,'Bardstown',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44576,'Berea',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44577,'Bowling Green',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44578,'Campbellsville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44579,'Catlettsburg',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44580,'Covington',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44581,'Crescent Springs',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44582,'Danville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44583,'Dawson Springs',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44584,'Eastview',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44585,'Eddyville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44586,'Elizabethtown',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44587,'Erlanger',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44588,'Evarts',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44589,'Fern Creek',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44590,'Florence',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44591,'Fort Campbell North',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44592,'Fort Knox',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44593,'Fort Mitchell',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44594,'Fort Thomas',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44595,'Frankfort',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44596,'Georgetown',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44597,'Glasgow',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44598,'Grays Knob',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44599,'Henderson',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44600,'Highview',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44601,'Hopkinsville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44602,'Independence',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44603,'Jeffersontown',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44604,'Lawrenceburg',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44605,'Lebanon',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44606,'Lexington',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44607,'Lexington-Fayette',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44608,'Louisville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44609,'Madisonville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44610,'Marion',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44611,'Mayfield',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44612,'Maysville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44613,'Middlesborough',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44614,'Murray',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44615,'Nebo',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44616,'Newburg',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44617,'Newport',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44618,'Nicholasville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44619,'Okolona',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44620,'Olive Hill',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44621,'Owensboro',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44622,'Paducah',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44623,'Paris',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44624,'Pikeville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44625,'Pleasure Ridge Park',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44626,'Queens',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44627,'Radcliff',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44628,'Richmond',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44629,'Saint Dennis',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44630,'Saint Matthews',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44631,'Scottsville',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44632,'Shively',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44633,'Somerset',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44634,'South Shore',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44635,'Tollesboro',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44636,'Valley Station',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44637,'Wallins Creek',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44638,'Walton',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44639,'Winchester',3938,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44640,'Abbeville',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44641,'Alexandria',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44642,'Amite',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44643,'Baker',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44644,'Bastrop',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44645,'Baton Rouge',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44646,'Bayou Cane',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44647,'Bogalusa',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44648,'Bossier City',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44649,'Broussard',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44650,'Calhoun',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44651,'Chalmette',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44652,'Covington',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44653,'Crowley',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44654,'De Ridder',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44655,'Delcambre',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44656,'Denham Springs',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44657,'Estelle',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44658,'Eunice',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44659,'Fort Polk South',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44660,'Franklin',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44661,'French Settlement',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44662,'Garyville',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44663,'Geismar',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44664,'Gretna',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44665,'Hammond',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44666,'Harahan',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44667,'Harvey',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44668,'Houma',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44669,'Independence',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44670,'Jefferson',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44671,'Jennings',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44672,'Kenner',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44673,'Lafayette',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44674,'Lake Charles',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44675,'Laplace',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44676,'Mandeville',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44677,'Marrero',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44678,'Merrydale',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44679,'Metairie',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44680,'Minden',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44681,'Monroe',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44682,'Morgan City',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44683,'Natchitoches',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44684,'New Iberia',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44685,'New Orleans',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44686,'Opelousas',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44687,'Pineville',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44688,'Pioneer',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44689,'Prairieville',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44690,'River Ridge',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44691,'Ruston',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44692,'Saint Amant',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44693,'Saint Martinville',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44694,'Shenandoah',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44695,'Shreveport',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44696,'Slidell',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44697,'Sulphur',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44698,'Terrytown',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44699,'Thibodaux',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44700,'Timberlane',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44701,'Vinton',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44702,'Waggaman',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44703,'West Monroe',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44704,'Westwego',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44705,'Zachary',3939,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44706,'Manchester',3940,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44707,'Washington',3940,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44708,'Auburn',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44709,'Augusta',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44710,'Bangor',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44711,'Bath',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44712,'Biddeford',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44713,'Brunswick',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44714,'Cornish',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44715,'Dover-Foxcroft',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44716,'Ellsworth',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44717,'Etna',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44718,'Freeport',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44719,'Gorham',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44720,'Greene',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44721,'Harmony',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44722,'Lewiston',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44723,'Liberty',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44724,'Limerick',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44725,'Lyman',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44726,'Maine',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44727,'New Gloucester',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44728,'Norridgewock',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44729,'North Yarmouth',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44730,'Old Town',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44731,'Orono',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44732,'Portland',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44733,'Presque Isle',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44734,'Saco',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44735,'Sanford',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44736,'Scarborough',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44737,'South Portland',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44738,'Spruce Head',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44739,'Thomaston',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44740,'Waldoboro',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44741,'Waterville',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44742,'West Buxton',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44743,'Westbrook',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44744,'Whitefield',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44745,'Windham',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44746,'Yarmouth',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44747,'York Harbor',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44748,'stockton springs',3941,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44749,'Aberdeen',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44750,'Accokeek',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44751,'Adelphi',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44752,'Andrews Air Force Base',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44753,'Annapolis',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44754,'Arbutus',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44755,'Arnold',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44756,'Aspen Hill',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44757,'Baltimore',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44758,'Bel Air North',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44759,'Bel Air South',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44760,'Beltsville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44761,'Berlin',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44762,'Bethesda',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44763,'Bladensburg',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44764,'Boonsboro',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44765,'Bowie',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44766,'Brookeville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44767,'Brooklandville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44768,'Brooklyn Park',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44769,'Burtonsville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44770,'Calverton',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44771,'Cambridge',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44772,'Camp Springs',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44773,'Capitol Heights',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44774,'Carney',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44775,'Catonsville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44776,'Chestertown',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44777,'Chillum',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44778,'Clarksburg',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44779,'Clarksville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44780,'Clinton',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44781,'Cockeysville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44782,'Colesville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44783,'College Park',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44784,'Columbia',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44785,'Cooksville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44786,'Coral Hills',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44787,'Crofton',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44788,'Cumberland',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44789,'Damascus',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44790,'Darlington',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44791,'District Heights',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44792,'Dundalk',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44793,'East Riverdale',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44794,'Easton',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44795,'Edgemere',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44796,'Edgewood',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44797,'Eldersburg',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44798,'Elkridge',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44799,'Elkton',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44800,'Ellicott City',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44801,'Essex',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44802,'Fairland',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44803,'Ferndale',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44804,'Forest Hill',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44805,'Forestville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44806,'Fort Meade',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44807,'Fort Washington',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44808,'Frederick',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44809,'Fredrick',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44810,'Friendly',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44811,'Gaithersburg',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44812,'Germantown',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44813,'Glen Burnie',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44814,'Glenn Dale',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44815,'Greater Landover',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44816,'Greater Upper Marlboro',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44817,'Green Haven',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44818,'Green Valley',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44819,'Greenbelt',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44820,'Hagerstown',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44821,'Hanover',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44822,'Harmans',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44823,'Havre de Grace',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44824,'Hillandale',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44825,'Hillcrest Heights',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44826,'Hunt Valley',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44827,'Hurlock',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44828,'Hyattsville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44829,'Ijamsville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44830,'Jefferson',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44831,'Jessup',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44832,'Joppatowne',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44833,'Kettering',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44834,'Lake Shore',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44835,'Langley Park',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44836,'Lanham',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44837,'Lanham-Seabrook',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44838,'Lansdowne-Baltimore Highlands',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44839,'Largo',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44840,'Laurel',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44841,'Lexington Park',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44842,'Lochearn',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44843,'Lutherville-Timonium',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44844,'Marriottsville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44845,'Maryland City',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44846,'Mays Chapel',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44847,'Middle River',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44848,'Milford Mill',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44849,'Millersville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44850,'Mitchellville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44851,'Montgomery Village',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44852,'National Harbor',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44853,'New Carrollton',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44854,'North Bethesda',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44855,'North Laurel',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44856,'North Potomac',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44857,'Odenton',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44858,'Olney',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44859,'Overlea',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44860,'Owings Mills',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44861,'Oxon Hill-Glassmanor',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44862,'Parkville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44863,'Parole',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44864,'Pasadena',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44865,'Perry Hall',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44866,'Pikesville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44867,'Poolesville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44868,'Potomac',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44869,'Randallstown',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44870,'Redland',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44871,'Reisterstown',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44872,'Riviera Beach',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44873,'Rockville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44874,'Rosaryville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44875,'Rosedale',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44876,'Rossville',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44877,'Saint Charles',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44878,'Salisbury',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44879,'Sandy Spring',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44880,'Savage Guilford',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44881,'Severn',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44882,'Severna Park',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44883,'Silver Spring',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44884,'Snow Hill',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44885,'South Gate',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44886,'South Laurel',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44887,'Suitland-Silver Hill',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44888,'Takoma Park',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44889,'Temple Hill',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44890,'Thurmont',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44891,'Timonium',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44892,'Towson',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44893,'Upper Marlboro',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44894,'Waldorf',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44895,'Walker Mill',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44896,'Washington Grove',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44897,'Westminster',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44898,'Wheaton-Glenmont',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44899,'White Oak',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44900,'Windsor Mill',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44901,'Woodlawn',3942,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44902,'Abington',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44903,'Acton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44904,'Agawam',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44905,'Amesbury',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44906,'Amherst Center',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44907,'Arlington',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44908,'Ashland',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44909,'Athol',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44910,'Attleboro',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44911,'Barnstable Town',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44912,'Baxboro',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44913,'Becket',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44914,'Bedford',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44915,'Belmont',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44916,'Beverly',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44917,'Billerica',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44918,'Boston',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44919,'Boylston',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44920,'Braintree',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44921,'Brockton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44922,'Brookfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44923,'Brookline',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44924,'Burlington',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44925,'Cambridge',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44926,'Canton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44927,'Charlestown',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44928,'Chelmsford',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44929,'Chelsea',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44930,'Chicopee',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44931,'Clinton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44932,'Concord',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44933,'Danvers',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44934,'Dedham',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44935,'Devens',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44936,'Devenscrest',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44937,'Duxbury',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44938,'Easthampton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44939,'Everett',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44940,'Fairhaven',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44941,'Fall River',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44942,'Fitchburg',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44943,'Florence',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44944,'Framingham',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44945,'Franklin',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44946,'Gardner',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44947,'Gloucester',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44948,'Great Barrington',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44949,'Greenfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44950,'Groton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44951,'Hadley',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44952,'Harvard',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44953,'Haverhill',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44954,'Hingham',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44955,'Holbrook',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44956,'Holliston',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44957,'Holyoke',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44958,'Hopedale',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44959,'Housatonic',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44960,'Hubbardston',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44961,'Hudson',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44962,'Hull',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44963,'Hyannis',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44964,'Ipswich',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44965,'Jamaica Plain',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44966,'Lawrence',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44967,'Lee',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44968,'Lenox',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44969,'Leominster',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44970,'Lexington',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44971,'Longmeadow',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44972,'Lowell',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44973,'Lynn',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44974,'Lynnfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44975,'Malden',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44976,'Manchester',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44977,'Marblehead',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44978,'Marion',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44979,'Marlborough',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44980,'Marshfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44981,'Massachusetts',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44982,'Maynard',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44983,'Medfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44984,'Medford',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44985,'Medway',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44986,'Melrose',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44987,'Methuen',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44988,'Middleboro',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44989,'Milford',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44990,'Milton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44991,'Monson',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44992,'Montague',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44993,'Nantucket',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44994,'Natick',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44995,'Needham',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44996,'New Bedford',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44997,'Newburyport',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44998,'Newton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(44999,'North Adams',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45000,'North Andover',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45001,'North Attleborough Center',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45002,'North Easton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45003,'Northampton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45004,'Northborough',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45005,'Norwood',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45006,'Orleans',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45007,'Peabody',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45008,'Pepperell',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45009,'Pittsfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45010,'Plainfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45011,'Plymouth',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45012,'Provincetown',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45013,'Quincy',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45014,'Randolph',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45015,'Reading',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45016,'Rehoboth',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45017,'Revere',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45018,'Rockland',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45019,'Rockport',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45020,'Roslindale',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45021,'Salem',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45022,'Saugus',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45023,'Scituate',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45024,'Seekonk',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45025,'Shelburne Falls',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45026,'Sherborn',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45027,'Shrewsbury',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45028,'Somerset',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45029,'Somerville',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45030,'South Boston',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45031,'South Deerfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45032,'South Hadley',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45033,'South Lee',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45034,'South Yarmouth',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45035,'Southborough',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45036,'Southbridge',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45037,'Southwick',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45038,'Springfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45039,'Stoneham',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45040,'Sturbridge',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45041,'Swampscott',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45042,'Swansea',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45043,'Taunton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45044,'Tewksbury',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45045,'Three Rivers',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45046,'Truro',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45047,'Upton',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45048,'Vineyard Haven',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45049,'Wakefield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45050,'Waltham',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45051,'Ware',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45052,'Wareham',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45053,'Watertown',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45054,'Wayland',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45055,'Webster',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45056,'Wellesley',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45057,'Wellesley Hills',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45058,'West Concord',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45059,'West Roxbury',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45060,'West Springfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45061,'West Yarmouth',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45062,'Westborough',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45063,'Westfield',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45064,'Westford',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45065,'Weston',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45066,'Weymouth',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45067,'Wilbraham',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45068,'Wilmington',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45069,'Winchester',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45070,'Winthrop',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45071,'Woburn',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45072,'Worcester',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45073,'Yarmouthport',3943,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45074,'Adrian',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45075,'Albion',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45076,'Allegan',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45077,'Allen Park',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45078,'Alma',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45079,'Alpena',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45080,'Ann Arbor',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45081,'Attica',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45082,'Auburn Hills',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45083,'Battle Creek',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45084,'Bay City',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45085,'Beecher',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45086,'Belleville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45087,'Benton Harbor',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45088,'Berkley',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45089,'Beverly Hills',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45090,'Big Rapids',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45091,'Birmingham',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45092,'Bloomfield Hills',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45093,'Bloomfield Township',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45094,'Boyne City',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45095,'Brighton',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45096,'Burt',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45097,'Burton',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45098,'Cadillac',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45099,'Canton',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45100,'Charlotte',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45101,'Chesterfield',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45102,'Clarkston',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45103,'Clawson',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45104,'Clinton',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45105,'Commerce',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45106,'Comstock Park',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45107,'Coopersville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45108,'Cornell',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45109,'Cutlerville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45110,'Davisburg',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45111,'Dearborn',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45112,'Dearborn Heights',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45113,'Delton',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45114,'Detroit',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45115,'Dexter',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45116,'Dowagiac',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45117,'East Grand Rapids',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45118,'East Lansing',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45119,'Eastpointe',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45120,'Ecorse',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45121,'Escanaba',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45122,'Evart',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45123,'Fair Haven',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45124,'Fairgrove',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45125,'Farmington',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45126,'Farmington Hills',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45127,'Fenton',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45128,'Ferndale',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45129,'Flint',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45130,'Forest Hills',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45131,'Fowlerville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45132,'Frankenmuth',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45133,'Fraser',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45134,'Fremont',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45135,'Fruitport',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45136,'Garden City',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45137,'Goodrich',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45138,'Grand Blanc',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45139,'Grand Haven',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45140,'Grand Rapids',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45141,'Grandville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45142,'Grosse Ile',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45143,'Grosse Pointe Farms',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45144,'Grosse Pointe Park',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45145,'Grosse Pointe Woods',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45146,'Gwinn',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45147,'Hamtramck',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45148,'Hancock',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45149,'Harper Woods',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45150,'Harrison',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45151,'Haslett',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45152,'Hazel Park',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45153,'Highland Park',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45154,'Holland',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45155,'Holly',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45156,'Holt',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45157,'Houghton',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45158,'Hudsonville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45159,'Huntington Woods',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45160,'Imlay',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45161,'Inkster',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45162,'Jackon',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45163,'Jackson',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45164,'Jenison',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45165,'Kalamazoo',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45166,'Kalkaska',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45167,'Kentwood',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45168,'Kingsford',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45169,'Lansing',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45170,'Lapeer',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45171,'Lincoln Park',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45172,'Litchfield',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45173,'Livonia',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45174,'Ludington',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45175,'Macomb',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45176,'Madison Heights',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45177,'Manistee',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45178,'Marquette',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45179,'Marysville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45180,'Melvindale',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45181,'Midland',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45182,'Monroe',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45183,'Mount Clemens',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45184,'Mount Morris',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45185,'Mount Pleasant',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45186,'Mt. Pleasant',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45187,'Muskegon',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45188,'Muskegon Heights',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45189,'New Hudson',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45190,'Newaygo',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45191,'Niles',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45192,'Northview',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45193,'Northville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45194,'Norton Shores',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45195,'Novi',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45196,'Oak Park',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45197,'Okemos',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45198,'Oscoda',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45199,'Owosso',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45200,'Oxford',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45201,'Petoskey',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45202,'Pinckney',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45203,'Plymouth Township',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45204,'Pontiac',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45205,'Port Huron',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45206,'Portage',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45207,'Redford',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45208,'Reese',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45209,'River Rouge',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45210,'Riverview',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45211,'Rochester Hills',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45212,'Rockford',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45213,'Romeo',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45214,'Romulus',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45215,'Roseville',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45216,'Royal Oak',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45217,'Saginaw',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45218,'Saginaw Township North',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45219,'Saginaw Township South',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45220,'Saint Clair Shores',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45221,'Saint Louis',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45222,'Saline',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45223,'Saugatuck',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45224,'Sault Sainte Marie',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45225,'Schoolcraft',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45226,'Shelby',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45227,'Southfield',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45228,'Southgate',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45229,'Sterling Heights',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45230,'Sturgis',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45231,'Taylor',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45232,'Traverse City',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45233,'Trenton',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45234,'Troy',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45235,'Walker',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45236,'Walled Lake',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45237,'Warren',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45238,'Waterford',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45239,'Waverly',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45240,'Wayne',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45241,'West Bloomfield Township',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45242,'Westland',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45243,'White Lake',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45244,'Whitmore Lake',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45245,'Williamston',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45246,'Wixom',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45247,'Woodhaven',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45248,'Wyandotte',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45249,'Wyoming',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45250,'Ypsilanti',3945,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45251,'Albert Lea',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45252,'Alger',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45253,'Andover',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45254,'Annandale',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45255,'Anoka',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45256,'Apple Valley',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45257,'Austin',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45258,'Baxter',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45259,'Bemidji',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45260,'Blaine',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45261,'Blomkest',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45262,'Bloomington',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45263,'Blue Earth',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45264,'Brainerd',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45265,'Brooklyn Center',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45266,'Brooklyn Park',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45267,'Burnsville',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45268,'Champlin',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45269,'Chanhassen',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45270,'Chaska',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45271,'Chatfield',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45272,'Circle Pines',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45273,'Cloquet',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45274,'Cokato',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45275,'Columbia Heights',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45276,'Coon Rapids',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45277,'Cottage Grove',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45278,'Crystal',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45279,'Duluth',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45280,'Eagan',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45281,'East Bethel',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45282,'Eden Prairie',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45283,'Edina',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45284,'Elk River',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45285,'Ely',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45286,'Fairmont',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45287,'Faribault',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45288,'Farmington',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45289,'Fergus Falls',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45290,'Frazee',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45291,'Fridley',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45292,'Golden Valley',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45293,'Grand Rapids',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45294,'Ham Lake',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45295,'Hamel',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45296,'Hastings',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45297,'Hibbing',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45298,'Hopkins',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45299,'Houston',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45300,'Hutchinson',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45301,'Inver Grove Heights',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45302,'Isanti',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45303,'LaCrescent',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45304,'Lakeville',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45305,'Le Sueur',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45306,'Lino Lakes',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45307,'Litchfield',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45308,'Mankato',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45309,'Maple Grove',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45310,'Maplewood',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45311,'Marshall',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45312,'Mendota Heights',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45313,'Minneapolis',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45314,'Minnetonka',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45315,'Moorhead',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45316,'Mounds View',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45317,'Nelson',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45318,'New Brighton',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45319,'New Hope',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45320,'New Ulm',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45321,'North Mankato',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45322,'North Saint Paul',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45323,'Northfield',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45324,'Oakdale',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45325,'Onamia',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45326,'Owatonna',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45327,'Pequot Lakes',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45328,'Plymouth',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45329,'Prior Lake',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45330,'Ramsey',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45331,'Red Wing',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45332,'Renville',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45333,'Richfield',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45334,'Robbinsdale',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45335,'Rochester',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45336,'Rosemount',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45337,'Roseville',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45338,'Royalton',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45339,'Saint Cloud',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45340,'Saint Louis Park',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45341,'Saint Michael',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45342,'Saint Paul',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45343,'Saint Peter',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45344,'Sauk Rapids',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45345,'Savage',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45346,'Shakopee',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45347,'Shoreview',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45348,'South Saint Paul',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45349,'St. Paul',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45350,'Stewartville',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45351,'Stillwater',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45352,'Vadnais Heights',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45353,'Waconia',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45354,'Wadena',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45355,'West Saint Paul',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45356,'White Bear Lake',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45357,'Willmar',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45358,'Winona',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45359,'Woodbury',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45360,'Worthington',3946,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45361,'Bay Saint Louis',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45362,'Biloxi',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45363,'Brandon',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45364,'Brookhaven',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45365,'Byhalia',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45366,'Byram',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45367,'Canton',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45368,'Clarksdale',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45369,'Cleveland',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45370,'Clinton',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45371,'Columbus',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45372,'Corinth',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45373,'Diamondhead',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45374,'Gautier',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45375,'Greenville',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45376,'Greenwood',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45377,'Grenada',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45378,'Gulfport',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45379,'Hattiesburg',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45380,'Hernando',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45381,'Horn Lake',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45382,'Indianola',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45383,'Jackson',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45384,'Laurel',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45385,'Long Beach',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45386,'Lucedale',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45387,'MacComb',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45388,'Madison',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45389,'Magnolia',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45390,'Meridian',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45391,'Michigan City',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45392,'Moselle',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45393,'Moss Point',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45394,'Natchez',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45395,'Ocean Springs',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45396,'Olive Branch',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45397,'Orange Grove',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45398,'Oxford',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45399,'Pascagoula',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45400,'Pearl',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45401,'Pelahatchie',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45402,'Picayune',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45403,'Quitman',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45404,'Ridgeland',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45405,'Senatobia',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45406,'Southaven',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45407,'Southhaven',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45408,'Starkville',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45409,'Tupelo',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45410,'Utica',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45411,'Vicksburg',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45412,'Yazoo City',3947,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45413,'Affton',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45414,'Annapolis',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45415,'Arnold',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45416,'Ballwin',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45417,'Belgique',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45418,'Bellefontaine Neighbors',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45419,'Belton',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45420,'Berkeley',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45421,'Blue Springs',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45422,'Branson',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45423,'Bridgeton',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45424,'Brighton',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45425,'California',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45426,'Camdenton',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45427,'Cape Girardeau',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45428,'Carthage',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45429,'Chaffee',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45430,'Chesterfield',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45431,'Chillicothe',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45432,'Clayton',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45433,'Clever',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45434,'Columbia',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45435,'Concord',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45436,'Crestwood',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45437,'Creve Coeur',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45438,'Desloge',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45439,'Dora',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45440,'Earth City',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45441,'Excelsior Springs',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45442,'Farmington',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45443,'Fenton',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45444,'Ferguson',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45445,'Florissant',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45446,'Forsyth',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45447,'Fort Leonard Wood',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45448,'Fulton',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45449,'Gladstone',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45450,'Grain Valley',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45451,'Grandview',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45452,'Gravois Mills',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45453,'Hannibal',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45454,'Harrisonville',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45455,'Hazelwood',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45456,'High Ridge',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45457,'Independence',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45458,'Jackson',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45459,'Jefferson City',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45460,'Jennings',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45461,'Joplin',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45462,'Kansas City',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45463,'Kennett',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45464,'Kirksville',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45465,'Kirkwood',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45466,'Kissee Mills',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45467,'Lamar',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45468,'Lebanon',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45469,'Lees Summit',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45470,'Lemay',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45471,'Liberty',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45472,'Lone Jack',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45473,'Marshall',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45474,'Maryland Heights',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45475,'Maryville',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45476,'Mehlville',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45477,'Mexico',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45478,'Moberly',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45479,'Murphy',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45480,'Nixa',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45481,'O\'Fallon',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45482,'Oakville',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45483,'Overland',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45484,'Pacific',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45485,'Park Hills',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45486,'Parkville',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45487,'Peculiar',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45488,'Poplar Bluff',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45489,'Raytown',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45490,'Richmond Heights',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45491,'Rolla',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45492,'Saint Ann',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45493,'Saint Charles',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45494,'Saint Clair',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45495,'Saint Joseph',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45496,'Saint Louis',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45497,'Saint Peters',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45498,'Sappington',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45499,'Sedalia',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45500,'Sikeston',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45501,'Spanish Lake',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45502,'Springfield',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45503,'St. Louis',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45504,'Steelville',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45505,'Sunrise Beach',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45506,'Town and Country',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45507,'Trimble',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45508,'Troy',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45509,'University City',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45510,'Warrensburg',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45511,'Washington',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45512,'Webb City',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45513,'Webster Groves',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45514,'Wentzville',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45515,'West Plains',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45516,'Wildwood',3948,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45517,'Anaconda-Deer Lodge County',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45518,'Arlee',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45519,'Belgrade',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45520,'Billings',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45521,'Bozeman',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45522,'Butte',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45523,'Butte-Silver Bow',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45524,'Great Falls',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45525,'Hamilton',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45526,'Havre',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45527,'Helena',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45528,'Helena Valley Southeast',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45529,'Helena Valley West Central',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45530,'Kalispell',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45531,'Lame Deer',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45532,'Laurel',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45533,'Lewistown',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45534,'Livingston',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45535,'Malmstrom Air Force Base',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45536,'Manhattan',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45537,'Miles City',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45538,'Missoula',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45539,'Orchard Homes',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45540,'Pablo',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45541,'Polson',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45542,'Roberts',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45543,'Ryegate',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45544,'Sidney',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45545,'Stevensville',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45546,'Whitefish',3949,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45547,'Beatrice',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45548,'Bellevue',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45549,'Central City',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45550,'Columbus',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45551,'Cozad',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45552,'Creighton',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45553,'Fremont',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45554,'Gering',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45555,'Grand Island',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45556,'Hastings',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45557,'Homer',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45558,'Keamey',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45559,'Kearney',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45560,'La Vista',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45561,'Lexington',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45562,'Lincoln',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45563,'McCook',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45564,'Norfolk',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45565,'North Platte',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45566,'Offutt Air Force Base West',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45567,'Ogallala',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45568,'Omaha',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45569,'Papillion',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45570,'Scottsbluff',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45571,'South Sioux City',3950,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45572,'Boulder City',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45573,'Carson City',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45574,'Elko',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45575,'Goldfield',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45576,'Henderson',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45577,'Las Vegas',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45578,'Laughlin',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45579,'Lovelock',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45580,'Mesquite',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45581,'Nellis Air Force Base',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45582,'North Las Vegas',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45583,'Pahrump',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45584,'Paradise',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45585,'Reno',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45586,'Sparks',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45587,'Spring Valley',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45588,'Sun Valley',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45589,'Sunrise Manor',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45590,'Winchester',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45591,'Winnemucca',3951,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45592,'Akron',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45593,'Alledonia',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45594,'Alliance',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45595,'Amherst',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45596,'Apple Creek',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45597,'Archbold',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45598,'Ashland',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45599,'Ashtabula',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45600,'Athens',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45601,'Atwater',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45602,'Aurora',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45603,'Austintown',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45604,'Avon Lake',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45605,'Barberton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45606,'Batavia',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45607,'Bay Village',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45608,'Beachwood',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45609,'Beavercreek',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45610,'Bedford',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45611,'Bedford Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45612,'Bellaire',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45613,'Bellefontaine',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45614,'Bellevue',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45615,'Berea',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45616,'Bexley',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45617,'Blacklick',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45618,'Blacklick Estates',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45619,'Blanchester',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45620,'Blue Ash',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45621,'Boardman',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45622,'Bowling Green',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45623,'Brecksville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45624,'Bridgetown North',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45625,'Bristolville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45626,'Broadview Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45627,'Brook Park',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45628,'Brooklyn',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45629,'Brunswick',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45630,'Bryan',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45631,'Bucyrus',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45632,'Burton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45633,'Cambridge',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45634,'Campbell',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45635,'Canal Winchester',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45636,'Canton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45637,'Carlisle',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45638,'Celina',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45639,'Centerville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45640,'Chagrin Falls',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45641,'Chardon',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45642,'Cheshire',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45643,'Chillicothe',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45644,'Chippewa Lake',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45645,'Cincinnati',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45646,'Circleville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45647,'Cleveland',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45648,'Cleveland Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45649,'Columbus',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45650,'Conneaut',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45651,'Coshocton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45652,'Cuyahoga Falls',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45653,'Dayton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45654,'Defiance',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45655,'Delaware',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45656,'Dover',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45657,'Dublin',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45658,'East Cleveland',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45659,'East Liverpool',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45660,'Eastlake',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45661,'Elyria',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45662,'Englewood',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45663,'Euclid',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45664,'Fairborn',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45665,'Fairfield',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45666,'Fairview Park',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45667,'Findlay',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45668,'Finneytown',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45669,'Forest Park',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45670,'Fort MacKinley',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45671,'Fostoria',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45672,'Fremont',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45673,'Gahanna',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45674,'Galion',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45675,'Garfield Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45676,'Girard',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45677,'Glenwillow',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45678,'Green',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45679,'Greenville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45680,'Grove City',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45681,'Hamilton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45682,'Harrison',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45683,'Hilliard',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45684,'Hiram',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45685,'Holland',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45686,'Huber Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45687,'Hudson',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45688,'Ironton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45689,'Kent',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45690,'Kettering',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45691,'Kidron',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45692,'Lakewood',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45693,'Lancaster',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45694,'Lebanon',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45695,'Lewis Center',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45696,'Lima',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45697,'Lincoln Village',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45698,'Lorain',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45699,'Loveland',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45700,'Lyndhurst',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45701,'Macedonia',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45702,'Madison',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45703,'Maineville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45704,'Mansfield',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45705,'Maple Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45706,'Marietta',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45707,'Marion',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45708,'Marysville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45709,'Mason',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45710,'Massillon',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45711,'Maumee',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45712,'Mayfield Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45713,'Medina',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45714,'Mentor',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45715,'Miamisburg',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45716,'Middleburg Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45717,'Middletown',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45718,'Milford',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45719,'Millbury',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45720,'Mineral City',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45721,'Minster',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45722,'Mount Gilead',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45723,'Mount Vernon',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45724,'Nelsonville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45725,'New Albany',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45726,'New Philadelphia',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45727,'Newark',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45728,'Niles',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45729,'North Canton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45730,'North College Hill',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45731,'North Lewisburg',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45732,'North Olmsted',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45733,'North Ridgeville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45734,'North Royalton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45735,'Northbrook',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45736,'Northfield',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45737,'Northview',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45738,'Norton',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45739,'Norwalk',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45740,'Norwood',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45741,'Oberlin',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45742,'Ohio',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45743,'Oregon',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45744,'Overlook-Page Manor',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45745,'Oxford',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45746,'Painesville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45747,'Parma',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45748,'Parma Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45749,'Peninsula',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45750,'Perrysburg',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45751,'Pickerington',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45752,'Piqua',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45753,'Portage Lakes',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45754,'Portsmouth',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45755,'Powell',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45756,'Ravenna',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45757,'Reading',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45758,'Reynoldsburg',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45759,'Rittman',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45760,'Riverside',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45761,'Rocky River',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45762,'Rossford',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45763,'Salem',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45764,'Sandusky',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45765,'Seven Hills',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45766,'Seville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45767,'Shaker Heights',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45768,'Sharonville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45769,'Sheffield Lake',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45770,'Shelby',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45771,'Sidney',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45772,'Solon',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45773,'South Euclid',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45774,'Springdale',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45775,'Springfield',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45776,'Steubenville',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45777,'Stow',3959,231,0.00,0,'2021-04-06 01:13:51','2021-04-06 01:13:51',NULL),(45778,'Streetsboro',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45779,'Strongsville',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45780,'Struthers',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45781,'Sylvania',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45782,'Tallmadge',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45783,'Tiffin',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45784,'Toledo',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45785,'Trotwood',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45786,'Troy',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45787,'Twinsburg',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45788,'University Heights',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45789,'Upper Arlington',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45790,'Urbana',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45791,'Valley Glen',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45792,'Van Wert',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45793,'Vandalia',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45794,'Vermilion',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45795,'Wadsworth',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45796,'Warren',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45797,'Warrensville Heights',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45798,'Washington',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45799,'Waverly',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45800,'West Carrollton City',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45801,'West Chester',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45802,'Westerville',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45803,'Westlake',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45804,'White Oak',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45805,'Whitehall',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45806,'Wickliffe',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45807,'Willoughby',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45808,'Willowick',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45809,'Wilmington',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45810,'Winesburg',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45811,'Wooster',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45812,'Worthington',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45813,'Xenia',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45814,'Yellow Springs',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45815,'Youngstown',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45816,'Zanesville',3959,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45817,'Ada',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45818,'Altus',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45819,'Ardmore',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45820,'Bartlesville',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45821,'Bethany',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45822,'Bixby',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45823,'Broken Arrow',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45824,'Catoosa',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45825,'Chickasha',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45826,'Choctaw',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45827,'Claremore',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45828,'Del City',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45829,'Duncan',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45830,'Durant',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45831,'Edmond',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45832,'El Reno',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45833,'Elk City',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45834,'Enid',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45835,'Fort Sill',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45836,'Grove',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45837,'Guthrie',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45838,'Heavener',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45839,'Hugo',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45840,'Lawton',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45841,'Lindsay',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45842,'MacAlester',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45843,'Miami',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45844,'Midwest City',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45845,'Moore',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45846,'Morrison',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45847,'Muskogee',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45848,'Mustang',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45849,'Norman',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45850,'Oklahoma City',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45851,'Okmulgee',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45852,'Owasso',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45853,'Pawnee',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45854,'Ponca City',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45855,'Rattan',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45856,'Sand Springs',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45857,'Sapulpa',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45858,'Shawnee',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45859,'Stillwater',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45860,'Sulphur',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45861,'Tahlequah',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45862,'The Village',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45863,'Tulsa',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45864,'Weatherford',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45865,'Welch',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45866,'Woodward',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45867,'Yukon',3960,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45868,'Point Edward',3961,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45869,'Woodbridge',3961,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45870,'Albany',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45871,'Aloha',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45872,'Altamont',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45873,'Arleta',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45874,'Ashland',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45875,'Astoria',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45876,'Baker City',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45877,'Beaverton',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45878,'Bend',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45879,'Canby',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45880,'Cave Junction',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45881,'Cedar Hills',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45882,'Cedar Mill',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45883,'Central Point',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45884,'City of The Dalles',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45885,'Coos Bay',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45886,'Corvallis',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45887,'Creswell',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45888,'Dallas',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45889,'Donald',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45890,'Eugene',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45891,'Forest Grove',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45892,'Four Corners',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45893,'Gladstone',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45894,'Glide',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45895,'Grants Pass',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45896,'Gresham',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45897,'Hayesville',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45898,'Hazelwood',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45899,'Hermiston',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45900,'Hillsboro',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45901,'Hood River',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45902,'Hubbard',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45903,'John Day',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45904,'Jordan Valley',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45905,'Keizer',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45906,'Klamath Falls',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45907,'La Grande',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45908,'Lake Oswego',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45909,'Lebanon',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45910,'Lincoln',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45911,'MacMinnville',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45912,'Medford',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45913,'Milwaukie',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45914,'Newberg',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45915,'Newport',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45916,'North Bend',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45917,'OBrien',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45918,'Oak Grove',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45919,'Oatfield',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45920,'Ontario',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45921,'Oregon City',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45922,'Pendleton',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45923,'Portland',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45924,'Redmond',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45925,'Riddle',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45926,'River Road',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45927,'Roseburg',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45928,'Salem',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45929,'Sherwood',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45930,'Springfield',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45931,'Sublimity',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45932,'Sutherlin',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45933,'Talent',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45934,'Tigard',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45935,'Troutdale',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45936,'Tualatin',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45937,'Turner',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45938,'Vaughn',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45939,'West Linn',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45940,'Wilsonville',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45941,'Woodburn',3962,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45942,'Akron',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45943,'Aliquippa',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45944,'Allentown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45945,'Altoona',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45946,'Ambler',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45947,'Amityville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45948,'Ardmore',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45949,'Audubon',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45950,'Back Mountain',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45951,'Baldwin',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45952,'Bangor',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45953,'Beaver Falls',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45954,'Belle Vernon',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45955,'Bensalem',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45956,'Berwick',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45957,'Berwyn',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45958,'Bethel Park',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45959,'Bethlehem',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45960,'Bloomsburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45961,'Boyertown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45962,'Bradford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45963,'Brentwood',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45964,'Bridgeport',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45965,'Bristol',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45966,'Brockway',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45967,'Broomall',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45968,'Bushkill',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45969,'Butler',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45970,'Camp Hill',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45971,'Canonsburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45972,'Carbondale',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45973,'Carlisle',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45974,'Carnegie',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45975,'Carnot Moon',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45976,'Chambersburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45977,'Chester',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45978,'Chester Springs',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45979,'Clarks Summit',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45980,'Coatesville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45981,'Colonial Park',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45982,'Columbia',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45983,'Conshohocken',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45984,'Coraopolis',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45985,'Corry',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45986,'Cranberry Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45987,'Cresco',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45988,'Croydon',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45989,'Dallas',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45990,'Dallastown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45991,'Darby',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45992,'Darby Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45993,'Downingtown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45994,'Drexel Hill',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45995,'Duncansville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45996,'Dunmore',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45997,'East Norriton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45998,'East Stroudsburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(45999,'Easton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46000,'Economy',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46001,'Edinboro',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46002,'Elizabethtown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46003,'Elkins Park',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46004,'Emmaus',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46005,'Ephrata',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46006,'Erdenheim',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46007,'Erie',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46008,'Erwinna',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46009,'Exton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46010,'Feasterville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46011,'Folcroft',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46012,'Franklin',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46013,'Franklin Park',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46014,'Frederick',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46015,'Fullerton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46016,'Furlong',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46017,'Gettysburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46018,'Gibsonia',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46019,'Glenside',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46020,'Gordonville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46021,'Greensburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46022,'Gwynedd',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46023,'Hampden Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46024,'Hanover',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46025,'Harleysville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46026,'Harrisburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46027,'Harrison Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46028,'Hatboro',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46029,'Haverford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46030,'Havertown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46031,'Hazleton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46032,'Hermitage',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46033,'Hershey',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46034,'Hollidaysburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46035,'Horsham',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46036,'Huntingdon Valley',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46037,'Indiana',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46038,'Irvine',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46039,'Ivyland',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46040,'Jeannette',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46041,'Jefferson',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46042,'Jenkintown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46043,'Johnstown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46044,'Kempton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46045,'Kennett Square',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46046,'King of Prussia',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46047,'Kingston',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46048,'Kutztown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46049,'Lafayette Hill',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46050,'Lancaster',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46051,'Landenberg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46052,'Langhorne',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46053,'Lansdale',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46054,'Lansdowne',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46055,'Lansford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46056,'Laurys Station',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46057,'Lebanon',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46058,'Lehighton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46059,'Levittown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46060,'Lincoln University',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46061,'Linesville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46062,'Linwood',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46063,'Lower Burrell',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46064,'Lower Merion',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46065,'MacCandless Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46066,'MacKeesport',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46067,'Malvern',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46068,'Meadville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46069,'Mechanicsburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46070,'Media',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46071,'Merion Station',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46072,'Middleburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46073,'Mifflinville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46074,'Milanville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46075,'Milford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46076,'Millersburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46077,'Monessen',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46078,'Moscow',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46079,'Mount Carmel',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46080,'Mount Lebanon',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46081,'Mountville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46082,'Munhall',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46083,'Municipality of Monroeville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46084,'Municipality of Murrysville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46085,'N. Charleroi',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46086,'Nanticoke',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46087,'Narberth',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46088,'Natrona Heights',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46089,'Nazareth',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46090,'Nether Providence Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46091,'New Buffalo',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46092,'New Carlisle',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46093,'New Castle',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46094,'New Cumberland',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46095,'New Hope',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46096,'New Kensington',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46097,'Newton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46098,'Newtown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46099,'Newville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46100,'Norristown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46101,'North East',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46102,'North Versailles',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46103,'North Wales',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46104,'Oaks',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46105,'Oil City',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46106,'Olyphant',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46107,'Orrtanna',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46108,'Orwigsburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46109,'Oxford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46110,'Paoli',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46111,'Parksburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46112,'Penn Hills',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46113,'Philadelphia',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46114,'Phildelphia',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46115,'Phoenixville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46116,'Pipersville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46117,'Pittsburgh',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46118,'Pleasantville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46119,'Plum',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46120,'Pocono Summit',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46121,'Pottstown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46122,'Pottsville',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46123,'Primos',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46124,'Progress',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46125,'Prospect',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46126,'Quakertown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46127,'Radnor Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46128,'Reading',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46129,'Robinson Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46130,'Roseto',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46131,'Ross Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46132,'Royersford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46133,'Saint Marys',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46134,'Sarver',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46135,'Saxonburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46136,'Scott Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46137,'Scranton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46138,'Seward',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46139,'Sewickley',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46140,'Shaler Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46141,'Sharon',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46142,'Shermans Dale',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46143,'Somerset',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46144,'Souderton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46145,'South Park Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46146,'Southampton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46147,'Springfield',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46148,'State College',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46149,'Strasburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46150,'Sunbury',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46151,'Susquehanna',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46152,'Swissvale',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46153,'Tamaqua',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46154,'Taylor',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46155,'Telford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46156,'Trevose',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46157,'Turtle Creek',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46158,'Tyrone',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46159,'Uniontown',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46160,'Upper Darby',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46161,'Upper Providence Township',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46162,'Upper Saint Clair',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46163,'Vanderbilt',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46164,'Warminster',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46165,'Warren',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46166,'Warrendale',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46167,'Washington',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46168,'Waterford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46169,'Waverly',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46170,'Wayne',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46171,'Waynesboro',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46172,'West Chester',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46173,'West Mifflin',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46174,'West Norriton',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46175,'West Point',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46176,'Wexford',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46177,'Whitehall',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46178,'Wilcox',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46179,'Wilkes-Barre',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46180,'Wilkinsburg',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46181,'Williamsport',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46182,'Willow Grove',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46183,'Womelsdorf',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46184,'Woodlyn',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46185,'Woolrich',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46186,'Wyncote',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46187,'Wyndmoor',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46188,'Wynnewood',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46189,'Yardley',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46190,'Yeadon',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46191,'York',3963,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46192,'Ramey',3964,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46193,'Adamsville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46194,'Alcoa',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46195,'Antioch',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46196,'Arlington',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46197,'Athens',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46198,'Bartlett',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46199,'Bell Buckle',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46200,'Bloomingdale',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46201,'Blountville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46202,'Brentwood',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46203,'Bristol',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46204,'Brownsville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46205,'Burns',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46206,'Chattanooga',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46207,'Clarksville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46208,'Cleveland',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46209,'Collierville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46210,'Columbia',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46211,'Cookeville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46212,'Cornersville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46213,'Crossville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46214,'Dayton',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46215,'Dickson',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46216,'Dyersburg',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46217,'East Brainerd',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46218,'East Ridge',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46219,'Elizabethton',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46220,'Farragut',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46221,'Franklin',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46222,'Gainesboro',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46223,'Gallatin',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46224,'Gatlinburg',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46225,'Germantown',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46226,'Goodlettsville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46227,'Greeneville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46228,'Hendersonville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46229,'Hixson',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46230,'Jackson',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46231,'Johnson City',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46232,'Kingsport',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46233,'Knoxville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46234,'Kodak',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46235,'La Vergne',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46236,'Lawrenceburg',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46237,'Lebanon',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46238,'Lenoir City',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46239,'Lewisburg',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46240,'MacMinnville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46241,'Maryville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46242,'Memphis',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46243,'Middle Valley',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46244,'Millington',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46245,'Morristown',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46246,'Mulberry',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46247,'Murfreesboro',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46248,'Nashville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46249,'Oak Ridge',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46250,'Ooltewah',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46251,'Pinson',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46252,'Red Bank',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46253,'Selmer',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46254,'Sevierville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46255,'Shelbyville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46256,'Smithville',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46257,'Smyrna',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46258,'Spring City',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46259,'Springfield',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46260,'Tazewell',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46261,'Trenton',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46262,'Tullahoma',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46263,'Union City',3969,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46264,'Abilene',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46265,'Addison',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46266,'Alamo',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46267,'Aldine',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46268,'Alice',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46269,'Allen',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46270,'Alvin',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46271,'Amarillo',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46272,'Anderson Mill',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46273,'Andrews',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46274,'Angleton',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46275,'Argyle',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46276,'Arlington',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46277,'Aspermont',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46278,'Atascocita',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46279,'Athens',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46280,'Austin',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46281,'Austinn',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46282,'Azle',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46283,'Balch Springs',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46284,'Barry',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46285,'Bay City',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46286,'Baytown',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46287,'Beaumont',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46288,'Bedford',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46289,'Beeville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46290,'Bellaire',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46291,'Belton',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46292,'Benbrook',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46293,'Big Spring',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46294,'Bluff Dale',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46295,'Boerne',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46296,'Borger',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46297,'Breckenridge',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46298,'Brenham',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46299,'Brownfield',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46300,'Brownsville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46301,'Brownwood',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46302,'Bryan',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46303,'Buda',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46304,'Burkburnett',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46305,'Burleson',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46306,'Campbell',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46307,'Canyon',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46308,'Canyon Lake',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46309,'Carrollton',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46310,'Cat Spring',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46311,'Cedar Hill',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46312,'Cedar Park',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46313,'Celina',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46314,'Center',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46315,'Channelview',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46316,'City of Dallas',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46317,'Cleburne',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46318,'Cloverleaf',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46319,'Clute',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46320,'College Station',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46321,'Colleyville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46322,'Columbus',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46323,'Comanche',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46324,'Conroe',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46325,'Converse',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46326,'Coppell',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46327,'Copperas Cove',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46328,'Corinth',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46329,'Corpus Christi',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46330,'Corsicana',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46331,'Cotulla',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46332,'Crandall',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46333,'Cypress',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46334,'Dallas',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46335,'Dayton',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46336,'DeSoto',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46337,'Deer Park',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46338,'Del Rio',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46339,'Denison',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46340,'Denton',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46341,'Dickinson',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46342,'Donna',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46343,'Dumas',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46344,'Duncanville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46345,'Eagle Pass',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46346,'Edinburg',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46347,'El Campo',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46348,'El Paso',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46349,'Elmendorf',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46350,'Ennis',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46351,'Euless',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46352,'Fairfield',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46353,'Farmers Branch',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46354,'Flower Mound',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46355,'Forest Hill',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46356,'Forney',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46357,'Fort Bliss',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46358,'Fort Hood',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46359,'Fort Worth',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46360,'Freeport',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46361,'Friendswood',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46362,'Frisco',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46363,'Gainesville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46364,'Galena Park',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46365,'Galveston',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46366,'Garland',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46367,'Gatesville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46368,'Georgetown',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46369,'Grand Prairie',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46370,'Grandview',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46371,'Grapeland',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46372,'Grapevine',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46373,'Greenville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46374,'Gregory',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46375,'Groves',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46376,'Haltom City',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46377,'Harker Heights',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46378,'Harlingen',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46379,'Henderson',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46380,'Hereford',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46381,'Hewitt',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46382,'Highland Village',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46383,'Hillsboro',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46384,'Houston',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46385,'Humble',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46386,'Huntsville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46387,'Hurst',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46388,'Ingleside',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46389,'Irving',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46390,'Jacksonville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46391,'Jefferson',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46392,'Jollyville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46393,'Justin',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46394,'Katy',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46395,'Kaufman',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46396,'Keller',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46397,'Kemah',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46398,'Kemp',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46399,'Kerrville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46400,'Kilgore',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46401,'Killeen',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46402,'Kingsville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46403,'Kingwood',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46404,'La Marque',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46405,'La Porte',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46406,'Lackland Air Force Base',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46407,'Lago Vista',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46408,'Lake Jackson',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46409,'Lamesa',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46410,'Lampasas',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46411,'Lancaster',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46412,'Laredo',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46413,'League City',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46414,'Leon Valley',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46415,'Levelland',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46416,'Lewisville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46417,'Liberty Hill',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46418,'Lindsay',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46419,'Little Elm',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46420,'Live Oak',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46421,'Llano',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46422,'Lockhart',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46423,'Longview',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46424,'Lubbock',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46425,'Lufkin',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46426,'Lumberton',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46427,'MacAllen',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46428,'MacKinney',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46429,'Magnolia',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46430,'Malakoff',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46431,'Mansfield',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46432,'Marshall',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46433,'McAllen',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46434,'McKinney',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46435,'Medina',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46436,'Mercedes',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46437,'Mesquite',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46438,'Midland',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46439,'Mineral Wells',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46440,'Mission',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46441,'Mission Bend',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46442,'Missouri City',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46443,'Montgomery',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46444,'Mount Pleasant',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46445,'Murphy',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46446,'Nacogdoches',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46447,'Nederland',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46448,'New Braunfels',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46449,'New Caney',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46450,'North Richland Hills',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46451,'North Zulch',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46452,'Odessa',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46453,'Orange',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46454,'Ovalo',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46455,'Palestine',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46456,'Pampa',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46457,'Paris',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46458,'Pasadena',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46459,'Pearland',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46460,'Pecan Grove',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46461,'Pecos',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46462,'Pflugerville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46463,'Pharr',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46464,'Pinehurst',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46465,'Plainview',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46466,'Plano',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46467,'Pontotoc',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46468,'Port Arthur',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46469,'Port Lavaca',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46470,'Port Neches',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46471,'Portland',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46472,'Pottsboro',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46473,'Princeton',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46474,'Richardson',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46475,'Richmond',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46476,'Rio Grande City',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46477,'Robstown',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46478,'Rockport',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46479,'Rockwall',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46480,'Roma',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46481,'Rosenberg',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46482,'Round Rock',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46483,'Rowlett',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46484,'Royse City',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46485,'Sachse',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46486,'Saginaw',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46487,'San Angelo',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46488,'San Antonio',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46489,'San Benito',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46490,'San Juan',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46491,'San Marcos',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46492,'Santa Fe',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46493,'Schertz',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46494,'Seabrook',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46495,'Seagoville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46496,'Seguin',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46497,'Sherman',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46498,'Slaton',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46499,'Smithville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46500,'Snyder',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46501,'Socorro',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46502,'South Houston',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46503,'South Padre Island',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46504,'Southlake',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46505,'Spring',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46506,'Stafford',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46507,'Stephenville',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46508,'Strawn',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46509,'Sugar Land',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46510,'Sulphur Springs',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46511,'Sweetwater',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46512,'Taylor',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46513,'Temple',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46514,'Terrell',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46515,'Texarkana',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46516,'Texas City',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46517,'The Colony',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46518,'The Woodlands',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46519,'Tomball',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46520,'Tyler',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46521,'Universal City',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46522,'University Park',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46523,'Uvalde',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46524,'Vernon',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46525,'Victoria',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46526,'Vidor',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46527,'Waco',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46528,'Watauga',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46529,'Waxahachie',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46530,'Weatherford',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46531,'Weslaco',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46532,'West Odessa',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46533,'West University Place',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46534,'White Settlement',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46535,'Wichita Falls',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46536,'Winnsboro',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46537,'Woodway',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46538,'Wylie',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46539,'Yoakum',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46540,'austinn',3970,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46541,'Bedford Kentucky',3971,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46542,'Alpine',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46543,'American Fork',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46544,'Bluffdale',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46545,'Bountiful',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46546,'Brigham City',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46547,'Canyon Rim',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46548,'Castle Dale',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46549,'Cedar City',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46550,'Centerville',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46551,'Clearfield',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46552,'Clinton',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46553,'Cottonwood Heights',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46554,'Cottonwood West',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46555,'Draper',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46556,'East Millcreek',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46557,'Farmington',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46558,'Holladay-Cottonwood',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46559,'Ivins',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46560,'Kaysville',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46561,'Kearns',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46562,'Layton',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46563,'Lehi',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46564,'Logan',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46565,'Magna',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46566,'Mapleton',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46567,'Midvale',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46568,'Millcreek',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46569,'Moab',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46570,'Monticello',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46571,'Murray',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46572,'North Logan',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46573,'North Ogden',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46574,'Ogden',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46575,'Orem',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46576,'Panguitch',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46577,'Park City',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46578,'Payson',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46579,'Pleasant Grove',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46580,'Provo',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46581,'Riverton',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46582,'Roy',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46583,'Saint George',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46584,'Salt Lake City',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46585,'Sandy',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46586,'Santaquin',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46587,'South Jordan',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46588,'South Ogden',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46589,'South Salt Lake',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46590,'Spanish Fork',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46591,'Springville',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46592,'Taylorsville',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46593,'Tooele',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46594,'Tremonton',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46595,'Union',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46596,'Washington',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46597,'West Jordan',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46598,'West Valley City',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46599,'Woods Cross',3972,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46600,'Barre',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46601,'Bennington',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46602,'Brattleboro',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46603,'Bristol',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46604,'Burlington',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46605,'Cabot',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46606,'Colchester',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46607,'Danville',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46608,'Dorset',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46609,'Dummerston',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46610,'East Corinth',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46611,'East Fairfield',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46612,'East Randolph',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46613,'Essex',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46614,'Essex Junction',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46615,'Grand Isle',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46616,'Hartford',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46617,'Jericho',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46618,'Manchester',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46619,'Manchester Center',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46620,'Middlebury',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46621,'Milton',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46622,'Montpelier',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46623,'Putney',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46624,'Randolph',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46625,'Rochester',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46626,'Rutland',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46627,'Saint Albans',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46628,'Saint Johnsbury',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46629,'Saxtons River',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46630,'South Burlington',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46631,'South Strafford',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46632,'Springfield',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46633,'Townshend',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46634,'Tunbridge',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46635,'Van',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46636,'Vernon',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46637,'Wallingford',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46638,'Watisfield',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46639,'West Brookfield',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46640,'West Charleston',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46641,'West Newbury',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46642,'Williston',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46643,'Winooski',3973,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46644,'Abingdon',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46645,'Alexandria',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46646,'Annandale',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46647,'Arlington',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46648,'Ashburn',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46649,'Ashland',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46650,'Aylett',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46651,'Bailey\'s Crossroads',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46652,'Blacksburg',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46653,'Bland',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46654,'Bluefield',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46655,'Bon Air',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46656,'Bristol',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46657,'Burke',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46658,'Cave Spring',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46659,'Centreville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46660,'Chantilly',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46661,'Charlottesville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46662,'Chesapeake',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46663,'Chester',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46664,'Christiansburg',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46665,'Churchville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46666,'Clifton',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46667,'Colonial Heights',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46668,'Culloden',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46669,'Dale City',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46670,'Danville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46671,'Dublin',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46672,'Eagle Rock',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46673,'East Highland Park',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46674,'Faber',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46675,'Fairfax',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46676,'Falls Church',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46677,'Fishersville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46678,'Fort Hunt',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46679,'Fort Valley',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46680,'Franconia',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46681,'Franklin',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46682,'Fredericksburg',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46683,'Front Royal',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46684,'Gainesville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46685,'Glen Allen',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46686,'Gloucester',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46687,'Goochland',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46688,'Great Falls',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46689,'Groveton',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46690,'Hampton',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46691,'Harrisonburg',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46692,'Henrico',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46693,'Herndon',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46694,'Highland Springs',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46695,'Hollins',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46696,'Hopewell',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46697,'Hybla Valley',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46698,'Idylwood',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46699,'Irvington',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46700,'Jamesville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46701,'Jefferson',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46702,'Keen Mountain',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46703,'Keswick',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46704,'Lake Ridge',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46705,'Lakeside',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46706,'Laurel',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46707,'Leesburg',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46708,'Lincolnia',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46709,'Lorton',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46710,'Lynchburg',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46711,'MacLean',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46712,'Madison',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46713,'Madison Heights',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46714,'Manassas',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46715,'Marion',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46716,'Martinsville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46717,'Mclean',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46718,'Mechanicsville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46719,'Melfa',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46720,'Midlothian',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46721,'Montclair',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46722,'Montross',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46723,'Mount Vernon',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46724,'Newington',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46725,'Newport News',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46726,'Norfolk',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46727,'North Springfield',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46728,'Oakton',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46729,'Orange',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46730,'Petersburg',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46731,'Poquoson',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46732,'Portsmouth',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46733,'Radford',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46734,'Reston',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46735,'Richmond',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46736,'Roanoke',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46737,'Rose Hill',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46738,'Salem',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46739,'Seaford',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46740,'South Boston',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46741,'Springfield',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46742,'Stafford',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46743,'Staffordshire',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46744,'Staunton',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46745,'Sterling',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46746,'Suffolk',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46747,'Sugarland Run',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46748,'Tappahannock',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46749,'Timberlake',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46750,'Triangle',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46751,'Tuckahoe',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46752,'Tysons Corner',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46753,'Vienna',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46754,'Virginia Beach',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46755,'Warrenton',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46756,'Washington',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46757,'Waterford',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46758,'Waynesboro',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46759,'West Springfield',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46760,'Williamsburg',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46761,'Winchester',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46762,'Wolf Trap',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46763,'Woodbridge',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46764,'Wytheville',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46765,'Yorktown',3974,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46766,'Aberdeen',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46767,'Airway Heights',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46768,'Alderwood Manor',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46769,'Anacortes',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46770,'Arlington',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46771,'Auburn',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46772,'Bainbridge Island',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46773,'Battle Ground',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46774,'Bellevue',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46775,'Bellingham',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46776,'Bingen',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46777,'Blaine',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46778,'Bothell',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46779,'Bremerton',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46780,'Bryn Mawr-Skyway',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46781,'Buckley',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46782,'Burien',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46783,'Burlington',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46784,'Camano Island',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46785,'Camas',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46786,'Cascade-Fairwood',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46787,'Centralia',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46788,'Chehalis',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46789,'Cheney',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46790,'Clear Lake',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46791,'Colbert',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46792,'Cottage Lake',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46793,'Covington-Sawyer-Wilderness',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46794,'Des Moines',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46795,'Duvall',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46796,'East Hill-Meridian',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46797,'East Renton Highlands',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46798,'East Wenatchee Bench',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46799,'Eastsound',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46800,'Eatonville',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46801,'Edgewood-North Hill',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46802,'Edmonds',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46803,'Elk Plain',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46804,'Ellensburg',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46805,'Enumclaw',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46806,'Esperance',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46807,'Everett',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46808,'Evergreen',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46809,'Fairchild',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46810,'Federal Way',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46811,'Ferndale',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46812,'Fircrest',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46813,'Ford',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46814,'Fort Lewis',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46815,'Friday Harbor',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46816,'Gig Harbor',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46817,'Graham',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46818,'Harbour Pointe',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46819,'Inglewood-Finn Hill',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46820,'Issaquah',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46821,'Kelso',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46822,'Kenmore',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46823,'Kennewick',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46824,'Kent',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46825,'Kingsgate',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46826,'Kirkland',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46827,'Lacey',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46828,'Lake Serene-North Lynnwood',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46829,'Lakeland North',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46830,'Lakeland South',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46831,'Lakewood',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46832,'Longview',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46833,'Lynnwood',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46834,'Martha Lake',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46835,'Marysville',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46836,'Mercer Island',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46837,'Minnehaha',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46838,'Monroe',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46839,'Moses Lake',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46840,'Mossyrock',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46841,'Mount Vernon',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46842,'Mountlake Terrace',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46843,'Mukilteo',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46844,'Newport Hills',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46845,'North City-Ridgecrest',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46846,'North Creek',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46847,'North Marysville',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46848,'Oak Harbor',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46849,'Ocean Shores',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46850,'Olympia',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46851,'Opportunity',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46852,'Orchards South',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46853,'Orting',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46854,'Paine Field-Lake Stickney',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46855,'Parkland',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46856,'Pasco',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46857,'Picnic Point-North Lynnwood',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46858,'Pine Lake',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46859,'Port Angeles',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46860,'Port Hadlock',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46861,'Port Ludlow',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46862,'Port Orchard',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46863,'Poulsbo',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46864,'Pullman',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46865,'Puyallup',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46866,'Redmond',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46867,'Renton',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46868,'Republic',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46869,'Richland',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46870,'Riverton-Boulevard Park',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46871,'Sahalee',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46872,'Salmon Creek',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46873,'Sammamish',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46874,'SeaTac',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46875,'Seattle',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46876,'Seattle Hill-Silver Firs',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46877,'Sedro Woolley',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46878,'Shelton',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46879,'Shoreline',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46880,'Silverdale',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46881,'Snohomish',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46882,'South Hill',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46883,'South Prairie',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46884,'South Seattle',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46885,'Spanaway',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46886,'Spokane',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46887,'Sumas',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46888,'Sumner',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46889,'Sunnyside',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46890,'Tacoma',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46891,'Tukwila',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46892,'Tumwater',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46893,'University Place',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46894,'Vancouver',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46895,'Vashon',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46896,'Walla Walla',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46897,'Washougal',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46898,'Wenatchee',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46899,'West Lake Stevens',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46900,'White Center',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46901,'White Salmon',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46902,'White Swan',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46903,'Woodinville',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46904,'Yakima',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46905,'Yelm',3975,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46906,'Adams',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46907,'Allouez',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46908,'Appleton',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46909,'Ashland',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46910,'Ashwaubenon',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46911,'Baraboo',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46912,'Beaver Dam',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46913,'Beloit',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46914,'Brookfield',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46915,'Brown Deer',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46916,'Burlington',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46917,'Caledonia',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46918,'Carter',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46919,'Cedarburg',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46920,'Chippewa Falls',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46921,'Cudahy',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46922,'De Pere',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46923,'Deer Park',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46924,'Delafield',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46925,'Eau Claire',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46926,'Elkhorn',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46927,'Elroy',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46928,'Fitchburg',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46929,'Fond du Lac',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46930,'Fort Atkinson',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46931,'Franklin',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46932,'Galesville',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46933,'Germantown',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46934,'Glen Flora',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46935,'Glendale',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46936,'Goodman',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46937,'Grafton',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46938,'Green Bay',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46939,'Greendale',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46940,'Greenfield',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46941,'Hartford',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46942,'Hartland',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46943,'Howard',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46944,'Hudson',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46945,'Janesville',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46946,'Jefferson',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46947,'Junction City',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46948,'Kaukauna',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46949,'Kenosha',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46950,'Kiel',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46951,'Kohler',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46952,'La Crosse',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46953,'Little Chute',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46954,'Madison',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46955,'Manitowoc',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46956,'Marinette',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46957,'Marshfield',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46958,'Medford',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46959,'Menasha',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46960,'Menomonee Falls',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46961,'Menomonie',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46962,'Mequon',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46963,'Merrill',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46964,'Middleton',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46965,'Milwaukee',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46966,'Mineral Point',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46967,'Monroe',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46968,'Mount Pleasant',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46969,'Mukwonago',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46970,'Muskego',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46971,'Neenah',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46972,'New Berlin',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46973,'New Richmond',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46974,'Oak Creek',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46975,'Oconomowoc',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46976,'Onalaska',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46977,'Orfordville',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46978,'Oshkosh',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46979,'Pigeon Falls',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46980,'Platteville',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46981,'Pleasant Prairie',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46982,'Plover',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46983,'Port Washington',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46984,'Portage',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46985,'Pound',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46986,'Racine',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46987,'Reedsburg',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46988,'Rhinelander',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46989,'River Falls',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46990,'Saint Francis',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46991,'Sheboygan',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46992,'Shorewood',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46993,'South Milwaukee',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46994,'Spring Valley',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46995,'Stevens Point',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46996,'Stoughton',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46997,'Strum',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46998,'Sturtevant',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(46999,'Sun Prairie',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47000,'Superior',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47001,'Three Lakes',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47002,'Tomah',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47003,'Two Rivers',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47004,'Washington Island',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47005,'Waterford',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47006,'Watertown',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47007,'Waukesha',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47008,'Waupun',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47009,'Wausau',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47010,'Wautoma',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47011,'Wauwatosa',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47012,'West Allis',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47013,'West Bend',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47014,'Weston',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47015,'Whitefish Bay',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47016,'Whitewater',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47017,'Wisconsin Rapids',3977,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47018,'Buffalo',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47019,'Casper',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47020,'Cheyenne',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47021,'Cody',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47022,'Douglas',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47023,'Evanston',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47024,'Gillette',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47025,'Green River',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47026,'Jackson',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47027,'Lander',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47028,'Laramie',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47029,'Powell',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47030,'Rawlins',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47031,'Riverton',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47032,'Rock Springs',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47033,'Sheridan',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47034,'Torrington',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47035,'Worland',3978,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47036,'Artigas',3980,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47037,'Bella Union',3980,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47038,'Camino Maldonado',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47039,'Canelones',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47040,'Ciudad de la Costa',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47041,'Juan Antonio Artigas',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47042,'Las Piedras',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47043,'Pando',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47044,'Paso de Carrasco',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47045,'Progreso',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47046,'Santa Lucia',3981,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47047,'Carmelo',3983,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47048,'Colonia',3983,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47049,'Juan Lacaze',3983,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47050,'Nueva Helvecia',3983,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47051,'Durazno',3984,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47052,'Florida',3985,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47053,'Trinidad',3986,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47054,'Minas',3987,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47055,'Maldonado',3988,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47056,'San Carlos',3988,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47057,'La Paz',3989,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47058,'Montevideo',3989,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47059,'Paysandu',3990,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47060,'Rivera',3992,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47061,'Chuy',3993,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47062,'Rocha',3993,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47063,'Salto',3994,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47064,'Dolores',3996,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47065,'Mercedes',3996,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47066,'Paso de los Toros',3997,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47067,'Tacuarembo',3997,233,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47068,'Ahunabayev',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47069,'Andijon',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47070,'Asaka',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47071,'Boz',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47072,'Hakkulobod',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47073,'Hocaobod',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47074,'Honobod',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47075,'Ilyichevsk',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47076,'Karabagis',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47077,'Kurgontepa',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47078,'Marhomat',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47079,'Pahtaobod',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47080,'Paytug',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47081,'Sahrihan',3999,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47082,'Buhoro',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47083,'Cangeldi',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47084,'Galaosiye',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47085,'Gazli',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47086,'Gijduvon',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47087,'Kizilravbe',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47088,'Kogon',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47089,'Korakul',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47090,'Korovulbazar',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47091,'Kukca',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47092,'Olot',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47093,'Oyokkuduk',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47094,'Romitan',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47095,'Safirkon',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47096,'Vobkent',4000,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47097,'Cizah',4002,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47098,'Dustlik',4002,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47099,'Gagarin',4002,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47100,'Gallaorol',4002,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47101,'Marcanbulok',4002,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47102,'Pahtakor',4002,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47103,'Ulyanovo',4002,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47104,'Zomin',4002,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47105,'Altyarik',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47106,'Avval',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47107,'Besarik',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47108,'Fargona',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47109,'Hamza',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47110,'Kirgili',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47111,'Kukon',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47112,'Kuva',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47113,'Kuvasoy',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47114,'Margilon',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47115,'Rapkan',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47116,'Riston',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47117,'Toslok',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47118,'Yaypan',4003,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47119,'Drujba',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47120,'Gurlan',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47121,'Hazorasp',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47122,'Heva',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47123,'Honko',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47124,'Kuskupir',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47125,'Mesekli',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47126,'Sovot',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47127,'Turpokkala',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47128,'Urgenc',4004,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47129,'Beskent',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47130,'Ceynau',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47131,'Cirakci',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47132,'Dehkanobod',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47133,'Dinau',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47134,'Guzor',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47135,'Kallig',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47136,'Kamasi',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47137,'Karabag',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47138,'Karsi',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47139,'Kasbi',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47140,'Kitob',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47141,'Koson',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47142,'Madaniyat',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47143,'Maydayap',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47144,'Maymanak',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47145,'Muborak',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47146,'Oktyabrskiy',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47147,'Sahrisabz',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47148,'Talimarcon',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47149,'Urtacim',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47150,'Yakkabog',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47151,'Yaninison',4005,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47152,'Beruni',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47153,'Buston',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47154,'Cimboy',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47155,'Halkobod',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47156,'Hucayli',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47157,'Karauzyak',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47158,'Kegayli',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47159,'Kizketken',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47160,'Kozokdaryo',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47161,'Kungirot',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47162,'Mangit',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47163,'Muynok',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47164,'Nukus',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47165,'Tahiatos',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47166,'Tahtakupir',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47167,'Turtkul',4006,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47168,'Aytim',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47169,'Besbulok',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47170,'Cartak',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47171,'Cingeldi',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47172,'Cust',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47173,'Gozgon',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47174,'Iskavat',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47175,'Kalkuduk',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47176,'Konimeh',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47177,'Kosonsoy',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47178,'Minbulok',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47179,'Namangan',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47180,'Nurota',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47181,'Pop',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47182,'Tomdibulok',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47183,'Tosbulok',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47184,'Turakurgon',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47185,'Uckurgon',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47186,'Unhoyat',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47187,'Uyci',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47188,'Uzunkuduk',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47189,'Yanikurgon',4007,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47190,'Karmana',4008,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47191,'Kiziltepa',4008,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47192,'Navoi',4008,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47193,'Uckuduk',4008,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47194,'Zarafson',4008,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47195,'Bulungur',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47196,'Camboy',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47197,'Carhin',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47198,'Celak',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47199,'Cuma',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47200,'Dahbed',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47201,'Istihon',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47202,'Kattakurgon',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47203,'Kusrobod',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47204,'Nurobod',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47205,'Oktos',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47206,'Paysanba',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47207,'Samarkand',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47208,'Superfosfatniy',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47209,'Urgut',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47210,'Yanirobod',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47211,'Ziadin',4009,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47212,'Baht',4010,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47213,'Guliston',4010,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47214,'Hovos',4010,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47215,'Sirdare',4010,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47216,'Sirin',4010,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47217,'Yaniyer',4010,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47218,'Akkurgon',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47219,'Boysun',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47220,'Carkurgon',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47221,'Denau',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47222,'Kumkurgon',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47223,'Paskurd',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47224,'Sargun',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47225,'Sariasiya',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47226,'Serobod',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47227,'Surci',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47228,'Termiz',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47229,'Zan',4011,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47230,'Almazar',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47231,'Angren',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47232,'Bekobod',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47233,'Bektemir',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47234,'Buka',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47235,'Cinoz',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47236,'Circik',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47237,'Gazalkent',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47238,'Iskandar',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47239,'Keles',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47240,'Kibray',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47241,'Krasnogorskiy',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47242,'Kuyluk',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47243,'Ohangaron',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47244,'Olmalik',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47245,'Parkent',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47246,'Pskent',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47247,'Salar',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47248,'Soldatski',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47249,'Tashkent',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47250,'Toskent',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47251,'Tuytepa',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47252,'Urtaaul',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47253,'Yaniobod',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47254,'Yaniyul',4012,234,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47255,'Lakatoro',4013,235,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47256,'Norsup',4013,235,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47257,'Longana',4014,235,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47258,'Luganville',4015,235,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47259,'Port Olry',4015,235,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47260,'Vila',4016,235,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47261,'Isangel',4017,235,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47262,'Sola',4018,235,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47263,'Puerto Ayacucho',4020,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47264,'Anaco',4021,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47265,'Barcelona',4021,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47266,'Cantaura',4021,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47267,'El Tigre',4021,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47268,'Puerto la Cruz',4021,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47269,'San Jose de Guanipa',4021,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47270,'Guasdualito',4022,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47271,'San Fernando',4022,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47272,'Cagua',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47273,'El Limon',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47274,'La Victoria',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47275,'Las Teyerias',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47276,'Maracay',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47277,'Palo Negro',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47278,'San Mateo',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47279,'Turmero',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47280,'Villa de Cura',4023,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47281,'Barinas',4024,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47282,'Barinitas',4024,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47283,'Ciudad Bolivar',4025,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47284,'Ciudad Guayana',4025,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47285,'Upata',4025,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47286,'Goaigoaza',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47287,'Guacara',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47288,'Guigue',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47289,'Mariara',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47290,'Moron',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47291,'Puerto Cabello',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47292,'San Joaquin',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47293,'Tacarigua',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47294,'Valencia',4026,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47295,'San Carlos',4027,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47296,'Tinaquillo',4027,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47297,'Coro',4030,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47298,'Punta Cardon',4030,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47299,'Punto Fijo',4030,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47300,'Altagracia de Orituco',4031,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47301,'Calabozo',4031,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47302,'San Juan de los Morros',4031,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47303,'Valle de la Pascua',4031,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47304,'Zaraza',4031,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47305,'Barquisimeto',4032,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47306,'Cabudare',4032,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47307,'Carora',4032,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47308,'El Tocuyo',4032,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47309,'Los Rastrojos',4032,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47310,'Quibor',4032,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47311,'Ejido',4033,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47312,'El Vigia',4033,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47313,'Merida',4033,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47314,'Baruta',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47315,'Carrizal',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47316,'Catia La Mar',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47317,'Caucaguita',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47318,'Chacao',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47319,'Charallave',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47320,'Cua',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47321,'El Cafetal',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47322,'El Hatillo',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47323,'Filas de Mariche',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47324,'Guarenas',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47325,'Guatire',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47326,'La Dolorita',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47327,'Los Dos Caminos',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47328,'Los Teques',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47329,'Ocumare del Tuy',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47330,'Petare',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47331,'San Antonio de los Altos',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47332,'Santa Teresa',4034,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47333,'Maturin',4035,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47334,'Acarigua',4037,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47335,'Araure',4037,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47336,'Guanare',4037,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47337,'Villa Bruzual',4037,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47338,'Carupano',4038,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47339,'Cumana',4038,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47340,'La Fria',4039,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47341,'Rubio',4039,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47342,'San Antonio del Tachira',4039,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47343,'San Cristobal',4039,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47344,'San Juan de Colon',4039,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47345,'Tariba',4039,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47346,'Trujillo',4040,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47347,'Valera',4040,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47348,'Caraballeda',4041,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47349,'La Guaira',4041,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47350,'Maiquetia',4041,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47351,'Chivacoa',4042,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47352,'Nirgua',4042,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47353,'San Felipe',4042,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47354,'Yaritagua',4042,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47355,'Bachaquero',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47356,'Cabimas',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47357,'Ciudad Ojeda',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47358,'Lagunillas',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47359,'Machiques',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47360,'Maracaibo',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47361,'San Carlos del Zulia',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47362,'Santa Rita',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47363,'Villa del Rosario',4043,237,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47364,'Ha noi',4053,238,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47365,'Hoang Mai',4053,238,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47366,'Lang Ha',4053,238,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47367,'Settlement',4064,239,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47368,'East End-Long Look',4066,239,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47369,'Road Town',4066,239,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47370,'West End',4066,239,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47371,'Kolia',4070,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47372,'Mala\'e',4070,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47373,'Ono',4070,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47374,'Poi',4070,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47375,'Tamana',4070,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47376,'Taoa',4070,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47377,'Tuatafa',4070,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47378,'Vele',4070,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47379,'Fiua',4071,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47380,'Leava',4071,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47381,'Nuku',4071,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47382,'Tavai',4071,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47383,'Toloke',4071,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47384,'Vaisei',4071,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47385,'Ahoa',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47386,'Aka Aka',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47387,'Alele',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47388,'Falaleu',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47389,'Gahi',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47390,'Haafuasia',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47391,'Haatofo',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47392,'Halalo',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47393,'Kolopopo',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47394,'Lavegahau',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47395,'Liku',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47396,'Mala\'e',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47397,'Malaefoou',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47398,'Mata\'Utu',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47399,'Teesi',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47400,'Tepa',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47401,'Utuofa',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47402,'Vailala',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47403,'Vaimalau',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47404,'Vaitupu',4072,241,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47405,'ad-Dakhlah',4074,242,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47406,'al-\'Ayun',4075,242,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47407,'as-Samarah',4076,242,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47408,'\'Adan',4077,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47409,'Aden',4077,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47410,'Ahwar',4078,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47411,'Ja\'ar',4078,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47412,'Zinjibar',4078,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47413,'Dhamar',4079,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47414,'Shaqra\'',4080,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47415,'al-Mukalla',4080,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47416,'ash-Shahir',4080,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47417,'Hajjah',4081,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47418,'Hodaidah',4082,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47419,'Dhi Sufal',4083,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47420,'Ibb',4083,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47421,'Jiblah',4083,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47422,'Qa\'tabah',4083,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47423,'Yarim',4083,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47424,'Tuban',4084,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47425,'Ma\'rib',4085,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47426,'Sa\'dah',4087,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47427,'\'Amran',4088,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47428,'Sahar',4088,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47429,'Sanaa',4088,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47430,'Sayyan',4088,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47431,'\'Ataq',4089,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47432,'Habban',4089,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47433,'Taiz',4089,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47434,'Ta\'izz',4090,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47435,'al-Mukha',4090,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47436,'Raydah',4091,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47437,'al-Bayda',4091,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47438,'Bajil',4092,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47439,'Bayt-al-Faqih',4092,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47440,'Zabid',4092,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47441,'al-Hudaydah',4092,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47442,'al-Marawi\'ah',4092,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47443,'az-Zaydiyah',4092,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47444,'al-Hazm',4093,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47445,'al-Ghaydah',4094,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47446,'Mahwit',4095,243,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47447,'Nikshic',4098,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47448,'Pljevlja',4098,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47449,'Podgorica',4098,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47450,'Ulcinj',4098,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47451,'Gjakove',4100,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47452,'Novi Banovci',4100,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47453,'Senta',4100,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47454,'Serbia',4100,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47455,'Uzice',4100,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47456,'Ada',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47457,'Alibunar',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47458,'Apatin',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47459,'Bach',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47460,'Bachka Palanka',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47461,'Bachka Petrovac',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47462,'Bachka Topola',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47463,'Bachki Jarak',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47464,'Banacki Karlovac',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47465,'Bechej',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47466,'Bela Crkva',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47467,'Beochin',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47468,'Choka',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47469,'Churug',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47470,'Crvenka',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47471,'Futog',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47472,'Indhija',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47473,'Irig',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47474,'Kac',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47475,'Kanjizha',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47476,'Kikinda',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47477,'Kovachica',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47478,'Kovin',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47479,'Kula',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47480,'Mol',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47481,'Nova Pazova',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47482,'Novi Bechej',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47483,'Novi Knezhevac',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47484,'Novi Sad',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47485,'Odzhaci',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47486,'Pacarak',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47487,'Palic',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47488,'Panchevo',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47489,'Petrovaradin',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47490,'Ruma',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47491,'Senta',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47492,'Shid',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47493,'Sivac',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47494,'Sombor',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47495,'Srbobran',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47496,'Sremska Kamenica',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47497,'Sremska Mitrovica',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47498,'Sremski Karlovci',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47499,'Stara Pazova',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47500,'Subotica',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47501,'Temerin',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47502,'Veternik',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47503,'Vrbas',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47504,'Vrshac',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47505,'Zhabalj',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47506,'Zhitishte',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47507,'Zrenjanin',4101,244,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47508,'Kabwe',4102,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47509,'Kapiri Mposhi',4102,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47510,'Mkushi',4102,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47511,'Mumbwa',4102,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47512,'Serenje',4102,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47513,'Chambishi',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47514,'Chililabombwe',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47515,'Chingola',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47516,'Kalulushi',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47517,'Kitwe',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47518,'Luanshya',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47519,'Mpongwe',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47520,'Mufulira',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47521,'Ndola',4103,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47522,'Chipata',4104,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47523,'Katete',4104,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47524,'Lundazi',4104,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47525,'Petauke',4104,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47526,'Mansa',4105,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47527,'Mwansabombwe',4105,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47528,'Nchelenge',4105,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47529,'Samfya',4105,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47530,'Chilanga',4106,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47531,'Kafue',4106,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47532,'Lusaka',4106,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47533,'Kalengwa',4107,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47534,'Kansanshi',4107,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47535,'Mwinilunga',4107,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47536,'Solwezi',4107,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47537,'Zambezi',4107,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47538,'Chinsali',4108,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47539,'Isoka',4108,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47540,'Kasama',4108,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47541,'Mbala',4108,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47542,'Mpika',4108,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47543,'Choma',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47544,'Itezhi-Tezhi',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47545,'Kalomo',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47546,'Livingstone',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47547,'Maamba',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47548,'Mazabuka',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47549,'Monze',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47550,'Nakambala',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47551,'Siavonga',4109,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47552,'Kalabo',4110,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47553,'Kaoma',4110,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47554,'Limulunga',4110,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47555,'Mongu',4110,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47556,'Senanga',4110,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47557,'Sesheke',4110,245,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47558,'Bulawayo',4111,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47559,'Chitungwiza',4112,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47560,'Harare',4112,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47561,'Chimanimani',4113,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47562,'Chipinge',4113,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47563,'Mutare',4113,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47564,'Nyanga',4113,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47565,'Rusape',4113,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47566,'Sakubva',4113,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47567,'Chiredzi',4117,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47568,'Gaths',4117,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47569,'Masvingo',4117,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47570,'Chivhu',4120,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47571,'Gweru',4120,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47572,'Kwekwe',4120,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47573,'Mvuma',4120,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47574,'Redcliffe',4120,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47575,'Shurugwi',4120,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47576,'Zvishavane',4120,246,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47577,'Manchester',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47578,'Nashua',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47579,'Concord',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47580,'Derry',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47581,'Dover',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47582,'Rochester',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47583,'Salem',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47584,'Merrimack',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47585,'Hudson',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47586,'Londonderry',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47587,'Keene',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47588,'Bedford',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47589,'Portsmouth',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47590,'Goffstown',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47591,'Laconia',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47592,'Hampton',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47593,'Milford',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47594,'Durham',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47595,'Exeter',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47596,'Windham',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47597,'Hooksett',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47598,'Claremont',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47599,'Lebanon',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47600,'Pelham',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47601,'Somersworth',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47602,'Hanover',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47603,'Amherst',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47604,'Raymond',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47605,'Conway',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47606,'Berlin',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47607,'Newmarket',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47608,'Weare',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47609,'Seabrook',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47610,'Barrington',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47611,'Hampstead',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47612,'Franklin',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47613,'Litchfield',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47614,'Hollis',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47615,'Plaistow',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47616,'Bow',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47617,'Belmont',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47618,'Stratham',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47619,'Swanzey',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47620,'Gilford',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47621,'Pembroke',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47622,'Plymouth',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47623,'Farmington',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47624,'Atkinson',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47625,'Newport',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47626,'Epping',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47627,'Peterborough',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47628,'Wolfeboro',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47629,'Meredith',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47630,'Kingston',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47631,'Rindge',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47632,'Hillsborough',3952,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47633,'Newark',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47634,'Jersey City',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47635,'Paterson',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47636,'Elizabeth',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47637,'Edison',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47638,'Woodbridge',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47639,'Lakewood',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47640,'Toms River',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47641,'Hamilton',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47642,'Trenton',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47643,'Clifton',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47644,'Camden',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47645,'Brick',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47646,'Cherry Hill',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47647,'Passaic',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47648,'Middletown',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47649,'Union City',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47650,'Old Bridge',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47651,'Gloucester Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47652,'East Orange',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47653,'Bayonne',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47654,'Franklin',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47655,'North Bergen',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47656,'Vineland',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47657,'Union',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47658,'Piscataway',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47659,'New Brunswick',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47660,'Jackson',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47661,'Wayne',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47662,'Irvington',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47663,'Parsippany-Troy Hills',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47664,'Howell',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47665,'Perth Amboy',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47666,'Hoboken',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47667,'Plainfield',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47668,'West New York',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47669,'Washington Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47670,'East Brunswick',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47671,'Bloomfield',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47672,'West Orange',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47673,'Evesham',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47674,'Bridgewater',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47675,'South Brunswick',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47676,'Egg Harbor',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47677,'Manchester',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47678,'Hackensack',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47679,'Sayreville',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47680,'Mount Laurel',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47681,'Berkeley',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47682,'North Brunswick',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47683,'Kearny',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47684,'Linden',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47685,'Marlboro',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47686,'Teaneck',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47687,'Atlantic City',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47688,'Winslow',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47689,'Monroe',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47690,'Manalapan',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47691,'Hillsborough',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47692,'Montclair',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47693,'Galloway',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47694,'Freehold Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47695,'Monroe Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47696,'Belleville',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47697,'Pennsauken',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47698,'Ewing',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47699,'Fort Lee',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47700,'Lawrence',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47701,'Fair Lawn',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47702,'Willingboro',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47703,'Long Branch',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47704,'Deptford',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47705,'Garfield',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47706,'Westfield',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47707,'City of Orange',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47708,'Livingston',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47709,'Voorhees',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47710,'Princeton',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47711,'Millville',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47712,'Nutley',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47713,'Mount Olive',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47714,'Neptune',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47715,'Pemberton Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47716,'Lacey',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47717,'Rahway',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47718,'Ocean Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47719,'East Windsor',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47720,'West Windsor',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47721,'Englewood',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47722,'Bergenfield',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47723,'Bernards Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47724,'Stafford Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47725,'Hamilton Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47726,'Paramus',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47727,'Wall',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47728,'Mahwah',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47729,'West Milford',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47730,'Randolph',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47731,'Bridgeton',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47732,'Ridgewood',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47733,'Rockaway Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47734,'Lodi',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47735,'Vernon',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47736,'Maplewood',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47737,'Cliffside Park',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47738,'Scotch Plains',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47739,'South Plainfield',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47740,'Roxbury',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47741,'Medford',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47742,'Plainsboro',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47743,'Lower Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47744,'Carteret',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47745,'Cranford',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47746,'Burlington Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47747,'Morris Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47748,'Montgomery',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47749,'Raritan Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47750,'North Plainfield',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47751,'West Deptford',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47752,'Montville',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47753,'Summit',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47754,'Hillside',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47755,'Jefferson',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47756,'Roselle',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47757,'Barnegat',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47758,'Moorestown',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47759,'Lyndhurst',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47760,'Hazlet',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47761,'Pleasantville',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47762,'Millburn',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47763,'Little Egg Harbor',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47764,'Sparta',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47765,'Palisades Park',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47766,'Elmwood Park',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47767,'Maple Shade',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47768,'Middle Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47769,'Hawthorne',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47770,'Glassboro',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47771,'Washington Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47772,'Morristown',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47773,'Point Pleasant',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47774,'Aberdeen',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47775,'Dover',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47776,'Rutherford',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47777,'Tinton Falls',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47778,'Lindenwold',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47779,'Dumont',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47780,'Hopewell Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47781,'Delran',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47782,'Franklin Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47783,'Holmdel',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47784,'Wyckoff',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47785,'Denville',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47786,'New Milford',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47787,'Secaucus',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47788,'South Orange Village',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47789,'Readington',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47790,'Asbury Park',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47791,'South River',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47792,'Madison',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47793,'Springfield',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47794,'Cinnaminson',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47795,'Pequannock',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47796,'North Arlington',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47797,'Warren',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47798,'Mantua',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47799,'Hopatcong',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47800,'Phillipsburg',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47801,'Hammonton',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47802,'Clark',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47803,'Haddon Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47804,'Tenafly',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47805,'Ramsey',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47806,'Branchburg',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47807,'Little Falls',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47808,'Highland Park',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47809,'Collingswood',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47810,'Fairview',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47811,'Hanover',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47812,'Saddle Brook',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47813,'Robbinsville',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47814,'Middlesex',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47815,'Harrison',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47816,'Metuchen',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47817,'Clinton Township',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47818,'Pennsville',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47819,'Verona',3953,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47820,'Albuquerque',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47821,'Las Cruces',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47822,'Rio Rancho',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47823,'Santa Fe',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47824,'Roswell',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47825,'Farmington',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47826,'South Valley',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47827,'Clovis',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47828,'Hobbs',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47829,'Alamogordo',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47830,'Carlsbad',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47831,'Gallup',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47832,'Deming',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47833,'Los Lunas',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47834,'Chaparral',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47835,'Sunland Park',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47836,'Las Vegas',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47837,'Portales',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47838,'Los Alamos',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47839,'North Valley',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47840,'Artesia',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47841,'Lovington',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47842,'Silver City',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47843,'Espanola',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47844,'Anthony',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47845,'Grants',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47846,'Socorro',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47847,'Corrales',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47848,'Bernalillo',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47849,'Shiprock',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47850,'Bloomfield',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47851,'Ruidoso',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47852,'Kirtland',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47853,'Belen',3955,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47854,'Airmont',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47855,'Albany',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47856,'Alden',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47857,'Amherst',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47858,'Amityville',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47859,'Amsterdam',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47860,'Arcadia',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47861,'Auburn',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47862,'Aurora',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47863,'Babylon',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47864,'Baldwinsville',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47865,'Ballston',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47866,'Batavia',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47867,'Bath',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47868,'Beacon',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47869,'Bedford',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47870,'Beekman',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47871,'Bethlehem',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47872,'Binghamton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47873,'Blooming Grove',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47874,'Briarcliff Manor',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47875,'Brighton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47876,'Brockport',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47877,'Brookhaven',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47878,'Brunswick',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47879,'Buffalo',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47880,'Camillus',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47881,'Canandaigua',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47882,'Canton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47883,'Carmel',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47884,'Catskill',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47885,'Cheektowaga',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47886,'Chenango',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47887,'Chester',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47888,'Chestnut Ridge',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47889,'Chili',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47890,'Cicero',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47891,'Clarence',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47892,'Clarkstown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47893,'Clay',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47894,'Clifton Park',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47895,'Cohoes',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47896,'Colonie',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47897,'Corning',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47898,'Cornwall',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47899,'Cortland',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47900,'Cortlandt',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47901,'Crawford',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47902,'Croton-on-Hudson',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47903,'Depew',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47904,'DeWitt (De Witt)',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47905,'Dobbs Ferry',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47906,'Dryden',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47907,'Dunkirk',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47908,'East Fishkill',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47909,'East Greenbush',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47910,'East Hampton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47911,'East Hills',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47912,'East Rockaway',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47913,'Eastchester',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47914,'Elma',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47915,'Elmira',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47916,'Endicott',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47917,'Esopus',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47918,'Evans',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47919,'Fallsburg',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47920,'Farmingdale',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47921,'Farmington',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47922,'Fishkill',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47923,'Floral Park',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47924,'Fredonia',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47925,'Freeport',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47926,'Fulton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47927,'Garden City',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47928,'Gates',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47929,'Geddes',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47930,'Geneseo',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47931,'Geneva',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47932,'German Flatts',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47933,'Glen Cove',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47934,'Glens Falls',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47935,'Glenville',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47936,'Gloversville',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47937,'Goshen',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47938,'Grand Island',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47939,'Great Neck',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47940,'Greece',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47941,'Greenburgh',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47942,'Guilderland',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47943,'Halfmoon',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47944,'Hamburg',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47945,'Hamlin',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47946,'Harrison',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47947,'Hastings',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47948,'Hastings-on-Hudson',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47949,'Haverstraw',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47950,'Hempstead',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47951,'Henrietta',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47952,'Herkimer',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47953,'Highlands',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47954,'Hornell',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47955,'Horseheads',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47956,'Hudson',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47957,'Hudson Falls',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47958,'Huntington',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47959,'Hyde Park',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47960,'Ilion',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47961,'Irondequoit',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47962,'Islip',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47963,'Ithaca',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47964,'Jamestown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47965,'Johnson City',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47966,'Johnstown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47967,'Kenmore',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47968,'Kent',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47969,'Kingsbury',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47970,'Kingston',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47971,'Kirkland',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47972,'Kiryas Joel',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47973,'Lackawanna',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47974,'LaGrange (La Grange)',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47975,'Lake Grove',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47976,'Lancaster',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47977,'Lansing',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47978,'Le Ray',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47979,'Lenox',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47980,'Lewisboro',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47981,'Lewiston',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47982,'Liberty',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47983,'Lindenhurst',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47984,'Little Falls',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47985,'Lloyd',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47986,'Lockport',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47987,'Long Beach',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47988,'Lynbrook',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47989,'Lysander',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47990,'Macedon',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47991,'Malone',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47992,'Malta',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47993,'Malverne',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47994,'Mamakating',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47995,'Mamaroneck',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47996,'Manchester',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47997,'Manlius',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47998,'Massapequa Park',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(47999,'Massena',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48000,'Mastic Beach',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48001,'Mechanicville',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48002,'Mendon',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48003,'Middletown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48004,'Milton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48005,'Mineola',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48006,'Monroe',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48007,'Montgomery',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48008,'Moreau',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48009,'Mount Kisco',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48010,'Mount Pleasant',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48011,'Mount Vernon',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48012,'New Castle',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48013,'New Hartford',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48014,'New Hyde Park',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48015,'New Paltz',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48016,'New Rochelle',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48017,'New Square',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48018,'New Windsor',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48019,'New York',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48020,'Newark',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48021,'Newburgh',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48022,'Newfane',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48023,'Niagara Falls',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48024,'Niskayuna',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48025,'North Castle',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48026,'North Greenbush',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48027,'North Hempstead',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48028,'North Syracuse',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48029,'North Tonawanda',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48030,'Northport',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48031,'Norwich',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48032,'Nyack',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48033,'Ogden',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48034,'Ogdensburg',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48035,'Olean',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48036,'Oneida',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48037,'Oneonta',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48038,'Onondaga',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48039,'Ontario',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48040,'Orangetown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48041,'Orchard Park',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48042,'Ossining',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48043,'Oswego',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48044,'Owego',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48045,'Oyster Bay',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48046,'Parma',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48047,'Patchogue',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48048,'Patterson',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48049,'Peekskill',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48050,'Pelham',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48051,'Penfield',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48052,'Perinton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48053,'Philipstown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48054,'Pittsford',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48055,'Plattekill',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48056,'Plattsburgh',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48057,'Pleasant Valley',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48058,'Pleasantville',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48059,'Pomfret',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48060,'Port Chester',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48061,'Port Jefferson',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48062,'Port Jervis',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48063,'Potsdam',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48064,'Poughkeepsie',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48065,'Putnam Valley',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48066,'Queensbury',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48067,'Ramapo',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48068,'Red Hook',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48069,'Rensselaer',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48070,'Riverhead',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48071,'Rochester',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48072,'Rockville Centre',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48073,'Rome',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48074,'Rotterdam',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48075,'Rye',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48076,'Rye Brook',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48077,'Salamanca',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48078,'Salina',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48079,'Saratoga Springs',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48080,'Saugerties',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48081,'Scarsdale',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48082,'Schenectady',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48083,'Schodack',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48084,'Scotia',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48085,'Seneca Falls',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48086,'Shawangunk',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48087,'Sherrill',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48088,'Sleepy Hollow',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48089,'Smithtown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48090,'Somers',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48091,'Southampton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48092,'Southeast',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48093,'Southold',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48094,'Southport',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48095,'Spring Valley',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48096,'Stony Point',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48097,'Suffern',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48098,'Sullivan',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48099,'Sweden',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48100,'Syracuse',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48101,'Tarrytown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48102,'Thompson',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48103,'Tonawanda',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48104,'Troy',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48105,'Ulster',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48106,'Union',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48107,'Utica',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48108,'Valley Stream',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48109,'Van Buren',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48110,'Vestal',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48111,'Victor',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48112,'Walden',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48113,'Wallkill',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48114,'Walworth',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48115,'Wappinger',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48116,'Warwick',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48117,'Watertown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48118,'Watervliet',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48119,'Wawarsing',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48120,'Webster',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48121,'West Haverstraw',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48122,'West Seneca',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48123,'Westbury',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48124,'Wheatfield',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48125,'White Plains',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48126,'Whitestown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48127,'Williston Park',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48128,'Wilton',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48129,'Woodbury',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48130,'Yonkers',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48131,'Yorktown',3956,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48132,'Charlotte',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48133,'Raleigh',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48134,'Greensboro',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48135,'Durham',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48136,'Winston-Salem',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48137,'Fayetteville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48138,'Cary',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48139,'Wilmington',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48140,'High Point',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48141,'Greenville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48142,'Asheville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48143,'Concord',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48144,'Gastonia',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48145,'Jacksonville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48146,'Chapel Hill',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48147,'Rocky Mount',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48148,'Burlington',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48149,'Huntersville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48150,'Wilson',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48151,'Kannapolis',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48152,'Apex',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48153,'Hickory',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48154,'Wake Forest',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48155,'Indian Trail',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48156,'Goldsboro',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48157,'Mooresville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48158,'Monroe',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48159,'Salisbury',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48160,'New Bern',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48161,'Holly Springs',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48162,'Matthews',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48163,'Sanford',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48164,'Garner',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48165,'Cornelius',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48166,'Thomasville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48167,'Asheboro',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48168,'Statesville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48169,'Mint Hill',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48170,'Kernersville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48171,'Morrisville',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48172,'Fuquay-Varina',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48173,'Lumberton',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48174,'Kinston',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48175,'Carrboro',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48176,'Havelock',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48177,'Shelby',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48178,'Clemmons',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48179,'Lexington',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48180,'Clayton',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48181,'Boone',3957,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48182,'Fargo',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48183,'Bismarck',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48184,'Grand Forks',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48185,'Minot',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48186,'West Fargo',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48187,'Williston',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48188,'Dickinson',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48189,'Mandan',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48190,'Jamestown',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48191,'Wahpeton',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48192,'Devils Lake',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48193,'Valley City',3958,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48194,'Providence',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48195,'Warwick',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48196,'Cranston',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48197,'Pawtucket',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48198,'East Providence',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48199,'Woonsocket',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48200,'Coventry',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48201,'Cumberland',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48202,'North Providence',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48203,'South Kingstown',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48204,'West Warwick',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48205,'Johnston',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48206,'North Kingstown',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48207,'Newport',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48208,'Bristol',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48209,'Westerly',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48210,'Smithfield',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48211,'Lincoln',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48212,'Central Falls',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48213,'Portsmouth',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48214,'Barrington',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48215,'Middletown',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48216,'Burrillville',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48217,'Narragansett',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48218,'Tiverton',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48219,'East Greenwich',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48220,'North Smithfield',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48221,'Warren',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48222,'Scituate',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48223,'Glocester',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48224,'Hopkinton',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48225,'Charlestown',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48226,'Richmond',3965,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48227,'Columbia',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48228,'Charleston',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48229,'North Charleston',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48230,'Mount Pleasant',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48231,'Rock Hill',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48232,'Greenville',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48233,'Summerville',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48234,'Sumter',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48235,'Hilton Head Island',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48236,'Spartanburg',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48237,'Florence',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48238,'Goose Creek',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48239,'Aiken',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48240,'Myrtle Beach',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48241,'Anderson',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48242,'Greer',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48243,'Mauldin',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48244,'Greenwood',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48245,'North Augusta',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48246,'Easley',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48247,'Simpsonville',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48248,'Hanahan',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48249,'Lexington',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48250,'Conway',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48251,'West Columbia',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48252,'North Myrtle Beach',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48253,'Clemson',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48254,'Orangeburg',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48255,'Cayce',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48256,'Bluffton',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48257,'Beaufort',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48258,'Gaffney',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48259,'Irmo',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48260,'Fort Mill',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48261,'Port Royal',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48262,'Forest Acres',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48263,'Newberry',3966,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48264,'Sioux Falls',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48265,'Rapid City',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48266,'Aberdeen',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48267,'Brookings',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48268,'Watertown',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48269,'Mitchell',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48270,'Yankton',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48271,'Pierre',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48272,'Huron',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48273,'Spearfish',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48274,'Vermillion',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48275,'Brandon',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48276,'Box Elder',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48277,'Madison',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48278,'Sturgis',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48279,'Belle Fourche',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48280,'Harrisburg',3967,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48281,'Charleston',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48282,'Huntington',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48283,'Morgantown',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48284,'Parkersburg',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48285,'Wheeling',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48286,'Weirton',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48287,'Fairmont',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48288,'Martinsburg',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48289,'Beckley',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48290,'Clarksburg',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48291,'South Charleston',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48292,'St. Albans',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48293,'Vienna',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48294,'Bluefield',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48295,'Moundsville',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48296,'Bridgeport',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48297,'Oak Hill',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48298,'Dunbar',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48299,'Elkins',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48300,'Nitro',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48301,'Hurricane',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48302,'Princeton',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48303,'Charles Town',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48304,'Buckhannon',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48305,'Keyser',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48306,'New Martinsville',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48307,'Grafton',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48308,'Ranson',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48309,'Point Pleasant',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48310,'Westover',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48311,'Weston',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48312,'Lewisburg',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48313,'Ravenswood',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48314,'Summersville',3976,231,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48315,'Alcala',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48316,'Andalucia',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48317,'Ansermanuevo',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48318,'Argelia',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48319,'Bolivar',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48320,'Buenaventura',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48321,'Buga',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48322,'Bugalagrande',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48323,'Caicedonia',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48324,'Cali',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48325,'Calima - El Darien',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48326,'Candelaria',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48327,'Cartago',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48328,'Dagua',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48329,'El Aguila',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48330,'El Cairo',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48331,'El Cerrito',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48332,'El Dovio',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48333,'Florida',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48334,'Ginebra',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48335,'Guacari',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48336,'Jamundi',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48337,'La Cumbre',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48338,'La Union',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48339,'La Victoria',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48340,'Obando',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48341,'Palmira',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48342,'Pradera',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48343,'Restrepo',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48344,'Riofrio',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48345,'Roldanillo',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48346,'San Pedro',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48347,'Sevilla',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48348,'Toro',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48349,'Trujillo',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48350,'Tulua',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48351,'Ulloa',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48352,'Versalles',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48353,'Vijes',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48354,'Yotoco',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48355,'Yumbo',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL),(48356,'Zarzal',805,47,0.00,0,'2021-04-06 01:13:52','2021-04-06 01:13:52',NULL); /*!40000 ALTER TABLE `cities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `city_translations` -- DROP TABLE IF EXISTS `city_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `city_translations` ( `id` int NOT NULL AUTO_INCREMENT, `city_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(10) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `city_translations` -- LOCK TABLES `city_translations` WRITE; /*!40000 ALTER TABLE `city_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `city_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `colors` -- DROP TABLE IF EXISTS `colors`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `colors` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(30) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=144 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `colors` -- LOCK TABLES `colors` WRITE; /*!40000 ALTER TABLE `colors` DISABLE KEYS */; INSERT INTO `colors` VALUES (1,'IndianRed','#CD5C5C','2018-11-05 02:12:26','2018-11-05 02:12:26'),(2,'LightCoral','#F08080','2018-11-05 02:12:26','2018-11-05 02:12:26'),(3,'Salmon','#FA8072','2018-11-05 02:12:26','2018-11-05 02:12:26'),(4,'DarkSalmon','#E9967A','2018-11-05 02:12:26','2018-11-05 02:12:26'),(5,'LightSalmon','#FFA07A','2018-11-05 02:12:26','2018-11-05 02:12:26'),(6,'Crimson','#DC143C','2018-11-05 02:12:26','2018-11-05 02:12:26'),(7,'Red','#FF0000','2018-11-05 02:12:26','2018-11-05 02:12:26'),(8,'FireBrick','#B22222','2018-11-05 02:12:26','2018-11-05 02:12:26'),(9,'DarkRed','#8B0000','2018-11-05 02:12:26','2018-11-05 02:12:26'),(10,'Pink','#FFC0CB','2018-11-05 02:12:26','2018-11-05 02:12:26'),(11,'LightPink','#FFB6C1','2018-11-05 02:12:26','2018-11-05 02:12:26'),(12,'HotPink','#FF69B4','2018-11-05 02:12:26','2018-11-05 02:12:26'),(13,'DeepPink','#FF1493','2018-11-05 02:12:26','2018-11-05 02:12:26'),(14,'MediumVioletRed','#C71585','2018-11-05 02:12:26','2018-11-05 02:12:26'),(15,'PaleVioletRed','#DB7093','2018-11-05 02:12:26','2018-11-05 02:12:26'),(16,'LightSalmon','#FFA07A','2018-11-05 02:12:26','2018-11-05 02:12:26'),(17,'Coral','#FF7F50','2018-11-05 02:12:26','2018-11-05 02:12:26'),(18,'Tomato','#FF6347','2018-11-05 02:12:26','2018-11-05 02:12:26'),(19,'OrangeRed','#FF4500','2018-11-05 02:12:26','2018-11-05 02:12:26'),(20,'DarkOrange','#FF8C00','2018-11-05 02:12:26','2018-11-05 02:12:26'),(21,'Orange','#FFA500','2018-11-05 02:12:26','2018-11-05 02:12:26'),(22,'Gold','#FFD700','2018-11-05 02:12:26','2018-11-05 02:12:26'),(23,'Yellow','#FFFF00','2018-11-05 02:12:26','2018-11-05 02:12:26'),(24,'LightYellow','#FFFFE0','2018-11-05 02:12:26','2018-11-05 02:12:26'),(25,'LemonChiffon','#FFFACD','2018-11-05 02:12:26','2018-11-05 02:12:26'),(26,'LightGoldenrodYellow','#FAFAD2','2018-11-05 02:12:27','2018-11-05 02:12:27'),(27,'PapayaWhip','#FFEFD5','2018-11-05 02:12:27','2018-11-05 02:12:27'),(28,'Moccasin','#FFE4B5','2018-11-05 02:12:27','2018-11-05 02:12:27'),(29,'PeachPuff','#FFDAB9','2018-11-05 02:12:27','2018-11-05 02:12:27'),(30,'PaleGoldenrod','#EEE8AA','2018-11-05 02:12:27','2018-11-05 02:12:27'),(31,'Khaki','#F0E68C','2018-11-05 02:12:27','2018-11-05 02:12:27'),(32,'DarkKhaki','#BDB76B','2018-11-05 02:12:27','2018-11-05 02:12:27'),(33,'Lavender','#E6E6FA','2018-11-05 02:12:27','2018-11-05 02:12:27'),(34,'Thistle','#D8BFD8','2018-11-05 02:12:27','2018-11-05 02:12:27'),(35,'Plum','#DDA0DD','2018-11-05 02:12:27','2018-11-05 02:12:27'),(36,'Violet','#EE82EE','2018-11-05 02:12:27','2018-11-05 02:12:27'),(37,'Orchid','#DA70D6','2018-11-05 02:12:27','2018-11-05 02:12:27'),(38,'Fuchsia','#FF00FF','2018-11-05 02:12:27','2018-11-05 02:12:27'),(39,'Magenta','#FF00FF','2018-11-05 02:12:27','2018-11-05 02:12:27'),(40,'MediumOrchid','#BA55D3','2018-11-05 02:12:27','2018-11-05 02:12:27'),(41,'MediumPurple','#9370DB','2018-11-05 02:12:27','2018-11-05 02:12:27'),(42,'Amethyst','#9966CC','2018-11-05 02:12:27','2018-11-05 02:12:27'),(43,'BlueViolet','#8A2BE2','2018-11-05 02:12:27','2018-11-05 02:12:27'),(44,'DarkViolet','#9400D3','2018-11-05 02:12:27','2018-11-05 02:12:27'),(45,'DarkOrchid','#9932CC','2018-11-05 02:12:27','2018-11-05 02:12:27'),(46,'DarkMagenta','#8B008B','2018-11-05 02:12:27','2018-11-05 02:12:27'),(47,'Purple','#800080','2018-11-05 02:12:27','2018-11-05 02:12:27'),(48,'Indigo','#4B0082','2018-11-05 02:12:27','2018-11-05 02:12:27'),(49,'SlateBlue','#6A5ACD','2018-11-05 02:12:27','2018-11-05 02:12:27'),(50,'DarkSlateBlue','#483D8B','2018-11-05 02:12:27','2018-11-05 02:12:27'),(51,'MediumSlateBlue','#7B68EE','2018-11-05 02:12:27','2018-11-05 02:12:27'),(52,'GreenYellow','#ADFF2F','2018-11-05 02:12:27','2018-11-05 02:12:27'),(53,'Chartreuse','#7FFF00','2018-11-05 02:12:27','2018-11-05 02:12:27'),(54,'LawnGreen','#7CFC00','2018-11-05 02:12:27','2018-11-05 02:12:27'),(55,'Lime','#00FF00','2018-11-05 02:12:27','2018-11-05 02:12:27'),(56,'LimeGreen','#32CD32','2018-11-05 02:12:27','2018-11-05 02:12:27'),(57,'PaleGreen','#98FB98','2018-11-05 02:12:27','2018-11-05 02:12:27'),(58,'LightGreen','#90EE90','2018-11-05 02:12:27','2018-11-05 02:12:27'),(59,'MediumSpringGreen','#00FA9A','2018-11-05 02:12:27','2018-11-05 02:12:27'),(60,'SpringGreen','#00FF7F','2018-11-05 02:12:27','2018-11-05 02:12:27'),(61,'MediumSeaGreen','#3CB371','2018-11-05 02:12:27','2018-11-05 02:12:27'),(62,'SeaGreen','#2E8B57','2018-11-05 02:12:27','2018-11-05 02:12:27'),(63,'ForestGreen','#228B22','2018-11-05 02:12:28','2018-11-05 02:12:28'),(64,'Green','#008000','2018-11-05 02:12:28','2018-11-05 02:12:28'),(65,'DarkGreen','#006400','2018-11-05 02:12:28','2018-11-05 02:12:28'),(66,'YellowGreen','#9ACD32','2018-11-05 02:12:28','2018-11-05 02:12:28'),(67,'OliveDrab','#6B8E23','2018-11-05 02:12:28','2018-11-05 02:12:28'),(68,'Olive','#808000','2018-11-05 02:12:28','2018-11-05 02:12:28'),(69,'DarkOliveGreen','#556B2F','2018-11-05 02:12:28','2018-11-05 02:12:28'),(70,'MediumAquamarine','#66CDAA','2018-11-05 02:12:28','2018-11-05 02:12:28'),(71,'DarkSeaGreen','#8FBC8F','2018-11-05 02:12:28','2018-11-05 02:12:28'),(72,'LightSeaGreen','#20B2AA','2018-11-05 02:12:28','2018-11-05 02:12:28'),(73,'DarkCyan','#008B8B','2018-11-05 02:12:28','2018-11-05 02:12:28'),(74,'Teal','#008080','2018-11-05 02:12:28','2018-11-05 02:12:28'),(75,'Aqua','#00FFFF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(76,'Cyan','#00FFFF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(77,'LightCyan','#E0FFFF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(78,'PaleTurquoise','#AFEEEE','2018-11-05 02:12:28','2018-11-05 02:12:28'),(79,'Aquamarine','#7FFFD4','2018-11-05 02:12:28','2018-11-05 02:12:28'),(80,'Turquoise','#40E0D0','2018-11-05 02:12:28','2018-11-05 02:12:28'),(81,'MediumTurquoise','#48D1CC','2018-11-05 02:12:28','2018-11-05 02:12:28'),(82,'DarkTurquoise','#00CED1','2018-11-05 02:12:28','2018-11-05 02:12:28'),(83,'CadetBlue','#5F9EA0','2018-11-05 02:12:28','2018-11-05 02:12:28'),(84,'SteelBlue','#4682B4','2018-11-05 02:12:28','2018-11-05 02:12:28'),(85,'LightSteelBlue','#B0C4DE','2018-11-05 02:12:28','2018-11-05 02:12:28'),(86,'PowderBlue','#B0E0E6','2018-11-05 02:12:28','2018-11-05 02:12:28'),(87,'LightBlue','#ADD8E6','2018-11-05 02:12:28','2018-11-05 02:12:28'),(88,'SkyBlue','#87CEEB','2018-11-05 02:12:28','2018-11-05 02:12:28'),(89,'LightSkyBlue','#87CEFA','2018-11-05 02:12:28','2018-11-05 02:12:28'),(90,'DeepSkyBlue','#00BFFF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(91,'DodgerBlue','#1E90FF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(92,'CornflowerBlue','#6495ED','2018-11-05 02:12:28','2018-11-05 02:12:28'),(93,'MediumSlateBlue','#7B68EE','2018-11-05 02:12:28','2018-11-05 02:12:28'),(94,'RoyalBlue','#4169E1','2018-11-05 02:12:28','2018-11-05 02:12:28'),(95,'Blue','#0000FF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(96,'MediumBlue','#0000CD','2018-11-05 02:12:28','2018-11-05 02:12:28'),(97,'DarkBlue','#00008B','2018-11-05 02:12:28','2018-11-05 02:12:28'),(98,'Navy','#000080','2018-11-05 02:12:28','2018-11-05 02:12:28'),(99,'MidnightBlue','#191970','2018-11-05 02:12:29','2018-11-05 02:12:29'),(100,'Cornsilk','#FFF8DC','2018-11-05 02:12:29','2018-11-05 02:12:29'),(101,'BlanchedAlmond','#FFEBCD','2018-11-05 02:12:29','2018-11-05 02:12:29'),(102,'Bisque','#FFE4C4','2018-11-05 02:12:29','2018-11-05 02:12:29'),(103,'NavajoWhite','#FFDEAD','2018-11-05 02:12:29','2018-11-05 02:12:29'),(104,'Wheat','#F5DEB3','2018-11-05 02:12:29','2018-11-05 02:12:29'),(105,'BurlyWood','#DEB887','2018-11-05 02:12:29','2018-11-05 02:12:29'),(106,'Tan','#D2B48C','2018-11-05 02:12:29','2018-11-05 02:12:29'),(107,'RosyBrown','#BC8F8F','2018-11-05 02:12:29','2018-11-05 02:12:29'),(108,'SandyBrown','#F4A460','2018-11-05 02:12:29','2018-11-05 02:12:29'),(109,'Goldenrod','#DAA520','2018-11-05 02:12:29','2018-11-05 02:12:29'),(110,'DarkGoldenrod','#B8860B','2018-11-05 02:12:29','2018-11-05 02:12:29'),(111,'Peru','#CD853F','2018-11-05 02:12:29','2018-11-05 02:12:29'),(112,'Chocolate','#D2691E','2018-11-05 02:12:29','2018-11-05 02:12:29'),(113,'SaddleBrown','#8B4513','2018-11-05 02:12:29','2018-11-05 02:12:29'),(114,'Sienna','#A0522D','2018-11-05 02:12:29','2018-11-05 02:12:29'),(115,'Brown','#A52A2A','2018-11-05 02:12:29','2018-11-05 02:12:29'),(116,'Maroon','#800000','2018-11-05 02:12:29','2018-11-05 02:12:29'),(117,'White','#FFFFFF','2018-11-05 02:12:29','2018-11-05 02:12:29'),(118,'Snow','#FFFAFA','2018-11-05 02:12:29','2018-11-05 02:12:29'),(119,'Honeydew','#F0FFF0','2018-11-05 02:12:29','2018-11-05 02:12:29'),(120,'MintCream','#F5FFFA','2018-11-05 02:12:29','2018-11-05 02:12:29'),(121,'Azure','#F0FFFF','2018-11-05 02:12:29','2018-11-05 02:12:29'),(122,'AliceBlue','#F0F8FF','2018-11-05 02:12:29','2018-11-05 02:12:29'),(123,'GhostWhite','#F8F8FF','2018-11-05 02:12:29','2018-11-05 02:12:29'),(124,'WhiteSmoke','#F5F5F5','2018-11-05 02:12:29','2018-11-05 02:12:29'),(125,'Seashell','#FFF5EE','2018-11-05 02:12:29','2018-11-05 02:12:29'),(126,'Beige','#F5F5DC','2018-11-05 02:12:29','2018-11-05 02:12:29'),(127,'OldLace','#FDF5E6','2018-11-05 02:12:29','2018-11-05 02:12:29'),(128,'FloralWhite','#FFFAF0','2018-11-05 02:12:29','2018-11-05 02:12:29'),(129,'Ivory','#FFFFF0','2018-11-05 02:12:30','2018-11-05 02:12:30'),(130,'AntiqueWhite','#FAEBD7','2018-11-05 02:12:30','2018-11-05 02:12:30'),(131,'Linen','#FAF0E6','2018-11-05 02:12:30','2018-11-05 02:12:30'),(132,'LavenderBlush','#FFF0F5','2018-11-05 02:12:30','2018-11-05 02:12:30'),(133,'MistyRose','#FFE4E1','2018-11-05 02:12:30','2018-11-05 02:12:30'),(134,'Gainsboro','#DCDCDC','2018-11-05 02:12:30','2018-11-05 02:12:30'),(135,'LightGrey','#D3D3D3','2018-11-05 02:12:30','2018-11-05 02:12:30'),(136,'Silver','#C0C0C0','2018-11-05 02:12:30','2018-11-05 02:12:30'),(137,'DarkGray','#A9A9A9','2018-11-05 02:12:30','2018-11-05 02:12:30'),(138,'Gray','#808080','2018-11-05 02:12:30','2018-11-05 02:12:30'),(139,'DimGray','#696969','2018-11-05 02:12:30','2018-11-05 02:12:30'),(140,'LightSlateGray','#778899','2018-11-05 02:12:30','2018-11-05 02:12:30'),(141,'SlateGray','#708090','2018-11-05 02:12:30','2018-11-05 02:12:30'),(142,'DarkSlateGray','#2F4F4F','2018-11-05 02:12:30','2018-11-05 02:12:30'),(143,'Black','#000000','2018-11-05 02:12:30','2018-11-05 02:12:30'); /*!40000 ALTER TABLE `colors` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `combined_orders` -- DROP TABLE IF EXISTS `combined_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `combined_orders` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `shipping_address` text COLLATE utf8mb3_unicode_ci, `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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `combined_orders` -- LOCK TABLES `combined_orders` WRITE; /*!40000 ALTER TABLE `combined_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `combined_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `commission_histories` -- DROP TABLE IF EXISTS `commission_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `commission_histories` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `order_detail_id` int NOT NULL, `seller_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `commission_histories` -- LOCK TABLES `commission_histories` WRITE; /*!40000 ALTER TABLE `commission_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `commission_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contacts` -- DROP TABLE IF EXISTS `contacts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contacts` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_general_ci NOT NULL, `phone` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL, `content` text COLLATE utf8mb4_general_ci NOT NULL, `image` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `reply` text COLLATE utf8mb4_general_ci, `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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contacts` -- LOCK TABLES `contacts` WRITE; /*!40000 ALTER TABLE `contacts` DISABLE KEYS */; /*!40000 ALTER TABLE `contacts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `conversations` -- DROP TABLE IF EXISTS `conversations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `conversations` ( `id` int NOT NULL AUTO_INCREMENT, `sender_id` int NOT NULL, `receiver_id` int NOT NULL, `title` varchar(1000) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `sender_viewed` int NOT NULL DEFAULT '1', `receiver_viewed` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `conversations` -- LOCK TABLES `conversations` WRITE; /*!40000 ALTER TABLE `conversations` DISABLE KEYS */; /*!40000 ALTER TABLE `conversations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `countries` -- DROP TABLE IF EXISTS `countries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `countries` ( `id` int NOT NULL AUTO_INCREMENT, `code` varchar(2) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '', `name` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '', `zone_id` int NOT NULL DEFAULT '0', `status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `countries` -- LOCK TABLES `countries` WRITE; /*!40000 ALTER TABLE `countries` DISABLE KEYS */; INSERT INTO `countries` VALUES (1,'AF','Afghanistan',0,0,'2021-04-06 01:06:30','2021-10-11 00:34:13',NULL),(2,'AL','Albania',0,0,'2021-04-06 01:06:30',NULL,NULL),(3,'DZ','Algeria',0,0,'2021-04-06 01:06:30',NULL,NULL),(4,'AS','American Samoa',0,0,'2021-04-06 01:06:30',NULL,NULL),(5,'AD','Andorra',0,0,'2021-04-06 01:06:30',NULL,NULL),(6,'AO','Angola',0,0,'2021-04-06 01:06:30',NULL,NULL),(7,'AI','Anguilla',0,0,'2021-04-06 01:06:30',NULL,NULL),(8,'AQ','Antarctica',0,0,'2021-04-06 01:06:30',NULL,NULL),(9,'AG','Antigua And Barbuda',0,0,'2021-04-06 01:06:30',NULL,NULL),(10,'AR','Argentina',0,0,'2021-04-06 01:06:30',NULL,NULL),(11,'AM','Armenia',0,0,'2021-04-06 01:06:30',NULL,NULL),(12,'AW','Aruba',0,0,'2021-04-06 01:06:30',NULL,NULL),(13,'AU','Australia',0,0,'2021-04-06 01:06:30',NULL,NULL),(14,'AT','Austria',0,0,'2021-04-06 01:06:30',NULL,NULL),(15,'AZ','Azerbaijan',0,0,'2021-04-06 01:06:30',NULL,NULL),(16,'BS','Bahamas The',0,0,'2021-04-06 01:06:30',NULL,NULL),(17,'BH','Bahrain',0,0,'2021-04-06 01:06:30',NULL,NULL),(18,'BD','Bangladesh',0,0,'2021-04-06 01:06:30',NULL,NULL),(19,'BB','Barbados',0,0,'2021-04-06 01:06:30',NULL,NULL),(20,'BY','Belarus',0,0,'2021-04-06 01:06:30',NULL,NULL),(21,'BE','Belgium',0,0,'2021-04-06 01:06:30',NULL,NULL),(22,'BZ','Belize',0,0,'2021-04-06 01:06:30',NULL,NULL),(23,'BJ','Benin',0,0,'2021-04-06 01:06:30',NULL,NULL),(24,'BM','Bermuda',0,0,'2021-04-06 01:06:30',NULL,NULL),(25,'BT','Bhutan',0,0,'2021-04-06 01:06:30',NULL,NULL),(26,'BO','Bolivia',0,0,'2021-04-06 01:06:30',NULL,NULL),(27,'BA','Bosnia and Herzegovina',0,0,'2021-04-06 01:06:30',NULL,NULL),(28,'BW','Botswana',0,0,'2021-04-06 01:06:30',NULL,NULL),(29,'BV','Bouvet Island',0,0,'2021-04-06 01:06:30',NULL,NULL),(30,'BR','Brazil',0,0,'2021-04-06 01:06:30',NULL,NULL),(31,'IO','British Indian Ocean Territory',0,0,'2021-04-06 01:06:30',NULL,NULL),(32,'BN','Brunei',0,0,'2021-04-06 01:06:30',NULL,NULL),(33,'BG','Bulgaria',0,0,'2021-04-06 01:06:30',NULL,NULL),(34,'BF','Burkina Faso',0,0,'2021-04-06 01:06:30',NULL,NULL),(35,'BI','Burundi',0,0,'2021-04-06 01:06:30',NULL,NULL),(36,'KH','Cambodia',0,0,'2021-04-06 01:06:30',NULL,NULL),(37,'CM','Cameroon',0,0,'2021-04-06 01:06:30',NULL,NULL),(38,'CA','Canada',0,0,'2021-04-06 01:06:30',NULL,NULL),(39,'CV','Cape Verde',0,0,'2021-04-06 01:06:30',NULL,NULL),(40,'KY','Cayman Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(41,'CF','Central African Republic',0,0,'2021-04-06 01:06:30',NULL,NULL),(42,'TD','Chad',0,0,'2021-04-06 01:06:30',NULL,NULL),(43,'CL','Chile',0,0,'2021-04-06 01:06:30',NULL,NULL),(44,'CN','China',0,0,'2021-04-06 01:06:30',NULL,NULL),(45,'CX','Christmas Island',0,0,'2021-04-06 01:06:30',NULL,NULL),(46,'CC','Cocos (Keeling) Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(47,'CO','Colombia',0,0,'2021-04-06 01:06:30',NULL,NULL),(48,'KM','Comoros',0,0,'2021-04-06 01:06:30',NULL,NULL),(49,'CG','Republic Of The Congo',0,0,'2021-04-06 01:06:30',NULL,NULL),(50,'CD','Democratic Republic Of The Congo',0,0,'2021-04-06 01:06:30',NULL,NULL),(51,'CK','Cook Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(52,'CR','Costa Rica',0,0,'2021-04-06 01:06:30',NULL,NULL),(53,'CI','Cote D\'Ivoire (Ivory Coast)',0,0,'2021-04-06 01:06:30',NULL,NULL),(54,'HR','Croatia (Hrvatska)',0,0,'2021-04-06 01:06:30',NULL,NULL),(55,'CU','Cuba',0,0,'2021-04-06 01:06:30',NULL,NULL),(56,'CY','Cyprus',0,0,'2021-04-06 01:06:30',NULL,NULL),(57,'CZ','Czech Republic',0,0,'2021-04-06 01:06:30',NULL,NULL),(58,'DK','Denmark',0,0,'2021-04-06 01:06:30',NULL,NULL),(59,'DJ','Djibouti',0,0,'2021-04-06 01:06:30',NULL,NULL),(60,'DM','Dominica',0,0,'2021-04-06 01:06:30',NULL,NULL),(61,'DO','Dominican Republic',0,0,'2021-04-06 01:06:30',NULL,NULL),(62,'TP','East Timor',0,0,'2021-04-06 01:06:30',NULL,NULL),(63,'EC','Ecuador',0,0,'2021-04-06 01:06:30',NULL,NULL),(64,'EG','Egypt',0,0,'2021-04-06 01:06:30',NULL,NULL),(65,'SV','El Salvador',0,0,'2021-04-06 01:06:30',NULL,NULL),(66,'GQ','Equatorial Guinea',0,0,'2021-04-06 01:06:30',NULL,NULL),(67,'ER','Eritrea',0,0,'2021-04-06 01:06:30',NULL,NULL),(68,'EE','Estonia',0,0,'2021-04-06 01:06:30',NULL,NULL),(69,'ET','Ethiopia',0,0,'2021-04-06 01:06:30',NULL,NULL),(70,'XA','External Territories of Australia',0,0,'2021-04-06 01:06:30',NULL,NULL),(71,'FK','Falkland Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(72,'FO','Faroe Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(73,'FJ','Fiji Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(74,'FI','Finland',0,0,'2021-04-06 01:06:30',NULL,NULL),(75,'FR','France',0,0,'2021-04-06 01:06:30',NULL,NULL),(76,'GF','French Guiana',0,0,'2021-04-06 01:06:30',NULL,NULL),(77,'PF','French Polynesia',0,0,'2021-04-06 01:06:30',NULL,NULL),(78,'TF','French Southern Territories',0,0,'2021-04-06 01:06:30',NULL,NULL),(79,'GA','Gabon',0,0,'2021-04-06 01:06:30',NULL,NULL),(80,'GM','Gambia The',0,0,'2021-04-06 01:06:30',NULL,NULL),(81,'GE','Georgia',0,0,'2021-04-06 01:06:30',NULL,NULL),(82,'DE','Germany',0,0,'2021-04-06 01:06:30',NULL,NULL),(83,'GH','Ghana',0,0,'2021-04-06 01:06:30',NULL,NULL),(84,'GI','Gibraltar',0,0,'2021-04-06 01:06:30',NULL,NULL),(85,'GR','Greece',0,0,'2021-04-06 01:06:30',NULL,NULL),(86,'GL','Greenland',0,0,'2021-04-06 01:06:30',NULL,NULL),(87,'GD','Grenada',0,0,'2021-04-06 01:06:30',NULL,NULL),(88,'GP','Guadeloupe',0,0,'2021-04-06 01:06:30',NULL,NULL),(89,'GU','Guam',0,0,'2021-04-06 01:06:30',NULL,NULL),(90,'GT','Guatemala',0,0,'2021-04-06 01:06:30',NULL,NULL),(91,'XU','Guernsey and Alderney',0,0,'2021-04-06 01:06:30',NULL,NULL),(92,'GN','Guinea',0,0,'2021-04-06 01:06:30',NULL,NULL),(93,'GW','Guinea-Bissau',0,0,'2021-04-06 01:06:30',NULL,NULL),(94,'GY','Guyana',0,0,'2021-04-06 01:06:30',NULL,NULL),(95,'HT','Haiti',0,0,'2021-04-06 01:06:30',NULL,NULL),(96,'HM','Heard and McDonald Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(97,'HN','Honduras',0,0,'2021-04-06 01:06:30',NULL,NULL),(98,'HK','Hong Kong S.A.R.',0,0,'2021-04-06 01:06:30',NULL,NULL),(99,'HU','Hungary',0,0,'2021-04-06 01:06:30',NULL,NULL),(100,'IS','Iceland',0,0,'2021-04-06 01:06:30',NULL,NULL),(101,'IN','India',0,0,'2021-04-06 01:06:30',NULL,NULL),(102,'ID','Indonesia',0,0,'2021-04-06 01:06:30',NULL,NULL),(103,'IR','Iran',0,0,'2021-04-06 01:06:30',NULL,NULL),(104,'IQ','Iraq',0,0,'2021-04-06 01:06:30',NULL,NULL),(105,'IE','Ireland',0,0,'2021-04-06 01:06:30',NULL,NULL),(106,'IL','Israel',0,0,'2021-04-06 01:06:30',NULL,NULL),(107,'IT','Italy',0,0,'2021-04-06 01:06:30',NULL,NULL),(108,'JM','Jamaica',0,0,'2021-04-06 01:06:30',NULL,NULL),(109,'JP','Japan',0,0,'2021-04-06 01:06:30',NULL,NULL),(110,'XJ','Jersey',0,0,'2021-04-06 01:06:30',NULL,NULL),(111,'JO','Jordan',0,0,'2021-04-06 01:06:30',NULL,NULL),(112,'KZ','Kazakhstan',0,0,'2021-04-06 01:06:30',NULL,NULL),(113,'KE','Kenya',0,0,'2021-04-06 01:06:30',NULL,NULL),(114,'KI','Kiribati',0,0,'2021-04-06 01:06:30',NULL,NULL),(115,'KP','Korea North',0,0,'2021-04-06 01:06:30',NULL,NULL),(116,'KR','Korea South',0,0,'2021-04-06 01:06:30',NULL,NULL),(117,'KW','Kuwait',0,0,'2021-04-06 01:06:30',NULL,NULL),(118,'KG','Kyrgyzstan',0,0,'2021-04-06 01:06:30',NULL,NULL),(119,'LA','Laos',0,0,'2021-04-06 01:06:30',NULL,NULL),(120,'LV','Latvia',0,0,'2021-04-06 01:06:30',NULL,NULL),(121,'LB','Lebanon',0,0,'2021-04-06 01:06:30',NULL,NULL),(122,'LS','Lesotho',0,0,'2021-04-06 01:06:30',NULL,NULL),(123,'LR','Liberia',0,0,'2021-04-06 01:06:30',NULL,NULL),(124,'LY','Libya',0,0,'2021-04-06 01:06:30',NULL,NULL),(125,'LI','Liechtenstein',0,0,'2021-04-06 01:06:30',NULL,NULL),(126,'LT','Lithuania',0,0,'2021-04-06 01:06:30',NULL,NULL),(127,'LU','Luxembourg',0,0,'2021-04-06 01:06:30',NULL,NULL),(128,'MO','Macau S.A.R.',0,0,'2021-04-06 01:06:30',NULL,NULL),(129,'MK','Macedonia',0,0,'2021-04-06 01:06:30',NULL,NULL),(130,'MG','Madagascar',0,0,'2021-04-06 01:06:30',NULL,NULL),(131,'MW','Malawi',0,0,'2021-04-06 01:06:30',NULL,NULL),(132,'MY','Malaysia',0,0,'2021-04-06 01:06:30',NULL,NULL),(133,'MV','Maldives',0,0,'2021-04-06 01:06:30',NULL,NULL),(134,'ML','Mali',0,0,'2021-04-06 01:06:30',NULL,NULL),(135,'MT','Malta',0,0,'2021-04-06 01:06:30',NULL,NULL),(136,'XM','Man (Isle of)',0,0,'2021-04-06 01:06:30',NULL,NULL),(137,'MH','Marshall Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(138,'MQ','Martinique',0,0,'2021-04-06 01:06:30',NULL,NULL),(139,'MR','Mauritania',0,0,'2021-04-06 01:06:30',NULL,NULL),(140,'MU','Mauritius',0,0,'2021-04-06 01:06:30',NULL,NULL),(141,'YT','Mayotte',0,0,'2021-04-06 01:06:30',NULL,NULL),(142,'MX','Mexico',0,0,'2021-04-06 01:06:30',NULL,NULL),(143,'FM','Micronesia',0,0,'2021-04-06 01:06:30',NULL,NULL),(144,'MD','Moldova',0,0,'2021-04-06 01:06:30',NULL,NULL),(145,'MC','Monaco',0,0,'2021-04-06 01:06:30',NULL,NULL),(146,'MN','Mongolia',0,0,'2021-04-06 01:06:30',NULL,NULL),(147,'MS','Montserrat',0,0,'2021-04-06 01:06:30',NULL,NULL),(148,'MA','Morocco',0,0,'2021-04-06 01:06:30',NULL,NULL),(149,'MZ','Mozambique',0,0,'2021-04-06 01:06:30',NULL,NULL),(150,'MM','Myanmar',0,0,'2021-04-06 01:06:30',NULL,NULL),(151,'NA','Namibia',0,0,'2021-04-06 01:06:30',NULL,NULL),(152,'NR','Nauru',0,0,'2021-04-06 01:06:30',NULL,NULL),(153,'NP','Nepal',0,0,'2021-04-06 01:06:30',NULL,NULL),(154,'AN','Netherlands Antilles',0,0,'2021-04-06 01:06:30',NULL,NULL),(155,'NL','Netherlands The',0,0,'2021-04-06 01:06:30',NULL,NULL),(156,'NC','New Caledonia',0,0,'2021-04-06 01:06:30',NULL,NULL),(157,'NZ','New Zealand',0,0,'2021-04-06 01:06:30',NULL,NULL),(158,'NI','Nicaragua',0,0,'2021-04-06 01:06:30',NULL,NULL),(159,'NE','Niger',0,0,'2021-04-06 01:06:30',NULL,NULL),(160,'NG','Nigeria',0,0,'2021-04-06 01:06:30',NULL,NULL),(161,'NU','Niue',0,0,'2021-04-06 01:06:30',NULL,NULL),(162,'NF','Norfolk Island',0,0,'2021-04-06 01:06:30',NULL,NULL),(163,'MP','Northern Mariana Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(164,'NO','Norway',0,0,'2021-04-06 01:06:30',NULL,NULL),(165,'OM','Oman',0,0,'2021-04-06 01:06:30',NULL,NULL),(166,'PK','Pakistan',0,0,'2021-04-06 01:06:30',NULL,NULL),(167,'PW','Palau',0,0,'2021-04-06 01:06:30',NULL,NULL),(168,'PS','Palestinian Territory Occupied',0,0,'2021-04-06 01:06:30',NULL,NULL),(169,'PA','Panama',0,0,'2021-04-06 01:06:30',NULL,NULL),(170,'PG','Papua new Guinea',0,0,'2021-04-06 01:06:30',NULL,NULL),(171,'PY','Paraguay',0,0,'2021-04-06 01:06:30',NULL,NULL),(172,'PE','Peru',0,0,'2021-04-06 01:06:30',NULL,NULL),(173,'PH','Philippines',0,0,'2021-04-06 01:06:30',NULL,NULL),(174,'PN','Pitcairn Island',0,0,'2021-04-06 01:06:30',NULL,NULL),(175,'PL','Poland',0,0,'2021-04-06 01:06:30',NULL,NULL),(176,'PT','Portugal',0,0,'2021-04-06 01:06:30',NULL,NULL),(177,'PR','Puerto Rico',0,0,'2021-04-06 01:06:30',NULL,NULL),(178,'QA','Qatar',0,0,'2021-04-06 01:06:30',NULL,NULL),(179,'RE','Reunion',0,0,'2021-04-06 01:06:30',NULL,NULL),(180,'RO','Romania',0,0,'2021-04-06 01:06:30',NULL,NULL),(181,'RU','Russia',0,0,'2021-04-06 01:06:30',NULL,NULL),(182,'RW','Rwanda',0,0,'2021-04-06 01:06:30',NULL,NULL),(183,'SH','Saint Helena',0,0,'2021-04-06 01:06:30',NULL,NULL),(184,'KN','Saint Kitts And Nevis',0,0,'2021-04-06 01:06:30',NULL,NULL),(185,'LC','Saint Lucia',0,0,'2021-04-06 01:06:30',NULL,NULL),(186,'PM','Saint Pierre and Miquelon',0,0,'2021-04-06 01:06:30',NULL,NULL),(187,'VC','Saint Vincent And The Grenadines',0,0,'2021-04-06 01:06:30',NULL,NULL),(188,'WS','Samoa',0,0,'2021-04-06 01:06:30',NULL,NULL),(189,'SM','San Marino',0,0,'2021-04-06 01:06:30',NULL,NULL),(190,'ST','Sao Tome and Principe',0,0,'2021-04-06 01:06:30',NULL,NULL),(191,'SA','Saudi Arabia',0,0,'2021-04-06 01:06:30',NULL,NULL),(192,'SN','Senegal',0,0,'2021-04-06 01:06:30',NULL,NULL),(193,'RS','Serbia',0,0,'2021-04-06 01:06:30',NULL,NULL),(194,'SC','Seychelles',0,0,'2021-04-06 01:06:30',NULL,NULL),(195,'SL','Sierra Leone',0,0,'2021-04-06 01:06:30',NULL,NULL),(196,'SG','Singapore',0,0,'2021-04-06 01:06:30',NULL,NULL),(197,'SK','Slovakia',0,0,'2021-04-06 01:06:30',NULL,NULL),(198,'SI','Slovenia',0,0,'2021-04-06 01:06:30',NULL,NULL),(199,'XG','Smaller Territories of the UK',0,0,'2021-04-06 01:06:30',NULL,NULL),(200,'SB','Solomon Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(201,'SO','Somalia',0,0,'2021-04-06 01:06:30',NULL,NULL),(202,'ZA','South Africa',0,0,'2021-04-06 01:06:30',NULL,NULL),(203,'GS','South Georgia',0,0,'2021-04-06 01:06:30',NULL,NULL),(204,'SS','South Sudan',0,0,'2021-04-06 01:06:30',NULL,NULL),(205,'ES','Spain',0,0,'2021-04-06 01:06:30',NULL,NULL),(206,'LK','Sri Lanka',0,0,'2021-04-06 01:06:30',NULL,NULL),(207,'SD','Sudan',0,0,'2021-04-06 01:06:30',NULL,NULL),(208,'SR','Suriname',0,0,'2021-04-06 01:06:30',NULL,NULL),(209,'SJ','Svalbard And Jan Mayen Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(210,'SZ','Swaziland',0,0,'2021-04-06 01:06:30',NULL,NULL),(211,'SE','Sweden',0,0,'2021-04-06 01:06:30',NULL,NULL),(212,'CH','Switzerland',0,0,'2021-04-06 01:06:30',NULL,NULL),(213,'SY','Syria',0,0,'2021-04-06 01:06:30',NULL,NULL),(214,'TW','Taiwan',0,0,'2021-04-06 01:06:30',NULL,NULL),(215,'TJ','Tajikistan',0,0,'2021-04-06 01:06:30',NULL,NULL),(216,'TZ','Tanzania',0,0,'2021-04-06 01:06:30',NULL,NULL),(217,'TH','Thailand',0,0,'2021-04-06 01:06:30',NULL,NULL),(218,'TG','Togo',0,0,'2021-04-06 01:06:30',NULL,NULL),(219,'TK','Tokelau',0,0,'2021-04-06 01:06:30',NULL,NULL),(220,'TO','Tonga',0,0,'2021-04-06 01:06:30',NULL,NULL),(221,'TT','Trinidad And Tobago',0,0,'2021-04-06 01:06:30',NULL,NULL),(222,'TN','Tunisia',0,0,'2021-04-06 01:06:30',NULL,NULL),(223,'TR','Turkey',0,0,'2021-04-06 01:06:30',NULL,NULL),(224,'TM','Turkmenistan',0,0,'2021-04-06 01:06:30',NULL,NULL),(225,'TC','Turks And Caicos Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(226,'TV','Tuvalu',0,0,'2021-04-06 01:06:30',NULL,NULL),(227,'UG','Uganda',0,0,'2021-04-06 01:06:30',NULL,NULL),(228,'UA','Ukraine',0,0,'2021-04-06 01:06:30',NULL,NULL),(229,'AE','United Arab Emirates',0,0,'2021-04-06 01:06:30',NULL,NULL),(230,'GB','United Kingdom',0,0,'2021-04-06 01:06:30',NULL,NULL),(231,'US','United States',0,0,'2021-04-06 01:06:30',NULL,NULL),(232,'UM','United States Minor Outlying Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(233,'UY','Uruguay',0,0,'2021-04-06 01:06:30',NULL,NULL),(234,'UZ','Uzbekistan',0,0,'2021-04-06 01:06:30',NULL,NULL),(235,'VU','Vanuatu',0,0,'2021-04-06 01:06:30',NULL,NULL),(236,'VA','Vatican City State (Holy See)',0,0,'2021-04-06 01:06:30',NULL,NULL),(237,'VE','Venezuela',0,0,'2021-04-06 01:06:30',NULL,NULL),(238,'VN','Vietnam',0,0,'2021-04-06 01:06:30',NULL,NULL),(239,'VG','Virgin Islands (British)',0,0,'2021-04-06 01:06:30',NULL,NULL),(240,'VI','Virgin Islands (US)',0,0,'2021-04-06 01:06:30',NULL,NULL),(241,'WF','Wallis And Futuna Islands',0,0,'2021-04-06 01:06:30',NULL,NULL),(242,'EH','Western Sahara',0,0,'2021-04-06 01:06:30',NULL,NULL),(243,'YE','Yemen',0,0,'2021-04-06 01:06:30',NULL,NULL),(244,'YU','Yugoslavia',0,0,'2021-04-06 01:06:30',NULL,NULL),(245,'ZM','Zambia',0,0,'2021-04-06 01:06:30',NULL,NULL),(246,'ZW','Zimbabwe',0,0,'2021-04-06 01:06:30',NULL,NULL); /*!40000 ALTER TABLE `countries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `coupon_usages` -- DROP TABLE IF EXISTS `coupon_usages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `coupon_usages` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `coupon_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `coupon_usages` -- LOCK TABLES `coupon_usages` WRITE; /*!40000 ALTER TABLE `coupon_usages` DISABLE KEYS */; /*!40000 ALTER TABLE `coupon_usages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `coupons` -- DROP TABLE IF EXISTS `coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `coupons` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `type` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `code` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `details` longtext COLLATE utf8mb3_unicode_ci NOT NULL, `discount` double(20,2) NOT NULL, `discount_type` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `start_date` int DEFAULT NULL, `end_date` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `coupons` -- LOCK TABLES `coupons` WRITE; /*!40000 ALTER TABLE `coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `coupons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `currencies` -- DROP TABLE IF EXISTS `currencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `currencies` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `symbol` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `exchange_rate` double(10,5) NOT NULL, `status` int NOT NULL DEFAULT '0', `code` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `currencies` -- LOCK TABLES `currencies` WRITE; /*!40000 ALTER TABLE `currencies` DISABLE KEYS */; INSERT INTO `currencies` VALUES (1,'U.S. Dollar','$',1.00000,1,'USD','2018-10-09 11:35:08','2018-10-17 05:50:52'),(2,'Australian Dollar','$',1.28000,1,'AUD','2018-10-09 11:35:08','2019-02-04 05:51:55'),(5,'Brazilian Real','R$',3.25000,1,'BRL','2018-10-09 11:35:08','2018-10-17 05:51:00'),(6,'Canadian Dollar','$',1.27000,1,'CAD','2018-10-09 11:35:08','2018-10-09 11:35:08'),(7,'Czech Koruna','K%�',20.65000,1,'CZK','2018-10-09 11:35:08','2018-10-09 11:35:08'),(8,'Danish Krone','kr',6.05000,1,'DKK','2018-10-09 11:35:08','2018-10-09 11:35:08'),(9,'Euro','���',0.85000,1,'EUR','2018-10-09 11:35:08','2018-10-09 11:35:08'),(10,'Hong Kong Dollar','$',7.83000,1,'HKD','2018-10-09 11:35:08','2018-10-09 11:35:08'),(11,'Hungarian Forint','Ft',255.24000,1,'HUF','2018-10-09 11:35:08','2018-10-09 11:35:08'),(12,'Israeli New Sheqel','���',3.48000,1,'ILS','2018-10-09 11:35:08','2018-10-09 11:35:08'),(13,'Japanese Yen',',%�',107.12000,1,'JPY','2018-10-09 11:35:08','2018-10-09 11:35:08'),(14,'Malaysian Ringgit','RM',3.91000,1,'MYR','2018-10-09 11:35:08','2018-10-09 11:35:08'),(15,'Mexican Peso','$',18.72000,1,'MXN','2018-10-09 11:35:08','2018-10-09 11:35:08'),(16,'Norwegian Krone','kr',7.83000,1,'NOK','2018-10-09 11:35:08','2018-10-09 11:35:08'),(17,'New Zealand Dollar','$',1.38000,1,'NZD','2018-10-09 11:35:08','2018-10-09 11:35:08'),(18,'Philippine Peso','���%',52.26000,1,'PHP','2018-10-09 11:35:08','2018-10-09 11:35:08'),(19,'Polish Zloty','z<%�',3.39000,1,'PLN','2018-10-09 11:35:08','2018-10-09 11:35:08'),(20,'Pound Sterling',',%�',0.72000,1,'GBP','2018-10-09 11:35:08','2018-10-09 11:35:08'),(21,'Russian Ruble','d%�d%�h%�%',55.93000,1,'RUB','2018-10-09 11:35:08','2018-10-09 11:35:08'),(22,'Singapore Dollar','$',1.32000,1,'SGD','2018-10-09 11:35:08','2018-10-09 11:35:08'),(23,'Swedish Krona','kr',8.19000,1,'SEK','2018-10-09 11:35:08','2018-10-09 11:35:08'),(24,'Swiss Franc','CHF',0.94000,1,'CHF','2018-10-09 11:35:08','2018-10-09 11:35:08'),(26,'Thai Baht','�U%%',31.39000,1,'THB','2018-10-09 11:35:08','2018-10-09 11:35:08'),(27,'Taka','��%',84.00000,1,'BDT','2018-10-09 11:35:08','2018-12-02 05:16:13'),(28,'Indian Rupee','Rs',68.45000,1,'INR','2019-07-07 10:33:46','2025-05-24 10:33:46'); /*!40000 ALTER TABLE `currencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `custom_alerts` -- DROP TABLE IF EXISTS `custom_alerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `custom_alerts` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `status` int NOT NULL DEFAULT '0', `type` varchar(191) COLLATE utf8mb4_general_ci NOT NULL, `banner` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `link` varchar(191) COLLATE utf8mb4_general_ci NOT NULL, `description` text COLLATE utf8mb4_general_ci NOT NULL, `text_color` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_general_ci 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=201 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `custom_alerts` -- LOCK TABLES `custom_alerts` WRITE; /*!40000 ALTER TABLE `custom_alerts` DISABLE KEYS */; INSERT INTO `custom_alerts` 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-26 20:02:20','2024-03-27 17:21:29'),(200,0,'small',NULL,'#','<p>You can earn club points by reviewing the products you���ve purchased. Submit your review <a href=\"https://demo.activeitzone.com/purchase_history?to_review=1\">here.</a></p>','dark','#ffffff','2024-03-26 14:02:20','2025-06-22 02:46:59'); /*!40000 ALTER TABLE `custom_alerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `custom_label_translations` -- DROP TABLE IF EXISTS `custom_label_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `custom_label_translations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `custom_label_id` bigint NOT NULL, `text` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `custom_label_translations` -- LOCK TABLES `custom_label_translations` WRITE; /*!40000 ALTER TABLE `custom_label_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `custom_label_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `custom_labels` -- DROP TABLE IF EXISTS `custom_labels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `custom_labels` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `text` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `background_color` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `text_color` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `seller_access` tinyint NOT NULL DEFAULT '0' COMMENT 'Seller can access admin custom label; 0 = No 1 = Yes', `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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `custom_labels` -- LOCK TABLES `custom_labels` WRITE; /*!40000 ALTER TABLE `custom_labels` DISABLE KEYS */; /*!40000 ALTER TABLE `custom_labels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `custom_sale_alerts` -- DROP TABLE IF EXISTS `custom_sale_alerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `custom_sale_alerts` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `custom_sale_alerts` -- LOCK TABLES `custom_sale_alerts` WRITE; /*!40000 ALTER TABLE `custom_sale_alerts` DISABLE KEYS */; /*!40000 ALTER TABLE `custom_sale_alerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_package_payments` -- DROP TABLE IF EXISTS `customer_package_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_package_payments` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `customer_package_id` int NOT NULL, `payment_method` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `amount` double(20,2) NOT NULL, `payment_details` longtext COLLATE utf8mb3_unicode_ci, `approval` int NOT NULL DEFAULT '1', `offline_payment` int NOT NULL DEFAULT '2' COMMENT '1=offline payment\r\n2=online paymnet', `reciept` varchar(150) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_package_payments` -- LOCK TABLES `customer_package_payments` WRITE; /*!40000 ALTER TABLE `customer_package_payments` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_package_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_package_translations` -- DROP TABLE IF EXISTS `customer_package_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_package_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `customer_package_id` bigint NOT NULL, `name` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_package_translations` -- LOCK TABLES `customer_package_translations` WRITE; /*!40000 ALTER TABLE `customer_package_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_package_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_packages` -- DROP TABLE IF EXISTS `customer_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_packages` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `amount` double(20,2) DEFAULT NULL, `product_upload` int DEFAULT NULL, `logo` varchar(150) COLLATE utf8mb3_unicode_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_packages` -- LOCK TABLES `customer_packages` WRITE; /*!40000 ALTER TABLE `customer_packages` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_product_translations` -- DROP TABLE IF EXISTS `customer_product_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_product_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `customer_product_id` bigint NOT NULL, `name` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `unit` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb3_unicode_ci, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_product_translations` -- LOCK TABLES `customer_product_translations` WRITE; /*!40000 ALTER TABLE `customer_product_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_product_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_products` -- DROP TABLE IF EXISTS `customer_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `customer_products` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `published` int NOT NULL DEFAULT '0', `status` int NOT NULL DEFAULT '0', `added_by` varchar(50) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `user_id` int DEFAULT NULL, `category_id` int DEFAULT NULL, `subcategory_id` int DEFAULT NULL, `subsubcategory_id` int DEFAULT NULL, `brand_id` int DEFAULT NULL, `photos` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `thumbnail_img` varchar(150) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `conditon` varchar(50) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `location` text COLLATE utf8mb3_unicode_ci, `video_provider` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `video_link` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `unit` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `tags` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `description` mediumtext COLLATE utf8mb3_unicode_ci, `unit_price` double(20,2) DEFAULT '0.00', `meta_title` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_description` varchar(500) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_img` varchar(150) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `pdf` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `slug` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer_products` -- LOCK TABLES `customer_products` WRITE; /*!40000 ALTER TABLE `customer_products` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dynamic_popups` -- DROP TABLE IF EXISTS `dynamic_popups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dynamic_popups` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `status` int NOT NULL DEFAULT '0', `title` varchar(191) COLLATE utf8mb4_general_ci NOT NULL, `summary` text COLLATE utf8mb4_general_ci NOT NULL, `banner` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `btn_link` varchar(191) COLLATE utf8mb4_general_ci NOT NULL, `btn_text` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `btn_text_color` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `btn_background_color` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `show_subscribe_form` varchar(191) COLLATE utf8mb4_general_ci 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=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dynamic_popups` -- LOCK TABLES `dynamic_popups` WRITE; /*!40000 ALTER TABLE `dynamic_popups` DISABLE KEYS */; INSERT INTO `dynamic_popups` VALUES (1,1,'Subscribe to Our Newsletter','Subscribe our newsletter for coupon, offer and exciting promotional discount..',NULL,'#','Subscribe Now','white','#baa185','on','2024-03-27 16:32:51','2024-03-27 22:33:24'),(100,0,'Product review','We���d Love to Hear from You!\nYour feedback helps us grow and serve you better. If you���ve enjoyed your experience, please take a moment to leave us a quick review. It means the world to us!',NULL,'https://demo.activeitzone.com/purchase_history?to_review=1','Review,%�Your,%�Products','white','#baa185',NULL,'2025-03-27 16:32:51','2025-03-27 22:33:24'); /*!40000 ALTER TABLE `dynamic_popups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `element_styles` -- DROP TABLE IF EXISTS `element_styles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `element_styles` ( `id` int NOT NULL AUTO_INCREMENT, `element_type_id` int NOT NULL, `name` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `value` text COLLATE utf8mb4_general_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `element_styles` -- LOCK TABLES `element_styles` WRITE; /*!40000 ALTER TABLE `element_styles` DISABLE KEYS */; INSERT INTO `element_styles` VALUES (1,1,'top_header_bg_color','#ffffff','2025-07-28 04:46:27','2025-07-28 07:58:05'),(2,1,'middle_header_bg_color','#ffffff','2025-07-28 04:46:27','2025-07-28 04:46:27'),(3,1,'bottom_header_bg_color','#ff0000','2025-07-28 04:46:27','2025-07-29 01:04:22'),(4,1,'top_header_text_color','#857E7E','2025-07-28 04:46:27','2025-07-28 07:58:05'),(5,1,'middle_header_text_color','#857E7E','2025-07-28 04:46:27','2025-07-29 01:04:22'),(6,1,'bottom_header_text_color','#ffffff','2025-07-28 04:50:54','2025-07-28 04:50:54'),(7,2,'top_header_bg_color','#FFE200','2025-07-28 08:12:22','2025-07-28 08:12:22'),(8,2,'middle_header_bg_color','#FFE200','2025-07-28 08:12:22','2025-07-28 08:12:22'),(9,2,'bottom_header_bg_color','#262522','2025-07-28 08:12:22','2025-07-28 08:12:22'),(10,2,'top_header_text_color','#857E7E','2025-07-28 08:12:22','2025-07-28 08:12:22'),(11,2,'middle_header_text_color','#857E7E','2025-07-28 08:12:22','2025-07-29 01:08:36'),(12,2,'bottom_header_text_color','#ffffff','2025-07-28 08:12:22','2025-07-28 08:12:41'),(13,3,'top_header_bg_color','#6A0DAD','2025-07-28 08:14:29','2025-07-28 08:14:29'),(14,3,'middle_header_bg_color','#6A0DAD','2025-07-28 08:14:29','2025-07-28 08:14:29'),(15,3,'bottom_header_bg_color','#6A0DAD','2025-07-28 08:14:29','2025-07-28 08:14:29'),(16,3,'top_header_text_color','#BFBAC2','2025-07-28 08:14:30','2025-07-28 08:14:30'),(17,3,'middle_header_text_color','#BFBAC2','2025-07-28 08:14:30','2025-07-29 01:11:43'),(18,3,'bottom_header_text_color','#ffffff','2025-07-28 08:14:30','2025-07-28 08:14:30'),(19,4,'top_header_bg_color','#6A0DAD','2025-07-28 08:15:31','2025-07-28 08:15:31'),(20,4,'middle_header_bg_color','#ffffff','2025-07-28 08:15:32','2025-07-28 08:15:32'),(21,4,'bottom_header_bg_color','#ffffff','2025-07-28 08:15:32','2025-07-28 08:15:32'),(22,4,'top_header_text_color','#BFBAC2','2025-07-28 08:15:32','2025-07-28 08:15:32'),(23,4,'middle_header_text_color','#857E7E','2025-07-28 08:15:32','2025-07-29 01:14:32'),(24,4,'bottom_header_text_color','#6A0DAD','2025-07-28 08:15:32','2025-07-28 08:15:32'),(25,5,'top_header_bg_color','#4B0082','2025-07-28 08:18:41','2025-07-29 03:01:21'),(26,5,'middle_header_bg_color','#4B0082','2025-07-28 08:18:41','2025-07-28 08:18:41'),(27,5,'top_header_text_color','#ffffff','2025-07-28 08:18:41','2025-07-29 00:05:50'),(28,5,'middle_header_text_color','#ffffff','2025-07-28 08:18:41','2025-07-29 01:15:43'),(29,6,'top_header_bg_color','#ffffff','2025-10-22 06:31:28','2025-10-22 06:31:28'),(30,6,'bottom_header_bg_color','#ffffff','2025-10-22 06:31:28','2025-10-22 06:31:28'),(31,6,'top_header_text_color','#000000','2025-10-22 06:31:28','2025-10-22 06:31:28'),(32,6,'bottom_header_text_color','#000000','2025-10-22 06:31:28','2025-10-22 06:31:28'); /*!40000 ALTER TABLE `element_styles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `element_translations` -- DROP TABLE IF EXISTS `element_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `element_translations` ( `id` bigint NOT NULL, `element_id` bigint NOT NULL, `name` varchar(50) COLLATE utf8mb4_general_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `element_translations` -- LOCK TABLES `element_translations` WRITE; /*!40000 ALTER TABLE `element_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `element_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `element_types` -- DROP TABLE IF EXISTS `element_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `element_types` ( `id` int NOT NULL AUTO_INCREMENT, `element_id` int NOT NULL, `name` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `is_default` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `element_types` -- LOCK TABLES `element_types` WRITE; /*!40000 ALTER TABLE `element_types` DISABLE KEYS */; INSERT INTO `element_types` VALUES (1,1,'Header 1',0,'2025-07-28 01:54:52','2025-07-29 05:13:41'),(2,1,'Header 2',0,'2025-07-28 01:56:28','2025-07-29 05:13:41'),(3,1,'Header 3',0,'2025-07-28 01:56:40','2025-07-29 05:13:41'),(4,1,'Header 4',0,'2025-07-28 01:56:52','2025-07-29 05:13:41'),(5,1,'Header 5',0,'2025-07-28 02:41:11','2025-07-29 05:13:41'),(6,1,'Header 6',0,'2025-10-22 06:31:28','2025-10-22 06:31:28'); /*!40000 ALTER TABLE `element_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `elements` -- DROP TABLE IF EXISTS `elements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `elements` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `elements` -- LOCK TABLES `elements` WRITE; /*!40000 ALTER TABLE `elements` DISABLE KEYS */; INSERT INTO `elements` VALUES (1,'Header','2025-07-28 00:02:29','2025-07-28 00:02:29'); /*!40000 ALTER TABLE `elements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_templates` -- DROP TABLE IF EXISTS `email_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `email_templates` ( `id` int NOT NULL AUTO_INCREMENT, `receiver` varchar(20) COLLATE utf8mb4_general_ci NOT NULL, `identifier` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `email_type` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `subject` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `default_text` text COLLATE utf8mb4_general_ci, `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) COLLATE utf8mb4_general_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_templates` -- LOCK TABLES `email_templates` WRITE; /*!40000 ALTER TABLE `email_templates` DISABLE KEYS */; INSERT INTO `email_templates` 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-28 23:31:58','2024-09-04 16:23: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 00:02:45','2024-09-04 16:23: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 00:05:00','2024-09-03 16:28: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 17:52:02','2024-09-07 22:12: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;\">Thank you for creating your shop on <span style=\"font-size: 14.6667px;\">[[store_name]]</span>! We are excited to have you as part of our seller network.</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;\">Your shop is currently pending approval. Once approved, you will be able to log in, manage your store, and list your products. We will notify you as soon as your shop is approved.</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 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 17:52:02','2024-09-07 22:12: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 17:52:02','2024-09-03 16:27: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 17:52:02','2024-09-08 17:29: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 17:52:02','2024-09-03 16:29: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-02 23:17:09','2024-09-04 16:17: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-02 23:17:19','2024-09-04 16:17: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-02 23:22:18','2024-09-07 22:13:04'),(12,'admin','order_placed_email_to_admin','Order Placed ','Order Placed - [[order_code]]',NULL,0,1,0,NULL,'2024-09-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-08 17:47: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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-02 23:33:01','2024-09-07 22:12: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-07 22:30: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 22:48: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 00:31:38','2024-09-08 17:47: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 00:31:38','2024-09-08 17:47: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 00:31:38','2024-09-08 17:47: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 00:31:38','2024-09-08 17:47:53'),(53,'seller','email_verification_for_registration_seller','Email Verification for Registration','Email Verification on [[store_name]]','<span id=\"docs-internal-guid-b30785bd-7fff-1e0b-e705-8fd54008f465\"><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"background-color: transparent; font-family: Roboto, sans-serif; font-size: 11pt; white-space-collapse: preserve;\">Thank you for choosing [[store_name]] to grow your business! To register as a seller, we need you to confirm your email address.</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\">Your email verification code is [[code]]</span></font></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;\">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=\"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;\">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>',1,0,1,NULL,'2024-09-04 00:31:38','2025-01-15 10:37:36'),(54,'customer','email_verification_for_registration_customer','Email Verification for Registration','Email Verification on [[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 Customer,</span></p> <p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><span style=\"background-color: transparent; font-family: Roboto, sans-serif; font-size: 11pt; white-space-collapse: preserve;\">Thank you for choosing [[store_name]]! We���re thrilled to welcome you to,%�our,%�community.</span></p><p dir=\"ltr\" style=\"margin-top: 12pt; margin-bottom: 12pt; line-height: 1.38;\"><font face=\"Roboto, sans-serif\"><span style=\"font-size: 14.6667px; white-space-collapse: preserve;\">Your email verification code is [[code]]</span></font></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;\">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=\"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;\">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>',1,0,1,NULL,'2024-09-03 18:31:38','2025-01-15 04:37:36'),(55,'customer','wallet_recharge_email_to_customer','Wallet Recharge Confirmation','Your Wallet Has Been Recharged on [[store_name]]','<span id=\"docs-internal-guid-b30785bd-7fff-1e0b-e705-8fd54008f465\">\r\n <p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\">\r\n <span style=\"font-size: 11pt; font-family: Roboto, sans-serif; font-weight: 700; background-color: transparent; vertical-align: baseline;\">Dear [[customer_name]],</span>\r\n </p>\r\n \r\n <p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\">\r\n <span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; vertical-align: baseline;\">\r\n This is to confirm that your wallet has been successfully recharged.\r\n </span>\r\n </p>\r\n\r\n <p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\">\r\n <span style=\"font-size: 11pt; font-family: Roboto, sans-serif; font-weight: 700; background-color: transparent; vertical-align: baseline;\">Payment Details:</span>\r\n </p>\r\n\r\n <ul style=\"margin-bottom: 0px; padding-inline-start: 48px;\">\r\n <li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent;\" aria-level=\"1\">\r\n <p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:0pt;\" role=\"presentation\">\r\n <span style=\"font-size: 11pt; font-weight: 700;\">Payment Date:</span>\r\n <span> [[date]]</span>\r\n </p>\r\n </li>\r\n <li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent;\" aria-level=\"1\">\r\n <p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\">\r\n <span style=\"font-size: 11pt; font-weight: 700;\">Amount Rechaged:</span>\r\n <span> [[amount]]</span>\r\n </p>\r\n </li>\r\n <li dir=\"ltr\" style=\"list-style-type: disc; font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent;\" aria-level=\"1\">\r\n <p dir=\"ltr\" style=\"line-height:1.38;margin-top:0pt;margin-bottom:12pt;\" role=\"presentation\">\r\n <span style=\"font-size: 11pt; font-weight: 700;\">Payment Method:</span>\r\n <span> [[payment_method]]</span>\r\n </p>\r\n </li>\r\n </ul>\r\n\r\n <p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\">\r\n <span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; vertical-align: baseline;\">\r\n If you have any questions or need assistance, feel free to contact us at [[admin_email]].\r\n </span>\r\n </p>\r\n\r\n <p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\">\r\n <span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; vertical-align: baseline;\">\r\n Best regards,<br>\r\n The [[store_name]] Team\r\n </span>\r\n </p>\r\n</span>',1,0,1,NULL,'2025-06-03 16:05:23','2025-06-03 16:05:23'),(56,'seller','email_update_verification_seller','Email Update Verification','Verify Your New Email Address for Your [[store_name]] Seller Account','<span id=\"docs-internal-guid-update-seller\"><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;\">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;\">We received a request to change the email address associated with your seller account on [[store_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;\">To verify your new email address and complete the update, please click 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;\">[[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;\">If you did not request this change, 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;\">For any assistance, contact us at </span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent; font-weight: 700;\">[[admin_email]]</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent;\">.</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;\">Thank you,</span><br><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent;\">The [[store_name]] Team</span></p></span>',1,0,1,NULL,'2025-07-09 13:42:01','2025-07-09 13:42:01'),(57,'customer','email_update_verification_customer','Email Update Verification','Confirm Your New Email Address for [[store_name]]','<span id=\"docs-internal-guid-update-customer\"><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;\">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;\">We received a request to change the email address associated with your [[store_name]] account.</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;\">To verify your new email address and complete the update, please click 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;\">[[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;\">If you did not request this change, 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;\">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;\">[[admin_email]]</span><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent;\">.</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;\">Thank you,</span><br><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; background-color: transparent;\">The [[store_name]] Team</span></p></span>',1,0,1,NULL,'2025-07-09 13:42:01','2025-07-09 13:42:01'),(58,'customer','change_email_verification_code_customer','Verification Code for Email Update','Verify Your New Email Address on [[store_name]]','<span id=\"docs-internal-guid-update-verification-code-customer\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; font-weight: 700;\">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;\">We received a request to change the email address associated with your [[store_name]] account.</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;\">To confirm this change, please use the Code sent below:</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 14pt; font-family: Roboto, sans-serif; font-weight: bold;\">[[code]]</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;\">This Code is for verifying your new email: <strong>[[new_email]]</strong></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;\">If you did not request this, please ignore the email or contact support.</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;\">For any questions, contact us at <strong>[[admin_email]]</strong></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;\">Thank you,<br>The [[store_name]] Team</span></p></span>',1,0,1,NULL,'2025-07-09 13:42:01','2025-07-09 13:42:01'),(59,'seller','change_email_verification_code_seller','Verification Code for Email Update Verification','Verify Your New Email Address on [[store_name]]','<span id=\"docs-internal-guid-update-verification-code-seller\"><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 11pt; font-family: Roboto, sans-serif; font-weight: 700;\">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;\">We received a request to change the email address associated with your seller account on [[store_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;\">To confirm this change, please use the Code sent below:</span></p><p dir=\"ltr\" style=\"line-height:1.38;margin-top:12pt;margin-bottom:12pt;\"><span style=\"font-size: 14pt; font-family: Roboto, sans-serif; font-weight: bold;\">[[code]]</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;\">This Code is for verifying your new email: <strong>[[new_email]]</strong></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;\">If you did not request this, please ignore the email or contact support.</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;\">For any questions, contact us at <strong>[[admin_email]]</strong></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;\">Thank you,<br>The [[store_name]] Team</span></p></span>',1,0,1,NULL,'2025-07-09 13:42:01','2025-07-09 13:42:01'),(60,'seller','seller_shop_approval_email','Seller Shop Approval','Congratulations! Your Shop [[seller_shop_name]] Has Been Approved','<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: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-weight:=\"\" 700;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" white-space-collapse:=\"\" preserve;\"=\"\"><b>Dear [[seller_name]],</b></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;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" white-space-collapse:=\"\" preserve;\"=\"\">Congratulations! Your shop has been approved and is now part of the <span style=\"font-size: 14.6667px;\">[[store_name]]</span> seller network.</span><span style=\"font-size: 11pt; font-family: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" white-space-collapse:=\"\" preserve;\"=\"\">You can now log in, manage your store, and start listing your products.</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;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" 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: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-weight:=\"\" 700;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\">Name:</span><span style=\"font-size: 11pt; font-family: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\"> </span><span style=\"font-family: \" roboto=\"\" slab\",=\"\" 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: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-weight:=\"\" 700;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\">Email:</span><span style=\"font-size: 11pt; font-family: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\"> </span><span style=\"font-family: \" roboto=\"\" slab\",=\"\" 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;\" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\">Shop Name</span><span style=\"font-size: 11pt; font-weight: 700; font-family: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\">: </span><span style=\"font-size: 14.6667px; background-color: transparent;\">[[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;\" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\">Address</span><span style=\"font-size: 11pt; font-weight: 700; font-family: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\">: </span><span style=\"font-size: 14.6667px; background-color: transparent;\">[[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: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-weight:=\"\" 700;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\">Registration Date:</span><span style=\"font-size: 11pt; font-family: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" text-wrap:=\"\" wrap;\"=\"\"> </span><span style=\"font-size: 14.6667px; 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: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" white-space-collapse:=\"\" preserve;\"=\"\">To access your seller account, please log in </span><a href=\"[[login_url]]\" target=\"_blank\">here</a><span style=\"font-size: 11pt; font-family: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" 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=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" 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: \" roboto=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" white-space-collapse:=\"\" preserve;\"=\"\">We are excited to see your products in our marketplace and look forward to your success!</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;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" 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=\"\" slab\",=\"\" serif;=\"\" background-color:=\"\" transparent;=\"\" font-variant-numeric:=\"\" normal;=\"\" font-variant-east-asian:=\"\" font-variant-alternates:=\"\" font-variant-position:=\"\" vertical-align:=\"\" baseline;=\"\" white-space-collapse:=\"\" preserve;\"=\"\"><b>The <span style=\"font-size: 14.6667px;\">[[store_name]]</span> Team</b></span></p></span>',1,1,1,NULL,'2025-08-06 12:53:37','2025-08-06 12:53:37'); /*!40000 ALTER TABLE `email_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `firebase_notifications` -- DROP TABLE IF EXISTS `firebase_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `firebase_notifications` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `text` text, `item_type` varchar(255) NOT NULL, `item_type_id` int NOT NULL, `receiver_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `firebase_notifications` -- LOCK TABLES `firebase_notifications` WRITE; /*!40000 ALTER TABLE `firebase_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `firebase_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `flash_deal_products` -- DROP TABLE IF EXISTS `flash_deal_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `flash_deal_products` ( `id` int NOT NULL AUTO_INCREMENT, `flash_deal_id` int NOT NULL, `product_id` int NOT NULL, `discount` double(20,2) DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `flash_deal_products` -- LOCK TABLES `flash_deal_products` WRITE; /*!40000 ALTER TABLE `flash_deal_products` DISABLE KEYS */; /*!40000 ALTER TABLE `flash_deal_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `flash_deal_translations` -- DROP TABLE IF EXISTS `flash_deal_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `flash_deal_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `flash_deal_id` bigint NOT NULL, `title` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `flash_deal_translations` -- LOCK TABLES `flash_deal_translations` WRITE; /*!40000 ALTER TABLE `flash_deal_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `flash_deal_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `flash_deals` -- DROP TABLE IF EXISTS `flash_deals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `flash_deals` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `start_date` int DEFAULT NULL, `end_date` int DEFAULT NULL, `status` int NOT NULL DEFAULT '0', `featured` int NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `banner` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb3_unicode_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `flash_deals` -- LOCK TABLES `flash_deals` WRITE; /*!40000 ALTER TABLE `flash_deals` DISABLE KEYS */; /*!40000 ALTER TABLE `flash_deals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `follow_sellers` -- DROP TABLE IF EXISTS `follow_sellers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `follow_sellers` ( `user_id` bigint NOT NULL, `shop_id` bigint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `follow_sellers` -- LOCK TABLES `follow_sellers` WRITE; /*!40000 ALTER TABLE `follow_sellers` DISABLE KEYS */; /*!40000 ALTER TABLE `follow_sellers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `frequently_bought_products` -- DROP TABLE IF EXISTS `frequently_bought_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `frequently_bought_products` ( `product_id` int NOT NULL, `frequently_bought_product_id` int DEFAULT NULL, `category_id` int DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `frequently_bought_products` -- LOCK TABLES `frequently_bought_products` WRITE; /*!40000 ALTER TABLE `frequently_bought_products` DISABLE KEYS */; /*!40000 ALTER TABLE `frequently_bought_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `home_categories` -- DROP TABLE IF EXISTS `home_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `home_categories` ( `id` int NOT NULL AUTO_INCREMENT, `category_id` int NOT NULL, `subsubcategories` varchar(1000) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `home_categories` -- LOCK TABLES `home_categories` WRITE; /*!40000 ALTER TABLE `home_categories` DISABLE KEYS */; INSERT INTO `home_categories` VALUES (1,1,'[\"1\"]',1,'2019-03-12 06:38:23','2019-03-12 06:38:23'),(2,2,'[\"10\"]',1,'2019-03-12 06:44:54','2019-03-12 06:44:54'); /*!40000 ALTER TABLE `home_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `languages` -- DROP TABLE IF EXISTS `languages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `languages` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `code` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `app_lang_code` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT 'en', `rtl` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `languages` -- LOCK TABLES `languages` WRITE; /*!40000 ALTER TABLE `languages` DISABLE KEYS */; INSERT INTO `languages` VALUES (1,'English','en','en',0,1,'2019-01-20 12:13:20','2019-01-20 12:13:20'),(3,'Bangla','bd','bn',0,1,'2019-02-17 06:35:37','2019-02-18 06:49:51'),(4,'Arabic','sa','ar',1,1,'2019-04-28 18:34:12','2019-04-28 18:34:12'); /*!40000 ALTER TABLE `languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `last_viewed_products` -- DROP TABLE IF EXISTS `last_viewed_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `last_viewed_products` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `product_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `last_viewed_products` -- LOCK TABLES `last_viewed_products` WRITE; /*!40000 ALTER TABLE `last_viewed_products` DISABLE KEYS */; /*!40000 ALTER TABLE `last_viewed_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `measurement_points` -- DROP TABLE IF EXISTS `measurement_points`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `measurement_points` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_general_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `measurement_points` -- LOCK TABLES `measurement_points` WRITE; /*!40000 ALTER TABLE `measurement_points` DISABLE KEYS */; /*!40000 ALTER TABLE `measurement_points` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `messages` -- DROP TABLE IF EXISTS `messages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `messages` ( `id` int NOT NULL AUTO_INCREMENT, `conversation_id` int NOT NULL, `user_id` int NOT NULL, `message` text COLLATE utf8mb3_unicode_ci, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `messages` -- LOCK TABLES `messages` WRITE; /*!40000 ALTER TABLE `messages` DISABLE KEYS */; /*!40000 ALTER TABLE `messages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `migrations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) COLLATE utf8mb3_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_resets_table',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `model_has_permissions` -- DROP TABLE IF EXISTS `model_has_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `model_has_permissions` ( `permission_id` bigint unsigned NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `model_has_permissions` -- LOCK TABLES `model_has_permissions` WRITE; /*!40000 ALTER TABLE `model_has_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `model_has_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `model_has_roles` -- DROP TABLE IF EXISTS `model_has_roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `model_has_roles` ( `role_id` bigint unsigned NOT NULL, `model_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `model_id` bigint 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `model_has_roles` -- LOCK TABLES `model_has_roles` WRITE; /*!40000 ALTER TABLE `model_has_roles` DISABLE KEYS */; INSERT INTO `model_has_roles` VALUES (1,'App\\Models\\User',9); /*!40000 ALTER TABLE `model_has_roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `note_translations` -- DROP TABLE IF EXISTS `note_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `note_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `note_id` bigint NOT NULL, `description` longtext COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `note_translations` -- LOCK TABLES `note_translations` WRITE; /*!40000 ALTER TABLE `note_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `note_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notes` -- DROP TABLE IF EXISTS `notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `notes` ( `id` bigint NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `note_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `seller_access` tinyint 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notes` -- LOCK TABLES `notes` WRITE; /*!40000 ALTER TABLE `notes` DISABLE KEYS */; /*!40000 ALTER TABLE `notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notification_type_translations` -- DROP TABLE IF EXISTS `notification_type_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `notification_type_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `notification_type_id` int NOT NULL, `name` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `default_text` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notification_type_translations` -- LOCK TABLES `notification_type_translations` WRITE; /*!40000 ALTER TABLE `notification_type_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `notification_type_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notification_types` -- DROP TABLE IF EXISTS `notification_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `notification_types` ( `id` int NOT NULL AUTO_INCREMENT, `user_type` varchar(20) COLLATE utf8mb4_general_ci NOT NULL DEFAULT 'customer', `type` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `name` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `image` varchar(100) COLLATE utf8mb4_general_ci DEFAULT NULL, `default_text` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `status` tinyint NOT NULL DEFAULT '1', `addon` varchar(50) COLLATE utf8mb4_general_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notification_types` -- LOCK TABLES `notification_types` WRITE; /*!40000 ALTER TABLE `notification_types` DISABLE KEYS */; INSERT INTO `notification_types` VALUES (1,'admin','order_placed_admin','Order Placed',NULL,'Order: [[order_code]] has been Placed',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(2,'seller','order_placed_seller','Order Placed',NULL,'Order: [[order_code]] has been Placed',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(3,'customer','order_placed_customer','Order Placed',NULL,'Your Order: [[order_code]] has been Placed',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(4,'admin','order_confirmed_admin','Order Confirmed',NULL,'Order: [[order_code]] has been Confirmed',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(5,'seller','order_confirmed_seller','Order Confirmed',NULL,'Order: [[order_code]] has been Confirmed',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(6,'customer','order_confirmed_customer','Order Confirmed',NULL,'Your Order: [[order_code]] has been Confirmed',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(7,'admin','order_picked_up_admin','Order Picked Up',NULL,'Order: [[order_code]] has been picked up',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(8,'seller','order_picked_up_seller','Order Picked Up',NULL,'Order: [[order_code]] has been picked up',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(9,'customer','order_picked_up_customer','Order Picked Up',NULL,'Your Order: [[order_code]] has been picked up',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(10,'admin','order_on_the_way_admin','Order On the Way',NULL,'Order: [[order_code]] is on the way',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(11,'seller','order_on_the_way_seller','Order On the Way\r\n',NULL,'Order: [[order_code]] is on the way',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(12,'customer','order_on_the_way_customer','Order On the Way\r\n',NULL,'Your Order: [[order_code]] is on the way',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(13,'admin','order_delivered_admin','Order Delivered',NULL,'Order: [[order_code]] has been delivered',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(14,'seller','order_delivered_seller','Order Delivered',NULL,'Order: [[order_code]] has been delivered',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(15,'customer','order_delivered_customer','Order Delivered',NULL,'Your Order: [[order_code]] has been delivered',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(16,'admin','order_cancelled_admin','Order Cancelled',NULL,'Order: [[order_code]] has been cancelled',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(17,'seller','order_cancelled_seller','Order Cancelled',NULL,'Order: [[order_code]] has been cancelled',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(18,'customer','order_cancelled_customer','Order Cancelled',NULL,'Your Order: [[order_code]] has been cancelled',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(19,'admin','order_paid_admin','Successful Payment',NULL,'Payment for order: [[order_code]] is successful',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(20,'seller','order_paid_seller','Successful Payment',NULL,'Payment for order: [[order_code]] is successful',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(21,'customer','order_paid_customer','Successful Payment',NULL,'Your payment for order: [[order_code]] is successful',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(22,'admin','seller_product_upload','Seller Product Upload',NULL,'Product : [[product_name]] is pending',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(23,'seller','seller_product_approved','Product Approved',NULL,'Product : [[product_name]] is approved',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(24,'admin','seller_payout_request','Seller Payout Request',NULL,'[[shop_name]] request for payment : [[amount]]',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(25,'seller','seller_payout','Payout',NULL,'[[shop_name]] : payment [[amount]] is paid',1,NULL,'2024-05-14 15:35:09','2024-05-14 15:35:09'),(26,'admin','shop_verify_request_submitted','Shop Verification Request Submitted',NULL,'[[shop_name]] submitted the verification request.',1,NULL,'2024-05-20 12:22:20','2024-05-20 12:22:20'),(27,'seller','shop_verify_request_approved','Shop Verification Request Approved',NULL,'Your shop verification request has been Approved.',1,NULL,'2024-05-20 12:22:20','2024-05-20 12:22:20'),(28,'seller','shop_verify_request_rejected','Shop Verification Request Rejected',NULL,'Your shop verification request has been Rejected.',1,NULL,'2024-05-20 12:22:20','2024-05-20 12:22: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,NULL,'2024-08-22 05:45:04','2024-08-22 05:45:04'); /*!40000 ALTER TABLE `notification_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `notifications` -- DROP TABLE IF EXISTS `notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `notifications` ( `id` char(36) COLLATE utf8mb3_unicode_ci NOT NULL, `notification_type_id` int NOT NULL, `type` varchar(191) COLLATE utf8mb3_unicode_ci NOT NULL, `notifiable_type` varchar(191) COLLATE utf8mb3_unicode_ci NOT NULL, `notifiable_id` bigint unsigned NOT NULL, `data` text COLLATE utf8mb3_unicode_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `notifications` -- LOCK TABLES `notifications` WRITE; /*!40000 ALTER TABLE `notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `order_details` -- DROP TABLE IF EXISTS `order_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `order_details` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `seller_id` int DEFAULT NULL, `product_id` int NOT NULL, `variation` longtext COLLATE utf8mb3_unicode_ci, `price` double(20,2) DEFAULT NULL, `coupon_discount` double(20,2) DEFAULT '0.00', `tax` double(20,2) NOT NULL DEFAULT '0.00', `gst_rate` double(20,2) DEFAULT NULL, `gst_amount` double(20,2) DEFAULT NULL, `shipping_cost` double(20,2) NOT NULL DEFAULT '0.00', `quantity` int DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'unpaid', `delivery_status` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT 'pending', `refund_days` int NOT NULL DEFAULT '0', `reviewed` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `pickup_point_id` int DEFAULT NULL, `product_referral_code` varchar(255) COLLATE utf8mb3_unicode_ci 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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order_details` -- LOCK TABLES `order_details` WRITE; /*!40000 ALTER TABLE `order_details` DISABLE KEYS */; /*!40000 ALTER TABLE `order_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `orders` ( `id` int NOT NULL AUTO_INCREMENT, `combined_order_id` int DEFAULT NULL, `user_id` int DEFAULT NULL, `guest_id` int DEFAULT NULL, `seller_id` int DEFAULT NULL, `shipping_address` longtext COLLATE utf8mb3_unicode_ci, `billing_address` longtext COLLATE utf8mb3_unicode_ci, `additional_info` longtext COLLATE utf8mb3_unicode_ci, `shipping_type` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `shipping_method` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `order_from` varchar(20) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'web', `pickup_point_id` int NOT NULL DEFAULT '0', `carrier_id` int DEFAULT NULL, `delivery_status` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT 'pending', `payment_type` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `payment_status` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT 'unpaid', `payment_details` longtext COLLATE utf8mb3_unicode_ci, `grand_total` double(20,2) DEFAULT NULL, `coupon_discount` double(20,2) NOT NULL DEFAULT '0.00', `code` mediumtext COLLATE utf8mb3_unicode_ci, `tracking_code` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `shiprocket_order_id` bigint unsigned DEFAULT NULL, `shiprocket_shipment_id` bigint unsigned DEFAULT NULL, `shiprocket_status` varchar(50) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `shiprocket_status_code` bigint NOT NULL DEFAULT '0', `pickup_address_id` bigint unsigned DEFAULT NULL, `shiprocket_awb` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `shiprocket_courier_id` bigint unsigned DEFAULT NULL, `shiprocket_courier_name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `awb_assigned_at` timestamp NULL DEFAULT NULL, `shiprocket_label_url` text COLLATE utf8mb3_unicode_ci, `shiprocket_manifest_url` text COLLATE utf8mb3_unicode_ci, `pickup_scheduled_at` timestamp NULL DEFAULT NULL, `pickup_token` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `steadfast_consignment_id` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `steadfast_tracking_code` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `steadfast_status` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `pathao_consignment_id` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `pathao_status` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `pathao_delivery_fee` int DEFAULT '0', `date` int NOT NULL, `viewed` int NOT NULL DEFAULT '0', `delivery_viewed` int NOT NULL DEFAULT '1', `payment_status_viewed` int DEFAULT '1', `commission_calculated` int 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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orders` -- LOCK TABLES `orders` WRITE; /*!40000 ALTER TABLE `orders` DISABLE KEYS */; /*!40000 ALTER TABLE `orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `otp_configurations` -- DROP TABLE IF EXISTS `otp_configurations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `otp_configurations` ( `id` int NOT NULL AUTO_INCREMENT, `type` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `value` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `otp_configurations` -- LOCK TABLES `otp_configurations` WRITE; /*!40000 ALTER TABLE `otp_configurations` DISABLE KEYS */; INSERT INTO `otp_configurations` VALUES (1,'nexmo','1','2020-03-22 09:19:07','2020-03-22 09:19:07'),(5,'twillo','0','2020-03-22 09:54:03','2020-03-22 03:54:20'),(6,'ssl_wireless','0','2020-03-22 09:54:03','2020-03-22 03:54:20'),(7,'fast2sms','0','2020-03-22 09:54:03','2020-03-22 03:54:20'),(8,'mimsms','0','2020-03-22 09:54:03','2020-03-22 03:54:20'),(9,'mimo','0','2020-12-27 09:54:03','2020-12-28 03:54:20'),(10,'msegat','0','2020-12-27 09:54:03','2020-12-28 03:54:20'),(11,'sparrow','0','2020-12-27 09:54:03','2020-12-28 03:54:20'),(12,'zender','0','2020-12-27 09:54:03','2020-12-28 03:54:20'); /*!40000 ALTER TABLE `otp_configurations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `page_translations` -- DROP TABLE IF EXISTS `page_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `page_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `page_id` bigint NOT NULL, `title` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `page_translations` -- LOCK TABLES `page_translations` WRITE; /*!40000 ALTER TABLE `page_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `page_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages` -- DROP TABLE IF EXISTS `pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pages` ( `id` int NOT NULL AUTO_INCREMENT, `type` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb3_unicode_ci, `meta_title` text COLLATE utf8mb3_unicode_ci, `meta_description` varchar(1000) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `keywords` varchar(1000) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_image` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pages` -- LOCK TABLES `pages` WRITE; /*!40000 ALTER TABLE `pages` DISABLE KEYS */; INSERT INTO `pages` VALUES (1,'home_page','Home Page','home',NULL,NULL,NULL,NULL,NULL,'2020-11-04 10:13:20','2020-11-04 10:13:20'),(2,'seller_policy_page','Seller Policy Pages','seller-policy',NULL,NULL,NULL,NULL,NULL,'2020-11-04 10:14:41','2020-11-04 12:19:30'),(3,'return_policy_page','Return Policy Page','return-policy',NULL,NULL,NULL,NULL,NULL,'2020-11-04 10:14:41','2020-11-04 10:14:41'),(4,'support_policy_page','Support Policy Page','support-policy',NULL,NULL,NULL,NULL,NULL,'2020-11-04 10:14:59','2020-11-04 10:14:59'),(5,'terms_conditions_page','Term Conditions Page','terms',NULL,NULL,NULL,NULL,NULL,'2020-11-04 10:15:29','2020-11-04 10:15:29'),(6,'privacy_policy_page','Privacy Policy Page','privacy-policy',NULL,NULL,NULL,NULL,NULL,'2020-11-04 10:15:55','2020-11-04 10:15:55'),(7,'contact_us_page','Contact us','contact-us','{\"description\":null,\"address\":null,\"phone\":null,\"email\":null}',NULL,NULL,NULL,NULL,'2024-08-25 07:22:32','2024-08-25 07:22:32'); /*!40000 ALTER TABLE `pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `password_resets` ( `email` varchar(191) COLLATE utf8mb3_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `password_resets_email_index` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_resets` -- LOCK TABLES `password_resets` WRITE; /*!40000 ALTER TABLE `password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payku_payments` -- DROP TABLE IF EXISTS `payku_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `payku_payments` ( `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `start` date NOT NULL, `end` date NOT NULL, `media` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `verification_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `authorization_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `last_4_digits` int unsigned DEFAULT NULL, `installments` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_parameters` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payku_payments` -- LOCK TABLES `payku_payments` WRITE; /*!40000 ALTER TABLE `payku_payments` DISABLE KEYS */; /*!40000 ALTER TABLE `payku_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payku_transactions` -- DROP TABLE IF EXISTS `payku_transactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `payku_transactions` ( `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` text COLLATE utf8mb4_unicode_ci, `amount` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payku_transactions` -- LOCK TABLES `payku_transactions` WRITE; /*!40000 ALTER TABLE `payku_transactions` DISABLE KEYS */; /*!40000 ALTER TABLE `payku_transactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payment_methods` -- DROP TABLE IF EXISTS `payment_methods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `payment_methods` ( `id` tinyint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `active` tinyint(1) NOT NULL DEFAULT '0', `addon_identifier` varchar(191) COLLATE utf8mb4_general_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payment_methods` -- LOCK TABLES `payment_methods` WRITE; /*!40000 ALTER TABLE `payment_methods` DISABLE KEYS */; INSERT INTO `payment_methods` VALUES (1,'paypal',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(2,'stripe',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(3,'sslcommerz',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(4,'instamojo',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(5,'razorpay',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(6,'paystack',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(7,'voguepay',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(8,'payhere',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(9,'ngenius',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(10,'iyzico',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(11,'nagad',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(12,'bkash',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(13,'aamarpay',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(14,'authorizenet',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(15,'payku',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(16,'mercadopago',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(17,'paymob',0,NULL,'2024-05-18 23:31:18','2024-05-18 23:31:18'),(18,'paytm',0,'paytm','2024-05-18 23:35:13','2024-05-18 23:35:13'),(19,'toyyibpay',0,'paytm','2024-05-18 23:35:13','2024-05-18 23:35:13'),(20,'myfatoorah',0,'paytm','2024-05-18 23:35:13','2024-05-18 23:35:13'),(21,'khalti',0,'paytm','2024-05-18 23:35:13','2024-05-18 23:35:13'),(22,'phonepe',0,'paytm','2024-05-18 23:35:13','2024-05-18 23:35:13'),(23,'flutterwave',0,'african_pg','2024-05-18 23:36:10','2024-05-18 23:36:10'),(24,'payfast',0,'african_pg','2024-05-18 23:36:10','2024-05-18 23:36:10'),(25,'tap',0,NULL,'2024-07-14 06:16:47','2024-07-14 06:16:47'); /*!40000 ALTER TABLE `payment_methods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments` -- DROP TABLE IF EXISTS `payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `payments` ( `id` int NOT NULL AUTO_INCREMENT, `seller_id` int NOT NULL, `amount` double(20,2) NOT NULL DEFAULT '0.00', `payment_details` longtext COLLATE utf8mb3_unicode_ci, `payment_method` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `txn_code` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payments` -- LOCK TABLES `payments` WRITE; /*!40000 ALTER TABLE `payments` DISABLE KEYS */; /*!40000 ALTER TABLE `payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissions` -- DROP TABLE IF EXISTS `permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `permissions` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `section` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissions` -- LOCK TABLES `permissions` WRITE; /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; INSERT INTO `permissions` VALUES (1,'add_new_product','product','web','2022-06-12 09:31:31','2022-06-12 09:31:31'),(2,'show_all_products','product','web','2022-06-12 09:32:34','2022-06-12 09:32:34'),(3,'show_in_house_products','product','web','2022-06-12 09:33:08','2022-06-12 09:33:08'),(4,'show_seller_products','product','web','2022-06-12 09:33:40','2022-06-12 09:33:40'),(5,'product_edit','product','web','2022-06-13 13:50:06','2022-06-13 13:50:06'),(6,'product_duplicate','product','web','2022-06-13 15:24:20','2022-06-13 15:24:20'),(7,'product_delete','product','web','2022-06-13 15:24:47','2022-06-13 15:24:47'),(8,'show_digital_products','product','web','2022-06-13 16:48:13','2022-06-13 16:48:13'),(9,'add_digital_product','product','web','2022-06-13 16:48:28','2022-06-13 16:48:28'),(10,'edit_digital_product','product','web','2022-06-13 16:48:40','2022-06-13 16:48:40'),(11,'delete_digital_product','product','web','2022-06-13 16:48:47','2022-06-13 16:48:47'),(12,'download_digital_product','product','web','2022-06-13 16:48:57','2022-06-13 16:48:57'),(13,'product_bulk_import','product','web','2022-06-13 18:18:52','2022-06-13 18:18:52'),(14,'product_bulk_export','product','web','2022-06-13 18:19:19','2022-06-13 18:19:19'),(15,'view_product_categories','product_category','web','2022-06-13 18:24:33','2022-06-13 18:24:33'),(16,'add_product_category','product_category','web','2022-06-13 18:25:56','2022-06-13 18:25:56'),(17,'edit_product_category','product_category','web','2022-06-13 18:26:17','2022-06-13 18:26:17'),(18,'delete_product_category','product_category','web','2022-06-13 18:26:42','2022-06-13 18:26:42'),(19,'view_all_brands','brand','web','2022-06-14 11:31:46','2022-06-14 11:31:46'),(20,'add_brand','brand','web','2022-06-14 11:32:08','2022-06-14 11:32:08'),(21,'edit_brand','brand','web','2022-06-14 11:32:16','2022-06-14 11:32:16'),(22,'delete_brand','brand','web','2022-06-14 11:32:25','2022-06-14 11:32:25'),(23,'view_product_attributes','product_attribute','web','2022-06-14 11:34:47','2022-06-14 11:34:47'),(24,'add_product_attribute','product_attribute','web','2022-06-14 11:35:20','2022-06-14 11:35:20'),(25,'edit_product_attribute','product_attribute','web','2022-06-14 11:35:26','2022-06-14 11:35:26'),(26,'delete_product_attribute','product_attribute','web','2022-06-14 11:35:33','2022-06-14 11:35:33'),(27,'view_product_attribute_values','product_attribute','web','2022-06-14 11:38:12','2022-06-14 11:38:12'),(28,'add_product_attribute_values','product_attribute','web','2022-06-14 11:38:20','2022-06-14 11:38:20'),(29,'edit_product_attribute_value','product_attribute','web','2022-06-14 11:38:50','2022-06-14 11:38:50'),(30,'delete_product_attribute_value','product_attribute','web','2022-06-14 11:39:06','2022-06-14 11:39:06'),(31,'view_colors','product_attribute','web','2022-06-14 11:44:16','2022-06-14 11:44:16'),(32,'add_color','product_attribute','web','2022-06-14 11:44:41','2022-06-14 11:44:41'),(33,'edit_color','product_attribute','web','2022-06-14 11:44:50','2022-06-14 11:44:50'),(34,'delete_color','product_attribute','web','2022-06-14 11:44:59','2022-06-14 11:44:59'),(35,'view_product_reviews','product_review','web','2022-06-14 11:55:04','2022-06-14 11:55:04'),(36,'publish_product_review','product_review','web','2022-06-14 11:57:37','2022-06-14 11:57:37'),(37,'view_all_orders','sale','web','2022-06-14 17:49:04','2022-06-14 17:49:04'),(38,'view_inhouse_orders','sale','web','2022-06-14 17:49:30','2022-06-14 17:49:30'),(39,'view_seller_orders','sale','web','2022-06-14 17:50:06','2022-06-14 17:50:06'),(40,'view_pickup_point_orders','sale','web','2022-06-14 17:51:17','2022-06-14 17:51:17'),(41,'view_order_details','sale','web','2022-06-14 17:53:13','2022-06-14 17:53:13'),(42,'update_order_payment_status','sale','web','2022-06-14 17:53:55','2022-06-14 17:53:55'),(43,'update_order_delivery_status','sale','web','2022-06-14 17:54:02','2022-06-14 17:54:02'),(44,'delete_order','sale','web','2022-06-14 17:55:02','2022-06-14 17:55:02'),(45,'view_all_customers','customer','web','2022-06-14 17:59:28','2022-06-14 17:59:28'),(46,'login_as_customer','customer','web','2022-06-14 17:59:58','2022-06-14 17:59:58'),(47,'ban_customer','customer','web','2022-06-14 18:00:12','2022-06-14 18:00:12'),(48,'delete_customer','customer','web','2022-06-14 18:00:45','2022-06-14 18:00:45'),(49,'view_classified_products','customer','web','2022-06-14 18:02:38','2022-06-14 18:02:38'),(50,'publish_classified_product','customer','web','2022-06-14 18:06:23','2022-06-14 18:06:23'),(51,'delete_classified_product','customer','web','2022-06-14 18:06:39','2022-06-14 18:06:39'),(52,'view_classified_packages','customer','web','2022-06-14 18:08:11','2022-06-14 18:08:11'),(53,'add_classified_package','customer','web','2022-06-14 18:08:22','2022-06-14 18:08:22'),(54,'edit_classified_package','customer','web','2022-06-14 18:08:35','2022-06-14 18:08:35'),(55,'delete_classified_package','customer','web','2022-06-14 18:08:44','2022-06-14 18:08:44'),(56,'view_all_seller','seller','web','2022-06-15 12:49:56','2022-06-15 12:49:56'),(57,'view_seller_profile','seller','web','2022-06-15 12:58:07','2022-06-15 12:58:07'),(58,'login_as_seller','seller','web','2022-06-15 12:58:22','2022-06-15 12:58:22'),(59,'pay_to_seller','seller','web','2022-06-15 14:21:28','2022-06-15 14:21:28'),(60,'seller_payment_history','seller','web','2022-06-15 14:22:14','2022-06-15 14:22:14'),(61,'edit_seller','seller','web','2022-06-15 14:22:28','2022-06-15 14:22:28'),(62,'delete_seller','seller','web','2022-06-15 14:22:37','2022-06-15 14:22:37'),(63,'ban_seller','seller','web','2022-06-15 14:22:48','2022-06-15 14:22:48'),(64,'approve_seller','seller','web','2022-06-15 14:24:17','2022-06-15 14:24:17'),(65,'view_seller_payout_requests','seller','web','2022-06-15 14:33:37','2022-06-15 14:33:37'),(66,'seller_commission_configuration','seller','web','2022-06-15 14:37:18','2022-06-15 14:37:18'),(67,'seller_verification_form_configuration','seller','web','2022-06-15 14:38:43','2022-06-15 14:38:43'),(68,'in_house_product_sale_report','report','web','2022-06-18 15:43:02','2022-06-18 15:43:02'),(69,'seller_products_sale_report','report','web','2022-06-18 15:43:32','2022-06-18 15:43:32'),(70,'products_stock_report','report','web','2022-06-18 15:43:51','2022-06-18 15:43:51'),(71,'product_wishlist_report','report','web','2022-06-18 15:46:18','2022-06-18 15:46:18'),(72,'user_search_report','report','web','2022-06-18 15:46:39','2022-06-18 15:46:39'),(73,'commission_history_report','report','web','2022-06-18 15:47:17','2022-06-18 15:47:17'),(74,'wallet_transaction_report','report','web','2022-06-18 15:48:00','2022-06-18 15:48:00'),(75,'view_blogs','blog','web','2022-06-19 00:08:14','2022-06-19 00:08:14'),(76,'add_blog','blog','web','2022-06-19 00:08:43','2022-06-19 00:08:43'),(77,'edit_blog','blog','web','2022-06-19 00:08:56','2022-06-19 00:08:56'),(78,'delete_blog','blog','web','2022-06-19 00:09:08','2022-06-19 00:09:08'),(79,'publish_blog','blog','web','2022-06-19 00:11:09','2022-06-19 00:11:09'),(80,'view_blog_categories','blog','web','2022-06-19 00:12:55','2022-06-19 00:12:55'),(81,'add_blog_category','blog','web','2022-06-19 00:13:24','2022-06-19 00:13:24'),(82,'edit_blog_category','blog','web','2022-06-19 00:13:37','2022-06-19 00:13:37'),(83,'delete_blog_category','blog','web','2022-06-19 00:14:06','2022-06-19 00:14:06'),(84,'view_all_flash_deals','marketing','web','2022-06-19 01:18:52','2022-06-19 01:18:52'),(85,'add_flash_deal','marketing','web','2022-06-19 01:19:22','2022-06-19 01:19:22'),(86,'edit_flash_deal','marketing','web','2022-06-19 01:19:32','2022-06-19 01:19:32'),(87,'delete_flash_deal','marketing','web','2022-06-19 01:19:44','2022-06-19 01:19:44'),(88,'publish_flash_deal','marketing','web','2022-06-19 01:20:45','2022-06-19 01:20:45'),(89,'featured_flash_deal','marketing','web','2022-06-19 01:23:07','2022-06-19 01:23:07'),(90,'view_all_coupons','marketing','web','2022-06-19 01:23:47','2022-06-19 01:23:47'),(91,'add_coupon','marketing','web','2022-06-19 01:24:07','2022-06-19 01:24:07'),(92,'edit_coupon','marketing','web','2022-06-19 01:24:24','2022-06-19 01:24:24'),(93,'delete_coupon','marketing','web','2022-06-19 01:24:34','2022-06-19 01:24:34'),(94,'send_newsletter','marketing','web','2022-06-19 01:25:53','2022-06-19 01:25:53'),(95,'view_all_subscribers','marketing','web','2022-06-19 01:32:13','2022-06-19 01:32:13'),(96,'delete_subscriber','marketing','web','2022-06-19 01:32:35','2022-06-19 01:32:35'),(97,'view_all_support_tickets','support','web','2022-06-19 17:31:53','2022-06-19 17:31:53'),(98,'reply_to_support_tickets','support','web','2022-06-19 17:33:13','2022-06-19 17:33:13'),(99,'view_all_product_queries','support','web','2022-06-19 17:38:45','2022-06-19 17:38:45'),(100,'reply_to_product_queries','support','web','2022-06-19 17:40:02','2022-06-19 17:40:02'),(102,'header_setup','website_setup','web','2022-06-19 17:45:24','2022-06-19 17:45:24'),(103,'footer_setup','website_setup','web','2022-06-19 17:45:37','2022-06-19 17:45:37'),(104,'website_appearance','website_setup','web','2022-06-19 17:46:49','2022-06-19 17:46:49'),(105,'view_all_website_pages','website_setup','web','2022-06-19 17:50:04','2022-06-19 17:50:04'),(106,'add_website_page','website_setup','web','2022-06-19 17:50:38','2022-06-19 17:50:38'),(107,'edit_website_page','website_setup','web','2022-06-19 17:50:47','2022-06-19 17:50:47'),(108,'delete_website_page','website_setup','web','2022-06-19 17:52:09','2022-06-19 17:52:09'),(109,'general_settings','setup_configurations','web','2022-06-19 18:38:36','2022-06-19 18:38:36'),(110,'features_activation','setup_configurations','web','2022-06-19 18:39:42','2022-06-19 18:39:42'),(111,'language_setup','setup_configurations','web','2022-06-19 22:13:30','2022-06-19 22:13:30'),(112,'currency_setup','setup_configurations','web','2022-06-19 22:14:33','2022-06-19 22:14:33'),(113,'vat_&_tax_setup','setup_configurations','web','2022-06-19 22:15:21','2022-06-19 22:15:21'),(114,'pickup_point_setup','setup_configurations','web','2022-06-19 22:15:46','2022-06-19 22:15:46'),(115,'smtp_settings','setup_configurations','web','2022-06-19 22:16:05','2022-06-19 22:16:05'),(116,'payment_methods_configurations','setup_configurations','web','2022-06-19 22:25:27','2022-06-19 22:25:27'),(117,'order_configuration','setup_configurations','web','2022-06-19 22:26:26','2022-06-19 22:26:26'),(118,'file_system_&_cache_configuration','setup_configurations','web','2022-06-19 22:26:59','2022-06-19 22:26:59'),(119,'social_media_logins','setup_configurations','web','2022-06-19 22:27:22','2022-06-19 22:27:22'),(121,'facebook_comment','setup_configurations','web','2022-06-19 22:28:51','2022-06-19 22:28:51'),(122,'analytics_tools_configuration','setup_configurations','web','2022-06-19 22:29:57','2022-06-19 22:29:57'),(123,'google_recaptcha_configuration','setup_configurations','web','2022-06-19 22:30:55','2022-06-19 22:30:55'),(124,'google_map_setting','setup_configurations','web','2022-06-19 22:31:28','2022-06-19 22:31:28'),(125,'google_firebase_setting','setup_configurations','web','2022-06-19 22:32:00','2022-06-19 22:32:00'),(126,'shipping_configuration','setup_configurations','web','2022-06-19 22:41:29','2022-06-19 22:41:29'),(127,'shipping_country_setting','setup_configurations','web','2022-06-19 22:42:14','2022-06-19 22:42:14'),(128,'manage_shipping_states','setup_configurations','web','2022-06-19 22:43:43','2022-06-19 22:43:43'),(129,'manage_shipping_cities','setup_configurations','web','2022-06-19 22:44:17','2022-06-19 22:44:17'),(130,'view_all_staffs','staff','web','2022-06-19 22:45:00','2022-06-19 22:45:00'),(131,'add_staff','staff','web','2022-06-19 22:45:09','2022-06-19 22:45:09'),(132,'edit_staff','staff','web','2022-06-19 22:45:21','2022-06-19 22:45:21'),(133,'delete_staff','staff','web','2022-06-19 22:45:36','2022-06-19 22:45:36'),(134,'view_staff_roles','staff','web','2022-06-19 22:46:27','2022-06-19 22:46:27'),(135,'add_staff_role','staff','web','2022-06-19 22:53:00','2022-06-19 22:53:00'),(136,'edit_staff_role','staff','web','2022-06-19 22:53:11','2022-06-19 22:53:11'),(137,'delete_staff_role','staff','web','2022-06-19 22:53:22','2022-06-19 22:53:22'),(138,'system_update','system','web','2022-06-19 22:57:15','2022-06-19 22:57:15'),(139,'server_status','system','web','2022-06-19 22:57:58','2022-06-19 22:57:58'),(140,'manage_addons','system','web','2022-06-19 23:15:43','2022-06-19 23:15:43'),(141,'admin_dashboard','system','web','2022-06-20 18:26:52','2022-06-20 18:26:52'),(142,'pos_manager','pos_system','web','2022-06-20 19:46:20','2022-06-20 19:46:20'),(143,'pos_configuration','pos_system','web','2022-06-20 19:56:00','2022-06-20 19:56:00'),(144,'view_all_auction_products','auction','web','2022-06-20 20:05:54','2022-06-20 20:05:54'),(145,'view_inhouse_auction_products','auction','web','2022-06-20 20:09:29','2022-06-20 20:09:29'),(146,'view_seller_auction_products','auction','web','2022-06-20 20:09:51','2022-06-20 20:09:51'),(147,'add_auction_product','auction','web','2022-06-20 20:11:19','2022-06-20 20:11:19'),(148,'edit_auction_product','auction','web','2022-06-20 20:12:57','2022-06-20 20:12:57'),(149,'delete_auction_product','auction','web','2022-06-20 20:17:35','2022-06-20 20:17:35'),(150,'view_auction_product_bids','auction','web','2022-06-20 20:25:29','2022-06-20 20:25:29'),(151,'delete_auction_product_bids','auction','web','2022-06-20 20:33:55','2022-06-20 20:33:55'),(152,'view_auction_product_orders','auction','web','2022-06-20 20:44:11','2022-06-20 20:44:11'),(153,'view_all_wholesale_products','wholesale','web','2022-06-20 22:06:26','2022-06-20 22:06:26'),(154,'view_inhouse_wholesale_products','wholesale','web','2022-06-20 22:09:18','2022-06-20 22:09:18'),(155,'view_sellers_wholesale_products','wholesale','web','2022-06-20 22:09:48','2022-06-20 22:09:48'),(156,'add_wholesale_product','wholesale','web','2022-06-20 22:56:35','2022-06-20 22:56:35'),(157,'edit_wholesale_product','wholesale','web','2022-06-20 22:56:55','2022-06-20 22:56:55'),(158,'delete_wholesale_product','wholesale','web','2022-06-20 22:57:07','2022-06-20 22:57:07'),(159,'view_all_delivery_boy','delivery_boy','web','2022-06-20 23:41:57','2022-06-20 23:41:57'),(160,'add_delivery_boy','delivery_boy','web','2022-06-20 23:43:13','2022-06-20 23:43:13'),(161,'edit_delivery_boy','delivery_boy','web','2022-06-20 23:43:32','2022-06-20 23:43:32'),(162,'ban_delivery_boy','delivery_boy','web','2022-06-21 18:55:57','2022-06-21 18:55:57'),(163,'collect_from_delivery_boy','delivery_boy','web','2022-06-21 18:58:23','2022-06-21 18:58:23'),(164,'pay_to_delivery_boy','delivery_boy','web','2022-06-21 18:58:35','2022-06-21 18:58:35'),(165,'delivery_boy_payment_history','delivery_boy','web','2022-06-21 19:38:43','2022-06-21 19:38:43'),(166,'collected_histories_from_delivery_boy','delivery_boy','web','2022-06-21 19:40:04','2022-06-21 19:40:04'),(167,'order_cancle_request_by_delivery_boy','delivery_boy','web','2022-06-21 20:06:37','2022-06-21 20:06:37'),(168,'delivery_boy_configuration','delivery_boy','web','2022-06-21 20:07:07','2022-06-21 20:07:07'),(169,'view_refund_requests','refund_request','web','2022-06-21 20:21:11','2022-06-21 20:21:11'),(170,'accept_refund_request','refund_request','web','2022-06-21 20:21:55','2022-06-21 20:21:55'),(171,'reject_refund_request','refund_request','web','2022-06-21 20:23:20','2022-06-21 20:23:20'),(172,'view_approved_refund_requests','refund_request','web','2022-06-21 20:24:09','2022-06-21 20:24:09'),(173,'view_rejected_refund_requests','refund_request','web','2022-06-21 20:33:40','2022-06-21 20:33:40'),(174,'refund_request_configuration','refund_request','web','2022-06-21 20:34:21','2022-06-21 20:34:21'),(175,'affiliate_registration_form_config','affiliate_system','web','2022-06-21 22:52:18','2022-06-21 22:52:18'),(176,'affiliate_configurations','affiliate_system','web','2022-06-21 22:52:35','2022-06-21 22:52:35'),(177,'view_affiliate_users','affiliate_system','web','2022-06-21 22:53:19','2022-06-21 22:53:19'),(178,'pay_to_affiliate_user','affiliate_system','web','2022-06-21 22:54:49','2022-06-21 22:54:49'),(179,'affiliate_users_payment_history','affiliate_system','web','2022-06-21 22:55:51','2022-06-21 22:55:51'),(180,'view_all_referral_users','affiliate_system','web','2022-06-21 22:56:46','2022-06-21 22:56:46'),(181,'view_affiliate_withdraw_requests','affiliate_system','web','2022-06-21 22:58:01','2022-06-21 22:58:01'),(182,'accept_affiliate_withdraw_requests','affiliate_system','web','2022-06-21 22:59:38','2022-06-21 22:59:38'),(183,'reject_affiliate_withdraw_request','affiliate_system','web','2022-06-21 23:00:04','2022-06-21 23:00:04'),(184,'view_affiliate_logs','affiliate_system','web','2022-06-21 23:00:51','2022-06-21 23:00:51'),(185,'view_all_manual_payment_methods','offline_payment','web','2022-06-21 23:02:50','2022-06-21 23:02:50'),(186,'add_manual_payment_method','offline_payment','web','2022-06-21 23:03:25','2022-06-21 23:03:25'),(187,'edit_manual_payment_method','offline_payment','web','2022-06-21 23:03:56','2022-06-21 23:03:56'),(188,'delete_manual_payment_method','offline_payment','web','2022-06-21 23:04:10','2022-06-21 23:04:10'),(189,'view_all_offline_wallet_recharges','offline_payment','web','2022-06-21 23:09:09','2022-06-21 23:09:09'),(190,'approve_offline_wallet_recharge','offline_payment','web','2022-06-21 23:11:29','2022-06-21 23:11:29'),(191,'view_all_offline_customer_package_payments','offline_payment','web','2022-06-21 23:12:49','2022-06-21 23:12:49'),(192,'approve_offline_customer_package_payment','offline_payment','web','2022-06-21 23:13:24','2022-06-21 23:13:24'),(193,'view_all_offline_seller_package_payments','offline_payment','web','2022-06-21 23:14:02','2022-06-21 23:14:02'),(194,'approve_offline_seller_package_payment','offline_payment','web','2022-06-21 23:14:29','2022-06-21 23:14:29'),(195,'asian_payment_gateway_configuration','paytm','web','2022-06-21 23:15:56','2022-06-21 23:15:56'),(196,'club_point_configurations','club_point','web','2022-06-21 23:16:57','2022-06-21 23:16:57'),(197,'set_club_points','club_point','web','2022-06-21 23:17:21','2022-06-21 23:17:21'),(198,'view_users_club_points','club_point','web','2022-06-21 23:18:14','2022-06-21 23:18:14'),(199,'otp_configurations','otp_system','web','2022-06-22 00:07:28','2022-06-22 00:07:28'),(200,'sms_templates','otp_system','web','2022-06-22 00:08:13','2022-06-22 00:08:13'),(202,'african_pg_configuration','african_pg','web','2022-06-22 00:13:41','2022-06-22 00:13:41'),(203,'african_pg_credentials_configuration','african_pg','web','2022-06-22 00:16:12','2022-06-22 00:16:12'),(204,'view_all_seller_packages','seller_subscription','web','2022-06-22 00:17:45','2022-06-22 00:17:45'),(205,'add_seller_package','seller_subscription','web','2022-06-22 00:18:14','2022-06-22 00:18:14'),(206,'edit_seller_package','seller_subscription','web','2022-06-22 00:18:24','2022-06-22 00:18:24'),(207,'delete_seller_package','seller_subscription','web','2022-06-22 00:18:36','2022-06-22 00:18:36'),(208,'send_bulk_sms','otp_system','web','2022-06-22 00:19:06','2022-06-22 00:19:06'),(209,'assign_delivery_boy_for_orders','delivery_boy','web','2022-06-22 00:20:16','2022-06-22 00:20:16'),(210,'manage_zones','setup_configurations','web','2022-06-22 00:20:16','2022-06-22 00:20:16'),(211,'manage_carriers','setup_configurations','web','2022-06-22 00:20:16','2022-06-22 00:20:16'),(212,'view_all_product_conversations','support','web','2022-06-22 00:20:16','2022-06-22 00:20:16'),(213,'reply_to_product_conversations','support','web','2022-06-22 00:20:16','2022-06-22 00:20:16'),(214,'delete_product_conversations','support','web','2022-06-22 00:20:16','2022-06-22 00:20:16'),(215,'select_homepage','website_setup','web','2023-11-19 09:45:29','2023-11-19 09:45:29'),(216,'view_size_charts','size_guide','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(217,'add_size_charts','size_guide','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(218,'edit_size_charts','size_guide','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(219,'delete_size_charts','size_guide','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(220,'view_measurement_points','size_guide','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(221,'add_measurement_points','size_guide','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(222,'edit_measurement_points','size_guide','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(223,'delete_measurement_points','size_guide','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(224,'authentication_layout_settings','website_setup','web','2023-12-11 09:55:33','2023-12-11 09:55:33'),(225,'set_category_wise_discount','product_category','web','2024-03-19 06:12:16','2024-03-19 06:12:16'),(226,'view_all_dynamic_popups','marketing','web','2024-04-02 06:59:06','2024-04-02 06:59:06'),(227,'add_dynamic_popups','marketing','web','2024-04-02 06:59:06','2024-04-02 06:59:06'),(228,'edit_dynamic_popups','marketing','web','2024-04-02 06:59:06','2024-04-02 06:59:06'),(229,'delete_dynamic_popups','marketing','web','2024-04-02 06:59:06','2024-04-02 06:59:06'),(230,'publish_dynamic_popups','marketing','web','2024-04-02 06:59:06','2024-04-02 06:59:06'),(231,'brand_bulk_upload','brand','web','2024-04-02 06:59:06','2024-04-02 06:59:06'),(232,'export_order','sale','web','2024-04-02 06:59:06','2024-04-02 06:59:06'),(233,'view_all_custom_alerts','marketing','web','2024-04-03 03:30:20','2024-04-03 03:30:20'),(234,'add_custom_alerts','marketing','web','2024-04-03 03:30:20','2024-04-03 03:30:20'),(235,'edit_custom_alerts','marketing','web','2024-04-03 03:30:20','2024-04-03 03:30:20'),(236,'delete_custom_alerts','marketing','web','2024-04-03 03:30:20','2024-04-03 03:30:20'),(237,'publish_custom_alerts','marketing','web','2024-04-03 03:30:20','2024-04-03 03:30:20'),(238,'earning_report','report','web','2024-05-06 11:42:41','2024-05-06 11:42:41'),(239,'notification_settings','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(240,'view_all_notification_types','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(241,'add_notification_types','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(242,'edit_notification_types','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(243,'delete_notification_types','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(244,'notification_types_status_update','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(245,'send_custom_notification','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(246,'view_custom_notification_history','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(247,'delete_custom_notification_history','notification','web','2024-06-11 07:25:53','2024-06-11 07:25:53'),(248,'view_all_offline_payment_orders','offline_payment','web','2024-08-22 05:45:04','2024-08-22 05:45:04'),(249,'add_customer','customer','web','2024-08-22 05:45:04','2024-08-22 05:45:04'),(250,'add_seller','seller','web','2024-08-22 05:45:04','2024-08-22 05:45:04'),(251,'view_all_unpaid_orders','sale','web','2024-08-22 05:45:04','2024-08-22 05:45:04'),(252,'unpaid_order_payment_notification_send','sale','web','2024-08-22 05:45:04','2024-08-22 05:45:04'),(253,'view_all_contacts','support','web','2024-08-25 07:22:32','2024-08-25 07:22:32'),(254,'reply_to_contact','support','web','2024-08-25 07:22:32','2024-08-25 07:22:32'),(255,'manage_email_templates','marketing','web','2024-09-09 17:32:52','2024-09-09 17:32:52'),(256,'add_custom_review','product_review','web','2024-09-29 12:16:42','2024-09-29 12:16:42'),(257,'edit_custom_review','product_review','web','2024-09-29 12:16:42','2024-09-29 12:16:42'),(258,'view_all_seller_rating_and_followers','seller','web','2024-09-29 12:16:42','2024-09-29 12:16:42'),(259,'edit_seller_custom_followers','seller','web','2024-09-29 12:16:42','2024-09-29 12:16:42'),(260,'view_product_warranties','product_warranty','web','2024-10-20 07:45:18','2024-10-20 07:45:18'),(261,'add_product_warranty','product_warranty','web','2024-10-20 07:45:18','2024-10-20 07:45:18'),(262,'edit_product_warranty','product_warranty','web','2024-10-20 07:45:18','2024-10-20 07:45:18'),(263,'delete_product_warranty','product_warranty','web','2024-10-20 07:45:18','2024-10-20 07:45:18'),(264,'view_notes','note','web','2024-10-20 07:45:18','2024-10-20 07:45:18'),(265,'add_note','note','web','2024-10-20 07:45:18','2024-10-20 07:45:18'),(266,'edit_note','note','web','2024-10-20 07:45:18','2024-10-20 07:45:18'),(267,'delete_note','note','web','2024-10-20 07:45:18','2024-10-20 07:45:18'),(268,'view_notifications','notification','web','2024-12-19 10:09:49','2024-12-19 10:09:49'),(269,'mark_customer_suspected','customer','web','2024-12-19 10:09:49','2024-12-19 10:09:49'),(270,'whatsapp_chat','setup_configurations','web','2025-04-24 06:18:32','2025-04-24 06:18:32'),(271,'set_category_wise_commission','seller','web','2025-04-28 15:38:50','2025-04-28 15:38:50'),(272,'set_seller_based_commission','seller','web','2025-04-28 15:38:50','2025-04-28 15:38:50'),(273,'cybersource_pg_configuration','cybersource_pg','web','2022-06-21 18:13:41','2022-06-12 09:31:31'),(274,'view_pending_seller','seller','web','2025-08-06 12:53:37','2025-08-06 12:53:37'),(275,'mark_seller_suspected','seller','web','2025-08-06 12:53:37','2025-08-06 12:53:37'),(276,'manage_shipping_areas','setup_configurations','web','2025-07-12 18:13:41','2025-07-13 09:31:31'),(277,'select_shipping_methods','setup_configurations','web','2022-06-19 22:41:29','2022-06-19 22:41:29'),(278,'select_header','website_setup','web','2022-06-19 22:41:29','2022-06-19 22:41:29'),(279,'view_custom_label','product','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(280,'custom_label_create','product','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(281,'custom_label_edit','product','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(282,'custom_label_delete','product','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(283,'view_top_banner','website_setup','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(284,'top_banner_setting','website_setup','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(285,'top_banner_create','website_setup','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(286,'top_banner_edit','website_setup','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(287,'top_banner_delete','website_setup','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(290,'select_font_family','website_setup','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(291,'smart-bar','product','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(292,'custom_visitors_setup','marketing','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(293,'view_custom_sale_alert','marketing','web','2025-10-22 06:31:28','2025-10-22 06:31:28'),(294,'business_settings','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(295,'gst_assign','product','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(296,'manage_shipping_system','shipping_system','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(297,'pickup_address_index','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(298,'pickup_address_create','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(299,'pickup_address_edit','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(300,'pickup_address_delete','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(301,'shipping_box_size_index','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(302,'shipping_box_size_create','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(303,'shipping_box_size_edit','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'),(304,'shipping_box_size_delete','setup_configurations','web','2025-12-18 13:05:17','2025-12-18 13:05:17'); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `personal_access_tokens` -- DROP TABLE IF EXISTS `personal_access_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `personal_access_tokens` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `personal_access_tokens_token_unique` (`token`), KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `personal_access_tokens` -- LOCK TABLES `personal_access_tokens` WRITE; /*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pickup_addresses` -- DROP TABLE IF EXISTS `pickup_addresses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pickup_addresses` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `courier_type` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `address_nickname` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `is_primary` tinyint(1) DEFAULT '0' COMMENT '1 = primary location', `status` tinyint DEFAULT '1' COMMENT '1=Active, 0=Inactive', `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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pickup_addresses` -- LOCK TABLES `pickup_addresses` WRITE; /*!40000 ALTER TABLE `pickup_addresses` DISABLE KEYS */; /*!40000 ALTER TABLE `pickup_addresses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pickup_point_translations` -- DROP TABLE IF EXISTS `pickup_point_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pickup_point_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `pickup_point_id` bigint NOT NULL, `name` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `address` text COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pickup_point_translations` -- LOCK TABLES `pickup_point_translations` WRITE; /*!40000 ALTER TABLE `pickup_point_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `pickup_point_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pickup_points` -- DROP TABLE IF EXISTS `pickup_points`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pickup_points` ( `id` int NOT NULL AUTO_INCREMENT, `staff_id` int NOT NULL, `name` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `address` mediumtext COLLATE utf8mb3_unicode_ci NOT NULL, `phone` varchar(15) COLLATE utf8mb3_unicode_ci NOT NULL, `pick_up_status` int DEFAULT NULL, `cash_on_pickup_status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pickup_points` -- LOCK TABLES `pickup_points` WRITE; /*!40000 ALTER TABLE `pickup_points` DISABLE KEYS */; /*!40000 ALTER TABLE `pickup_points` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_categories` -- DROP TABLE IF EXISTS `product_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `product_categories` ( `product_id` int NOT NULL, `category_id` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_categories` -- LOCK TABLES `product_categories` WRITE; /*!40000 ALTER TABLE `product_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `product_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_queries` -- DROP TABLE IF EXISTS `product_queries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `product_queries` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_id` int NOT NULL, `seller_id` int NOT NULL, `product_id` int NOT NULL, `question` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_queries` -- LOCK TABLES `product_queries` WRITE; /*!40000 ALTER TABLE `product_queries` DISABLE KEYS */; /*!40000 ALTER TABLE `product_queries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_stocks` -- DROP TABLE IF EXISTS `product_stocks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `product_stocks` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `variant` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `sku` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `price` double(20,2) NOT NULL DEFAULT '0.00', `qty` int NOT NULL DEFAULT '0', `image` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_stocks` -- LOCK TABLES `product_stocks` WRITE; /*!40000 ALTER TABLE `product_stocks` DISABLE KEYS */; /*!40000 ALTER TABLE `product_stocks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_taxes` -- DROP TABLE IF EXISTS `product_taxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `product_taxes` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `tax_id` int NOT NULL, `tax` double(20,2) NOT NULL, `tax_type` varchar(10) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_taxes` -- LOCK TABLES `product_taxes` WRITE; /*!40000 ALTER TABLE `product_taxes` DISABLE KEYS */; /*!40000 ALTER TABLE `product_taxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_translations` -- DROP TABLE IF EXISTS `product_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `product_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `product_id` bigint NOT NULL, `name` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `unit` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb3_unicode_ci, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `product_translations` -- LOCK TABLES `product_translations` WRITE; /*!40000 ALTER TABLE `product_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `product_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `products` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(200) COLLATE utf8mb3_unicode_ci NOT NULL, `added_by` varchar(6) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'admin', `user_id` int NOT NULL, `category_id` int NOT NULL, `brand_id` int DEFAULT NULL, `photos` varchar(2000) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `thumbnail_img` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `short_video` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `short_video_thumbnail` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `video_provider` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `video_link` longtext COLLATE utf8mb3_unicode_ci, `tags` varchar(500) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb3_unicode_ci, `unit_price` double(20,2) NOT NULL, `purchase_price` double(20,2) DEFAULT NULL, `variant_product` int NOT NULL DEFAULT '0', `attributes` varchar(1000) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '[]', `choice_options` mediumtext COLLATE utf8mb3_unicode_ci, `colors` mediumtext COLLATE utf8mb3_unicode_ci, `variations` text COLLATE utf8mb3_unicode_ci, `custom_label_id` varchar(1000) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `todays_deal` int NOT NULL DEFAULT '0', `published` int NOT NULL DEFAULT '1', `draft` tinyint(1) NOT NULL DEFAULT '0', `approved` tinyint(1) NOT NULL DEFAULT '1', `stock_visibility_state` varchar(10) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'quantity', `cash_on_delivery` tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 = On, 0 = Off', `featured` int NOT NULL DEFAULT '0', `seller_featured` int NOT NULL DEFAULT '0', `current_stock` int NOT NULL DEFAULT '0', `unit` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `weight` double(8,2) NOT NULL DEFAULT '0.00', `min_qty` int NOT NULL DEFAULT '1', `low_stock_quantity` int DEFAULT NULL, `discount` double(20,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(10) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'amount', `discount_start_date` int DEFAULT NULL, `discount_end_date` int DEFAULT NULL, `tax` double(20,2) DEFAULT NULL, `tax_type` varchar(10) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `hsn_code` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `gst_rate` double(20,2) DEFAULT '0.00', `shipping_type` varchar(20) COLLATE utf8mb3_unicode_ci 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 DEFAULT NULL, `num_of_sale` int NOT NULL DEFAULT '0', `meta_title` mediumtext COLLATE utf8mb3_unicode_ci, `meta_description` longtext COLLATE utf8mb3_unicode_ci, `meta_keywords` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_img` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `pdf` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `slug` mediumtext COLLATE utf8mb3_unicode_ci NOT NULL, `rating` double(8,2) NOT NULL DEFAULT '0.00', `barcode` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `digital` int NOT NULL DEFAULT '0', `auction_product` int NOT NULL DEFAULT '0', `file_name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `file_path` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `external_link` varchar(500) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `external_link_btn` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT 'Buy Now', `wholesale_product` int NOT NULL DEFAULT '0', `frequently_bought_selection_type` varchar(19) COLLATE utf8mb3_unicode_ci DEFAULT 'product', `has_warranty` tinyint NOT NULL DEFAULT '0', `warranty_id` int DEFAULT NULL, `warranty_note_id` int 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 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `products` -- LOCK TABLES `products` WRITE; /*!40000 ALTER TABLE `products` DISABLE KEYS */; /*!40000 ALTER TABLE `products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proxypay_payments` -- DROP TABLE IF EXISTS `proxypay_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `proxypay_payments` ( `id` int NOT NULL AUTO_INCREMENT, `payment_type` varchar(20) COLLATE utf8mb3_unicode_ci NOT NULL, `reference_id` varchar(20) COLLATE utf8mb3_unicode_ci NOT NULL, `order_id` int DEFAULT NULL, `package_id` int DEFAULT NULL, `user_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proxypay_payments` -- LOCK TABLES `proxypay_payments` WRITE; /*!40000 ALTER TABLE `proxypay_payments` DISABLE KEYS */; /*!40000 ALTER TABLE `proxypay_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `registration_verification_codes` -- DROP TABLE IF EXISTS `registration_verification_codes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `registration_verification_codes` ( `id` int NOT NULL AUTO_INCREMENT, `email` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_general_ci DEFAULT NULL, `code` text COLLATE utf8mb4_general_ci NOT NULL, `is_verified` tinyint 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 `email` (`email`), UNIQUE KEY `phone` (`phone`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `registration_verification_codes` -- LOCK TABLES `registration_verification_codes` WRITE; /*!40000 ALTER TABLE `registration_verification_codes` DISABLE KEYS */; /*!40000 ALTER TABLE `registration_verification_codes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reviews` -- DROP TABLE IF EXISTS `reviews`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `reviews` ( `id` int NOT NULL AUTO_INCREMENT, `type` varchar(10) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'real', `product_id` int NOT NULL, `user_id` int DEFAULT NULL, `custom_reviewer_name` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `custom_reviewer_image` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `rating` int NOT NULL DEFAULT '0', `comment` mediumtext COLLATE utf8mb3_unicode_ci NOT NULL, `photos` varchar(191) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `status` int NOT NULL DEFAULT '1', `viewed` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reviews` -- LOCK TABLES `reviews` WRITE; /*!40000 ALTER TABLE `reviews` DISABLE KEYS */; /*!40000 ALTER TABLE `reviews` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role_has_permissions` -- DROP TABLE IF EXISTS `role_has_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `role_has_permissions` ( `permission_id` bigint unsigned NOT NULL, `role_id` bigint 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `role_has_permissions` -- LOCK TABLES `role_has_permissions` WRITE; /*!40000 ALTER TABLE `role_has_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `role_has_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role_translations` -- DROP TABLE IF EXISTS `role_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `role_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `role_id` bigint NOT NULL, `name` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `role_translations` -- LOCK TABLES `role_translations` WRITE; /*!40000 ALTER TABLE `role_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `role_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `roles` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `guard_name` varchar(191) COLLATE utf8mb4_unicode_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roles` -- LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` VALUES (1,'Super Admin','web','2022-06-13 00:29:58','2022-06-12 12:00:00'); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `searches` -- DROP TABLE IF EXISTS `searches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `searches` ( `id` int NOT NULL AUTO_INCREMENT, `query` varchar(1000) COLLATE utf8mb3_unicode_ci NOT NULL, `count` int 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=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `searches` -- LOCK TABLES `searches` WRITE; /*!40000 ALTER TABLE `searches` DISABLE KEYS */; INSERT INTO `searches` VALUES (2,'dcs',1,'2020-03-08 00:29:09','2020-03-08 00:29:09'),(3,'das',3,'2020-03-08 00:29:15','2020-03-08 00:29:50'); /*!40000 ALTER TABLE `searches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `seller_categories` -- DROP TABLE IF EXISTS `seller_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `seller_categories` ( `id` int NOT NULL AUTO_INCREMENT, `seller_id` int NOT NULL, `category_id` int NOT NULL, `discount` double(20,2) NOT NULL DEFAULT '0.00', `discount_start_date` int DEFAULT NULL, `discount_end_date` int DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `seller_categories` -- LOCK TABLES `seller_categories` WRITE; /*!40000 ALTER TABLE `seller_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `seller_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `seller_package_payments` -- DROP TABLE IF EXISTS `seller_package_payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `seller_package_payments` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `seller_package_id` int NOT NULL, `amount` double(20,2) NOT NULL, `payment_method` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `payment_details` longtext COLLATE utf8mb3_unicode_ci, `approval` int NOT NULL, `offline_payment` int NOT NULL COMMENT '1=offline payment\r\n2=online paymnet', `reciept` varchar(150) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `seller_package_payments` -- LOCK TABLES `seller_package_payments` WRITE; /*!40000 ALTER TABLE `seller_package_payments` DISABLE KEYS */; /*!40000 ALTER TABLE `seller_package_payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `seller_package_translations` -- DROP TABLE IF EXISTS `seller_package_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `seller_package_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `seller_package_id` bigint NOT NULL, `name` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `seller_package_translations` -- LOCK TABLES `seller_package_translations` WRITE; /*!40000 ALTER TABLE `seller_package_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `seller_package_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `seller_packages` -- DROP TABLE IF EXISTS `seller_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `seller_packages` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `amount` double(11,2) NOT NULL DEFAULT '0.00', `product_upload_limit` int NOT NULL DEFAULT '0', `preorder_product_upload_limit` int NOT NULL DEFAULT '0', `logo` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `duration` int NOT NULL DEFAULT '0', `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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `seller_packages` -- LOCK TABLES `seller_packages` WRITE; /*!40000 ALTER TABLE `seller_packages` DISABLE KEYS */; /*!40000 ALTER TABLE `seller_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `seller_withdraw_requests` -- DROP TABLE IF EXISTS `seller_withdraw_requests`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `seller_withdraw_requests` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL, `amount` double(20,2) DEFAULT NULL, `message` longtext COLLATE utf8mb3_unicode_ci, `status` int DEFAULT NULL, `viewed` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `seller_withdraw_requests` -- LOCK TABLES `seller_withdraw_requests` WRITE; /*!40000 ALTER TABLE `seller_withdraw_requests` DISABLE KEYS */; /*!40000 ALTER TABLE `seller_withdraw_requests` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sellers` -- DROP TABLE IF EXISTS `sellers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sellers` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `rating` double(3,2) NOT NULL DEFAULT '0.00', `num_of_reviews` int NOT NULL DEFAULT '0', `num_of_sale` int NOT NULL DEFAULT '0', `verification_status` int NOT NULL DEFAULT '0', `verification_info` longtext COLLATE utf8mb3_unicode_ci, `cash_on_delivery_status` int NOT NULL DEFAULT '0', `admin_to_pay` double(20,2) NOT NULL DEFAULT '0.00', `bank_name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `bank_acc_name` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `bank_acc_no` varchar(50) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `bank_routing_no` int DEFAULT NULL, `bank_payment_status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sellers` -- LOCK TABLES `sellers` WRITE; /*!40000 ALTER TABLE `sellers` DISABLE KEYS */; INSERT INTO `sellers` 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 04:42:57','2020-01-26 04:21:11'); /*!40000 ALTER TABLE `sellers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shipping_box_sizes` -- DROP TABLE IF EXISTS `shipping_box_sizes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `shipping_box_sizes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `courier_type` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `user_id` int NOT NULL, `length` float NOT NULL, `breadth` float NOT NULL, `height` float 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shipping_box_sizes` -- LOCK TABLES `shipping_box_sizes` WRITE; /*!40000 ALTER TABLE `shipping_box_sizes` DISABLE KEYS */; /*!40000 ALTER TABLE `shipping_box_sizes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shipping_systems` -- DROP TABLE IF EXISTS `shipping_systems`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `shipping_systems` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `active` tinyint(1) NOT NULL DEFAULT '0', `addon_identifier` varchar(255) COLLATE utf8mb4_general_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shipping_systems` -- LOCK TABLES `shipping_systems` WRITE; /*!40000 ALTER TABLE `shipping_systems` DISABLE KEYS */; /*!40000 ALTER TABLE `shipping_systems` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shops` -- DROP TABLE IF EXISTS `shops`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `shops` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `name` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `logo` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `sliders` longtext COLLATE utf8mb3_unicode_ci, `top_banner` varchar(191) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `banner_full_width_1` varchar(191) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `banners_half_width` varchar(191) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `banner_full_width_2` varchar(191) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `phone` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `address` varchar(500) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `rating` double(3,2) NOT NULL DEFAULT '0.00', `num_of_reviews` int NOT NULL DEFAULT '0', `num_of_sale` int NOT NULL DEFAULT '0', `seller_package_id` int DEFAULT NULL, `product_upload_limit` int NOT NULL DEFAULT '0', `package_invalid_at` date DEFAULT NULL, `registration_approval` tinyint(1) NOT NULL DEFAULT '0', `verification_status` int NOT NULL DEFAULT '0', `verification_info` longtext COLLATE utf8mb3_unicode_ci, `business_info` longtext COLLATE utf8mb3_unicode_ci, `gst_verification` tinyint NOT NULL DEFAULT '0', `cash_on_delivery_status` int NOT NULL DEFAULT '0', `admin_to_pay` double(20,2) NOT NULL DEFAULT '0.00', `facebook` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `instagram` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `google` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `twitter` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `youtube` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_title` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `meta_description` text COLLATE utf8mb3_unicode_ci, `pick_up_point_id` text COLLATE utf8mb3_unicode_ci, `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) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `bank_acc_name` varchar(200) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `bank_acc_no` varchar(50) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `bank_routing_no` int DEFAULT NULL, `bank_payment_status` int NOT NULL DEFAULT '0', `top_banner_image` longtext COLLATE utf8mb3_unicode_ci, `top_banner_link` longtext COLLATE utf8mb3_unicode_ci, `slider_images` longtext COLLATE utf8mb3_unicode_ci, `slider_links` longtext COLLATE utf8mb3_unicode_ci, `banner_full_width_1_images` longtext COLLATE utf8mb3_unicode_ci, `banner_full_width_1_links` longtext COLLATE utf8mb3_unicode_ci, `banners_half_width_images` longtext COLLATE utf8mb3_unicode_ci, `banners_half_width_links` longtext COLLATE utf8mb3_unicode_ci, `banner_full_width_2_images` longtext COLLATE utf8mb3_unicode_ci, `banner_full_width_2_links` longtext COLLATE utf8mb3_unicode_ci, `custom_followers` int DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shops` -- LOCK TABLES `shops` WRITE; /*!40000 ALTER TABLE `shops` DISABLE KEYS */; INSERT INTO `shops` VALUES (1,3,'Demo Seller Shop',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'House : Demo, Road : Demo, Section : Demo',0.00,0,0,NULL,0,NULL,0,0,NULL,NULL,0,0,0.00,'www.facebook.com',NULL,'www.google.com','www.twitter.com','www.youtube.com','Demo-Seller-Shop-1','Demo Seller Shop Title','Demo description',NULL,0.00,0.00,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,'2018-11-27 10:23:13','2019-08-06 06:43:16'); /*!40000 ALTER TABLE `shops` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `size_chart_details` -- DROP TABLE IF EXISTS `size_chart_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `size_chart_details` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `size_chart_id` int NOT NULL, `measurement_point_id` int NOT NULL, `attribute_value_id` int NOT NULL, `inch_value` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `cen_value` varchar(191) COLLATE utf8mb4_general_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `size_chart_details` -- LOCK TABLES `size_chart_details` WRITE; /*!40000 ALTER TABLE `size_chart_details` DISABLE KEYS */; /*!40000 ALTER TABLE `size_chart_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `size_charts` -- DROP TABLE IF EXISTS `size_charts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `size_charts` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `category_id` int NOT NULL, `fit_type` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `stretch_type` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `photos` varchar(191) COLLATE utf8mb4_general_ci DEFAULT NULL, `description` text COLLATE utf8mb4_general_ci, `measurement_points` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `size_options` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `measurement_option` varchar(191) COLLATE utf8mb4_general_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `size_charts` -- LOCK TABLES `size_charts` WRITE; /*!40000 ALTER TABLE `size_charts` DISABLE KEYS */; /*!40000 ALTER TABLE `size_charts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sms_templates` -- DROP TABLE IF EXISTS `sms_templates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sms_templates` ( `id` int NOT NULL AUTO_INCREMENT, `identifier` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sms_body` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `template_id` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci 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 AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sms_templates` -- LOCK TABLES `sms_templates` WRITE; /*!40000 ALTER TABLE `sms_templates` DISABLE KEYS */; INSERT INTO `sms_templates` VALUES (1,'phone_number_verification','[[code]] is your verification code for [[site_name]].',NULL,0,'2021-06-07 13:29:22','2021-06-08 02:38:18'),(2,'password_reset','Your password reset code is [[code]].',NULL,1,'2021-06-07 13:29:34','2021-06-07 13:29:34'),(3,'order_placement','Your order has been placed and Order Code is [[order_code]]',NULL,1,'2021-06-07 13:32:22','2021-06-08 02:39:25'),(4,'delivery_status_change','Your delivery status has been updated to [[delivery_status]] for Order code : [[order_code]]',NULL,1,'2021-06-07 13:33:14','2021-06-08 02:39:28'),(5,'payment_status_change','Your payment status has been updated to [[payment_status]] for Order code : [[order_code]]',NULL,1,'2021-06-07 13:35:23','2021-06-08 02:39:31'),(6,'assign_delivery_boy','You are assigned to deliver an order. Order code : [[order_code]]',NULL,1,'2021-06-07 13:38:10','2021-06-08 02:39:34'),(7,'account_opening','Hi! An account has been created on [[site_name]]. Your account type is: [[user_type]], password is: [[password]] and the verification code is [[code]] .',NULL,1,'2026-01-21 23:05:15','2026-01-21 23:05:15'),(8,'login_with_otp','Your otp verification code is [[code]]',NULL,1,'2026-01-21 23:05:15','2026-01-21 23:05:15'); /*!40000 ALTER TABLE `sms_templates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `staff` -- DROP TABLE IF EXISTS `staff`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `staff` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `role_id` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `staff` -- LOCK TABLES `staff` WRITE; /*!40000 ALTER TABLE `staff` DISABLE KEYS */; /*!40000 ALTER TABLE `staff` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `states` -- DROP TABLE IF EXISTS `states`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `states` ( `id` bigint NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `country_id` int NOT NULL, `status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `states` -- LOCK TABLES `states` WRITE; /*!40000 ALTER TABLE `states` DISABLE KEYS */; INSERT INTO `states` VALUES (1,'Andaman and Nicobar Islands',101,0,'2021-04-06 01:11:20','2021-10-11 00:43:52',NULL),(2,'Andhra Pradesh',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3,'Arunachal Pradesh',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4,'Assam',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(5,'Bihar',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(6,'Chandigarh',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(7,'Chhattisgarh',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(8,'Dadra and Nagar Haveli',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(9,'Daman and Diu',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(10,'Delhi',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(11,'Goa',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(12,'Gujarat',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(13,'Haryana',101,0,'2021-04-06 01:11:20','2021-10-11 00:53:13',NULL),(14,'Himachal Pradesh',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(15,'Jammu and Kashmir',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(16,'Jharkhand',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(17,'Karnataka',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(18,'Kenmore',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(19,'Kerala',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(20,'Lakshadweep',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(21,'Madhya Pradesh',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(22,'Maharashtra',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(23,'Manipur',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(24,'Meghalaya',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(25,'Mizoram',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(26,'Nagaland',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(27,'Narora',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(28,'Natwar',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(29,'Odisha',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(30,'Paschim Medinipur',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(31,'Pondicherry',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(32,'Punjab',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(33,'Rajasthan',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(34,'Sikkim',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(35,'Tamil Nadu',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(36,'Telangana',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(37,'Tripura',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(38,'Uttar Pradesh',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(39,'Uttarakhand',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(40,'Vaishali',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(41,'West Bengal',101,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(42,'Badakhshan',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(43,'Badgis',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(44,'Baglan',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(45,'Balkh',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(46,'Bamiyan',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(47,'Farah',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(48,'Faryab',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(49,'Gawr',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(50,'Gazni',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(51,'Herat',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(52,'Hilmand',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(53,'Jawzjan',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(54,'Kabul',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(55,'Kapisa',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(56,'Khawst',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(57,'Kunar',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(58,'Lagman',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(59,'Lawghar',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(60,'Nangarhar',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(61,'Nimruz',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(62,'Nuristan',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(63,'Paktika',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(64,'Paktiya',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(65,'Parwan',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(66,'Qandahar',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(67,'Qunduz',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(68,'Samangan',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(69,'Sar-e Pul',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(70,'Takhar',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(71,'Uruzgan',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(72,'Wardag',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(73,'Zabul',1,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(74,'Berat',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(75,'Bulqize',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(76,'Delvine',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(77,'Devoll',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(78,'Dibre',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(79,'Durres',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(80,'Elbasan',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(81,'Fier',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(82,'Gjirokaster',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(83,'Gramsh',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(84,'Has',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(85,'Kavaje',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(86,'Kolonje',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(87,'Korce',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(88,'Kruje',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(89,'Kucove',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(90,'Kukes',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(91,'Kurbin',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(92,'Lezhe',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(93,'Librazhd',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(94,'Lushnje',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(95,'Mallakaster',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(96,'Malsi e Madhe',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(97,'Mat',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(98,'Mirdite',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(99,'Peqin',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(100,'Permet',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(101,'Pogradec',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(102,'Puke',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(103,'Sarande',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(104,'Shkoder',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(105,'Skrapar',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(106,'Tepelene',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(107,'Tirane',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(108,'Tropoje',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(109,'Vlore',2,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(110,'\'Ayn Daflah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(111,'\'Ayn Tamushanat',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(112,'Adrar',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(113,'Algiers',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(114,'Annabah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(115,'Bashshar',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(116,'Batnah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(117,'Bijayah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(118,'Biskrah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(119,'Blidah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(120,'Buirah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(121,'Bumardas',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(122,'Burj Bu Arririj',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(123,'Ghalizan',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(124,'Ghardayah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(125,'Ilizi',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(126,'Jijili',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(127,'Jilfah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(128,'Khanshalah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(129,'Masilah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(130,'Midyah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(131,'Milah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(132,'Muaskar',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(133,'Mustaghanam',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(134,'Naama',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(135,'Oran',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(136,'Ouargla',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(137,'Qalmah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(138,'Qustantinah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(139,'Sakikdah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(140,'Satif',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(141,'Sayda\'',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(142,'Sidi ban-al-\'Abbas',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(143,'Suq Ahras',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(144,'Tamanghasat',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(145,'Tibazah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(146,'Tibissah',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(147,'Tilimsan',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(148,'Tinduf',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(149,'Tisamsilt',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(150,'Tiyarat',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(151,'Tizi Wazu',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(152,'Umm-al-Bawaghi',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(153,'Wahran',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(154,'Warqla',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(155,'Wilaya d Alger',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(156,'Wilaya de Bejaia',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(157,'Wilaya de Constantine',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(158,'al-Aghwat',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(159,'al-Bayadh',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(160,'al-Jaza\'ir',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(161,'al-Wad',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(162,'ash-Shalif',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(163,'at-Tarif',3,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(164,'Eastern',4,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(165,'Manu\'a',4,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(166,'Swains Island',4,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(167,'Western',4,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(168,'Andorra la Vella',5,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(169,'Canillo',5,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(170,'Encamp',5,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(171,'La Massana',5,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(172,'Les Escaldes',5,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(173,'Ordino',5,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(174,'Sant Julia de Loria',5,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(175,'Bengo',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(176,'Benguela',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(177,'Bie',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(178,'Cabinda',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(179,'Cunene',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(180,'Huambo',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(181,'Huila',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(182,'Kuando-Kubango',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(183,'Kwanza Norte',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(184,'Kwanza Sul',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(185,'Luanda',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(186,'Lunda Norte',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(187,'Lunda Sul',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(188,'Malanje',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(189,'Moxico',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(190,'Namibe',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(191,'Uige',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(192,'Zaire',6,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(193,'Other Provinces',7,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(194,'Sector claimed by Argentina/Ch',8,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(195,'Sector claimed by Argentina/UK',8,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(196,'Sector claimed by Australia',8,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(197,'Sector claimed by France',8,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(198,'Sector claimed by New Zealand',8,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(199,'Sector claimed by Norway',8,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(200,'Unclaimed Sector',8,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(201,'Barbuda',9,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(202,'Saint George',9,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(203,'Saint John',9,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(204,'Saint Mary',9,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(205,'Saint Paul',9,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(206,'Saint Peter',9,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(207,'Saint Philip',9,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(208,'Buenos Aires',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(209,'Catamarca',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(210,'Chaco',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(211,'Chubut',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(212,'Cordoba',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(213,'Corrientes',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(214,'Distrito Federal',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(215,'Entre Rios',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(216,'Formosa',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(217,'Jujuy',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(218,'La Pampa',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(219,'La Rioja',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(220,'Mendoza',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(221,'Misiones',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(222,'Neuquen',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(223,'Rio Negro',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(224,'Salta',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(225,'San Juan',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(226,'San Luis',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(227,'Santa Cruz',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(228,'Santa Fe',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(229,'Santiago del Estero',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(230,'Tierra del Fuego',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(231,'Tucuman',10,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(232,'Aragatsotn',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(233,'Ararat',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(234,'Armavir',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(235,'Gegharkunik',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(236,'Kotaik',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(237,'Lori',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(238,'Shirak',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(239,'Stepanakert',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(240,'Syunik',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(241,'Tavush',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(242,'Vayots Dzor',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(243,'Yerevan',11,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(244,'Aruba',12,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(245,'Auckland',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(246,'Australian Capital Territory',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(247,'Balgowlah',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(248,'Balmain',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(249,'Bankstown',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(250,'Baulkham Hills',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(251,'Bonnet Bay',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(252,'Camberwell',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(253,'Carole Park',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(254,'Castle Hill',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(255,'Caulfield',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(256,'Chatswood',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(257,'Cheltenham',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(258,'Cherrybrook',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(259,'Clayton',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(260,'Collingwood',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(261,'Frenchs Forest',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(262,'Hawthorn',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(263,'Jannnali',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(264,'Knoxfield',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(265,'Melbourne',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(266,'New South Wales',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(267,'Northern Territory',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(268,'Perth',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(269,'Queensland',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(270,'South Australia',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(271,'Tasmania',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(272,'Templestowe',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(273,'Victoria',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(274,'Werribee south',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(275,'Western Australia',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(276,'Wheeler',13,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(277,'Bundesland Salzburg',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(278,'Bundesland Steiermark',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(279,'Bundesland Tirol',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(280,'Burgenland',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(281,'Carinthia',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(282,'Karnten',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(283,'Liezen',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(284,'Lower Austria',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(285,'Niederosterreich',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(286,'Oberosterreich',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(287,'Salzburg',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(288,'Schleswig-Holstein',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(289,'Steiermark',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(290,'Styria',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(291,'Tirol',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(292,'Upper Austria',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(293,'Vorarlberg',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(294,'Wien',14,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(295,'Abseron',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(296,'Baki Sahari',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(297,'Ganca',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(298,'Ganja',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(299,'Kalbacar',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(300,'Lankaran',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(301,'Mil-Qarabax',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(302,'Mugan-Salyan',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(303,'Nagorni-Qarabax',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(304,'Naxcivan',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(305,'Priaraks',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(306,'Qazax',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(307,'Saki',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(308,'Sirvan',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(309,'Xacmaz',15,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(310,'Abaco',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(311,'Acklins Island',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(312,'Andros',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(313,'Berry Islands',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(314,'Biminis',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(315,'Cat Island',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(316,'Crooked Island',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(317,'Eleuthera',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(318,'Exuma and Cays',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(319,'Grand Bahama',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(320,'Inagua Islands',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(321,'Long Island',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(322,'Mayaguana',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(323,'New Providence',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(324,'Ragged Island',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(325,'Rum Cay',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(326,'San Salvador',16,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(327,'\'Isa',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(328,'Badiyah',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(329,'Hidd',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(330,'Jidd Hafs',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(331,'Mahama',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(332,'Manama',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(333,'Sitrah',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(334,'al-Manamah',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(335,'al-Muharraq',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(336,'ar-Rifa\'a',17,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(337,'Bagar Hat',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(338,'Bandarban',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(339,'Barguna',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(340,'Barisal',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(341,'Bhola',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(342,'Bogora',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(343,'Brahman Bariya',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(344,'Chandpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(345,'Chattagam',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(346,'Chittagong Division',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(347,'Chuadanga',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(348,'Dhaka',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(349,'Dinajpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(350,'Faridpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(351,'Feni',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(352,'Gaybanda',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(353,'Gazipur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(354,'Gopalganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(355,'Habiganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(356,'Jaipur Hat',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(357,'Jamalpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(358,'Jessor',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(359,'Jhalakati',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(360,'Jhanaydah',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(361,'Khagrachhari',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(362,'Khulna',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(363,'Kishorganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(364,'Koks Bazar',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(365,'Komilla',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(366,'Kurigram',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(367,'Kushtiya',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(368,'Lakshmipur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(369,'Lalmanir Hat',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(370,'Madaripur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(371,'Magura',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(372,'Maimansingh',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(373,'Manikganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(374,'Maulvi Bazar',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(375,'Meherpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(376,'Munshiganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(377,'Naral',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(378,'Narayanganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(379,'Narsingdi',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(380,'Nator',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(381,'Naugaon',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(382,'Nawabganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(383,'Netrakona',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(384,'Nilphamari',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(385,'Noakhali',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(386,'Pabna',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(387,'Panchagarh',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(388,'Patuakhali',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(389,'Pirojpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(390,'Rajbari',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(391,'Rajshahi',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(392,'Rangamati',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(393,'Rangpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(394,'Satkhira',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(395,'Shariatpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(396,'Sherpur',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(397,'Silhat',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(398,'Sirajganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(399,'Sunamganj',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(400,'Tangayal',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(401,'Thakurgaon',18,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(402,'Christ Church',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(403,'Saint Andrew',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(404,'Saint George',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(405,'Saint James',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(406,'Saint John',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(407,'Saint Joseph',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(408,'Saint Lucy',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(409,'Saint Michael',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(410,'Saint Peter',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(411,'Saint Philip',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(412,'Saint Thomas',19,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(413,'Brest',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(414,'Homjel\'',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(415,'Hrodna',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(416,'Mahiljow',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(417,'Mahilyowskaya Voblasts',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(418,'Minsk',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(419,'Minskaja Voblasts\'',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(420,'Petrik',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(421,'Vicebsk',20,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(422,'Antwerpen',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(423,'Berchem',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(424,'Brabant',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(425,'Brabant Wallon',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(426,'Brussel',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(427,'East Flanders',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(428,'Hainaut',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(429,'Liege',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(430,'Limburg',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(431,'Luxembourg',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(432,'Namur',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(433,'Ontario',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(434,'Oost-Vlaanderen',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(435,'Provincie Brabant',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(436,'Vlaams-Brabant',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(437,'Wallonne',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(438,'West-Vlaanderen',21,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(439,'Belize',22,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(440,'Cayo',22,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(441,'Corozal',22,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(442,'Orange Walk',22,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(443,'Stann Creek',22,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(444,'Toledo',22,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(445,'Alibori',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(446,'Atacora',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(447,'Atlantique',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(448,'Borgou',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(449,'Collines',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(450,'Couffo',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(451,'Donga',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(452,'Littoral',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(453,'Mono',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(454,'Oueme',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(455,'Plateau',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(456,'Zou',23,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(457,'Hamilton',24,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(458,'Saint George',24,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(459,'Bumthang',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(460,'Chhukha',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(461,'Chirang',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(462,'Daga',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(463,'Geylegphug',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(464,'Ha',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(465,'Lhuntshi',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(466,'Mongar',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(467,'Pemagatsel',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(468,'Punakha',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(469,'Rinpung',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(470,'Samchi',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(471,'Samdrup Jongkhar',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(472,'Shemgang',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(473,'Tashigang',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(474,'Timphu',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(475,'Tongsa',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(476,'Wangdiphodrang',25,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(477,'Beni',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(478,'Chuquisaca',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(479,'Cochabamba',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(480,'La Paz',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(481,'Oruro',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(482,'Pando',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(483,'Potosi',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(484,'Santa Cruz',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(485,'Tarija',26,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(486,'Federacija Bosna i Hercegovina',27,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(487,'Republika Srpska',27,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(488,'Central Bobonong',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(489,'Central Boteti',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(490,'Central Mahalapye',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(491,'Central Serowe-Palapye',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(492,'Central Tutume',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(493,'Chobe',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(494,'Francistown',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(495,'Gaborone',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(496,'Ghanzi',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(497,'Jwaneng',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(498,'Kgalagadi North',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(499,'Kgalagadi South',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(500,'Kgatleng',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(501,'Kweneng',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(502,'Lobatse',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(503,'Ngamiland',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(504,'Ngwaketse',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(505,'North East',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(506,'Okavango',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(507,'Orapa',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(508,'Selibe Phikwe',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(509,'South East',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(510,'Sowa',28,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(511,'Bouvet Island',29,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(512,'Acre',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(513,'Alagoas',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(514,'Amapa',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(515,'Amazonas',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(516,'Bahia',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(517,'Ceara',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(518,'Distrito Federal',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(519,'Espirito Santo',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(520,'Estado de Sao Paulo',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(521,'Goias',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(522,'Maranhao',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(523,'Mato Grosso',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(524,'Mato Grosso do Sul',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(525,'Minas Gerais',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(526,'Para',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(527,'Paraiba',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(528,'Parana',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(529,'Pernambuco',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(530,'Piaui',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(531,'Rio Grande do Norte',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(532,'Rio Grande do Sul',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(533,'Rio de Janeiro',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(534,'Rondonia',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(535,'Roraima',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(536,'Santa Catarina',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(537,'Sao Paulo',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(538,'Sergipe',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(539,'Tocantins',30,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(540,'British Indian Ocean Territory',31,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(541,'Belait',32,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(542,'Brunei-Muara',32,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(543,'Temburong',32,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(544,'Tutong',32,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(545,'Blagoevgrad',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(546,'Burgas',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(547,'Dobrich',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(548,'Gabrovo',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(549,'Haskovo',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(550,'Jambol',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(551,'Kardzhali',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(552,'Kjustendil',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(553,'Lovech',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(554,'Montana',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(555,'Oblast Sofiya-Grad',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(556,'Pazardzhik',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(557,'Pernik',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(558,'Pleven',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(559,'Plovdiv',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(560,'Razgrad',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(561,'Ruse',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(562,'Shumen',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(563,'Silistra',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(564,'Sliven',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(565,'Smoljan',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(566,'Sofija grad',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(567,'Sofijska oblast',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(568,'Stara Zagora',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(569,'Targovishte',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(570,'Varna',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(571,'Veliko Tarnovo',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(572,'Vidin',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(573,'Vraca',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(574,'Yablaniza',33,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(575,'Bale',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(576,'Bam',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(577,'Bazega',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(578,'Bougouriba',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(579,'Boulgou',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(580,'Boulkiemde',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(581,'Comoe',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(582,'Ganzourgou',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(583,'Gnagna',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(584,'Gourma',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(585,'Houet',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(586,'Ioba',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(587,'Kadiogo',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(588,'Kenedougou',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(589,'Komandjari',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(590,'Kompienga',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(591,'Kossi',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(592,'Kouritenga',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(593,'Kourweogo',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(594,'Leraba',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(595,'Mouhoun',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(596,'Nahouri',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(597,'Namentenga',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(598,'Noumbiel',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(599,'Oubritenga',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(600,'Oudalan',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(601,'Passore',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(602,'Poni',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(603,'Sanguie',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(604,'Sanmatenga',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(605,'Seno',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(606,'Sissili',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(607,'Soum',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(608,'Sourou',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(609,'Tapoa',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(610,'Tuy',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(611,'Yatenga',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(612,'Zondoma',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(613,'Zoundweogo',34,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(614,'Bubanza',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(615,'Bujumbura',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(616,'Bururi',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(617,'Cankuzo',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(618,'Cibitoke',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(619,'Gitega',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(620,'Karuzi',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(621,'Kayanza',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(622,'Kirundo',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(623,'Makamba',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(624,'Muramvya',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(625,'Muyinga',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(626,'Ngozi',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(627,'Rutana',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(628,'Ruyigi',35,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(629,'Banteay Mean Chey',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(630,'Bat Dambang',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(631,'Kampong Cham',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(632,'Kampong Chhnang',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(633,'Kampong Spoeu',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(634,'Kampong Thum',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(635,'Kampot',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(636,'Kandal',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(637,'Kaoh Kong',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(638,'Kracheh',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(639,'Krong Kaeb',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(640,'Krong Pailin',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(641,'Krong Preah Sihanouk',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(642,'Mondol Kiri',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(643,'Otdar Mean Chey',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(644,'Phnum Penh',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(645,'Pousat',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(646,'Preah Vihear',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(647,'Prey Veaeng',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(648,'Rotanak Kiri',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(649,'Siem Reab',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(650,'Stueng Traeng',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(651,'Svay Rieng',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(652,'Takaev',36,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(653,'Adamaoua',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(654,'Centre',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(655,'Est',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(656,'Littoral',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(657,'Nord',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(658,'Nord Extreme',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(659,'Nordouest',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(660,'Ouest',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(661,'Sud',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(662,'Sudouest',37,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(663,'Alberta',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(664,'British Columbia',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(665,'Manitoba',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(666,'New Brunswick',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(667,'Newfoundland and Labrador',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(668,'Northwest Territories',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(669,'Nova Scotia',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(670,'Nunavut',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(671,'Ontario',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(672,'Prince Edward Island',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(673,'Quebec',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(674,'Saskatchewan',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(675,'Yukon',38,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(676,'Boavista',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(677,'Brava',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(678,'Fogo',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(679,'Maio',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(680,'Sal',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(681,'Santo Antao',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(682,'Sao Nicolau',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(683,'Sao Tiago',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(684,'Sao Vicente',39,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(685,'Grand Cayman',40,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(686,'Bamingui-Bangoran',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(687,'Bangui',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(688,'Basse-Kotto',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(689,'Haut-Mbomou',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(690,'Haute-Kotto',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(691,'Kemo',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(692,'Lobaye',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(693,'Mambere-Kadei',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(694,'Mbomou',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(695,'Nana-Gribizi',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(696,'Nana-Mambere',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(697,'Ombella Mpoko',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(698,'Ouaka',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(699,'Ouham',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(700,'Ouham-Pende',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(701,'Sangha-Mbaere',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(702,'Vakaga',41,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(703,'Batha',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(704,'Biltine',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(705,'Bourkou-Ennedi-Tibesti',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(706,'Chari-Baguirmi',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(707,'Guera',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(708,'Kanem',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(709,'Lac',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(710,'Logone Occidental',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(711,'Logone Oriental',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(712,'Mayo-Kebbi',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(713,'Moyen-Chari',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(714,'Ouaddai',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(715,'Salamat',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(716,'Tandjile',42,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(717,'Aisen',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(718,'Antofagasta',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(719,'Araucania',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(720,'Atacama',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(721,'Bio Bio',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(722,'Coquimbo',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(723,'Libertador General Bernardo O\'',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(724,'Los Lagos',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(725,'Magellanes',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(726,'Maule',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(727,'Metropolitana',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(728,'Metropolitana de Santiago',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(729,'Tarapaca',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(730,'Valparaiso',43,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(731,'Anhui',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(734,'Aomen',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(735,'Beijing',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(736,'Beijing Shi',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(737,'Chongqing',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(738,'Fujian',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(740,'Gansu',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(741,'Guangdong',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(743,'Guangxi',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(744,'Guizhou',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(745,'Hainan',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(746,'Hebei',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(747,'Heilongjiang',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(748,'Henan',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(749,'Hubei',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(750,'Hunan',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(751,'Jiangsu',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(753,'Jiangxi',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(754,'Jilin',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(755,'Liaoning',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(757,'Nei Monggol',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(758,'Ningxia Hui',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(759,'Qinghai',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(760,'Shaanxi',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(761,'Shandong',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(763,'Shanghai',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(764,'Shanxi',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(765,'Sichuan',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(766,'Tianjin',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(767,'Xianggang',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(768,'Xinjiang',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(769,'Xizang',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(770,'Yunnan',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(771,'Zhejiang',44,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(773,'Christmas Island',45,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(774,'Cocos (Keeling) Islands',46,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(775,'Amazonas',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(776,'Antioquia',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(777,'Arauca',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(778,'Atlantico',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(779,'Bogota',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(780,'Bolivar',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(781,'Boyaca',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(782,'Caldas',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(783,'Caqueta',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(784,'Casanare',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(785,'Cauca',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(786,'Cesar',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(787,'Choco',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(788,'Cordoba',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(789,'Cundinamarca',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(790,'Guainia',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(791,'Guaviare',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(792,'Huila',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(793,'La Guajira',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(794,'Magdalena',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(795,'Meta',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(796,'Narino',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(797,'Norte de Santander',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(798,'Putumayo',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(799,'Quindio',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(800,'Risaralda',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(801,'San Andres y Providencia',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(802,'Santander',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(803,'Sucre',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(804,'Tolima',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(805,'Valle del Cauca',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(806,'Vaupes',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(807,'Vichada',47,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(808,'Mwali',48,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(809,'Njazidja',48,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(810,'Nzwani',48,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(811,'Bouenza',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(812,'Brazzaville',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(813,'Cuvette',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(814,'Kouilou',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(815,'Lekoumou',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(816,'Likouala',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(817,'Niari',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(818,'Plateaux',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(819,'Pool',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(820,'Sangha',49,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(821,'Bandundu',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(822,'Bas-Congo',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(823,'Equateur',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(824,'Haut-Congo',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(825,'Kasai-Occidental',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(826,'Kasai-Oriental',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(827,'Katanga',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(828,'Kinshasa',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(829,'Maniema',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(830,'Nord-Kivu',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(831,'Sud-Kivu',50,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(832,'Aitutaki',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(833,'Atiu',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(834,'Mangaia',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(835,'Manihiki',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(836,'Mauke',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(837,'Mitiaro',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(838,'Nassau',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(839,'Pukapuka',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(840,'Rakahanga',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(841,'Rarotonga',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(842,'Tongareva',51,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(843,'Alajuela',52,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(844,'Cartago',52,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(845,'Guanacaste',52,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(846,'Heredia',52,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(847,'Limon',52,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(848,'Puntarenas',52,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(849,'San Jose',52,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(850,'Abidjan',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(851,'Agneby',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(852,'Bafing',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(853,'Denguele',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(854,'Dix-huit Montagnes',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(855,'Fromager',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(856,'Haut-Sassandra',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(857,'Lacs',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(858,'Lagunes',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(859,'Marahoue',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(860,'Moyen-Cavally',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(861,'Moyen-Comoe',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(862,'N\'zi-Comoe',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(863,'Sassandra',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(864,'Savanes',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(865,'Sud-Bandama',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(866,'Sud-Comoe',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(867,'Vallee du Bandama',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(868,'Worodougou',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(869,'Zanzan',53,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(870,'Bjelovar-Bilogora',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(871,'Dubrovnik-Neretva',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(872,'Grad Zagreb',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(873,'Istra',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(874,'Karlovac',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(875,'Koprivnica-Krizhevci',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(876,'Krapina-Zagorje',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(877,'Lika-Senj',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(878,'Medhimurje',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(879,'Medimurska Zupanija',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(880,'Osijek-Baranja',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(881,'Osjecko-Baranjska Zupanija',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(882,'Pozhega-Slavonija',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(883,'Primorje-Gorski Kotar',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(884,'Shibenik-Knin',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(885,'Sisak-Moslavina',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(886,'Slavonski Brod-Posavina',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(887,'Split-Dalmacija',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(888,'Varazhdin',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(889,'Virovitica-Podravina',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(890,'Vukovar-Srijem',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(891,'Zadar',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(892,'Zagreb',54,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(893,'Camaguey',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(894,'Ciego de Avila',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(895,'Cienfuegos',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(896,'Ciudad de la Habana',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(897,'Granma',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(898,'Guantanamo',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(899,'Habana',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(900,'Holguin',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(901,'Isla de la Juventud',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(902,'La Habana',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(903,'Las Tunas',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(904,'Matanzas',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(905,'Pinar del Rio',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(906,'Sancti Spiritus',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(907,'Santiago de Cuba',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(908,'Villa Clara',55,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(909,'Government controlled area',56,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(910,'Limassol',56,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(911,'Nicosia District',56,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(912,'Paphos',56,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(913,'Turkish controlled area',56,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(914,'Central Bohemian',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(915,'Frycovice',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(916,'Jihocesky Kraj',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(917,'Jihochesky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(918,'Jihomoravsky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(919,'Karlovarsky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(920,'Klecany',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(921,'Kralovehradecky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(922,'Liberecky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(923,'Lipov',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(924,'Moravskoslezsky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(925,'Olomoucky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(926,'Olomoucky Kraj',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(927,'Pardubicky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(928,'Plzensky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(929,'Praha',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(930,'Rajhrad',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(931,'Smirice',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(932,'South Moravian',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(933,'Straz nad Nisou',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(934,'Stredochesky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(935,'Unicov',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(936,'Ustecky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(937,'Valletta',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(938,'Velesin',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(939,'Vysochina',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(940,'Zlinsky',57,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(941,'Arhus',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(942,'Bornholm',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(943,'Frederiksborg',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(944,'Fyn',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(945,'Hovedstaden',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(946,'Kobenhavn',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(947,'Kobenhavns Amt',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(948,'Kobenhavns Kommune',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(949,'Nordjylland',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(950,'Ribe',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(951,'Ringkobing',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(952,'Roervig',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(953,'Roskilde',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(954,'Roslev',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(955,'Sjaelland',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(956,'Soeborg',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(957,'Sonderjylland',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(958,'Storstrom',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(959,'Syddanmark',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(960,'Toelloese',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(961,'Vejle',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(962,'Vestsjalland',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(963,'Viborg',58,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(964,'\'Ali Sabih',59,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(965,'Dikhil',59,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(966,'Jibuti',59,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(967,'Tajurah',59,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(968,'Ubuk',59,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(969,'Saint Andrew',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(970,'Saint David',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(971,'Saint George',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(972,'Saint John',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(973,'Saint Joseph',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(974,'Saint Luke',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(975,'Saint Mark',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(976,'Saint Patrick',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(977,'Saint Paul',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(978,'Saint Peter',60,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(979,'Azua',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(980,'Bahoruco',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(981,'Barahona',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(982,'Dajabon',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(983,'Distrito Nacional',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(984,'Duarte',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(985,'El Seybo',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(986,'Elias Pina',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(987,'Espaillat',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(988,'Hato Mayor',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(989,'Independencia',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(990,'La Altagracia',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(991,'La Romana',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(992,'La Vega',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(993,'Maria Trinidad Sanchez',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(994,'Monsenor Nouel',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(995,'Monte Cristi',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(996,'Monte Plata',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(997,'Pedernales',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(998,'Peravia',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(999,'Puerto Plata',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1000,'Salcedo',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1001,'Samana',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1002,'San Cristobal',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1003,'San Juan',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1004,'San Pedro de Macoris',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1005,'Sanchez Ramirez',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1006,'Santiago',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1007,'Santiago Rodriguez',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1008,'Valverde',61,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1009,'Aileu',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1010,'Ainaro',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1011,'Ambeno',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1012,'Baucau',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1013,'Bobonaro',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1014,'Cova Lima',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1015,'Dili',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1016,'Ermera',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1017,'Lautem',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1018,'Liquica',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1019,'Manatuto',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1020,'Manufahi',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1021,'Viqueque',62,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1022,'Azuay',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1023,'Bolivar',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1024,'Canar',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1025,'Carchi',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1026,'Chimborazo',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1027,'Cotopaxi',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1028,'El Oro',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1029,'Esmeraldas',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1030,'Galapagos',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1031,'Guayas',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1032,'Imbabura',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1033,'Loja',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1034,'Los Rios',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1035,'Manabi',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1036,'Morona Santiago',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1037,'Napo',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1038,'Orellana',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1039,'Pastaza',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1040,'Pichincha',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1041,'Sucumbios',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1042,'Tungurahua',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1043,'Zamora Chinchipe',63,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1044,'Aswan',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1045,'Asyut',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1046,'Bani Suwayf',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1047,'Bur Sa\'id',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1048,'Cairo',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1049,'Dumyat',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1050,'Kafr-ash-Shaykh',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1051,'Matruh',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1052,'Muhafazat ad Daqahliyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1053,'Muhafazat al Fayyum',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1054,'Muhafazat al Gharbiyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1055,'Muhafazat al Iskandariyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1056,'Muhafazat al Qahirah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1057,'Qina',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1058,'Sawhaj',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1059,'Sina al-Janubiyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1060,'Sina ash-Shamaliyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1061,'ad-Daqahliyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1062,'al-Bahr-al-Ahmar',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1063,'al-Buhayrah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1064,'al-Fayyum',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1065,'al-Gharbiyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1066,'al-Iskandariyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1067,'al-Ismailiyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1068,'al-Jizah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1069,'al-Minufiyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1070,'al-Minya',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1071,'al-Qahira',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1072,'al-Qalyubiyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1073,'al-Uqsur',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1074,'al-Wadi al-Jadid',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1075,'as-Suways',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1076,'ash-Sharqiyah',64,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1077,'Ahuachapan',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1078,'Cabanas',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1079,'Chalatenango',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1080,'Cuscatlan',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1081,'La Libertad',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1082,'La Paz',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1083,'La Union',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1084,'Morazan',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1085,'San Miguel',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1086,'San Salvador',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1087,'San Vicente',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1088,'Santa Ana',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1089,'Sonsonate',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1090,'Usulutan',65,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1091,'Annobon',66,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1092,'Bioko Norte',66,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1093,'Bioko Sur',66,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1094,'Centro Sur',66,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1095,'Kie-Ntem',66,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1096,'Litoral',66,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1097,'Wele-Nzas',66,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1098,'Anseba',67,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1099,'Debub',67,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1100,'Debub-Keih-Bahri',67,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1101,'Gash-Barka',67,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1102,'Maekel',67,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1103,'Semien-Keih-Bahri',67,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1104,'Harju',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1105,'Hiiu',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1106,'Ida-Viru',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1107,'Jarva',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1108,'Jogeva',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1109,'Laane',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1110,'Laane-Viru',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1111,'Parnu',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1112,'Polva',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1113,'Rapla',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1114,'Saare',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1115,'Tartu',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1116,'Valga',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1117,'Viljandi',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1118,'Voru',68,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1119,'Addis Abeba',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1120,'Afar',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1121,'Amhara',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1122,'Benishangul',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1123,'Diredawa',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1124,'Gambella',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1125,'Harar',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1126,'Jigjiga',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1127,'Mekele',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1128,'Oromia',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1129,'Somali',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1130,'Southern',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1131,'Tigray',69,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1132,'Christmas Island',70,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1133,'Cocos Islands',70,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1134,'Coral Sea Islands',70,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1135,'Falkland Islands',71,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1136,'South Georgia',71,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1137,'Klaksvik',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1138,'Nor ara Eysturoy',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1139,'Nor oy',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1140,'Sandoy',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1141,'Streymoy',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1142,'Su uroy',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1143,'Sy ra Eysturoy',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1144,'Torshavn',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1145,'Vaga',72,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1146,'Central',73,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1147,'Eastern',73,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1148,'Northern',73,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1149,'South Pacific',73,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1150,'Western',73,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1151,'Ahvenanmaa',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1152,'Etela-Karjala',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1153,'Etela-Pohjanmaa',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1154,'Etela-Savo',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1155,'Etela-Suomen Laani',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1156,'Ita-Suomen Laani',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1157,'Ita-Uusimaa',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1158,'Kainuu',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1159,'Kanta-Hame',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1160,'Keski-Pohjanmaa',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1161,'Keski-Suomi',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1162,'Kymenlaakso',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1163,'Lansi-Suomen Laani',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1164,'Lappi',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1165,'Northern Savonia',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1166,'Ostrobothnia',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1167,'Oulun Laani',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1168,'Paijat-Hame',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1169,'Pirkanmaa',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1170,'Pohjanmaa',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1171,'Pohjois-Karjala',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1172,'Pohjois-Pohjanmaa',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1173,'Pohjois-Savo',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1174,'Saarijarvi',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1175,'Satakunta',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1176,'Southern Savonia',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1177,'Tavastia Proper',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1178,'Uleaborgs Lan',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1179,'Uusimaa',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1180,'Varsinais-Suomi',74,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1181,'Ain',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1182,'Aisne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1183,'Albi Le Sequestre',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1184,'Allier',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1185,'Alpes-Cote dAzur',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1186,'Alpes-Maritimes',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1187,'Alpes-de-Haute-Provence',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1188,'Alsace',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1189,'Aquitaine',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1190,'Ardeche',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1191,'Ardennes',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1192,'Ariege',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1193,'Aube',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1194,'Aude',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1195,'Auvergne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1196,'Aveyron',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1197,'Bas-Rhin',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1198,'Basse-Normandie',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1199,'Bouches-du-Rhone',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1200,'Bourgogne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1201,'Bretagne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1202,'Brittany',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1203,'Burgundy',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1204,'Calvados',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1205,'Cantal',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1206,'Cedex',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1207,'Centre',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1208,'Charente',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1209,'Charente-Maritime',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1210,'Cher',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1211,'Correze',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1212,'Corse-du-Sud',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1213,'Cote-d\'Or',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1214,'Cotes-d\'Armor',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1215,'Creuse',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1216,'Crolles',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1217,'Deux-Sevres',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1218,'Dordogne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1219,'Doubs',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1220,'Drome',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1221,'Essonne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1222,'Eure',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1223,'Eure-et-Loir',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1224,'Feucherolles',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1225,'Finistere',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1226,'Franche-Comte',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1227,'Gard',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1228,'Gers',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1229,'Gironde',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1230,'Haut-Rhin',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1231,'Haute-Corse',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1232,'Haute-Garonne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1233,'Haute-Loire',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1234,'Haute-Marne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1235,'Haute-Saone',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1236,'Haute-Savoie',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1237,'Haute-Vienne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1238,'Hautes-Alpes',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1239,'Hautes-Pyrenees',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1240,'Hauts-de-Seine',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1241,'Herault',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1242,'Ile-de-France',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1243,'Ille-et-Vilaine',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1244,'Indre',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1245,'Indre-et-Loire',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1246,'Isere',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1247,'Jura',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1248,'Klagenfurt',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1249,'Landes',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1250,'Languedoc-Roussillon',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1251,'Larcay',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1252,'Le Castellet',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1253,'Le Creusot',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1254,'Limousin',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1255,'Loir-et-Cher',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1256,'Loire',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1257,'Loire-Atlantique',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1258,'Loiret',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1259,'Lorraine',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1260,'Lot',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1261,'Lot-et-Garonne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1262,'Lower Normandy',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1263,'Lozere',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1264,'Maine-et-Loire',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1265,'Manche',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1266,'Marne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1267,'Mayenne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1268,'Meurthe-et-Moselle',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1269,'Meuse',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1270,'Midi-Pyrenees',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1271,'Morbihan',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1272,'Moselle',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1273,'Nievre',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1274,'Nord',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1275,'Nord-Pas-de-Calais',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1276,'Oise',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1277,'Orne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1278,'Paris',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1279,'Pas-de-Calais',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1280,'Pays de la Loire',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1281,'Pays-de-la-Loire',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1282,'Picardy',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1283,'Puy-de-Dome',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1284,'Pyrenees-Atlantiques',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1285,'Pyrenees-Orientales',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1286,'Quelmes',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1287,'Rhone',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1288,'Rhone-Alpes',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1289,'Saint Ouen',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1290,'Saint Viatre',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1291,'Saone-et-Loire',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1292,'Sarthe',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1293,'Savoie',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1294,'Seine-Maritime',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1295,'Seine-Saint-Denis',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1296,'Seine-et-Marne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1297,'Somme',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1298,'Sophia Antipolis',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1299,'Souvans',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1300,'Tarn',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1301,'Tarn-et-Garonne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1302,'Territoire de Belfort',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1303,'Treignac',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1304,'Upper Normandy',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1305,'Val-d\'Oise',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1306,'Val-de-Marne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1307,'Var',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1308,'Vaucluse',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1309,'Vellise',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1310,'Vendee',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1311,'Vienne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1312,'Vosges',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1313,'Yonne',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1314,'Yvelines',75,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1315,'Cayenne',76,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1316,'Saint-Laurent-du-Maroni',76,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1317,'Iles du Vent',77,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1318,'Iles sous le Vent',77,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1319,'Marquesas',77,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1320,'Tuamotu',77,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1321,'Tubuai',77,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1322,'Amsterdam',78,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1323,'Crozet Islands',78,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1324,'Kerguelen',78,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1325,'Estuaire',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1326,'Haut-Ogooue',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1327,'Moyen-Ogooue',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1328,'Ngounie',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1329,'Nyanga',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1330,'Ogooue-Ivindo',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1331,'Ogooue-Lolo',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1332,'Ogooue-Maritime',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1333,'Woleu-Ntem',79,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1334,'Banjul',80,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1335,'Basse',80,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1336,'Brikama',80,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1337,'Janjanbureh',80,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1338,'Kanifing',80,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1339,'Kerewan',80,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1340,'Kuntaur',80,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1341,'Mansakonko',80,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1342,'Abhasia',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1343,'Ajaria',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1344,'Guria',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1345,'Imereti',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1346,'Kaheti',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1347,'Kvemo Kartli',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1348,'Mcheta-Mtianeti',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1349,'Racha',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1350,'Samagrelo-Zemo Svaneti',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1351,'Samche-Zhavaheti',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1352,'Shida Kartli',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1353,'Tbilisi',81,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1354,'Auvergne',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1355,'Baden-Wurttemberg',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1356,'Bavaria',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1357,'Bayern',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1358,'Beilstein Wurtt',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1359,'Berlin',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1360,'Brandenburg',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1361,'Bremen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1362,'Dreisbach',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1363,'Freistaat Bayern',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1364,'Hamburg',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1365,'Hannover',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1366,'Heroldstatt',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1367,'Hessen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1368,'Kortenberg',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1369,'Laasdorf',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1370,'Land Baden-Wurttemberg',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1371,'Land Bayern',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1372,'Land Brandenburg',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1373,'Land Hessen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1374,'Land Mecklenburg-Vorpommern',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1375,'Land Nordrhein-Westfalen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1376,'Land Rheinland-Pfalz',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1377,'Land Sachsen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1378,'Land Sachsen-Anhalt',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1379,'Land Thuringen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1380,'Lower Saxony',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1381,'Mecklenburg-Vorpommern',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1382,'Mulfingen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1383,'Munich',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1384,'Neubeuern',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1385,'Niedersachsen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1386,'Noord-Holland',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1387,'Nordrhein-Westfalen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1388,'North Rhine-Westphalia',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1389,'Osterode',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1390,'Rheinland-Pfalz',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1391,'Rhineland-Palatinate',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1392,'Saarland',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1393,'Sachsen',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1394,'Sachsen-Anhalt',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1395,'Saxony',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1396,'Schleswig-Holstein',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1397,'Thuringia',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1398,'Webling',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1399,'Weinstrabe',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1400,'schlobborn',82,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1401,'Ashanti',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1402,'Brong-Ahafo',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1403,'Central',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1404,'Eastern',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1405,'Greater Accra',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1406,'Northern',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1407,'Upper East',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1408,'Upper West',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1409,'Volta',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1410,'Western',83,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1411,'Gibraltar',84,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1412,'Acharnes',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1413,'Ahaia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1414,'Aitolia kai Akarnania',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1415,'Argolis',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1416,'Arkadia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1417,'Arta',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1418,'Attica',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1419,'Attiki',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1420,'Ayion Oros',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1421,'Crete',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1422,'Dodekanisos',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1423,'Drama',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1424,'Evia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1425,'Evritania',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1426,'Evros',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1427,'Evvoia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1428,'Florina',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1429,'Fokis',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1430,'Fthiotis',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1431,'Grevena',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1432,'Halandri',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1433,'Halkidiki',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1434,'Hania',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1435,'Heraklion',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1436,'Hios',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1437,'Ilia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1438,'Imathia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1439,'Ioannina',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1440,'Iraklion',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1441,'Karditsa',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1442,'Kastoria',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1443,'Kavala',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1444,'Kefallinia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1445,'Kerkira',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1446,'Kiklades',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1447,'Kilkis',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1448,'Korinthia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1449,'Kozani',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1450,'Lakonia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1451,'Larisa',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1452,'Lasithi',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1453,'Lesvos',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1454,'Levkas',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1455,'Magnisia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1456,'Messinia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1457,'Nomos Attikis',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1458,'Nomos Zakynthou',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1459,'Pella',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1460,'Pieria',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1461,'Piraios',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1462,'Preveza',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1463,'Rethimni',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1464,'Rodopi',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1465,'Samos',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1466,'Serrai',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1467,'Thesprotia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1468,'Thessaloniki',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1469,'Trikala',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1470,'Voiotia',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1471,'West Greece',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1472,'Xanthi',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1473,'Zakinthos',85,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1474,'Aasiaat',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1475,'Ammassalik',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1476,'Illoqqortoormiut',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1477,'Ilulissat',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1478,'Ivittuut',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1479,'Kangaatsiaq',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1480,'Maniitsoq',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1481,'Nanortalik',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1482,'Narsaq',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1483,'Nuuk',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1484,'Paamiut',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1485,'Qaanaaq',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1486,'Qaqortoq',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1487,'Qasigiannguit',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1488,'Qeqertarsuaq',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1489,'Sisimiut',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1490,'Udenfor kommunal inddeling',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1491,'Upernavik',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1492,'Uummannaq',86,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1493,'Carriacou-Petite Martinique',87,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1494,'Saint Andrew',87,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1495,'Saint Davids',87,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1496,'Saint George\'s',87,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1497,'Saint John',87,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1498,'Saint Mark',87,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1499,'Saint Patrick',87,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1500,'Basse-Terre',88,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1501,'Grande-Terre',88,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1502,'Iles des Saintes',88,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1503,'La Desirade',88,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1504,'Marie-Galante',88,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1505,'Saint Barthelemy',88,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1506,'Saint Martin',88,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1507,'Agana Heights',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1508,'Agat',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1509,'Barrigada',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1510,'Chalan-Pago-Ordot',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1511,'Dededo',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1512,'Hagatna',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1513,'Inarajan',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1514,'Mangilao',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1515,'Merizo',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1516,'Mongmong-Toto-Maite',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1517,'Santa Rita',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1518,'Sinajana',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1519,'Talofofo',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1520,'Tamuning',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1521,'Yigo',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1522,'Yona',89,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1523,'Alta Verapaz',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1524,'Baja Verapaz',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1525,'Chimaltenango',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1526,'Chiquimula',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1527,'El Progreso',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1528,'Escuintla',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1529,'Guatemala',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1530,'Huehuetenango',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1531,'Izabal',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1532,'Jalapa',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1533,'Jutiapa',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1534,'Peten',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1535,'Quezaltenango',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1536,'Quiche',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1537,'Retalhuleu',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1538,'Sacatepequez',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1539,'San Marcos',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1540,'Santa Rosa',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1541,'Solola',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1542,'Suchitepequez',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1543,'Totonicapan',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1544,'Zacapa',90,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1545,'Alderney',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1546,'Castel',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1547,'Forest',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1548,'Saint Andrew',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1549,'Saint Martin',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1550,'Saint Peter Port',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1551,'Saint Pierre du Bois',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1552,'Saint Sampson',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1553,'Saint Saviour',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1554,'Sark',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1555,'Torteval',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1556,'Vale',91,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1557,'Beyla',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1558,'Boffa',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1559,'Boke',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1560,'Conakry',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1561,'Coyah',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1562,'Dabola',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1563,'Dalaba',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1564,'Dinguiraye',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1565,'Faranah',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1566,'Forecariah',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1567,'Fria',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1568,'Gaoual',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1569,'Gueckedou',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1570,'Kankan',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1571,'Kerouane',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1572,'Kindia',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1573,'Kissidougou',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1574,'Koubia',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1575,'Koundara',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1576,'Kouroussa',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1577,'Labe',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1578,'Lola',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1579,'Macenta',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1580,'Mali',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1581,'Mamou',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1582,'Mandiana',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1583,'Nzerekore',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1584,'Pita',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1585,'Siguiri',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1586,'Telimele',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1587,'Tougue',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1588,'Yomou',92,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1589,'Bafata',93,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1590,'Bissau',93,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1591,'Bolama',93,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1592,'Cacheu',93,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1593,'Gabu',93,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1594,'Oio',93,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1595,'Quinara',93,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1596,'Tombali',93,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1597,'Barima-Waini',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1598,'Cuyuni-Mazaruni',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1599,'Demerara-Mahaica',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1600,'East Berbice-Corentyne',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1601,'Essequibo Islands-West Demerar',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1602,'Mahaica-Berbice',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1603,'Pomeroon-Supenaam',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1604,'Potaro-Siparuni',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1605,'Upper Demerara-Berbice',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1606,'Upper Takutu-Upper Essequibo',94,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1607,'Artibonite',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1608,'Centre',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1609,'Grand\'Anse',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1610,'Nord',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1611,'Nord-Est',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1612,'Nord-Ouest',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1613,'Ouest',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1614,'Sud',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1615,'Sud-Est',95,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1616,'Heard and McDonald Islands',96,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1617,'Atlantida',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1618,'Choluteca',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1619,'Colon',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1620,'Comayagua',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1621,'Copan',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1622,'Cortes',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1623,'Distrito Central',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1624,'El Paraiso',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1625,'Francisco Morazan',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1626,'Gracias a Dios',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1627,'Intibuca',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1628,'Islas de la Bahia',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1629,'La Paz',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1630,'Lempira',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1631,'Ocotepeque',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1632,'Olancho',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1633,'Santa Barbara',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1634,'Valle',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1635,'Yoro',97,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1636,'Hong Kong',98,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1637,'Bacs-Kiskun',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1638,'Baranya',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1639,'Bekes',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1640,'Borsod-Abauj-Zemplen',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1641,'Budapest',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1642,'Csongrad',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1643,'Fejer',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1644,'Gyor-Moson-Sopron',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1645,'Hajdu-Bihar',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1646,'Heves',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1647,'Jasz-Nagykun-Szolnok',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1648,'Komarom-Esztergom',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1649,'Nograd',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1650,'Pest',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1651,'Somogy',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1652,'Szabolcs-Szatmar-Bereg',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1653,'Tolna',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1654,'Vas',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1655,'Veszprem',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1656,'Zala',99,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1657,'Austurland',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1658,'Gullbringusysla',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1659,'Hofu borgarsva i',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1660,'Nor urland eystra',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1661,'Nor urland vestra',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1662,'Su urland',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1663,'Su urnes',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1664,'Vestfir ir',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1665,'Vesturland',100,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1666,'Aceh',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1667,'Bali',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1668,'Bangka-Belitung',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1669,'Banten',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1670,'Bengkulu',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1671,'Gandaria',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1672,'Gorontalo',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1673,'Jakarta',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1674,'Jambi',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1675,'Jawa Barat',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1676,'Jawa Tengah',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1677,'Jawa Timur',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1678,'Kalimantan Barat',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1679,'Kalimantan Selatan',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1680,'Kalimantan Tengah',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1681,'Kalimantan Timur',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1682,'Kendal',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1683,'Lampung',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1684,'Maluku',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1685,'Maluku Utara',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1686,'Nusa Tenggara Barat',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1687,'Nusa Tenggara Timur',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1688,'Papua',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1689,'Riau',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1690,'Riau Kepulauan',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1691,'Solo',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1692,'Sulawesi Selatan',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1693,'Sulawesi Tengah',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1694,'Sulawesi Tenggara',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1695,'Sulawesi Utara',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1696,'Sumatera Barat',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1697,'Sumatera Selatan',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1698,'Sumatera Utara',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1699,'Yogyakarta',102,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1700,'Ardabil',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1701,'Azarbayjan-e Bakhtari',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1702,'Azarbayjan-e Khavari',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1703,'Bushehr',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1704,'Chahar Mahal-e Bakhtiari',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1705,'Esfahan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1706,'Fars',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1707,'Gilan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1708,'Golestan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1709,'Hamadan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1710,'Hormozgan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1711,'Ilam',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1712,'Kerman',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1713,'Kermanshah',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1714,'Khorasan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1715,'Khuzestan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1716,'Kohgiluyeh-e Boyerahmad',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1717,'Kordestan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1718,'Lorestan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1719,'Markazi',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1720,'Mazandaran',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1721,'Ostan-e Esfahan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1722,'Qazvin',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1723,'Qom',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1724,'Semnan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1725,'Sistan-e Baluchestan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1726,'Tehran',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1727,'Yazd',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1728,'Zanjan',103,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1729,'Babil',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1730,'Baghdad',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1731,'Dahuk',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1732,'Dhi Qar',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1733,'Diyala',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1734,'Erbil',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1735,'Irbil',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1736,'Karbala',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1737,'Kurdistan',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1738,'Maysan',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1739,'Ninawa',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1740,'Salah-ad-Din',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1741,'Wasit',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1742,'al-Anbar',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1743,'al-Basrah',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1744,'al-Muthanna',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1745,'al-Qadisiyah',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1746,'an-Najaf',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1747,'as-Sulaymaniyah',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1748,'at-Ta\'mim',104,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1749,'Armagh',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1750,'Carlow',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1751,'Cavan',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1752,'Clare',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1753,'Cork',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1754,'Donegal',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1755,'Dublin',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1756,'Galway',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1757,'Kerry',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1758,'Kildare',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1759,'Kilkenny',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1760,'Laois',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1761,'Leinster',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1762,'Leitrim',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1763,'Limerick',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1764,'Loch Garman',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1765,'Longford',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1766,'Louth',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1767,'Mayo',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1768,'Meath',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1769,'Monaghan',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1770,'Offaly',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1771,'Roscommon',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1772,'Sligo',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1773,'Tipperary North Riding',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1774,'Tipperary South Riding',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1775,'Ulster',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1776,'Waterford',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1777,'Westmeath',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1778,'Wexford',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1779,'Wicklow',105,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1780,'Beit Hanania',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1781,'Ben Gurion Airport',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1782,'Bethlehem',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1783,'Caesarea',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1784,'Centre',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1785,'Gaza',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1786,'Hadaron',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1787,'Haifa District',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1788,'Hamerkaz',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1789,'Hazafon',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1790,'Hebron',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1791,'Jaffa',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1792,'Jerusalem',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1793,'Khefa',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1794,'Kiryat Yam',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1795,'Lower Galilee',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1796,'Qalqilya',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1797,'Talme Elazar',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1798,'Tel Aviv',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1799,'Tsafon',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1800,'Umm El Fahem',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1801,'Yerushalayim',106,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1802,'Abruzzi',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1803,'Abruzzo',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1804,'Agrigento',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1805,'Alessandria',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1806,'Ancona',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1807,'Arezzo',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1808,'Ascoli Piceno',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1809,'Asti',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1810,'Avellino',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1811,'Bari',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1812,'Basilicata',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1813,'Belluno',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1814,'Benevento',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1815,'Bergamo',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1816,'Biella',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1817,'Bologna',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1818,'Bolzano',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1819,'Brescia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1820,'Brindisi',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1821,'Calabria',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1822,'Campania',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1823,'Cartoceto',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1824,'Caserta',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1825,'Catania',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1826,'Chieti',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1827,'Como',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1828,'Cosenza',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1829,'Cremona',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1830,'Cuneo',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1831,'Emilia-Romagna',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1832,'Ferrara',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1833,'Firenze',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1834,'Florence',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1835,'Forli-Cesena ',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1836,'Friuli-Venezia Giulia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1837,'Frosinone',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1838,'Genoa',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1839,'Gorizia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1840,'L\'Aquila',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1841,'Lazio',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1842,'Lecce',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1843,'Lecco',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1845,'Liguria',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1846,'Lodi',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1847,'Lombardia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1848,'Lombardy',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1849,'Macerata',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1850,'Mantova',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1851,'Marche',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1852,'Messina',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1853,'Milan',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1854,'Modena',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1855,'Molise',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1856,'Molteno',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1857,'Montenegro',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1858,'Monza and Brianza',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1859,'Naples',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1860,'Novara',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1861,'Padova',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1862,'Parma',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1863,'Pavia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1864,'Perugia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1865,'Pesaro-Urbino',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1866,'Piacenza',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1867,'Piedmont',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1868,'Piemonte',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1869,'Pisa',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1870,'Pordenone',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1871,'Potenza',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1872,'Puglia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1873,'Reggio Emilia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1874,'Rimini',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1875,'Roma',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1876,'Salerno',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1877,'Sardegna',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1878,'Sassari',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1879,'Savona',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1880,'Sicilia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1881,'Siena',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1882,'Sondrio',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1883,'South Tyrol',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1884,'Taranto',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1885,'Teramo',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1886,'Torino',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1887,'Toscana',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1888,'Trapani',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1889,'Trentino-Alto Adige',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1890,'Trento',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1891,'Treviso',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1892,'Udine',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1893,'Umbria',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1894,'Valle d\'Aosta',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1895,'Varese',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1896,'Veneto',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1897,'Venezia',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1898,'Verbano-Cusio-Ossola',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1899,'Vercelli',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1900,'Verona',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1901,'Vicenza',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1902,'Viterbo',107,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1903,'Buxoro Viloyati',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1904,'Clarendon',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1905,'Hanover',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1906,'Kingston',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1907,'Manchester',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1908,'Portland',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1909,'Saint Andrews',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1910,'Saint Ann',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1911,'Saint Catherine',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1912,'Saint Elizabeth',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1913,'Saint James',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1914,'Saint Mary',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1915,'Saint Thomas',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1916,'Trelawney',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1917,'Westmoreland',108,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1918,'Aichi',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1919,'Akita',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1920,'Aomori',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1921,'Chiba',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1922,'Ehime',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1923,'Fukui',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1924,'Fukuoka',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1925,'Fukushima',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1926,'Gifu',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1927,'Gumma',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1928,'Hiroshima',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1929,'Hokkaido',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1930,'Hyogo',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1931,'Ibaraki',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1932,'Ishikawa',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1933,'Iwate',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1934,'Kagawa',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1935,'Kagoshima',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1936,'Kanagawa',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1937,'Kanto',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1938,'Kochi',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1939,'Kumamoto',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1940,'Kyoto',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1941,'Mie',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1942,'Miyagi',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1943,'Miyazaki',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1944,'Nagano',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1945,'Nagasaki',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1946,'Nara',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1947,'Niigata',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1948,'Oita',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1949,'Okayama',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1950,'Okinawa',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1951,'Osaka',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1952,'Saga',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1953,'Saitama',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1954,'Shiga',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1955,'Shimane',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1956,'Shizuoka',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1957,'Tochigi',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1958,'Tokushima',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1959,'Tokyo',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1960,'Tottori',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1961,'Toyama',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1962,'Wakayama',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1963,'Yamagata',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1964,'Yamaguchi',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1965,'Yamanashi',109,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1966,'Grouville',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1967,'Saint Brelade',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1968,'Saint Clement',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1969,'Saint Helier',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1970,'Saint John',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1971,'Saint Lawrence',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1972,'Saint Martin',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1973,'Saint Mary',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1974,'Saint Peter',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1975,'Saint Saviour',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1976,'Trinity',110,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1977,'\'Ajlun',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1978,'Amman',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1979,'Irbid',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1980,'Jarash',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1981,'Ma\'an',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1982,'Madaba',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1983,'al-\'Aqabah',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1984,'al-Balqa\'',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1985,'al-Karak',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1986,'al-Mafraq',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1987,'at-Tafilah',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1988,'az-Zarqa\'',111,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1989,'Akmecet',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1990,'Akmola',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1991,'Aktobe',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1992,'Almati',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1993,'Atirau',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1994,'Batis Kazakstan',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1995,'Burlinsky Region',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1996,'Karagandi',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1997,'Kostanay',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1998,'Mankistau',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(1999,'Ontustik Kazakstan',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2000,'Pavlodar',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2001,'Sigis Kazakstan',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2002,'Soltustik Kazakstan',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2003,'Taraz',112,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2004,'Central',113,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2005,'Coast',113,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2006,'Eastern',113,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2007,'Nairobi',113,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2008,'North Eastern',113,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2009,'Nyanza',113,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2010,'Rift Valley',113,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2011,'Western',113,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2012,'Abaiang',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2013,'Abemana',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2014,'Aranuka',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2015,'Arorae',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2016,'Banaba',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2017,'Beru',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2018,'Butaritari',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2019,'Kiritimati',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2020,'Kuria',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2021,'Maiana',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2022,'Makin',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2023,'Marakei',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2024,'Nikunau',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2025,'Nonouti',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2026,'Onotoa',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2027,'Phoenix Islands',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2028,'Tabiteuea North',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2029,'Tabiteuea South',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2030,'Tabuaeran',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2031,'Tamana',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2032,'Tarawa North',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2033,'Tarawa South',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2034,'Teraina',114,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2035,'Chagangdo',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2036,'Hamgyeongbukto',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2037,'Hamgyeongnamdo',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2038,'Hwanghaebukto',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2039,'Hwanghaenamdo',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2040,'Kaeseong',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2041,'Kangweon',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2042,'Nampo',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2043,'Pyeonganbukto',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2044,'Pyeongannamdo',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2045,'Pyeongyang',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2046,'Yanggang',115,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2047,'Busan',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2048,'Cheju',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2049,'Chollabuk',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2050,'Chollanam',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2051,'Chungbuk',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2052,'Chungcheongbuk',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2053,'Chungcheongnam',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2054,'Chungnam',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2055,'Daegu',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2056,'Gangwon-do',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2057,'Goyang-si',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2058,'Gyeonggi-do',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2059,'Gyeongsang ',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2060,'Gyeongsangnam-do',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2061,'Incheon',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2062,'Jeju-Si',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2063,'Jeonbuk',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2064,'Kangweon',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2065,'Kwangju',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2066,'Kyeonggi',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2067,'Kyeongsangbuk',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2068,'Kyeongsangnam',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2069,'Kyonggi-do',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2070,'Kyungbuk-Do',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2071,'Kyunggi-Do',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2072,'Kyunggi-do',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2073,'Pusan',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2074,'Seoul',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2075,'Sudogwon',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2076,'Taegu',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2077,'Taejeon',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2078,'Taejon-gwangyoksi',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2079,'Ulsan',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2080,'Wonju',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2081,'gwangyoksi',116,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2082,'Al Asimah',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2083,'Hawalli',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2084,'Mishref',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2085,'Qadesiya',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2086,'Safat',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2087,'Salmiya',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2088,'al-Ahmadi',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2089,'al-Farwaniyah',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2090,'al-Jahra',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2091,'al-Kuwayt',117,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2092,'Batken',118,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2093,'Bishkek',118,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2094,'Chui',118,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2095,'Issyk-Kul',118,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2096,'Jalal-Abad',118,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2097,'Naryn',118,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2098,'Osh',118,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2099,'Talas',118,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2100,'Attopu',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2101,'Bokeo',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2102,'Bolikhamsay',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2103,'Champasak',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2104,'Houaphanh',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2105,'Khammouane',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2106,'Luang Nam Tha',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2107,'Luang Prabang',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2108,'Oudomxay',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2109,'Phongsaly',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2110,'Saravan',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2111,'Savannakhet',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2112,'Sekong',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2113,'Viangchan Prefecture',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2114,'Viangchan Province',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2115,'Xaignabury',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2116,'Xiang Khuang',119,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2117,'Aizkraukles',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2118,'Aluksnes',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2119,'Balvu',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2120,'Bauskas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2121,'Cesu',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2122,'Daugavpils',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2123,'Daugavpils City',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2124,'Dobeles',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2125,'Gulbenes',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2126,'Jekabspils',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2127,'Jelgava',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2128,'Jelgavas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2129,'Jurmala City',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2130,'Kraslavas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2131,'Kuldigas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2132,'Liepaja',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2133,'Liepajas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2134,'Limbazhu',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2135,'Ludzas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2136,'Madonas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2137,'Ogres',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2138,'Preilu',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2139,'Rezekne',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2140,'Rezeknes',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2141,'Riga',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2142,'Rigas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2143,'Saldus',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2144,'Talsu',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2145,'Tukuma',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2146,'Valkas',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2147,'Valmieras',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2148,'Ventspils',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2149,'Ventspils City',120,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2150,'Beirut',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2151,'Jabal Lubnan',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2152,'Mohafazat Liban-Nord',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2153,'Mohafazat Mont-Liban',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2154,'Sidon',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2155,'al-Biqa',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2156,'al-Janub',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2157,'an-Nabatiyah',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2158,'ash-Shamal',121,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2159,'Berea',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2160,'Butha-Buthe',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2161,'Leribe',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2162,'Mafeteng',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2163,'Maseru',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2164,'Mohale\'s Hoek',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2165,'Mokhotlong',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2166,'Qacha\'s Nek',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2167,'Quthing',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2168,'Thaba-Tseka',122,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2169,'Bomi',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2170,'Bong',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2171,'Grand Bassa',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2172,'Grand Cape Mount',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2173,'Grand Gedeh',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2174,'Loffa',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2175,'Margibi',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2176,'Maryland and Grand Kru',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2177,'Montserrado',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2178,'Nimba',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2179,'Rivercess',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2180,'Sinoe',123,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2181,'Ajdabiya',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2182,'Fezzan',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2183,'Banghazi',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2184,'Darnah',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2185,'Ghadamis',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2186,'Gharyan',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2187,'Misratah',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2188,'Murzuq',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2189,'Sabha',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2190,'Sawfajjin',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2191,'Surt',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2192,'Tarabulus',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2193,'Tarhunah',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2194,'Tripolitania',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2195,'Tubruq',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2196,'Yafran',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2197,'Zlitan',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2198,'al-\'Aziziyah',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2199,'al-Fatih',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2200,'al-Jabal al Akhdar',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2201,'al-Jufrah',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2202,'al-Khums',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2203,'al-Kufrah',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2204,'an-Nuqat al-Khams',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2205,'ash-Shati\'',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2206,'az-Zawiyah',124,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2207,'Balzers',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2208,'Eschen',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2209,'Gamprin',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2210,'Mauren',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2211,'Planken',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2212,'Ruggell',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2213,'Schaan',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2214,'Schellenberg',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2215,'Triesen',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2216,'Triesenberg',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2217,'Vaduz',125,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2218,'Alytaus',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2219,'Anyksciai',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2220,'Kauno',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2221,'Klaipedos',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2222,'Marijampoles',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2223,'Panevezhio',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2224,'Panevezys',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2225,'Shiauliu',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2226,'Taurages',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2227,'Telshiu',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2228,'Telsiai',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2229,'Utenos',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2230,'Vilniaus',126,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2231,'Capellen',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2232,'Clervaux',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2233,'Diekirch',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2234,'Echternach',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2235,'Esch-sur-Alzette',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2236,'Grevenmacher',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2237,'Luxembourg',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2238,'Mersch',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2239,'Redange',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2240,'Remich',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2241,'Vianden',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2242,'Wiltz',127,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2243,'Macau',128,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2244,'Berovo',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2245,'Bitola',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2246,'Brod',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2247,'Debar',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2248,'Delchevo',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2249,'Demir Hisar',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2250,'Gevgelija',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2251,'Gostivar',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2252,'Kavadarci',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2253,'Kichevo',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2254,'Kochani',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2255,'Kratovo',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2256,'Kriva Palanka',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2257,'Krushevo',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2258,'Kumanovo',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2259,'Negotino',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2260,'Ohrid',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2261,'Prilep',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2262,'Probishtip',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2263,'Radovish',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2264,'Resen',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2265,'Shtip',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2266,'Skopje',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2267,'Struga',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2268,'Strumica',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2269,'Sveti Nikole',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2270,'Tetovo',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2271,'Valandovo',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2272,'Veles',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2273,'Vinica',129,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2274,'Antananarivo',130,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2275,'Antsiranana',130,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2276,'Fianarantsoa',130,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2277,'Mahajanga',130,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2278,'Toamasina',130,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2279,'Toliary',130,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2280,'Balaka',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2281,'Blantyre City',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2282,'Chikwawa',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2283,'Chiradzulu',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2284,'Chitipa',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2285,'Dedza',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2286,'Dowa',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2287,'Karonga',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2288,'Kasungu',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2289,'Lilongwe City',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2290,'Machinga',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2291,'Mangochi',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2292,'Mchinji',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2293,'Mulanje',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2294,'Mwanza',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2295,'Mzimba',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2296,'Mzuzu City',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2297,'Nkhata Bay',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2298,'Nkhotakota',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2299,'Nsanje',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2300,'Ntcheu',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2301,'Ntchisi',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2302,'Phalombe',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2303,'Rumphi',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2304,'Salima',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2305,'Thyolo',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2306,'Zomba Municipality',131,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2307,'Johor',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2308,'Kedah',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2309,'Kelantan',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2310,'Kuala Lumpur',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2311,'Labuan',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2312,'Melaka',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2313,'Negeri Johor',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2314,'Negeri Sembilan',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2315,'Pahang',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2316,'Penang',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2317,'Perak',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2318,'Perlis',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2319,'Pulau Pinang',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2320,'Sabah',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2321,'Sarawak',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2322,'Selangor',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2323,'Sembilan',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2324,'Terengganu',132,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2325,'Alif Alif',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2326,'Alif Dhaal',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2327,'Baa',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2328,'Dhaal',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2329,'Faaf',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2330,'Gaaf Alif',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2331,'Gaaf Dhaal',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2332,'Ghaviyani',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2333,'Haa Alif',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2334,'Haa Dhaal',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2335,'Kaaf',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2336,'Laam',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2337,'Lhaviyani',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2338,'Male',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2339,'Miim',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2340,'Nuun',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2341,'Raa',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2342,'Shaviyani',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2343,'Siin',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2344,'Thaa',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2345,'Vaav',133,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2346,'Bamako',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2347,'Gao',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2348,'Kayes',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2349,'Kidal',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2350,'Koulikoro',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2351,'Mopti',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2352,'Segou',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2353,'Sikasso',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2354,'Tombouctou',134,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2355,'Gozo and Comino',135,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2356,'Inner Harbour',135,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2357,'Northern',135,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2358,'Outer Harbour',135,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2359,'South Eastern',135,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2360,'Valletta',135,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2361,'Western',135,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2362,'Castletown',136,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2363,'Douglas',136,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2364,'Laxey',136,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2365,'Onchan',136,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2366,'Peel',136,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2367,'Port Erin',136,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2368,'Port Saint Mary',136,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2369,'Ramsey',136,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2370,'Ailinlaplap',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2371,'Ailuk',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2372,'Arno',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2373,'Aur',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2374,'Bikini',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2375,'Ebon',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2376,'Enewetak',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2377,'Jabat',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2378,'Jaluit',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2379,'Kili',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2380,'Kwajalein',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2381,'Lae',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2382,'Lib',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2383,'Likiep',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2384,'Majuro',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2385,'Maloelap',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2386,'Mejit',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2387,'Mili',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2388,'Namorik',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2389,'Namu',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2390,'Rongelap',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2391,'Ujae',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2392,'Utrik',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2393,'Wotho',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2394,'Wotje',137,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2395,'Fort-de-France',138,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2396,'La Trinite',138,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2397,'Le Marin',138,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2398,'Saint-Pierre',138,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2399,'Adrar',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2400,'Assaba',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2401,'Brakna',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2402,'Dhakhlat Nawadibu',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2403,'Hudh-al-Gharbi',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2404,'Hudh-ash-Sharqi',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2405,'Inshiri',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2406,'Nawakshut',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2407,'Qidimagha',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2408,'Qurqul',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2409,'Taqant',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2410,'Tiris Zammur',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2411,'Trarza',139,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2412,'Black River',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2413,'Eau Coulee',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2414,'Flacq',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2415,'Floreal',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2416,'Grand Port',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2417,'Moka',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2418,'Pamplempousses',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2419,'Plaines Wilhelm',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2420,'Port Louis',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2421,'Riviere du Rempart',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2422,'Rodrigues',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2423,'Rose Hill',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2424,'Savanne',140,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2425,'Mayotte',141,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2426,'Pamanzi',141,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2427,'Aguascalientes',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2428,'Baja California',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2429,'Baja California Sur',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2430,'Campeche',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2431,'Chiapas',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2432,'Chihuahua',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2433,'Coahuila',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2434,'Colima',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2435,'Distrito Federal',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2436,'Durango',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2437,'Estado de Mexico',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2438,'Guanajuato',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2439,'Guerrero',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2440,'Hidalgo',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2441,'Jalisco',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2442,'Mexico',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2443,'Michoacan',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2444,'Morelos',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2445,'Nayarit',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2446,'Nuevo Leon',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2447,'Oaxaca',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2448,'Puebla',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2449,'Queretaro',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2450,'Quintana Roo',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2451,'San Luis Potosi',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2452,'Sinaloa',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2453,'Sonora',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2454,'Tabasco',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2455,'Tamaulipas',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2456,'Tlaxcala',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2457,'Veracruz',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2458,'Yucatan',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2459,'Zacatecas',142,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2460,'Chuuk',143,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2461,'Kusaie',143,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2462,'Pohnpei',143,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2463,'Yap',143,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2464,'Balti',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2465,'Cahul',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2466,'Chisinau',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2467,'Chisinau Oras',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2468,'Edinet',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2469,'Gagauzia',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2470,'Lapusna',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2471,'Orhei',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2472,'Soroca',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2473,'Taraclia',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2474,'Tighina',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2475,'Transnistria',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2476,'Ungheni',144,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2477,'Fontvieille',145,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2478,'La Condamine',145,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2479,'Monaco-Ville',145,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2480,'Monte Carlo',145,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2481,'Arhangaj',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2482,'Bajan-Olgij',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2483,'Bajanhongor',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2484,'Bulgan',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2485,'Darhan-Uul',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2486,'Dornod',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2487,'Dornogovi',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2488,'Dundgovi',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2489,'Govi-Altaj',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2490,'Govisumber',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2491,'Hentij',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2492,'Hovd',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2493,'Hovsgol',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2494,'Omnogovi',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2495,'Orhon',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2496,'Ovorhangaj',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2497,'Selenge',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2498,'Suhbaatar',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2499,'Tov',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2500,'Ulaanbaatar',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2501,'Uvs',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2502,'Zavhan',146,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2503,'Montserrat',147,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2504,'Agadir',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2505,'Casablanca',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2506,'Chaouia-Ouardigha',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2507,'Doukkala-Abda',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2508,'Fes-Boulemane',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2509,'Gharb-Chrarda-Beni Hssen',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2510,'Guelmim',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2511,'Kenitra',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2512,'Marrakech-Tensift-Al Haouz',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2513,'Meknes-Tafilalet',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2514,'Oriental',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2515,'Oujda',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2516,'Province de Tanger',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2517,'Rabat-Sale-Zammour-Zaer',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2518,'Sala Al Jadida',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2519,'Settat',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2520,'Souss Massa-Draa',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2521,'Tadla-Azilal',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2522,'Tangier-Tetouan',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2523,'Taza-Al Hoceima-Taounate',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2524,'Wilaya de Casablanca',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2525,'Wilaya de Rabat-Sale',148,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2526,'Cabo Delgado',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2527,'Gaza',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2528,'Inhambane',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2529,'Manica',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2530,'Maputo',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2531,'Maputo Provincia',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2532,'Nampula',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2533,'Niassa',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2534,'Sofala',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2535,'Tete',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2536,'Zambezia',149,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2537,'Ayeyarwady',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2538,'Bago',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2539,'Chin',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2540,'Kachin',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2541,'Kayah',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2542,'Kayin',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2543,'Magway',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2544,'Mandalay',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2545,'Mon',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2546,'Nay Pyi Taw',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2547,'Rakhine',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2548,'Sagaing',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2549,'Shan',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2550,'Tanintharyi',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2551,'Yangon',150,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2552,'Caprivi',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2553,'Erongo',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2554,'Hardap',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2555,'Karas',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2556,'Kavango',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2557,'Khomas',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2558,'Kunene',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2559,'Ohangwena',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2560,'Omaheke',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2561,'Omusati',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2562,'Oshana',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2563,'Oshikoto',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2564,'Otjozondjupa',151,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2565,'Yaren',152,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2566,'Bagmati',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2567,'Bheri',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2568,'Dhawalagiri',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2569,'Gandaki',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2570,'Janakpur',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2571,'Karnali',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2572,'Koshi',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2573,'Lumbini',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2574,'Mahakali',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2575,'Mechi',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2576,'Narayani',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2577,'Rapti',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2578,'Sagarmatha',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2579,'Seti',153,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2580,'Bonaire',154,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2581,'Curacao',154,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2582,'Saba',154,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2583,'Sint Eustatius',154,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2584,'Sint Maarten',154,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2585,'Amsterdam',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2586,'Benelux',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2587,'Drenthe',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2588,'Flevoland',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2589,'Friesland',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2590,'Gelderland',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2591,'Groningen',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2592,'Limburg',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2593,'Noord-Brabant',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2594,'Noord-Holland',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2595,'Overijssel',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2596,'South Holland',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2597,'Utrecht',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2598,'Zeeland',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2599,'Zuid-Holland',155,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2600,'Iles',156,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2601,'Nord',156,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2602,'Sud',156,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2603,'Area Outside Region',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2604,'Auckland',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2605,'Bay of Plenty',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2606,'Canterbury',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2607,'Christchurch',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2608,'Gisborne',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2609,'Hawke\'s Bay',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2610,'Manawatu-Wanganui',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2611,'Marlborough',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2612,'Nelson',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2613,'Northland',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2614,'Otago',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2615,'Rodney',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2616,'Southland',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2617,'Taranaki',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2618,'Tasman',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2619,'Waikato',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2620,'Wellington',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2621,'West Coast',157,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2622,'Atlantico Norte',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2623,'Atlantico Sur',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2624,'Boaco',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2625,'Carazo',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2626,'Chinandega',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2627,'Chontales',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2628,'Esteli',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2629,'Granada',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2630,'Jinotega',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2631,'Leon',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2632,'Madriz',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2633,'Managua',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2634,'Masaya',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2635,'Matagalpa',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2636,'Nueva Segovia',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2637,'Rio San Juan',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2638,'Rivas',158,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2639,'Agadez',159,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2640,'Diffa',159,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2641,'Dosso',159,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2642,'Maradi',159,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2643,'Niamey',159,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2644,'Tahoua',159,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2645,'Tillabery',159,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2646,'Zinder',159,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2647,'Abia',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2648,'Abuja Federal Capital Territory',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2649,'Adamawa',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2650,'Akwa Ibom',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2651,'Anambra',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2652,'Bauchi',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2653,'Bayelsa',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2654,'Benue',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2655,'Borno',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2656,'Cross River',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2657,'Delta',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2658,'Ebonyi',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2659,'Edo',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2660,'Ekiti',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2661,'Enugu',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2662,'Gombe',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2663,'Imo',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2664,'Jigawa',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2665,'Kaduna',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2666,'Kano',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2667,'Katsina',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2668,'Kebbi',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2669,'Kogi',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2670,'Kwara',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2671,'Lagos',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2672,'Nassarawa',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2673,'Niger',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2674,'Ogun',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2675,'Ondo',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2676,'Osun',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2677,'Oyo',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2678,'Plateau',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2679,'Rivers',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2680,'Sokoto',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2681,'Taraba',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2682,'Yobe',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2683,'Zamfara',160,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2684,'Niue',161,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2685,'Norfolk Island',162,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2686,'Northern Islands',163,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2687,'Rota',163,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2688,'Saipan',163,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2689,'Tinian',163,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2690,'Akershus',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2691,'Aust Agder',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2692,'Bergen',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2693,'Buskerud',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2694,'Finnmark',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2695,'Hedmark',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2696,'Hordaland',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2697,'Moere og Romsdal',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2698,'Nord Trondelag',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2699,'Nordland',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2700,'Oestfold',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2701,'Oppland',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2702,'Oslo',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2703,'Rogaland',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2704,'Soer Troendelag',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2705,'Sogn og Fjordane',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2706,'Stavern',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2707,'Sykkylven',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2708,'Telemark',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2709,'Troms',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2710,'Vest Agder',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2711,'Vestfold',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2712,'%�^%�%�f%�stfold',164,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2713,'Al Buraimi',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2714,'Dhufar',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2715,'Masqat',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2716,'Musandam',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2717,'Rusayl',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2718,'Wadi Kabir',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2719,'ad-Dakhiliyah',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2720,'adh-Dhahirah',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2721,'al-Batinah',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2722,'ash-Sharqiyah',165,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2723,'Baluchistan',166,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2724,'Federal Capital Area',166,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2725,'Federally administered Tribal ',166,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2726,'North-West Frontier',166,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2727,'Northern Areas',166,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2728,'Punjab',166,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2729,'Sind',166,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2730,'Aimeliik',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2731,'Airai',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2732,'Angaur',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2733,'Hatobohei',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2734,'Kayangel',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2735,'Koror',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2736,'Melekeok',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2737,'Ngaraard',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2738,'Ngardmau',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2739,'Ngaremlengui',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2740,'Ngatpang',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2741,'Ngchesar',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2742,'Ngerchelong',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2743,'Ngiwal',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2744,'Peleliu',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2745,'Sonsorol',167,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2746,'Ariha',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2747,'Bayt Lahm',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2748,'Bethlehem',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2749,'Dayr-al-Balah',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2750,'Ghazzah',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2751,'Ghazzah ash-Shamaliyah',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2752,'Janin',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2753,'Khan Yunis',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2754,'Nabulus',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2755,'Qalqilyah',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2756,'Rafah',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2757,'Ram Allah wal-Birah',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2758,'Salfit',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2759,'Tubas',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2760,'Tulkarm',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2761,'al-Khalil',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2762,'al-Quds',168,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2763,'Bocas del Toro',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2764,'Chiriqui',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2765,'Cocle',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2766,'Colon',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2767,'Darien',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2768,'Embera',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2769,'Herrera',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2770,'Kuna Yala',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2771,'Los Santos',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2772,'Ngobe Bugle',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2773,'Panama',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2774,'Veraguas',169,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2775,'East New Britain',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2776,'East Sepik',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2777,'Eastern Highlands',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2778,'Enga',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2779,'Fly River',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2780,'Gulf',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2781,'Madang',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2782,'Manus',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2783,'Milne Bay',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2784,'Morobe',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2785,'National Capital District',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2786,'New Ireland',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2787,'North Solomons',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2788,'Oro',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2789,'Sandaun',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2790,'Simbu',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2791,'Southern Highlands',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2792,'West New Britain',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2793,'Western Highlands',170,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2794,'Alto Paraguay',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2795,'Alto Parana',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2796,'Amambay',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2797,'Asuncion',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2798,'Boqueron',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2799,'Caaguazu',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2800,'Caazapa',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2801,'Canendiyu',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2802,'Central',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2803,'Concepcion',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2804,'Cordillera',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2805,'Guaira',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2806,'Itapua',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2807,'Misiones',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2808,'Neembucu',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2809,'Paraguari',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2810,'Presidente Hayes',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2811,'San Pedro',171,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2812,'Amazonas',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2813,'Ancash',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2814,'Apurimac',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2815,'Arequipa',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2816,'Ayacucho',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2817,'Cajamarca',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2818,'Cusco',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2819,'Huancavelica',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2820,'Huanuco',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2821,'Ica',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2822,'Junin',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2823,'La Libertad',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2824,'Lambayeque',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2825,'Lima y Callao',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2826,'Loreto',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2827,'Madre de Dios',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2828,'Moquegua',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2829,'Pasco',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2830,'Piura',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2831,'Puno',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2832,'San Martin',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2833,'Tacna',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2834,'Tumbes',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2835,'Ucayali',172,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2836,'Batangas',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2837,'Bicol',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2838,'Bulacan',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2839,'Cagayan',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2840,'Caraga',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2841,'Central Luzon',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2842,'Central Mindanao',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2843,'Central Visayas',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2844,'Cordillera',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2845,'Davao',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2846,'Eastern Visayas',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2847,'Greater Metropolitan Area',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2848,'Ilocos',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2849,'Laguna',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2850,'Luzon',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2851,'Mactan',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2852,'Metropolitan Manila Area',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2853,'Muslim Mindanao',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2854,'Northern Mindanao',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2855,'Southern Mindanao',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2856,'Southern Tagalog',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2857,'Western Mindanao',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2858,'Western Visayas',173,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2859,'Pitcairn Island',174,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2860,'Biale Blota',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2861,'Dobroszyce',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2862,'Dolnoslaskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2863,'Dziekanow Lesny',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2864,'Hopowo',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2865,'Kartuzy',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2866,'Koscian',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2867,'Krakow',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2868,'Kujawsko-Pomorskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2869,'Lodzkie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2870,'Lubelskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2871,'Lubuskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2872,'Malomice',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2873,'Malopolskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2874,'Mazowieckie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2875,'Mirkow',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2876,'Opolskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2877,'Ostrowiec',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2878,'Podkarpackie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2879,'Podlaskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2880,'Polska',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2881,'Pomorskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2882,'Poznan',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2883,'Pruszkow',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2884,'Rymanowska',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2885,'Rzeszow',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2886,'Slaskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2887,'Stare Pole',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2888,'Swietokrzyskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2889,'Warminsko-Mazurskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2890,'Warsaw',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2891,'Wejherowo',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2892,'Wielkopolskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2893,'Wroclaw',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2894,'Zachodnio-Pomorskie',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2895,'Zukowo',175,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2896,'Abrantes',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2897,'Acores',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2898,'Alentejo',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2899,'Algarve',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2900,'Braga',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2901,'Centro',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2902,'Distrito de Leiria',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2903,'Distrito de Viana do Castelo',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2904,'Distrito de Vila Real',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2905,'Distrito do Porto',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2906,'Lisboa e Vale do Tejo',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2907,'Madeira',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2908,'Norte',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2909,'Paivas',176,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2910,'Arecibo',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2911,'Bayamon',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2912,'Carolina',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2913,'Florida',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2914,'Guayama',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2915,'Humacao',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2916,'Mayaguez-Aguadilla',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2917,'Ponce',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2918,'Salinas',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2919,'San Juan',177,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2920,'Doha',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2921,'Jarian-al-Batnah',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2922,'Umm Salal',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2923,'ad-Dawhah',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2924,'al-Ghuwayriyah',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2925,'al-Jumayliyah',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2926,'al-Khawr',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2927,'al-Wakrah',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2928,'ar-Rayyan',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2929,'ash-Shamal',178,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2930,'Saint-Benoit',179,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2931,'Saint-Denis',179,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2932,'Saint-Paul',179,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2933,'Saint-Pierre',179,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2934,'Alba',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2935,'Arad',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2936,'Arges',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2937,'Bacau',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2938,'Bihor',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2939,'Bistrita-Nasaud',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2940,'Botosani',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2941,'Braila',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2942,'Brasov',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2943,'Bucuresti',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2944,'Buzau',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2945,'Calarasi',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2946,'Caras-Severin',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2947,'Cluj',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2948,'Constanta',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2949,'Covasna',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2950,'Dambovita',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2951,'Dolj',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2952,'Galati',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2953,'Giurgiu',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2954,'Gorj',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2955,'Harghita',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2956,'Hunedoara',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2957,'Ialomita',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2958,'Iasi',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2959,'Ilfov',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2960,'Maramures',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2961,'Mehedinti',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2962,'Mures',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2963,'Neamt',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2964,'Olt',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2965,'Prahova',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2966,'Salaj',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2967,'Satu Mare',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2968,'Sibiu',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2969,'Sondelor',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2970,'Suceava',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2971,'Teleorman',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2972,'Timis',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2973,'Tulcea',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2974,'Valcea',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2975,'Vaslui',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2976,'Vrancea',180,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2977,'Adygeja',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2978,'Aga',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2979,'Alanija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2980,'Altaj',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2981,'Amur',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2982,'Arhangelsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2983,'Astrahan',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2984,'Bashkortostan',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2985,'Belgorod',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2986,'Brjansk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2987,'Burjatija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2988,'Chechenija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2989,'Cheljabinsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2990,'Chita',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2991,'Chukotka',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2992,'Chuvashija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2993,'Dagestan',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2994,'Evenkija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2995,'Gorno-Altaj',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2996,'Habarovsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2997,'Hakasija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2998,'Hanty-Mansija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(2999,'Ingusetija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3000,'Irkutsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3001,'Ivanovo',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3002,'Jamalo-Nenets',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3003,'Jaroslavl',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3004,'Jevrej',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3005,'Kabardino-Balkarija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3006,'Kaliningrad',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3007,'Kalmykija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3008,'Kaluga',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3009,'Kamchatka',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3010,'Karachaj-Cherkessija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3011,'Karelija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3012,'Kemerovo',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3013,'Khabarovskiy Kray',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3014,'Kirov',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3015,'Komi',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3016,'Komi-Permjakija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3017,'Korjakija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3018,'Kostroma',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3019,'Krasnodar',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3020,'Krasnojarsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3021,'Krasnoyarskiy Kray',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3022,'Kurgan',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3023,'Kursk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3024,'Leningrad',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3025,'Lipeck',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3026,'Magadan',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3027,'Marij El',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3028,'Mordovija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3029,'Moscow',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3030,'Moskovskaja Oblast',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3031,'Moskovskaya Oblast',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3032,'Moskva',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3033,'Murmansk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3034,'Nenets',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3035,'Nizhnij Novgorod',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3036,'Novgorod',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3037,'Novokusnezk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3038,'Novosibirsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3039,'Omsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3040,'Orenburg',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3041,'Orjol',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3042,'Penza',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3043,'Perm',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3044,'Primorje',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3045,'Pskov',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3046,'Pskovskaya Oblast',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3047,'Rjazan',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3048,'Rostov',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3049,'Saha',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3050,'Sahalin',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3051,'Samara',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3052,'Samarskaya',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3053,'Sankt-Peterburg',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3054,'Saratov',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3055,'Smolensk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3056,'Stavropol',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3057,'Sverdlovsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3058,'Tajmyrija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3059,'Tambov',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3060,'Tatarstan',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3061,'Tjumen',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3062,'Tomsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3063,'Tula',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3064,'Tver',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3065,'Tyva',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3066,'Udmurtija',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3067,'Uljanovsk',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3068,'Ulyanovskaya Oblast',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3069,'Ust-Orda',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3070,'Vladimir',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3071,'Volgograd',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3072,'Vologda',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3073,'Voronezh',181,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3074,'Butare',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3075,'Byumba',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3076,'Cyangugu',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3077,'Gikongoro',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3078,'Gisenyi',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3079,'Gitarama',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3080,'Kibungo',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3081,'Kibuye',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3082,'Kigali-ngali',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3083,'Ruhengeri',182,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3084,'Ascension',183,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3085,'Gough Island',183,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3086,'Saint Helena',183,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3087,'Tristan da Cunha',183,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3088,'Christ Church Nichola Town',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3089,'Saint Anne Sandy Point',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3090,'Saint George Basseterre',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3091,'Saint George Gingerland',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3092,'Saint James Windward',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3093,'Saint John Capesterre',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3094,'Saint John Figtree',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3095,'Saint Mary Cayon',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3096,'Saint Paul Capesterre',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3097,'Saint Paul Charlestown',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3098,'Saint Peter Basseterre',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3099,'Saint Thomas Lowland',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3100,'Saint Thomas Middle Island',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3101,'Trinity Palmetto Point',184,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3102,'Anse-la-Raye',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3103,'Canaries',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3104,'Castries',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3105,'Choiseul',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3106,'Dennery',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3107,'Gros Inlet',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3108,'Laborie',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3109,'Micoud',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3110,'Soufriere',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3111,'Vieux Fort',185,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3112,'Miquelon-Langlade',186,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3113,'Saint-Pierre',186,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3114,'Charlotte',187,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3115,'Grenadines',187,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3116,'Saint Andrew',187,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3117,'Saint David',187,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3118,'Saint George',187,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3119,'Saint Patrick',187,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3120,'A\'ana',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3121,'Aiga-i-le-Tai',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3122,'Atua',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3123,'Fa\'asaleleaga',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3124,'Gaga\'emauga',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3125,'Gagaifomauga',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3126,'Palauli',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3127,'Satupa\'itea',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3128,'Tuamasaga',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3129,'Va\'a-o-Fonoti',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3130,'Vaisigano',188,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3131,'Acquaviva',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3132,'Borgo Maggiore',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3133,'Chiesanuova',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3134,'Domagnano',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3135,'Faetano',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3136,'Fiorentino',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3137,'Montegiardino',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3138,'San Marino',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3139,'Serravalle',189,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3140,'Agua Grande',190,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3141,'Cantagalo',190,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3142,'Lemba',190,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3143,'Lobata',190,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3144,'Me-Zochi',190,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3145,'Pague',190,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3146,'Al Khobar',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3147,'Aseer',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3148,'Ash Sharqiyah',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3149,'Asir',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3150,'Central Province',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3151,'Eastern Province',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3152,'Ha\'il',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3153,'Jawf',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3154,'Jizan',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3155,'Makkah',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3156,'Najran',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3157,'Qasim',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3158,'Tabuk',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3159,'Western Province',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3160,'al-Bahah',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3161,'al-Hudud-ash-Shamaliyah',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3162,'al-Madinah',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3163,'ar-Riyad',191,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3164,'Dakar',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3165,'Diourbel',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3166,'Fatick',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3167,'Kaolack',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3168,'Kolda',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3169,'Louga',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3170,'Saint-Louis',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3171,'Tambacounda',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3172,'Thies',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3173,'Ziguinchor',192,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3174,'Central Serbia',193,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3175,'Kosovo and Metohija',193,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3176,'Vojvodina',193,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3177,'Anse Boileau',194,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3178,'Anse Royale',194,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3179,'Cascade',194,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3180,'Takamaka',194,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3181,'Victoria',194,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3182,'Eastern',195,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3183,'Northern',195,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3184,'Southern',195,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3185,'Western',195,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3186,'Singapore',196,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3187,'Banskobystricky',197,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3188,'Bratislavsky',197,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3189,'Kosicky',197,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3190,'Nitriansky',197,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3191,'Presovsky',197,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3192,'Trenciansky',197,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3193,'Trnavsky',197,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3194,'Zilinsky',197,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3195,'Benedikt',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3196,'Gorenjska',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3197,'Gorishka',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3198,'Jugovzhodna Slovenija',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3199,'Koroshka',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3200,'Notranjsko-krashka',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3201,'Obalno-krashka',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3202,'Obcina Domzale',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3203,'Obcina Vitanje',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3204,'Osrednjeslovenska',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3205,'Podravska',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3206,'Pomurska',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3207,'Savinjska',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3208,'Slovenian Littoral',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3209,'Spodnjeposavska',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3210,'Zasavska',198,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3211,'Pitcairn',199,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3212,'Central',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3213,'Choiseul',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3214,'Guadalcanal',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3215,'Isabel',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3216,'Makira and Ulawa',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3217,'Malaita',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3218,'Rennell and Bellona',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3219,'Temotu',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3220,'Western',200,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3221,'Awdal',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3222,'Bakol',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3223,'Banadir',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3224,'Bari',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3225,'Bay',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3226,'Galgudug',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3227,'Gedo',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3228,'Hiran',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3229,'Jubbada Hose',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3230,'Jubbadha Dexe',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3231,'Mudug',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3232,'Nugal',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3233,'Sanag',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3234,'Shabellaha Dhexe',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3235,'Shabellaha Hose',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3236,'Togdher',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3237,'Woqoyi Galbed',201,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3238,'Eastern Cape',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3239,'Free State',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3240,'Gauteng',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3241,'Kempton Park',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3242,'Kramerville',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3243,'KwaZulu Natal',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3244,'Limpopo',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3245,'Mpumalanga',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3246,'North West',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3247,'Northern Cape',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3248,'Parow',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3249,'Table View',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3250,'Umtentweni',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3251,'Western Cape',202,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3252,'South Georgia',203,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3253,'Central Equatoria',204,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3254,'A Coruna',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3255,'Alacant',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3256,'Alava',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3257,'Albacete',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3258,'Almeria',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3260,'Asturias',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3261,'Avila',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3262,'Badajoz',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3263,'Balears',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3264,'Barcelona',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3267,'Burgos',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3268,'Caceres',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3269,'Cadiz',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3270,'Cantabria',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3271,'Castello',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3273,'Ceuta',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3274,'Ciudad Real',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3281,'Cordoba',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3282,'Cuenca',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3284,'Girona',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3285,'Granada',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3286,'Guadalajara',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3287,'Guipuzcoa',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3288,'Huelva',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3289,'Huesca',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3290,'Jaen',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3291,'La Rioja',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3292,'Las Palmas',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3293,'Leon',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3295,'Lleida',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3296,'Lugo',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3297,'Madrid',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3298,'Malaga',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3299,'Melilla',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3300,'Murcia',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3301,'Navarra',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3302,'Ourense',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3303,'Pais Vasco',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3304,'Palencia',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3305,'Pontevedra',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3306,'Salamanca',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3308,'Segovia',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3309,'Sevilla',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3310,'Soria',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3311,'Tarragona',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3312,'Santa Cruz de Tenerife',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3313,'Teruel',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3314,'Toledo',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3315,'Valencia',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3316,'Valladolid',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3317,'Vizcaya',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3318,'Zamora',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3319,'Zaragoza',205,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3320,'Amparai',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3321,'Anuradhapuraya',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3322,'Badulla',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3323,'Boralesgamuwa',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3324,'Colombo',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3325,'Galla',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3326,'Gampaha',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3327,'Hambantota',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3328,'Kalatura',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3329,'Kegalla',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3330,'Kilinochchi',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3331,'Kurunegala',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3332,'Madakalpuwa',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3333,'Maha Nuwara',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3334,'Malwana',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3335,'Mannarama',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3336,'Matale',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3337,'Matara',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3338,'Monaragala',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3339,'Mullaitivu',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3340,'North Eastern Province',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3341,'North Western Province',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3342,'Nuwara Eliya',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3343,'Polonnaruwa',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3344,'Puttalama',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3345,'Ratnapuraya',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3346,'Southern Province',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3347,'Tirikunamalaya',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3348,'Tuscany',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3349,'Vavuniyawa',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3350,'Western Province',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3351,'Yapanaya',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3352,'kadawatha',206,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3353,'A\'ali-an-Nil',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3354,'Bahr-al-Jabal',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3355,'Central Equatoria',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3356,'Gharb Bahr-al-Ghazal',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3357,'Gharb Darfur',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3358,'Gharb Kurdufan',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3359,'Gharb-al-Istiwa\'iyah',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3360,'Janub Darfur',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3361,'Janub Kurdufan',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3362,'Junqali',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3363,'Kassala',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3364,'Nahr-an-Nil',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3365,'Shamal Bahr-al-Ghazal',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3366,'Shamal Darfur',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3367,'Shamal Kurdufan',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3368,'Sharq-al-Istiwa\'iyah',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3369,'Sinnar',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3370,'Warab',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3371,'Wilayat al Khartum',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3372,'al-Bahr-al-Ahmar',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3373,'al-Buhayrat',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3374,'al-Jazirah',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3375,'al-Khartum',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3376,'al-Qadarif',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3377,'al-Wahdah',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3378,'an-Nil-al-Abyad',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3379,'an-Nil-al-Azraq',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3380,'ash-Shamaliyah',207,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3381,'Brokopondo',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3382,'Commewijne',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3383,'Coronie',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3384,'Marowijne',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3385,'Nickerie',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3386,'Para',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3387,'Paramaribo',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3388,'Saramacca',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3389,'Wanica',208,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3390,'Svalbard',209,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3391,'Hhohho',210,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3392,'Lubombo',210,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3393,'Manzini',210,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3394,'Shiselweni',210,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3395,'Alvsborgs Lan',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3396,'Angermanland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3397,'Blekinge',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3398,'Bohuslan',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3399,'Dalarna',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3400,'Gavleborg',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3401,'Gaza',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3402,'Gotland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3403,'Halland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3404,'Jamtland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3405,'Jonkoping',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3406,'Kalmar',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3407,'Kristianstads',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3408,'Kronoberg',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3409,'Norrbotten',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3410,'Orebro',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3411,'Ostergotland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3412,'Saltsjo-Boo',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3413,'Skane',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3414,'Smaland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3415,'Sodermanland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3416,'Stockholm',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3417,'Uppsala',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3418,'Varmland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3419,'Vasterbotten',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3420,'Vastergotland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3421,'Vasternorrland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3422,'Vastmanland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3423,'Vastra Gotaland',211,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3424,'Aargau',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3425,'Appenzell Inner-Rhoden',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3426,'Appenzell-Ausser Rhoden',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3427,'Basel-Landschaft',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3428,'Basel-Stadt',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3429,'Bern',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3430,'Canton Ticino',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3431,'Fribourg',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3432,'Geneve',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3433,'Glarus',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3434,'Graubunden',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3435,'Heerbrugg',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3436,'Jura',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3437,'Kanton Aargau',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3438,'Luzern',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3439,'Morbio Inferiore',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3440,'Muhen',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3441,'Neuchatel',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3442,'Nidwalden',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3443,'Obwalden',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3444,'Sankt Gallen',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3445,'Schaffhausen',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3446,'Schwyz',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3447,'Solothurn',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3448,'Thurgau',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3449,'Ticino',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3450,'Uri',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3451,'Valais',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3452,'Vaud',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3453,'Vauffelin',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3454,'Zug',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3455,'Zurich',212,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3456,'Aleppo',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3457,'Dar\'a',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3458,'Dayr-az-Zawr',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3459,'Dimashq',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3460,'Halab',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3461,'Hamah',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3462,'Hims',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3463,'Idlib',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3464,'Madinat Dimashq',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3465,'Tartus',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3466,'al-Hasakah',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3467,'al-Ladhiqiyah',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3468,'al-Qunaytirah',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3469,'ar-Raqqah',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3470,'as-Suwayda',213,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3471,'Changhua County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3472,'Chiayi County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3473,'Chiayi City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3474,'Taipei City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3475,'Hsinchu County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3476,'Hsinchu City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3477,'Hualien County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3480,'Kaohsiung City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3481,'Keelung City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3482,'Kinmen County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3483,'Miaoli County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3484,'Nantou County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3486,'Penghu County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3487,'Pingtung County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3488,'Taichung City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3492,'Tainan City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3493,'New Taipei City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3495,'Taitung County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3496,'Taoyuan City',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3497,'Yilan County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3498,'YunLin County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3500,'Dushanbe',215,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3501,'Gorno-Badakhshan',215,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3502,'Karotegin',215,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3503,'Khatlon',215,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3504,'Sughd',215,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3505,'Arusha',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3506,'Dar es Salaam',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3507,'Dodoma',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3508,'Iringa',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3509,'Kagera',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3510,'Kigoma',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3511,'Kilimanjaro',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3512,'Lindi',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3513,'Mara',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3514,'Mbeya',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3515,'Morogoro',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3516,'Mtwara',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3517,'Mwanza',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3518,'Pwani',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3519,'Rukwa',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3520,'Ruvuma',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3521,'Shinyanga',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3522,'Singida',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3523,'Tabora',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3524,'Tanga',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3525,'Zanzibar and Pemba',216,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3526,'Amnat Charoen',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3527,'Ang Thong',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3528,'Bangkok',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3529,'Buri Ram',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3530,'Chachoengsao',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3531,'Chai Nat',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3532,'Chaiyaphum',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3533,'Changwat Chaiyaphum',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3534,'Chanthaburi',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3535,'Chiang Mai',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3536,'Chiang Rai',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3537,'Chon Buri',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3538,'Chumphon',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3539,'Kalasin',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3540,'Kamphaeng Phet',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3541,'Kanchanaburi',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3542,'Khon Kaen',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3543,'Krabi',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3544,'Krung Thep',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3545,'Lampang',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3546,'Lamphun',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3547,'Loei',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3548,'Lop Buri',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3549,'Mae Hong Son',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3550,'Maha Sarakham',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3551,'Mukdahan',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3552,'Nakhon Nayok',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3553,'Nakhon Pathom',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3554,'Nakhon Phanom',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3555,'Nakhon Ratchasima',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3556,'Nakhon Sawan',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3557,'Nakhon Si Thammarat',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3558,'Nan',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3559,'Narathiwat',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3560,'Nong Bua Lam Phu',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3561,'Nong Khai',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3562,'Nonthaburi',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3563,'Pathum Thani',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3564,'Pattani',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3565,'Phangnga',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3566,'Phatthalung',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3567,'Phayao',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3568,'Phetchabun',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3569,'Phetchaburi',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3570,'Phichit',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3571,'Phitsanulok',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3572,'Phra Nakhon Si Ayutthaya',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3573,'Phrae',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3574,'Phuket',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3575,'Prachin Buri',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3576,'Prachuap Khiri Khan',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3577,'Ranong',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3578,'Ratchaburi',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3579,'Rayong',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3580,'Roi Et',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3581,'Sa Kaeo',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3582,'Sakon Nakhon',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3583,'Samut Prakan',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3584,'Samut Sakhon',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3585,'Samut Songkhran',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3586,'Saraburi',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3587,'Satun',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3588,'Si Sa Ket',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3589,'Sing Buri',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3590,'Songkhla',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3591,'Sukhothai',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3592,'Suphan Buri',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3593,'Surat Thani',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3594,'Surin',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3595,'Tak',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3596,'Trang',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3597,'Trat',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3598,'Ubon Ratchathani',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3599,'Udon Thani',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3600,'Uthai Thani',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3601,'Uttaradit',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3602,'Yala',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3603,'Yasothon',217,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3604,'Centre',218,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3605,'Kara',218,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3606,'Maritime',218,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3607,'Plateaux',218,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3608,'Savanes',218,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3609,'Atafu',219,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3610,'Fakaofo',219,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3611,'Nukunonu',219,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3612,'Eua',220,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3613,'Ha\'apai',220,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3614,'Niuas',220,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3615,'Tongatapu',220,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3616,'Vava\'u',220,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3617,'Arima-Tunapuna-Piarco',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3618,'Caroni',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3619,'Chaguanas',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3620,'Couva-Tabaquite-Talparo',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3621,'Diego Martin',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3622,'Glencoe',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3623,'Penal Debe',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3624,'Point Fortin',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3625,'Port of Spain',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3626,'Princes Town',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3627,'Saint George',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3628,'San Fernando',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3629,'San Juan',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3630,'Sangre Grande',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3631,'Siparia',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3632,'Tobago',221,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3633,'Aryanah',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3634,'Bajah',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3635,'Bin \'Arus',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3636,'Binzart',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3637,'Gouvernorat de Ariana',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3638,'Gouvernorat de Nabeul',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3639,'Gouvernorat de Sousse',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3640,'Hammamet Yasmine',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3641,'Jundubah',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3642,'Madaniyin',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3643,'Manubah',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3644,'Monastir',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3645,'Nabul',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3646,'Qabis',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3647,'Qafsah',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3648,'Qibili',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3649,'Safaqis',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3650,'Sfax',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3651,'Sidi Bu Zayd',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3652,'Silyanah',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3653,'Susah',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3654,'Tatawin',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3655,'Tawzar',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3656,'Tunis',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3657,'Zaghwan',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3658,'al-Kaf',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3659,'al-Mahdiyah',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3660,'al-Munastir',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3661,'al-Qasrayn',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3662,'al-Qayrawan',222,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3663,'Adana',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3664,'Adiyaman',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3665,'Afyon',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3666,'Agri',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3667,'Aksaray',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3668,'Amasya',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3669,'Ankara',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3670,'Antalya',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3671,'Ardahan',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3672,'Artvin',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3673,'Aydin',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3674,'Balikesir',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3675,'Bartin',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3676,'Batman',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3677,'Bayburt',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3678,'Bilecik',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3679,'Bingol',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3680,'Bitlis',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3681,'Bolu',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3682,'Burdur',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3683,'Bursa',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3684,'Canakkale',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3685,'Cankiri',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3686,'Corum',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3687,'Denizli',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3688,'Diyarbakir',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3689,'Duzce',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3690,'Edirne',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3691,'Elazig',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3692,'Erzincan',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3693,'Erzurum',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3694,'Eskisehir',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3695,'Gaziantep',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3696,'Giresun',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3697,'Gumushane',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3698,'Hakkari',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3699,'Hatay',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3700,'Icel',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3701,'Igdir',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3702,'Isparta',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3703,'Istanbul',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3704,'Izmir',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3705,'Kahramanmaras',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3706,'Karabuk',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3707,'Karaman',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3708,'Kars',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3709,'Karsiyaka',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3710,'Kastamonu',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3711,'Kayseri',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3712,'Kilis',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3713,'Kirikkale',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3714,'Kirklareli',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3715,'Kirsehir',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3716,'Kocaeli',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3717,'Konya',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3718,'Kutahya',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3719,'Lefkosa',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3720,'Malatya',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3721,'Manisa',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3722,'Mardin',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3723,'Mugla',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3724,'Mus',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3725,'Nevsehir',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3726,'Nigde',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3727,'Ordu',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3728,'Osmaniye',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3729,'Rize',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3730,'Sakarya',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3731,'Samsun',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3732,'Sanliurfa',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3733,'Siirt',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3734,'Sinop',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3735,'Sirnak',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3736,'Sivas',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3737,'Tekirdag',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3738,'Tokat',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3739,'Trabzon',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3740,'Tunceli',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3741,'Usak',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3742,'Van',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3743,'Yalova',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3744,'Yozgat',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3745,'Zonguldak',223,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3746,'Ahal',224,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3747,'Asgabat',224,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3748,'Balkan',224,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3749,'Dasoguz',224,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3750,'Lebap',224,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3751,'Mari',224,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3752,'Grand Turk',225,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3753,'South Caicos and East Caicos',225,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3754,'Funafuti',226,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3755,'Nanumanga',226,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3756,'Nanumea',226,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3757,'Niutao',226,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3758,'Nui',226,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3759,'Nukufetau',226,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3760,'Nukulaelae',226,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3761,'Vaitupu',226,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3762,'Central',227,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3763,'Eastern',227,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3764,'Northern',227,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3765,'Western',227,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3766,'Cherkas\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3767,'Chernihivs\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3768,'Chernivets\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3769,'Crimea',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3770,'Dnipropetrovska',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3771,'Donets\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3772,'Ivano-Frankivs\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3773,'Kharkiv',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3774,'Kharkov',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3775,'Khersonska',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3776,'Khmel\'nyts\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3777,'Kirovohrad',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3778,'Krym',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3779,'Kyyiv',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3780,'Kyyivs\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3781,'L\'vivs\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3782,'Luhans\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3783,'Mykolayivs\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3784,'Odes\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3785,'Odessa',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3786,'Poltavs\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3787,'Rivnens\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3788,'Sevastopol\'',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3789,'Sums\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3790,'Ternopil\'s\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3791,'Volyns\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3792,'Vynnyts\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3793,'Zakarpats\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3794,'Zaporizhia',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3795,'Zhytomyrs\'ka',228,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3796,'Abu Zabi',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3797,'Ajman',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3798,'Dubai',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3799,'Ras al-Khaymah',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3800,'Sharjah',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3801,'Sharjha',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3802,'Umm al Qaywayn',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3803,'al-Fujayrah',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3804,'ash-Shariqah',229,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3805,'Aberdeen',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3806,'Aberdeenshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3807,'Argyll',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3808,'Armagh',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3809,'Bedfordshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3810,'Belfast',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3811,'Berkshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3812,'Birmingham',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3813,'Brechin',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3814,'Bridgnorth',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3815,'Bristol',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3816,'Buckinghamshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3817,'Cambridge',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3818,'Cambridgeshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3819,'Channel Islands',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3820,'Cheshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3821,'Cleveland',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3822,'Co Fermanagh',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3823,'Conwy',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3824,'Cornwall',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3825,'Coventry',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3826,'Craven Arms',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3827,'Cumbria',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3828,'Denbighshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3829,'Derby',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3830,'Derbyshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3831,'Devon',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3832,'Dial Code Dungannon',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3833,'Didcot',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3834,'Dorset',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3835,'Dunbartonshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3836,'Durham',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3837,'East Dunbartonshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3838,'East Lothian',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3839,'East Midlands',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3840,'East Sussex',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3841,'East Yorkshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3842,'England',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3843,'Essex',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3844,'Fermanagh',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3845,'Fife',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3846,'Flintshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3847,'Fulham',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3848,'Gainsborough',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3849,'Glocestershire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3850,'Gwent',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3851,'Hampshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3852,'Hants',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3853,'Herefordshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3854,'Hertfordshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3855,'Ireland',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3856,'Isle Of Man',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3857,'Isle of Wight',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3858,'Kenford',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3859,'Kent',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3860,'Kilmarnock',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3861,'Lanarkshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3862,'Lancashire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3863,'Leicestershire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3864,'Lincolnshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3865,'Llanymynech',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3866,'London',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3867,'Ludlow',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3868,'Manchester',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3869,'Mayfair',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3870,'Merseyside',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3871,'Mid Glamorgan',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3872,'Middlesex',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3873,'Mildenhall',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3874,'Monmouthshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3875,'Newton Stewart',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3876,'Norfolk',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3877,'North Humberside',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3878,'North Yorkshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3879,'Northamptonshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3880,'Northants',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3881,'Northern Ireland',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3882,'Northumberland',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3883,'Nottinghamshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3884,'Oxford',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3885,'Powys',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3886,'Roos-shire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3887,'SUSSEX',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3888,'Sark',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3889,'Scotland',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3890,'Scottish Borders',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3891,'Shropshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3892,'Somerset',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3893,'South Glamorgan',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3894,'South Wales',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3895,'South Yorkshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3896,'Southwell',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3897,'Staffordshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3898,'Strabane',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3899,'Suffolk',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3900,'Surrey',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3901,'Sussex',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3902,'Twickenham',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3903,'Tyne and Wear',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3904,'Tyrone',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3905,'Utah',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3906,'Wales',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3907,'Warwickshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3908,'West Lothian',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3909,'West Midlands',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3910,'West Sussex',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3911,'West Yorkshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3912,'Whissendine',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3913,'Wiltshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3914,'Wokingham',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3915,'Worcestershire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3916,'Wrexham',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3917,'Wurttemberg',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3918,'Yorkshire',230,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3919,'Alabama',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3920,'Alaska',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3921,'Arizona',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3922,'Arkansas',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3923,'Byram',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3924,'California',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3925,'Cokato',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3926,'Colorado',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3927,'Connecticut',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3928,'Delaware',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3929,'District of Columbia',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3930,'Florida',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3931,'Georgia',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3932,'Hawaii',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3933,'Idaho',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3934,'Illinois',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3935,'Indiana',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3936,'Iowa',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3937,'Kansas',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3938,'Kentucky',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3939,'Louisiana',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3940,'Lowa',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3941,'Maine',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3942,'Maryland',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3943,'Massachusetts',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3944,'Medfield',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3945,'Michigan',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3946,'Minnesota',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3947,'Mississippi',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3948,'Missouri',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3949,'Montana',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3950,'Nebraska',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3951,'Nevada',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3952,'New Hampshire',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3953,'New Jersey',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3954,'New Jersy',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3955,'New Mexico',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3956,'New York',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3957,'North Carolina',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3958,'North Dakota',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3959,'Ohio',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3960,'Oklahoma',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3961,'Ontario',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3962,'Oregon',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3963,'Pennsylvania',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3964,'Ramey',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3965,'Rhode Island',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3966,'South Carolina',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3967,'South Dakota',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3968,'Sublimity',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3969,'Tennessee',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3970,'Texas',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3971,'Trimble',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3972,'Utah',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3973,'Vermont',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3974,'Virginia',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3975,'Washington',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3976,'West Virginia',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3977,'Wisconsin',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3978,'Wyoming',231,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3979,'United States Minor Outlying I',232,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3980,'Artigas',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3981,'Canelones',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3982,'Cerro Largo',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3983,'Colonia',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3984,'Durazno',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3985,'FLorida',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3986,'Flores',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3987,'Lavalleja',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3988,'Maldonado',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3989,'Montevideo',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3990,'Paysandu',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3991,'Rio Negro',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3992,'Rivera',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3993,'Rocha',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3994,'Salto',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3995,'San Jose',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3996,'Soriano',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3997,'Tacuarembo',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3998,'Treinta y Tres',233,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(3999,'Andijon',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4000,'Buhoro',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4001,'Buxoro Viloyati',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4002,'Cizah',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4003,'Fargona',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4004,'Horazm',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4005,'Kaskadar',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4006,'Korakalpogiston',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4007,'Namangan',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4008,'Navoi',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4009,'Samarkand',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4010,'Sirdare',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4011,'Surhondar',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4012,'Toskent',234,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4013,'Malampa',235,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4014,'Penama',235,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4015,'Sanma',235,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4016,'Shefa',235,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4017,'Tafea',235,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4018,'Torba',235,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4019,'Vatican City State (Holy See)',236,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4020,'Amazonas',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4021,'Anzoategui',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4022,'Apure',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4023,'Aragua',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4024,'Barinas',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4025,'Bolivar',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4026,'Carabobo',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4027,'Cojedes',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4028,'Delta Amacuro',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4029,'Distrito Federal',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4030,'Falcon',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4031,'Guarico',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4032,'Lara',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4033,'Merida',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4034,'Miranda',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4035,'Monagas',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4036,'Nueva Esparta',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4037,'Portuguesa',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4038,'Sucre',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4039,'Tachira',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4040,'Trujillo',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4041,'Vargas',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4042,'Yaracuy',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4043,'Zulia',237,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4044,'Bac Giang',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4045,'Binh Dinh',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4046,'Binh Duong',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4047,'Da Nang',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4048,'Dong Bang Song Cuu Long',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4049,'Dong Bang Song Hong',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4050,'Dong Nai',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4051,'Dong Nam Bo',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4052,'Duyen Hai Mien Trung',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4053,'Hanoi',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4054,'Hung Yen',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4055,'Khu Bon Cu',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4056,'Long An',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4057,'Mien Nui Va Trung Du',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4058,'Thai Nguyen',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4059,'Thanh Pho Ho Chi Minh',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4060,'Thu Do Ha Noi',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4061,'Tinh Can Tho',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4062,'Tinh Da Nang',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4063,'Tinh Gia Lai',238,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4064,'Anegada',239,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4065,'Jost van Dyke',239,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4066,'Tortola',239,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4067,'Saint Croix',240,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4068,'Saint John',240,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4069,'Saint Thomas',240,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4070,'Alo',241,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4071,'Singave',241,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4072,'Wallis',241,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4073,'Bu Jaydur',242,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4074,'Wad-adh-Dhahab',242,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4075,'al-\'Ayun',242,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4076,'as-Samarah',242,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4077,'\'Adan',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4078,'Abyan',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4079,'Dhamar',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4080,'Hadramaut',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4081,'Hajjah',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4082,'Hudaydah',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4083,'Ibb',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4084,'Lahij',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4085,'Ma\'rib',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4086,'Madinat San\'a',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4087,'Sa\'dah',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4088,'Sana',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4089,'Shabwah',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4090,'Ta\'izz',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4091,'al-Bayda',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4092,'al-Hudaydah',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4093,'al-Jawf',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4094,'al-Mahrah',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4095,'al-Mahwit',243,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4096,'Central Serbia',244,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4097,'Kosovo and Metohija',244,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4098,'Montenegro',244,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4099,'Republic of Serbia',244,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4100,'Serbia',244,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4101,'Vojvodina',244,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4102,'Central',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4103,'Copperbelt',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4104,'Eastern',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4105,'Luapala',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4106,'Lusaka',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4107,'North-Western',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4108,'Northern',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4109,'Southern',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4110,'Western',245,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4111,'Bulawayo',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4112,'Harare',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4113,'Manicaland',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4114,'Mashonaland Central',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4115,'Mashonaland East',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4116,'Mashonaland West',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4117,'Masvingo',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4118,'Matabeleland North',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4119,'Matabeleland South',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4120,'Midlands',246,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL),(4121,'Lienchiang County',214,0,'2021-04-06 01:11:20','2021-04-06 01:11:20',NULL); /*!40000 ALTER TABLE `states` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subscribers` -- DROP TABLE IF EXISTS `subscribers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `subscribers` ( `id` int NOT NULL AUTO_INCREMENT, `email` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `email` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subscribers` -- LOCK TABLES `subscribers` WRITE; /*!40000 ALTER TABLE `subscribers` DISABLE KEYS */; /*!40000 ALTER TABLE `subscribers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taxes` -- DROP TABLE IF EXISTS `taxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `taxes` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb3_unicode_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `taxes` -- LOCK TABLES `taxes` WRITE; /*!40000 ALTER TABLE `taxes` DISABLE KEYS */; INSERT INTO `taxes` VALUES (3,'Tax',1,'2021-03-07 11:45:33','2021-03-07 11:45:33'); /*!40000 ALTER TABLE `taxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ticket_replies` -- DROP TABLE IF EXISTS `ticket_replies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ticket_replies` ( `id` int NOT NULL AUTO_INCREMENT, `ticket_id` int NOT NULL, `user_id` int NOT NULL, `reply` longtext COLLATE utf8mb3_unicode_ci NOT NULL, `files` longtext COLLATE utf8mb3_unicode_ci, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ticket_replies` -- LOCK TABLES `ticket_replies` WRITE; /*!40000 ALTER TABLE `ticket_replies` DISABLE KEYS */; /*!40000 ALTER TABLE `ticket_replies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tickets` -- DROP TABLE IF EXISTS `tickets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tickets` ( `id` int NOT NULL AUTO_INCREMENT, `code` bigint NOT NULL, `user_id` int NOT NULL, `subject` varchar(255) COLLATE utf8mb3_unicode_ci NOT NULL, `details` longtext COLLATE utf8mb3_unicode_ci, `files` longtext COLLATE utf8mb3_unicode_ci, `status` varchar(10) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'pending', `viewed` int NOT NULL DEFAULT '0', `client_viewed` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tickets` -- LOCK TABLES `tickets` WRITE; /*!40000 ALTER TABLE `tickets` DISABLE KEYS */; /*!40000 ALTER TABLE `tickets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `top_banner_translations` -- DROP TABLE IF EXISTS `top_banner_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `top_banner_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `top_banner_id` bigint NOT NULL, `text` longtext COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci 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=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `top_banner_translations` -- LOCK TABLES `top_banner_translations` WRITE; /*!40000 ALTER TABLE `top_banner_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `top_banner_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `top_banners` -- DROP TABLE IF EXISTS `top_banners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `top_banners` ( `id` bigint NOT NULL AUTO_INCREMENT, `text` longtext COLLATE utf8mb3_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `status` int NOT NULL DEFAULT '0', `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=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `top_banners` -- LOCK TABLES `top_banners` WRITE; /*!40000 ALTER TABLE `top_banners` DISABLE KEYS */; /*!40000 ALTER TABLE `top_banners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transactions` -- DROP TABLE IF EXISTS `transactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `transactions` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `gateway` varchar(255) DEFAULT NULL, `payment_type` varchar(255) DEFAULT NULL, `additional_content` text, `mpesa_request` varchar(255) DEFAULT NULL, `mpesa_receipt` varchar(255) DEFAULT NULL, `status` int 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transactions` -- LOCK TABLES `transactions` WRITE; /*!40000 ALTER TABLE `transactions` DISABLE KEYS */; /*!40000 ALTER TABLE `transactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `translations` -- DROP TABLE IF EXISTS `translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `translations` ( `id` int NOT NULL AUTO_INCREMENT, `lang` varchar(10) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `lang_key` text COLLATE utf8mb3_unicode_ci, `lang_value` text COLLATE utf8mb3_unicode_ci, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27511 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `translations` -- LOCK TABLES `translations` WRITE; /*!40000 ALTER TABLE `translations` DISABLE KEYS */; INSERT INTO `translations` VALUES (3,'en','all_category','All Category','2020-11-02 07:40:38','2021-09-20 07:29:07'),(4,'en','all','All','2020-11-02 07:40:38','2021-09-20 07:29:07'),(5,'en','flash_sale','Flash Sale','2020-11-02 07:40:40','2021-09-20 07:29:07'),(6,'en','view_more','View More','2020-11-02 07:40:40','2021-09-20 07:29:07'),(7,'en','add_to_wishlist','Add to wishlist','2020-11-02 07:40:40','2021-09-20 07:29:07'),(8,'en','add_to_compare','Add to compare','2020-11-02 07:40:40','2021-09-20 07:29:07'),(9,'en','add_to_cart','Add to cart','2020-11-02 07:40:40','2021-09-20 07:29:07'),(10,'en','club_point','Club Point','2020-11-02 07:40:40','2021-09-20 07:29:07'),(11,'en','classified_ads','Classified Ads','2020-11-02 07:40:40','2021-09-20 07:29:07'),(13,'en','used','Used','2020-11-02 07:40:40','2021-09-20 07:29:07'),(14,'en','top_10_categories','Top 10 Categories','2020-11-02 07:40:40','2021-09-20 07:29:07'),(15,'en','view_all_categories','View All Categories','2020-11-02 07:40:40','2021-09-20 07:29:07'),(16,'en','top_10_brands','Top 10 Brands','2020-11-02 07:40:40','2021-09-20 07:29:07'),(17,'en','view_all_brands','View All Brands','2020-11-02 07:40:40','2021-09-20 07:29:07'),(43,'en','terms__conditions','Terms & conditions','2020-11-02 07:40:41','2021-09-20 07:29:07'),(51,'en','best_selling','Best Selling','2020-11-02 07:40:42','2021-09-20 07:29:07'),(53,'en','top_20','Top 20','2020-11-02 07:40:42','2021-09-20 07:29:07'),(55,'en','featured_products','Featured Products','2020-11-02 07:40:42','2021-09-20 07:29:07'),(56,'en','best_sellers','Best Sellers','2020-11-02 07:40:43','2021-09-20 07:29:07'),(57,'en','visit_store','Visit Store','2020-11-02 07:40:43','2021-09-20 07:29:07'),(58,'en','popular_suggestions','Popular Suggestions','2020-11-02 07:46:59','2021-09-20 07:29:07'),(59,'en','category_suggestions','Category Suggestions','2020-11-02 07:46:59','2021-09-20 07:29:07'),(62,'en','automobile__motorcycle','Automobile & Motorcycle','2020-11-02 07:47:01','2021-09-20 07:29:07'),(63,'en','price_range','Price range','2020-11-02 07:47:01','2021-09-20 07:29:07'),(64,'en','filter_by_color','Filter by color','2020-11-02 07:47:02','2021-09-20 07:29:07'),(65,'en','home','Home','2020-11-02 07:47:02','2021-09-20 07:29:07'),(67,'en','newest','Newest','2020-11-02 07:47:02','2021-09-20 07:29:07'),(68,'en','oldest','Oldest','2020-11-02 07:47:02','2021-09-20 07:29:07'),(69,'en','price_low_to_high','Price low to high','2020-11-02 07:47:02','2021-09-20 07:29:07'),(70,'en','price_high_to_low','Price high to low','2020-11-02 07:47:02','2021-09-20 07:29:07'),(71,'en','brands','Brands','2020-11-02 07:47:02','2021-09-20 07:29:07'),(72,'en','all_brands','All Brands','2020-11-02 07:47:02','2021-09-20 07:29:07'),(74,'en','all_sellers','All Sellers','2020-11-02 07:47:02','2021-09-20 07:29:07'),(78,'en','inhouse_product','Inhouse product','2020-11-02 08:18:03','2021-09-20 07:29:07'),(79,'en','message_seller','Message Seller','2020-11-02 08:18:03','2021-09-20 07:29:07'),(80,'en','price','Price','2020-11-02 08:18:03','2021-09-20 07:29:07'),(81,'en','discount_price','Discount Price','2020-11-02 08:18:03','2021-09-20 07:29:07'),(82,'en','color','Color','2020-11-02 08:18:03','2021-09-20 07:29:07'),(83,'en','quantity','Quantity','2020-11-02 08:18:03','2021-09-20 07:29:07'),(84,'en','available','available','2020-11-02 08:18:03','2021-02-09 06:52:36'),(85,'en','total_price','Total Price','2020-11-02 08:18:03','2021-09-20 07:29:07'),(86,'en','out_of_stock','Out of Stock','2020-11-02 08:18:03','2021-09-20 07:29:07'),(87,'en','refund','Refund','2020-11-02 08:18:03','2021-09-20 07:29:07'),(88,'en','share','Share','2020-11-02 08:18:03','2021-09-20 07:29:07'),(89,'en','sold_by','Sold By','2020-11-02 08:18:03','2021-09-20 07:36:54'),(90,'en','customer_reviews','customer reviews','2020-11-02 08:18:03','2021-09-20 07:29:07'),(91,'en','top_selling_products','Top Selling Products','2020-11-02 08:18:03','2021-09-20 07:29:07'),(92,'en','description','Description','2020-11-02 08:18:03','2021-09-20 07:29:07'),(93,'en','video','Video','2020-11-02 08:18:03','2021-09-20 07:29:07'),(94,'en','reviews','Reviews','2020-11-02 08:18:03','2021-09-20 07:29:07'),(95,'en','download','Download','2020-11-02 08:18:03','2021-09-20 07:29:07'),(96,'en','there_have_been_no_reviews_for_this_product_yet','There have been no reviews for this product yet.','2020-11-02 08:18:03','2021-09-20 07:29:07'),(97,'en','related_products','Related products','2020-11-02 08:18:03','2021-09-20 07:29:07'),(98,'en','any_query_about_this_product','Any query about this product','2020-11-02 08:18:03','2021-09-20 07:29:07'),(99,'en','product_name','Product Name','2020-11-02 08:18:03','2021-09-20 07:29:07'),(100,'en','your_question','Your Question','2020-11-02 08:18:03','2021-09-20 07:29:07'),(101,'en','send','Send','2020-11-02 08:18:03','2021-09-20 07:29:07'),(103,'en','use_country_code_before_number','Use country code before number','2020-11-02 08:18:03','2021-09-20 07:29:07'),(105,'en','remember_me','Remember Me','2020-11-02 08:18:03','2021-09-20 07:29:07'),(107,'en','dont_have_an_account','Dont have an account?','2020-11-02 08:18:04','2021-09-20 07:29:07'),(108,'en','register_now','Register Now','2020-11-02 08:18:04','2021-09-20 07:29:07'),(109,'en','or_login_with','Or Login With','2020-11-02 08:18:04','2021-09-20 07:29:07'),(110,'en','oops','oops..','2020-11-02 10:29:04','2021-09-20 07:29:07'),(111,'en','this_item_is_out_of_stock','This item is out of stock!','2020-11-02 10:29:04','2021-09-20 07:29:07'),(112,'en','back_to_shopping','Back to shopping','2020-11-02 10:29:04','2021-09-20 07:29:07'),(113,'en','login_to_your_account','Login to your account.','2020-11-02 11:27:41','2021-09-20 07:29:07'),(115,'en','purchase_history','Purchase History','2020-11-02 11:27:53','2021-09-20 07:29:07'),(116,'en','new','New','2020-11-02 11:27:53','2021-09-20 07:29:07'),(117,'en','downloads','Downloads','2020-11-02 11:27:53','2021-09-20 07:29:07'),(118,'en','sent_refund_request','Sent Refund Request','2020-11-02 11:27:53','2021-09-20 07:29:07'),(119,'en','product_bulk_upload','Product Bulk Upload','2020-11-02 11:27:53','2021-09-20 07:29:07'),(123,'en','orders','Orders','2020-11-02 11:27:53','2021-09-20 07:29:07'),(124,'en','recieved_refund_request','Recieved Refund Request','2020-11-02 11:27:53','2021-09-20 07:29:07'),(126,'en','shop_setting','Shop Setting','2020-11-02 11:27:53','2021-09-20 07:29:07'),(127,'en','payment_history','Payment History','2020-11-02 11:27:53','2021-09-20 07:29:07'),(128,'en','money_withdraw','Money Withdraw','2020-11-02 11:27:53','2021-09-20 07:29:07'),(129,'en','conversations','Conversations','2020-11-02 11:27:53','2021-09-20 07:29:07'),(130,'en','my_wallet','My Wallet','2020-11-02 11:27:53','2021-09-20 07:29:07'),(131,'en','earning_points','Earning Points','2020-11-02 11:27:53','2021-09-20 07:29:07'),(132,'en','support_ticket','Support Ticket','2020-11-02 11:27:53','2021-09-20 07:29:07'),(133,'en','manage_profile','Manage Profile','2020-11-02 11:27:53','2021-09-20 07:29:07'),(134,'en','sold_amount','Sold Amount','2020-11-02 11:27:53','2021-09-20 07:29:07'),(135,'en','your_sold_amount_current_month','Your sold amount (current month)','2020-11-02 11:27:53','2021-09-20 07:29:07'),(136,'en','total_sold','Total Sold','2020-11-02 11:27:54','2021-09-20 07:29:07'),(137,'en','last_month_sold','Last Month Sold','2020-11-02 11:27:54','2021-09-20 07:29:07'),(138,'en','total_sale','Total sale','2020-11-02 11:27:54','2021-09-20 07:29:07'),(139,'en','total_earnings','Total earnings','2020-11-02 11:27:54','2021-09-20 07:29:07'),(140,'en','successful_orders','Successful orders','2020-11-02 11:27:54','2021-09-20 07:29:07'),(141,'en','total_orders','Total orders','2020-11-02 11:27:54','2021-09-20 07:29:07'),(142,'en','pending_orders','Pending orders','2020-11-02 11:27:54','2021-09-20 07:29:07'),(143,'en','cancelled_orders','Cancelled orders','2020-11-02 11:27:54','2021-09-20 07:29:07'),(145,'en','product','Product','2020-11-02 11:27:55','2021-09-20 07:29:07'),(147,'en','purchased_package','Purchased Package','2020-11-02 11:27:55','2021-09-20 07:29:07'),(148,'en','package_not_found','Package Not Found','2020-11-02 11:27:55','2021-09-20 07:29:07'),(149,'en','upgrade_package','Upgrade Package','2020-11-02 11:27:55','2021-09-20 07:29:07'),(150,'en','shop','Shop','2020-11-02 11:27:55','2021-09-20 07:29:07'),(151,'en','manage__organize_your_shop','Manage & organize your shop','2020-11-02 11:27:55','2021-09-20 07:29:07'),(152,'en','go_to_setting','Go to setting','2020-11-02 11:27:55','2021-09-20 07:29:07'),(153,'en','payment','Payment','2020-11-02 11:27:55','2021-09-20 07:29:07'),(154,'en','configure_your_payment_method','Configure your payment method','2020-11-02 11:27:55','2021-09-20 07:29:07'),(156,'en','my_panel','My Panel','2020-11-02 11:27:55','2021-09-20 07:29:07'),(158,'en','item_has_been_added_to_wishlist','Item has been added to wishlist','2020-11-02 11:27:55','2021-09-20 07:29:07'),(159,'en','my_points','My Points','2020-11-02 11:28:15','2021-09-20 07:29:07'),(160,'en','_points','Points','2020-11-02 11:28:15','2021-09-20 07:29:07'),(161,'en','wallet_money','Wallet Money','2020-11-02 11:28:16','2021-09-20 07:29:07'),(162,'en','exchange_rate','Exchange Rate','2020-11-02 11:28:16','2021-09-20 07:29:07'),(163,'en','point_earning_history','Point Earning history','2020-11-02 11:28:16','2021-09-20 07:29:07'),(164,'en','date','Date','2020-11-02 11:28:16','2021-09-20 07:29:07'),(165,'en','points','Points','2020-11-02 11:28:16','2021-09-20 07:29:07'),(166,'en','converted','Converted','2020-11-02 11:28:16','2021-09-20 07:29:07'),(167,'en','action','Action','2020-11-02 11:28:16','2021-09-20 07:29:07'),(168,'en','no_history_found','No history found.','2020-11-02 11:28:16','2021-09-20 07:29:07'),(169,'en','convert_has_been_done_successfully_check_your_wallets','Convert has been done successfully Check your Wallets','2020-11-02 11:28:16','2021-09-20 07:29:07'),(170,'en','something_went_wrong','Something went wrong','2020-11-02 11:28:16','2021-09-20 07:29:07'),(171,'en','remaining_uploads','Remaining Uploads','2020-11-02 11:37:13','2021-09-20 07:29:07'),(172,'en','no_package_found','No Package Found','2020-11-02 11:37:13','2021-09-20 07:29:07'),(173,'en','search_product','Search product','2020-11-02 11:37:13','2021-09-20 07:29:07'),(174,'en','name','Name','2020-11-02 11:37:13','2021-09-20 07:29:07'),(176,'en','current_qty','Current Qty','2020-11-02 11:37:13','2021-09-20 07:29:07'),(177,'en','base_price','Base Price','2020-11-02 11:37:13','2021-09-20 07:29:07'),(178,'en','published','Published','2020-11-02 11:37:13','2021-09-20 07:29:07'),(179,'en','featured','Featured','2020-11-02 11:37:13','2021-09-20 07:29:07'),(180,'en','options','Options','2020-11-02 11:37:13','2021-09-20 07:29:07'),(181,'en','edit','Edit','2020-11-02 11:37:13','2021-09-20 07:29:07'),(182,'en','duplicate','Duplicate','2020-11-02 11:37:13','2021-09-20 07:29: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 11:37:20','2021-09-20 07:29: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 11:37:20','2021-09-20 07:29: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 11:37:20','2021-09-20 07:29: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 11:37:20','2021-09-20 07:29:07'),(188,'en','download_csv','Download CSV','2020-11-02 11:37:20','2021-09-20 07:29: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 11:37:20','2021-09-20 07:29: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 11:37:20','2021-09-20 07:29:07'),(191,'en','download_category','Download Category','2020-11-02 11:37:20','2021-09-20 07:29:07'),(192,'en','download_sub_category','Download Sub category','2020-11-02 11:37:20','2021-09-20 07:29:07'),(193,'en','download_sub_sub_category','Download Sub Sub category','2020-11-02 11:37:20','2021-09-20 07:29:07'),(194,'en','download_brand','Download Brand','2020-11-02 11:37:20','2021-09-20 07:29:07'),(195,'en','upload_csv_file','Upload CSV File','2020-11-02 11:37:20','2021-09-20 07:29:07'),(196,'en','csv','CSV','2020-11-02 11:37:20','2021-09-20 07:29:07'),(197,'en','choose_csv_file','Choose CSV File','2020-11-02 11:37:20','2021-09-20 07:29:07'),(198,'en','upload','Upload','2020-11-02 11:37:20','2021-09-20 07:29:07'),(199,'en','add_new_digital_product','Add New Digital Product','2020-11-02 11:37:25','2021-09-20 07:29:07'),(200,'en','available_status','Available Status','2020-11-02 11:37:29','2021-09-20 07:29:07'),(201,'en','admin_status','Admin Status','2020-11-02 11:37:29','2021-09-20 07:29:07'),(202,'en','pending_balance','Pending Balance','2020-11-02 11:38:07','2021-09-20 07:29:07'),(203,'en','send_withdraw_request','Send Withdraw Request','2020-11-02 11:38:07','2021-09-20 07:29:07'),(204,'en','withdraw_request_history','Withdraw Request history','2020-11-02 11:38:07','2021-09-20 07:29:07'),(205,'en','amount','Amount','2020-11-02 11:38:07','2021-09-20 07:29:07'),(206,'en','status','Status','2020-11-02 11:38:07','2021-09-20 07:29:07'),(207,'en','message','Message','2020-11-02 11:38:07','2021-09-20 07:29:07'),(208,'en','send_a_withdraw_request','Send A Withdraw Request','2020-11-02 11:38:07','2021-09-20 07:29:07'),(209,'en','basic_info','Basic Info','2020-11-02 11:38:13','2021-09-20 07:29:07'),(211,'en','your_phone','Your Phone','2020-11-02 11:38:13','2021-09-20 07:29:07'),(212,'en','photo','Photo','2020-11-02 11:38:13','2021-09-20 07:29:07'),(213,'en','browse','Browse','2020-11-02 11:38:13','2021-09-20 07:29:07'),(215,'en','your_password','Your Password','2020-11-02 11:38:13','2021-09-20 07:29:07'),(216,'en','new_password','New Password','2020-11-02 11:38:14','2021-09-20 07:29:07'),(217,'en','confirm_password','Confirm Password','2020-11-02 11:38:14','2021-09-20 07:29:07'),(218,'en','add_new_address','Add New Address','2020-11-02 11:38:14','2021-09-20 07:29:07'),(219,'en','payment_setting','Payment Setting','2020-11-02 11:38:14','2021-09-20 07:29:07'),(220,'en','cash_payment','Cash Payment','2020-11-02 11:38:14','2021-09-20 07:29:07'),(221,'en','bank_payment','Bank Payment','2020-11-02 11:38:14','2021-09-20 07:29:07'),(222,'en','bank_name','Bank Name','2020-11-02 11:38:14','2021-09-20 07:29:07'),(223,'en','bank_account_name','Bank Account Name','2020-11-02 11:38:14','2021-09-20 07:29:07'),(224,'en','bank_account_number','Bank Account Number','2020-11-02 11:38:14','2021-09-20 07:29:07'),(225,'en','bank_routing_number','Bank Routing Number','2020-11-02 11:38:14','2021-09-20 07:29:07'),(226,'en','update_profile','Update Profile','2020-11-02 11:38:14','2021-09-20 07:29:07'),(227,'en','change_your_email','Change your email','2020-11-02 11:38:14','2021-09-20 07:29:07'),(228,'en','your_email','Your Email','2020-11-02 11:38:14','2021-09-20 07:29:07'),(229,'en','sending_email','Sending Email...','2020-11-02 11:38:14','2021-09-20 07:29:07'),(230,'en','verify','Verify','2020-11-02 11:38:14','2021-09-20 07:29:07'),(231,'en','update_email','Update Email','2020-11-02 11:38:14','2021-09-20 07:29:07'),(232,'en','new_address','New Address','2020-11-02 11:38:14','2021-09-20 07:29:07'),(233,'en','your_address','Your Address','2020-11-02 11:38:14','2021-09-20 07:29:07'),(234,'en','country','Country','2020-11-02 11:38:14','2021-09-20 07:29:07'),(235,'en','select_your_country','Select your country','2020-11-02 11:38:14','2021-09-20 07:29:07'),(236,'en','city','City','2020-11-02 11:38:14','2021-09-20 07:29:07'),(237,'en','your_city','Your City','2020-11-02 11:38:14','2021-09-20 07:29:07'),(239,'en','your_postal_code','Your Postal Code','2020-11-02 11:38:14','2021-09-20 07:29:07'),(240,'en','880','+880','2020-11-02 11:38:14','2021-09-20 07:29:07'),(241,'en','save','Save','2020-11-02 11:38:14','2021-09-20 07:29:07'),(242,'en','received_refund_request','Received Refund Request','2020-11-02 11:56:20','2021-09-20 07:29:07'),(244,'en','delete_confirmation','Delete Confirmation','2020-11-02 11:56:20','2021-09-20 07:29:07'),(245,'en','are_you_sure_to_delete_this','Are you sure to delete this?','2020-11-02 11:56:21','2021-09-20 07:29:07'),(246,'en','premium_packages_for_sellers','Premium Packages for Sellers','2020-11-02 11:57:36','2021-09-20 07:29:07'),(247,'en','product_upload','Product Upload','2020-11-02 11:57:36','2021-09-20 07:29:07'),(248,'en','digital_product_upload','Digital Product Upload','2020-11-02 11:57:36','2021-09-20 07:29:07'),(250,'en','purchase_package','Purchase Package','2020-11-02 11:57:36','2021-09-20 07:29:07'),(251,'en','select_payment_type','Select Payment Type','2020-11-02 11:57:36','2021-09-20 07:29:07'),(252,'en','payment_type','Payment Type','2020-11-02 11:57:36','2021-09-20 07:29:07'),(253,'en','select_one','Select One','2020-11-02 11:57:36','2021-09-20 07:29:07'),(254,'en','online_payment','Online payment','2020-11-02 11:57:37','2021-09-20 07:29:07'),(255,'en','offline_payment','Offline payment','2020-11-02 11:57:37','2021-09-20 07:29:07'),(256,'en','purchase_your_package','Purchase Your Package','2020-11-02 11:57:37','2021-09-20 07:29:07'),(258,'en','paypal','Paypal','2020-11-02 11:57:37','2021-09-20 07:29:07'),(259,'en','stripe','Stripe','2020-11-02 11:57:37','2021-09-20 07:29:07'),(260,'en','sslcommerz','sslcommerz','2020-11-02 11:57:37','2020-11-02 11:57:37'),(265,'en','confirm','Confirm','2020-11-02 11:57:37','2021-09-20 07:29:08'),(266,'en','offline_package_payment','Offline Package Payment','2020-11-02 11:57:37','2021-09-20 07:29:08'),(267,'en','transaction_id','Transaction ID','2020-11-02 12:30:12','2021-09-20 07:29:08'),(268,'en','choose_image','Choose image','2020-11-02 12:30:12','2021-09-20 07:29:08'),(269,'en','code','Code','2020-11-02 12:42:00','2021-09-20 07:29:08'),(270,'en','delivery_status','Delivery Status','2020-11-02 12:42:00','2021-09-20 07:29:08'),(271,'en','payment_status','Payment Status','2020-11-02 12:42:00','2021-09-20 07:29:08'),(272,'en','paid','Paid','2020-11-02 12:42:00','2021-09-20 07:29:08'),(273,'en','order_details','Order Details','2020-11-02 12:42:00','2021-09-20 07:29:08'),(274,'en','download_invoice','Download Invoice','2020-11-02 12:42:00','2021-09-20 07:29:08'),(275,'en','unpaid','Unpaid','2020-11-02 12:42:00','2021-09-20 07:29:08'),(277,'en','order_placed','Order placed','2020-11-02 12:43:59','2021-09-20 07:29:08'),(278,'en','confirmed','Confirmed','2020-11-02 12:43:59','2021-09-20 07:29:08'),(279,'en','on_delivery','On delivery','2020-11-02 12:43:59','2021-09-20 07:29:08'),(280,'en','delivered','Delivered','2020-11-02 12:43:59','2021-09-20 07:29:08'),(281,'en','order_summary','Order Summary','2020-11-02 12:43:59','2021-09-20 07:29:08'),(282,'en','order_code','Order Code','2020-11-02 12:43:59','2021-09-20 07:29:08'),(283,'en','customer','Customer','2020-11-02 12:43:59','2021-09-20 07:29:08'),(287,'en','total_order_amount','Total order amount','2020-11-02 12:43:59','2021-09-20 07:29:08'),(288,'en','shipping_metdod','Shipping metdod','2020-11-02 12:43:59','2021-09-20 07:29:08'),(289,'en','flat_shipping_rate','Flat shipping rate','2020-11-02 12:44:00','2021-09-20 07:29:08'),(290,'en','payment_metdod','Payment metdod','2020-11-02 12:44:00','2021-09-20 07:29:08'),(291,'en','variation','Variation','2020-11-02 12:44:00','2021-09-20 07:29:08'),(292,'en','delivery_type','Delivery Type','2020-11-02 12:44:00','2021-09-20 07:29:08'),(293,'en','home_delivery','Home Delivery','2020-11-02 12:44:00','2021-09-20 07:29:08'),(294,'en','order_ammount','Order Ammount','2020-11-02 12:44:00','2021-09-20 07:29:08'),(295,'en','subtotal','Subtotal','2020-11-02 12:44:00','2021-09-20 07:29:08'),(296,'en','shipping','Shipping','2020-11-02 12:44:00','2021-09-20 07:29:08'),(298,'en','coupon_discount','Coupon Discount','2020-11-02 12:44:00','2021-09-20 07:29:08'),(300,'en','na','N/A','2020-11-02 12:44:20','2021-09-20 07:29:08'),(301,'en','in_stock','In stock','2020-11-02 12:54:52','2021-09-20 07:29:08'),(302,'en','buy_now','Buy Now','2020-11-02 12:54:52','2021-09-20 07:29:08'),(303,'en','item_added_to_your_cart','Item added to your cart!','2020-11-02 12:56:46','2021-09-20 07:29:08'),(304,'en','proceed_to_checkout','Proceed to Checkout','2020-11-02 12:56:46','2021-09-20 07:29:08'),(305,'en','cart_items','Cart Items','2020-11-02 12:56:46','2021-09-20 07:29:08'),(306,'en','1_my_cart','1. My Cart','2020-11-02 12:56:46','2021-09-20 07:29:08'),(307,'en','view_cart','View cart','2020-11-02 12:56:46','2021-09-20 07:29:08'),(308,'en','2_shipping_info','2. Shipping info','2020-11-02 12:56:46','2021-09-20 07:29:08'),(309,'en','checkout','Checkout','2020-11-02 12:56:46','2021-09-20 07:29:08'),(310,'en','3_delivery_info','3. Delivery info','2020-11-02 12:56:46','2021-09-20 07:29:08'),(311,'en','4_payment','4. Payment','2020-11-02 12:56:46','2021-09-20 07:29:08'),(312,'en','5_confirmation','5. Confirmation','2020-11-02 12:56:46','2021-09-20 07:29:08'),(313,'en','remove','Remove','2020-11-02 12:56:46','2021-09-20 07:29:08'),(314,'en','return_to_shop','Return to shop','2020-11-02 12:56:46','2021-09-20 07:29:08'),(315,'en','continue_to_shipping','Continue to Shipping','2020-11-02 12:56:46','2021-09-20 07:29:08'),(316,'en','or','Or','2020-11-02 12:56:46','2021-09-20 07:29:08'),(317,'en','guest_checkout','Guest Checkout','2020-11-02 12:56:46','2021-09-20 07:29:08'),(318,'en','continue_to_delivery_info','Continue to Delivery Info','2020-11-02 12:57:44','2021-09-20 07:29:08'),(319,'en','postal_code','Postal Code','2020-11-02 13:01:01','2021-09-20 07:29:08'),(320,'en','choose_delivery_type','Choose Delivery Type','2020-11-02 13:01:04','2021-09-20 07:29:08'),(321,'en','local_pickup','Local Pickup','2020-11-02 13:01:04','2021-09-20 07:29:08'),(322,'en','select_your_nearest_pickup_point','Select your nearest pickup point','2020-11-02 13:01:04','2021-09-20 07:29:08'),(323,'en','continue_to_payment','Continue to Payment','2020-11-02 13:01:04','2021-09-20 07:29:08'),(324,'en','select_a_payment_option','Select a payment option','2020-11-02 13:01:13','2021-09-20 07:29:08'),(325,'en','razorpay','Razorpay','2020-11-02 13:01:13','2021-09-20 07:29:08'),(326,'en','paystack','Paystack','2020-11-02 13:01:13','2021-09-20 07:29:08'),(327,'en','voguepay','VoguePay','2020-11-02 13:01:13','2021-09-20 07:29:08'),(328,'en','payhere','payhere','2020-11-02 13:01:13','2021-02-09 06:52:37'),(329,'en','ngenius','ngenius','2020-11-02 13:01:13','2020-11-02 13:01:13'),(330,'en','paytm','Paytm','2020-11-02 13:01:13','2021-09-20 07:29:08'),(331,'en','cash_on_delivery','Cash on Delivery','2020-11-02 13:01:13','2021-09-20 07:29:08'),(332,'en','your_wallet_balance_','Your wallet balance :','2020-11-02 13:01:13','2021-09-20 07:29:08'),(333,'en','insufficient_balance','Insufficient balance','2020-11-02 13:01:13','2021-09-20 07:29:08'),(334,'en','i_agree_to_the','I agree to the','2020-11-02 13:01:14','2021-09-20 07:29:08'),(338,'en','complete_order','Complete Order','2020-11-02 13:01:14','2021-09-20 07:29:08'),(339,'en','summary','Summary','2020-11-02 13:01:14','2021-09-20 07:29:08'),(340,'en','items','Items','2020-11-02 13:01:14','2021-09-20 07:29:08'),(341,'en','total_club_point','Total Club point','2020-11-02 13:01:14','2021-09-20 07:29:08'),(342,'en','total_shipping','Total Shipping','2020-11-02 13:01:14','2021-09-20 07:29:08'),(343,'en','have_coupon_code_enter_here','Have coupon code? Enter here','2020-11-02 13:01:14','2021-09-20 07:29:08'),(344,'en','apply','Apply','2020-11-02 13:01:14','2021-09-20 07:29:08'),(345,'en','you_need_to_agree_with_our_policies','You need to agree with our policies','2020-11-02 13:01:14','2021-09-20 07:29:08'),(346,'en','forgot_password','Forgot password','2020-11-02 13:01:25','2021-09-20 07:29:08'),(469,'en','seo_setting','SEO Setting','2020-11-02 13:01:33','2021-09-20 07:29:08'),(474,'en','system_update','System Update','2020-11-02 13:01:34','2021-09-20 07:29:08'),(480,'en','add_new_payment_method','Add New Payment Method','2020-11-02 13:01:38','2021-09-20 07:29:08'),(481,'en','manual_payment_method','Manual Payment Method','2020-11-02 13:01:38','2021-09-20 07:29:08'),(482,'en','heading','Heading','2020-11-02 13:01:38','2021-09-20 07:29:08'),(483,'en','logo','Logo','2020-11-02 13:01:38','2021-09-20 07:29:08'),(484,'en','manual_payment_information','Manual Payment Information','2020-11-02 13:01:42','2021-09-20 07:29:08'),(485,'en','type','Type','2020-11-02 13:01:42','2021-09-20 07:29:08'),(486,'en','custom_payment','Custom Payment','2020-11-02 13:01:42','2021-09-20 07:29:08'),(487,'en','check_payment','Check Payment','2020-11-02 13:01:42','2021-09-20 07:29:08'),(488,'en','checkout_thumbnail','Checkout Thumbnail','2020-11-02 13:01:42','2021-09-20 07:29:08'),(489,'en','payment_instruction','Payment Instruction','2020-11-02 13:01:42','2021-09-20 07:29:08'),(490,'en','bank_information','Bank Information','2020-11-02 13:01:42','2021-09-20 07:29:08'),(491,'en','select_file','Select File','2020-11-02 13:01:53','2021-09-20 07:29:08'),(492,'en','upload_new','Upload New','2020-11-02 13:01:53','2021-09-20 07:29:08'),(493,'en','sort_by_newest','Sort by newest','2020-11-02 13:01:53','2021-09-20 07:29:08'),(494,'en','sort_by_oldest','Sort by oldest','2020-11-02 13:01:53','2021-09-20 07:29:08'),(495,'en','sort_by_smallest','Sort by smallest','2020-11-02 13:01:53','2021-09-20 07:29:08'),(496,'en','sort_by_largest','Sort by largest','2020-11-02 13:01:53','2021-09-20 07:29:08'),(497,'en','selected_only','Selected Only','2020-11-02 13:01:53','2021-09-20 07:29:08'),(498,'en','no_files_found','No files found','2020-11-02 13:01:53','2021-09-20 07:29:08'),(499,'en','0_file_selected','0 File selected','2020-11-02 13:01:53','2021-09-20 07:29:08'),(500,'en','clear','Clear','2020-11-02 13:01:53','2021-09-20 07:29:08'),(501,'en','prev','Prev','2020-11-02 13:01:53','2021-09-20 07:29:08'),(502,'en','next','Next','2020-11-02 13:01:53','2021-09-20 07:29:08'),(503,'en','add_files','Add Files','2020-11-02 13:01:53','2021-09-20 07:29:08'),(504,'en','method_has_been_inserted_successfully','Method has been inserted successfully','2020-11-02 13:02:03','2021-09-20 07:29:08'),(506,'en','order_date','Order Date','2020-11-02 13:02:42','2021-09-20 07:29:08'),(507,'en','bill_to','Bill to','2020-11-02 13:02:42','2021-09-20 07:29:08'),(510,'en','sub_total','Sub Total','2020-11-02 13:02:42','2021-09-20 07:29:08'),(512,'en','total_tax','Total Tax','2020-11-02 13:02:42','2021-09-20 07:29:08'),(513,'en','grand_total','Grand Total','2020-11-02 13:02:42','2021-09-20 07:29: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 13:02:47','2021-09-20 07:29:08'),(515,'en','thank_you_for_your_order','Thank You for Your Order!','2020-11-02 13:02:48','2021-09-20 07:29:08'),(516,'en','order_code','Order Code:','2020-11-02 13:02:48','2021-09-20 07:29: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 13:02:48','2021-09-20 07:29:08'),(518,'en','make_payment','Make Payment','2020-11-02 13:03:26','2021-09-20 07:29:08'),(519,'en','payment_screenshot','Payment screenshot','2020-11-02 13:03:29','2021-09-20 07:29:08'),(520,'en','paypal_credential','Paypal Credential','2020-11-02 13:12:20','2021-09-20 07:29:08'),(522,'en','paypal_client_id','Paypal Client ID','2020-11-02 13:12:20','2021-09-20 07:29:08'),(523,'en','paypal_client_secret','Paypal Client Secret','2020-11-02 13:12:20','2021-09-20 07:29:08'),(524,'en','paypal_sandbox_mode','Paypal Sandbox Mode','2020-11-02 13:12:20','2021-09-20 07:29:08'),(525,'en','sslcommerz_credential','Sslcommerz Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(526,'en','sslcz_store_id','Sslcz Store Id','2020-11-02 13:12:21','2021-09-20 07:29:08'),(527,'en','sslcz_store_password','Sslcz store password','2020-11-02 13:12:21','2021-09-20 07:29:08'),(528,'en','sslcommerz_sandbox_mode','Sslcommerz Sandbox Mode','2020-11-02 13:12:21','2021-09-20 07:29:08'),(529,'en','stripe_credential','Stripe Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(531,'en','stripe_key','STRIPE KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(533,'en','stripe_secret','STRIPE SECRET','2020-11-02 13:12:21','2021-09-20 07:29:08'),(534,'en','razorpay_credential','RazorPay Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(535,'en','razor_key','RAZOR KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(536,'en','razor_secret','RAZOR SECRET','2020-11-02 13:12:21','2021-09-20 07:29:08'),(537,'en','instamojo_credential','Instamojo Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(538,'en','api_key','API KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(539,'en','im_api_key','IM API KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(540,'en','auth_token','AUTH TOKEN','2020-11-02 13:12:21','2021-09-20 07:29:08'),(541,'en','im_auth_token','IM AUTH TOKEN','2020-11-02 13:12:21','2021-09-20 07:29:08'),(542,'en','instamojo_sandbox_mode','Instamojo Sandbox Mode','2020-11-02 13:12:21','2021-09-20 07:29:08'),(543,'en','paystack_credential','PayStack Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(544,'en','public_key','PUBLIC KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(545,'en','secret_key','SECRET KEY','2020-11-02 13:12:21','2021-09-20 07:29:08'),(546,'en','merchant_email','MERCHANT EMAIL','2020-11-02 13:12:21','2021-09-20 07:29:08'),(547,'en','voguepay_credential','VoguePay Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(548,'en','merchant_id','MERCHANT ID','2020-11-02 13:12:21','2021-09-20 07:29:08'),(549,'en','sandbox_mode','Sandbox Mode','2020-11-02 13:12:21','2021-09-20 07:29:08'),(550,'en','payhere_credential','Payhere Credential','2020-11-02 13:12:21','2021-09-20 07:29:08'),(551,'en','payhere_merchant_id','PAYHERE MERCHANT ID','2020-11-02 13:12:22','2021-09-20 07:29:08'),(552,'en','payhere_secret','PAYHERE SECRET','2020-11-02 13:12:22','2021-09-20 07:29:08'),(553,'en','payhere_currency','PAYHERE CURRENCY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(554,'en','payhere_sandbox_mode','Payhere Sandbox Mode','2020-11-02 13:12:22','2021-09-20 07:29:08'),(555,'en','ngenius_credential','Ngenius Credential','2020-11-02 13:12:22','2021-09-20 07:29:08'),(556,'en','ngenius_outlet_id','NGENIUS OUTLET ID','2020-11-02 13:12:22','2021-09-20 07:29:08'),(557,'en','ngenius_api_key','NGENIUS API KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(558,'en','ngenius_currency','NGENIUS CURRENCY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(559,'en','mpesa_credential','Mpesa Credential','2020-11-02 13:12:22','2021-09-20 07:29:08'),(560,'en','mpesa_consumer_key','MPESA CONSUMER KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(561,'en','mpesa_consumer_key','MPESA_CONSUMER_KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(562,'en','mpesa_consumer_secret','MPESA CONSUMER SECRET','2020-11-02 13:12:22','2021-09-20 07:29:08'),(563,'en','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2020-11-02 13:12:22','2021-09-20 07:29:08'),(564,'en','mpesa_short_code','MPESA SHORT CODE','2020-11-02 13:12:22','2021-09-20 07:29:08'),(565,'en','mpesa_short_code','MPESA_SHORT_CODE','2020-11-02 13:12:22','2021-09-20 07:29:08'),(566,'en','mpesa_sandbox_activation','MPESA SANDBOX ACTIVATION','2020-11-02 13:12:22','2021-09-20 07:29:08'),(567,'en','flutterwave_credential','Flutterwave Credential','2020-11-02 13:12:22','2021-09-20 07:29:08'),(568,'en','rave_public_key','RAVE_PUBLIC_KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(569,'en','rave_secret_key','RAVE_SECRET_KEY','2020-11-02 13:12:22','2021-09-20 07:29:08'),(570,'en','rave_title','RAVE_TITLE','2020-11-02 13:12:22','2021-09-20 07:29:08'),(571,'en','stagin_activation','STAGIN ACTIVATION','2020-11-02 13:12:22','2021-09-20 07:29:08'),(573,'en','all_product','All Product','2020-11-02 13:15:01','2021-09-20 07:29:08'),(574,'en','sort_by','Sort By','2020-11-02 13:15:01','2021-09-20 07:29:08'),(575,'en','rating_high__low','Rating (High > Low)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(576,'en','rating_low__high','Rating (Low > High)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(577,'en','num_of_sale_high__low','Num of Sale (High > Low)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(578,'en','num_of_sale_low__high','Num of Sale (Low > High)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(579,'en','base_price_high__low','Base Price (High > Low)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(580,'en','base_price_low__high','Base Price (Low > High)','2020-11-02 13:15:01','2021-09-20 07:29:08'),(581,'en','type__enter','Type & Enter','2020-11-02 13:15:01','2021-09-20 07:29:08'),(582,'en','added_by','Added By','2020-11-02 13:15:01','2021-09-20 07:29:08'),(583,'en','num_of_sale','Num of Sale','2020-11-02 13:15:01','2021-09-20 07:29:08'),(584,'en','total_stock','Total Stock','2020-11-02 13:15:01','2021-09-20 07:29:08'),(585,'en','todays_deal','Todays Deal','2020-11-02 13:15:01','2021-09-20 07:29:08'),(586,'en','rating','Rating','2020-11-02 13:15:01','2021-09-20 07:29:08'),(587,'en','times','times','2020-11-02 13:15:01','2021-02-09 06:52:38'),(588,'en','add_nerw_product','Add Nerw Product','2020-11-02 13:15:02','2021-09-20 07:29:08'),(589,'en','product_information','Product Information','2020-11-02 13:15:02','2021-09-20 07:29:08'),(590,'en','unit','Unit','2020-11-02 13:15:02','2021-09-20 07:29:08'),(591,'en','unit_eg_kg_pc_etc','Unit (e.g. KG, Pc etc)','2020-11-02 13:15:03','2021-09-20 07:29:08'),(592,'en','minimum_qty','Minimum Qty','2020-11-02 13:15:03','2021-09-20 07:29:08'),(593,'en','tags','Tags','2020-11-02 13:15:03','2021-09-20 07:29:08'),(594,'en','type_and_hit_enter_to_add_a_tag','Type and hit enter to add a tag','2020-11-02 13:15:03','2021-09-20 07:29:08'),(595,'en','barcode','Barcode','2020-11-02 13:15:03','2021-09-20 07:29:08'),(596,'en','refundable','Refundable','2020-11-02 13:15:03','2021-09-20 07:29:08'),(597,'en','product_images','Product Images','2020-11-02 13:15:03','2021-09-20 07:29:08'),(598,'en','gallery_images','Gallery Images','2020-11-02 13:15:03','2021-09-20 07:29:08'),(599,'en','todays_deal_updated_successfully','Todays Deal updated successfully','2020-11-02 13:15:03','2021-09-20 07:29:08'),(600,'en','published_products_updated_successfully','Published products updated successfully','2020-11-02 13:15:03','2021-09-20 07:29:08'),(601,'en','thumbnail_image','Thumbnail Image','2020-11-02 13:15:03','2021-09-20 07:29:08'),(602,'en','featured_products_updated_successfully','Featured products updated successfully','2020-11-02 13:15:03','2021-09-20 07:29:08'),(603,'en','product_videos','Product Videos','2020-11-02 13:15:03','2021-09-20 07:29:08'),(604,'en','video_provider','Video Provider','2020-11-02 13:15:03','2021-09-20 07:29:08'),(605,'en','youtube','Youtube','2020-11-02 13:15:03','2021-09-20 07:29:08'),(606,'en','dailymotion','Dailymotion','2020-11-02 13:15:03','2021-09-20 07:29:08'),(607,'en','vimeo','Vimeo','2020-11-02 13:15:03','2021-09-20 07:29:08'),(608,'en','video_link','Video Link','2020-11-02 13:15:03','2021-09-20 07:29:08'),(609,'en','product_variation','Product Variation','2020-11-02 13:15:03','2021-09-20 07:29:08'),(610,'en','colors','Colors','2020-11-02 13:15:03','2021-09-20 07:29:08'),(611,'en','attributes','Attributes','2020-11-02 13:15:03','2021-09-20 07:29:08'),(612,'en','choose_attributes','Choose Attributes','2020-11-02 13:15:03','2021-09-20 07:29: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 13:15:03','2021-09-20 07:29:08'),(614,'en','product_price__stock','Product price + stock','2020-11-02 13:15:03','2021-09-20 07:29:08'),(616,'en','unit_price','Unit price','2020-11-02 13:15:03','2021-09-20 07:29:08'),(617,'en','purchase_price','Purchase price','2020-11-02 13:15:03','2021-09-20 07:29:08'),(618,'en','flat','Flat','2020-11-02 13:15:04','2021-09-20 07:29:08'),(619,'en','percent','Percent','2020-11-02 13:15:04','2021-09-20 07:29:08'),(620,'en','discount','Discount','2020-11-02 13:15:04','2021-09-20 07:29:08'),(621,'en','product_description','Product Description','2020-11-02 13:15:04','2021-09-20 07:29:08'),(622,'en','product_shipping_cost','Product Shipping Cost','2020-11-02 13:15:04','2021-09-20 07:29:08'),(623,'en','free_shipping','Free Shipping','2020-11-02 13:15:04','2021-09-20 07:29:08'),(624,'en','flat_rate','Flat Rate','2020-11-02 13:15:04','2021-09-20 07:29:08'),(625,'en','shipping_cost','Shipping cost','2020-11-02 13:15:04','2021-09-20 07:29:08'),(626,'en','pdf_specification','PDF Specification','2020-11-02 13:15:04','2021-09-20 07:29:08'),(627,'en','seo_meta_tags','SEO Meta Tags','2020-11-02 13:15:04','2021-09-20 07:29:08'),(628,'en','meta_title','Meta Title','2020-11-02 13:15:04','2021-09-20 07:29:08'),(629,'en','meta_image','Meta Image','2020-11-02 13:15:04','2021-09-20 07:29:08'),(630,'en','choice_title','Choice Title','2020-11-02 13:15:04','2021-09-20 07:29:08'),(631,'en','enter_choice_values','Enter choice values','2020-11-02 13:15:04','2021-09-20 07:29:08'),(632,'en','all_categories','All categories A','2020-11-03 07:12:19','2021-09-20 07:40:46'),(633,'en','add_new_category','Add New category','2020-11-03 07:12:19','2021-09-20 07:29:08'),(634,'en','type_name__enter','Type name & Enter','2020-11-03 07:12:19','2021-09-20 07:29:08'),(635,'en','banner','Banner','2020-11-03 07:12:19','2021-09-20 07:29:08'),(637,'en','commission','Commission','2020-11-03 07:12:19','2021-09-20 07:29:08'),(638,'en','icon','icon','2020-11-03 07:12:19','2021-02-09 06:52:38'),(639,'en','featured_categories_updated_successfully','Featured categories updated successfully','2020-11-03 07:12:20','2021-09-20 07:29:08'),(640,'en','hot','Hot','2020-11-03 07:13:12','2021-09-20 07:29:08'),(641,'en','filter_by_payment_status','Filter by Payment Status','2020-11-03 07:15:15','2021-09-20 07:29:08'),(642,'en','unpaid','Un-Paid','2020-11-03 07:15:15','2021-09-20 07:29:08'),(643,'en','filter_by_deliver_status','Filter by Deliver Status','2020-11-03 07:15:15','2021-09-20 07:29:08'),(644,'en','pending','Pending','2020-11-03 07:15:15','2021-09-20 07:29:08'),(645,'en','type_order_code__hit_enter','Type Order code & hit Enter','2020-11-03 07:15:15','2021-09-20 07:29:08'),(646,'en','num_of_products','Num. of Products','2020-11-03 07:15:15','2021-09-20 07:29:08'),(647,'en','walk_in_customer','Walk In Customer','2020-11-03 10:03:20','2021-09-20 07:29:08'),(648,'en','qty','QTY','2020-11-03 10:03:20','2021-09-20 07:29:08'),(649,'en','without_shipping_charge','Without Shipping Charge','2020-11-03 10:03:20','2021-09-20 07:29:08'),(650,'en','with_shipping_charge','With Shipping Charge','2020-11-03 10:03:20','2021-09-20 07:29:08'),(651,'en','pay_with_cash','Pay With Cash','2020-11-03 10:03:20','2021-09-20 07:29:08'),(652,'en','shipping_address','Shipping Address','2020-11-03 10:03:20','2021-09-20 07:29:08'),(653,'en','close','Close','2020-11-03 10:03:20','2021-09-20 07:29:08'),(654,'en','select_country','Select country','2020-11-03 10:03:21','2021-09-20 07:29:08'),(655,'en','order_confirmation','Order Confirmation','2020-11-03 10:03:21','2021-09-20 07:29:08'),(656,'en','are_you_sure_to_confirm_this_order','Are you sure to confirm this order?','2020-11-03 10:03:21','2021-09-20 07:29:08'),(657,'en','comfirm_order','Comfirm Order','2020-11-03 10:03:21','2021-09-20 07:29:08'),(659,'en','personal_info','Personal Info','2020-11-03 11:38:15','2021-09-20 07:29:08'),(660,'en','repeat_password','Repeat Password','2020-11-03 11:38:15','2021-09-20 07:29:08'),(661,'en','shop_name','Shop Name','2020-11-03 11:38:15','2021-09-20 07:29:08'),(662,'en','register_your_shop','Register Your Shop','2020-11-03 11:38:15','2021-09-20 07:29:08'),(663,'en','affiliate_informations','Affiliate Informations','2020-11-03 11:39:06','2021-09-20 07:29:08'),(664,'en','affiliate','Affiliate','2020-11-03 11:39:06','2021-09-20 07:29:08'),(665,'en','user_info','User Info','2020-11-03 11:39:06','2021-09-20 07:29:08'),(667,'en','installed_addon','Installed Addon','2020-11-03 11:48:13','2021-09-20 07:29:08'),(668,'en','available_addon','Available Addon','2020-11-03 11:48:13','2021-09-20 07:29:08'),(669,'en','install_new_addon','Install New Addon','2020-11-03 11:48:13','2021-09-20 07:29:08'),(670,'en','version','Version','2020-11-03 11:48:13','2021-09-20 07:29:08'),(671,'en','activated','Activated','2020-11-03 11:48:13','2021-09-20 07:29:08'),(672,'en','deactivated','Deactivated','2020-11-03 11:48:13','2021-09-20 07:29:08'),(673,'en','activate_otp','Activate OTP','2020-11-03 11:48:20','2021-09-20 07:29:08'),(674,'en','otp_will_be_used_for','OTP will be Used For','2020-11-03 11:48:20','2021-09-20 07:29:08'),(675,'en','settings_updated_successfully','Settings updated successfully','2020-11-03 11:48:20','2021-09-20 07:29:08'),(676,'en','product_owner','Product Owner','2020-11-03 11:48:46','2021-09-20 07:29:08'),(677,'en','point','Point','2020-11-03 11:48:46','2021-09-20 07:29:08'),(678,'en','set_point_for_product_within_a_range','Set Point for Product Within a Range','2020-11-03 11:48:47','2021-09-20 07:29:08'),(679,'en','set_point_for_multiple_products','Set Point for multiple products','2020-11-03 11:48:47','2021-09-20 07:29:08'),(680,'en','min_price','Min Price','2020-11-03 11:48:47','2021-09-20 07:29:08'),(681,'en','max_price','Max Price','2020-11-03 11:48:47','2021-09-20 07:29:08'),(682,'en','set_point_for_all_products','Set Point for all Products','2020-11-03 11:48:47','2021-09-20 07:29:08'),(683,'en','set_point_for_','Set Point For','2020-11-03 11:48:47','2021-09-20 07:29:08'),(684,'en','convert_status','Convert Status','2020-11-03 11:48:58','2021-09-20 07:29:08'),(685,'en','earned_at','Earned At','2020-11-03 11:48:59','2021-09-20 07:29:08'),(686,'en','seller_based_selling_report','Seller Based Selling Report','2020-11-03 11:49:35','2021-09-20 07:29:08'),(687,'en','sort_by_verificarion_status','Sort by verificarion status','2020-11-03 11:49:35','2021-09-20 07:29:08'),(688,'en','approved','Approved','2020-11-03 11:49:35','2021-09-20 07:29:08'),(689,'en','non_approved','Non Approved','2020-11-03 11:49:35','2021-09-20 07:29:08'),(690,'en','filter','Filter','2020-11-03 11:49:35','2021-09-20 07:29:08'),(691,'en','seller_name','Seller Name','2020-11-03 11:49:35','2021-09-20 07:29:08'),(692,'en','number_of_product_sale','Number of Product Sale','2020-11-03 11:49:36','2021-09-20 07:29:08'),(693,'en','order_amount','Order Amount','2020-11-03 11:49:36','2021-09-20 07:29:08'),(694,'en','facebook_chat_setting','Facebook Chat Setting','2020-11-03 11:51:14','2021-09-20 07:29:08'),(695,'en','facebook_page_id','Facebook Page ID','2020-11-03 11:51:14','2021-09-20 07:29: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 11:51:14','2021-09-20 07:29:08'),(697,'en','login_into_your_facebook_page','Login into your facebook page','2020-11-03 11:51:14','2021-09-20 07:29:08'),(698,'en','find_the_about_option_of_your_facebook_page','Find the About option of your facebook page','2020-11-03 11:51:14','2021-09-20 07:29: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 11:51:14','2021-09-20 07:29: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 11:51:14','2021-09-20 07:29: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 11:51:14','2021-09-20 07:29:08'),(702,'en','set_your_website_domain_name','Set your website domain name','2020-11-03 11:51:14','2021-09-20 07:29:08'),(703,'en','google_recaptcha_setting','Google reCAPTCHA Setting','2020-11-03 11:51:25','2021-09-20 07:29:08'),(704,'en','site_key','Site KEY','2020-11-03 11:51:25','2021-09-20 07:29:08'),(705,'en','select_shipping_method','Select Shipping Method','2020-11-03 11:51:32','2021-09-20 07:29:08'),(706,'en','product_wise_shipping_cost','Product Wise Shipping Cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(707,'en','flat_rate_shipping_cost','Flat Rate Shipping Cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(708,'en','seller_wise_flat_shipping_cost','Seller Wise Flat Shipping Cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(709,'en','note','Note','2020-11-03 11:51:32','2021-09-20 07:29: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 11:51:32','2021-09-20 07:29: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 11:51:32','2021-09-20 07:29: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 11:51:32','2021-09-20 07:29:08'),(713,'en','flat_rate_cost','Flat Rate Cost','2020-11-03 11:51:32','2021-09-20 07:29:08'),(714,'en','shipping_cost_for_admin_products','Shipping Cost for Admin Products','2020-11-03 11:51:32','2021-09-20 07:29:08'),(715,'en','countries','Countries','2020-11-03 11:52:02','2021-09-20 07:29:08'),(716,'en','showhide','Show/Hide','2020-11-03 11:52:02','2021-09-20 07:29:08'),(717,'en','country_status_updated_successfully','Country status updated successfully','2020-11-03 11:52:02','2021-09-20 07:29:08'),(718,'en','all_subcategories','All Subcategories','2020-11-03 12:27:55','2021-09-20 07:29:08'),(719,'en','add_new_subcategory','Add New Subcategory','2020-11-03 12:27:55','2021-09-20 07:29:08'),(720,'en','subcategories','Sub-Categories','2020-11-03 12:27:55','2021-09-20 07:29:08'),(721,'en','sub_category_information','Sub Category Information','2020-11-03 12:28:07','2021-09-20 07:29:08'),(723,'en','slug','Slug','2020-11-03 12:28:07','2021-09-20 07:29:08'),(724,'en','all_sub_subcategories','All Sub Subcategories','2020-11-03 12:29:12','2021-09-20 07:29:08'),(725,'en','add_new_sub_subcategory','Add New Sub Subcategory','2020-11-03 12:29:12','2021-09-20 07:29:08'),(726,'en','subsubcategories','Sub-Sub-categories','2020-11-03 12:29:12','2021-09-20 07:29:08'),(727,'en','make_this_default','Make This Default','2020-11-04 08:24:24','2021-09-20 07:29:08'),(728,'en','shops','Shops','2020-11-04 11:17:10','2021-09-20 07:29:08'),(729,'en','women_clothing__fashion','Women Clothing & Fashion','2020-11-04 11:23:12','2021-09-20 07:29:08'),(730,'en','cellphones__tabs','Cellphones & Tabs','2020-11-04 12:10:41','2021-09-20 07:29:08'),(731,'en','welcome_to','Welcome to','2020-11-07 07:14:43','2021-09-20 07:29:08'),(732,'en','create_a_new_account','Create a New Account','2020-11-07 07:32:15','2021-09-20 07:29:08'),(733,'en','full_name','Full Name','2020-11-07 07:32:15','2021-09-20 07:29:08'),(734,'en','password','password','2020-11-07 07:32:15','2021-02-09 06:52:50'),(735,'en','confrim_password','Confrim Password','2020-11-07 07:32:15','2021-09-20 07:29:08'),(736,'en','i_agree_with_the','I agree with the','2020-11-07 07:32:15','2021-09-20 07:29:08'),(737,'en','terms_and_conditions','Terms and Conditions','2020-11-07 07:32:15','2021-09-20 07:29:08'),(738,'en','register','Register','2020-11-07 07:32:15','2021-09-20 07:29:08'),(739,'en','already_have_an_account','Already have an account','2020-11-07 07:32:16','2021-09-20 07:29:08'),(741,'en','sign_up_with','Sign Up with','2020-11-07 07:32:16','2021-09-20 07:29:08'),(742,'en','i_agree_with_the_terms_and_conditions','I agree with the Terms and Conditions','2020-11-07 07:34:49','2021-09-20 07:29:08'),(745,'en','all_role','All Role','2020-11-07 07:44:28','2021-09-20 07:29:08'),(746,'en','add_new_role','Add New Role','2020-11-07 07:44:28','2021-09-20 07:29:08'),(747,'en','roles','Roles','2020-11-07 07:44:28','2021-09-20 07:29:08'),(749,'en','add_new_staffs','Add New Staffs','2020-11-07 07:44:36','2021-09-20 07:29:08'),(750,'en','role','Role','2020-11-07 07:44:36','2021-09-20 07:29:08'),(751,'en','frontend_website_name','Frontend Website Name','2020-11-07 07:44:59','2021-09-20 07:29:08'),(752,'en','website_name','Website Name','2020-11-07 07:44:59','2021-09-20 07:29:08'),(753,'en','site_motto','Site Motto','2020-11-07 07:44:59','2021-09-20 07:29:08'),(754,'en','best_ecommerce_website','Best eCommerce Website','2020-11-07 07:44:59','2021-09-20 07:29:08'),(755,'en','site_icon','Site Icon','2020-11-07 07:44:59','2021-09-20 07:29:09'),(756,'en','website_favicon_32x32_png','Website favicon. 32x32 .png','2020-11-07 07:44:59','2021-09-20 07:29:09'),(757,'en','website_base_color','Website Base Color','2020-11-07 07:44:59','2021-09-20 07:29:09'),(758,'en','hex_color_code','Hex Color Code','2020-11-07 07:44:59','2021-09-20 07:29:09'),(759,'en','website_base_hover_color','Website Base Hover Color','2020-11-07 07:44:59','2021-09-20 07:29:09'),(760,'en','update','Update','2020-11-07 07:45:00','2021-09-20 07:29:09'),(761,'en','global_seo','Global Seo','2020-11-07 07:45:00','2021-09-20 07:29:09'),(762,'en','meta_description','Meta description','2020-11-07 07:45:00','2021-09-20 07:29:09'),(763,'en','keywords','Keywords','2020-11-07 07:45:00','2021-09-20 07:29:09'),(764,'en','separate_with_coma','Separate with coma','2020-11-07 07:45:00','2021-09-20 07:29:09'),(765,'en','website_pages','Website Pages','2020-11-07 07:49:04','2021-09-20 07:29:09'),(766,'en','all_pages','All Pages','2020-11-07 07:49:04','2021-09-20 07:29:09'),(767,'en','add_new_page','Add New Page','2020-11-07 07:49:04','2021-09-20 07:29:09'),(768,'en','url','URL','2020-11-07 07:49:04','2021-09-20 07:29:09'),(769,'en','actions','Actions','2020-11-07 07:49:04','2021-09-20 07:29:09'),(770,'en','edit_page_information','Edit Page Information','2020-11-07 07:49:22','2021-09-20 07:29:09'),(771,'en','page_content','Page Content','2020-11-07 07:49:22','2021-09-20 07:29:09'),(772,'en','title','Title','2020-11-07 07:49:22','2021-09-20 07:29:09'),(773,'en','link','Link','2020-11-07 07:49:22','2021-09-20 07:29:09'),(774,'en','use_character_number_hypen_only','Use character, number, hypen only','2020-11-07 07:49:22','2021-09-20 07:29:09'),(775,'en','add_content','Add Content','2020-11-07 07:49:22','2021-09-20 07:29:09'),(776,'en','seo_fields','Seo Fields','2020-11-07 07:49:22','2021-09-20 07:29:09'),(777,'en','update_page','Update Page','2020-11-07 07:49:22','2021-09-20 07:29:09'),(778,'en','default_language','Default Language','2020-11-07 07:50:09','2021-09-20 07:29:09'),(779,'en','add_new_language','Add New Language','2020-11-07 07:50:09','2021-09-20 07:29:09'),(780,'en','rtl','RTL','2020-11-07 07:50:09','2021-09-20 07:29:09'),(781,'en','translation','Translation','2020-11-07 07:50:09','2021-09-20 07:29:09'),(782,'en','language_information','Language Information','2020-11-07 07:50:23','2021-09-20 07:29:09'),(783,'en','save_page','Save Page','2020-11-07 07:51:27','2021-09-20 07:29:09'),(784,'en','home_page_settings','Home Page Settings','2020-11-07 07:51:35','2021-09-20 07:29:09'),(785,'en','home_slider','Home Slider','2020-11-07 07:51:35','2021-09-20 07:29:09'),(786,'en','photos__links','Photos & Links','2020-11-07 07:51:35','2021-09-20 07:29:09'),(787,'en','add_new','Add New','2020-11-07 07:51:35','2021-09-20 07:29:09'),(788,'en','home_categories','Home Categories','2020-11-07 07:51:35','2021-09-20 07:29:09'),(789,'en','home_banner_1_max_3','Home Banner 1 (Max 3)','2020-11-07 07:51:35','2021-09-20 07:29:09'),(790,'en','banner__links','Banner & Links','2020-11-07 07:51:35','2021-09-20 07:29:09'),(791,'en','home_banner_2_max_3','Home Banner 2 (Max 3)','2020-11-07 07:51:36','2021-09-20 07:29:09'),(792,'en','top_10','Top 10','2020-11-07 07:51:36','2021-09-20 07:29:09'),(793,'en','top_categories_max_10','Top Categories (Max 10)','2020-11-07 07:51:36','2021-09-20 07:29:09'),(794,'en','top_brands_max_10','Top Brands (Max 10)','2020-11-07 07:51:36','2021-09-20 07:29:09'),(795,'en','system_name','System Name','2020-11-07 07:54:22','2021-09-20 07:29:09'),(796,'en','system_logo__white','System Logo - White','2020-11-07 07:54:22','2021-09-20 07:29:09'),(797,'en','choose_files','Choose Files','2020-11-07 07:54:22','2021-09-20 07:29:09'),(798,'en','will_be_used_in_admin_panel_side_menu','Will be used in admin panel side menu','2020-11-07 07:54:23','2021-09-20 07:29:09'),(799,'en','system_logo__black','System Logo - Black','2020-11-07 07:54:23','2021-09-20 07:29: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 07:54:23','2021-09-20 07:29:09'),(801,'en','system_timezone','System Timezone','2020-11-07 07:54:23','2021-09-20 07:29:09'),(802,'en','admin_login_page_background','Admin login page background','2020-11-07 07:54:23','2021-09-20 07:29:09'),(803,'en','website_header','Website Header','2020-11-07 08:21:36','2021-09-20 07:29:09'),(804,'en','header_setting','Header Setting','2020-11-07 08:21:36','2021-09-20 07:29:09'),(805,'en','header_logo','Header Logo','2020-11-07 08:21:36','2021-09-20 07:29:09'),(806,'en','show_language_switcher','Show Language Switcher?','2020-11-07 08:21:36','2021-09-20 07:29:09'),(807,'en','show_currency_switcher','Show Currency Switcher?','2020-11-07 08:21:36','2021-09-20 07:29:09'),(808,'en','enable_stikcy_header','Enable stikcy header?','2020-11-07 08:21:36','2021-09-20 07:29:09'),(809,'en','website_footer','Website Footer','2020-11-07 08:21:56','2021-09-20 07:29:09'),(810,'en','footer_widget','Footer Widget','2020-11-07 08:21:56','2021-09-20 07:29:09'),(811,'en','about_widget','About Widget','2020-11-07 08:21:56','2021-09-20 07:29:09'),(812,'en','footer_logo','Footer Logo','2020-11-07 08:21:56','2021-09-20 07:29:09'),(813,'en','about_description','About description','2020-11-07 08:21:56','2021-09-20 07:29:09'),(814,'en','contact_info_widget','Contact Info Widget','2020-11-07 08:21:56','2021-09-20 07:29:09'),(815,'en','footer_contact_address','Footer contact address','2020-11-07 08:21:56','2021-09-20 07:29:09'),(816,'en','footer_contact_phone','Footer contact phone','2020-11-07 08:21:56','2021-09-20 07:29:09'),(817,'en','footer_contact_email','Footer contact email','2020-11-07 08:21:56','2021-09-20 07:29:09'),(818,'en','link_widget_one','Link Widget One','2020-11-07 08:21:56','2021-09-20 07:29:09'),(819,'en','links','Links','2020-11-07 08:21:56','2021-09-20 07:29:09'),(820,'en','footer_bottom','Footer Bottom','2020-11-07 08:21:56','2021-09-20 07:29:09'),(821,'en','copyright_widget_','Copyright Widget','2020-11-07 08:21:57','2021-09-20 07:29:09'),(822,'en','copyright_text','Copyright Text','2020-11-07 08:21:57','2021-09-20 07:29:09'),(823,'en','social_link_widget_','Social Link Widget','2020-11-07 08:21:57','2021-09-20 07:29:09'),(824,'en','show_social_links','Show Social Links?','2020-11-07 08:21:57','2021-09-20 07:29:09'),(825,'en','social_links','Social Links','2020-11-07 08:21:57','2021-09-20 07:29:09'),(826,'en','payment_methods_widget_','Payment Methods Widget','2020-11-07 08:21:57','2021-09-20 07:29:09'),(827,'en','rtl_status_updated_successfully','RTL status updated successfully','2020-11-07 08:36:11','2021-09-20 07:29:09'),(828,'en','language_changed_to_','Language changed to','2020-11-07 08:36:27','2021-09-20 07:29:09'),(829,'en','inhouse_product_sale_report','Inhouse Product sale report','2020-11-07 09:30:25','2021-09-20 07:29:09'),(830,'en','sort_by_category','Sort by Category','2020-11-07 09:30:25','2021-09-20 07:29:09'),(831,'en','product_wise_stock_report','Product wise stock report','2020-11-07 09:31:02','2021-09-20 07:29:09'),(832,'en','currency_changed_to_','Currency changed to','2020-11-07 12:36:28','2021-09-20 07:29:09'),(833,'en','avatar','Avatar','2020-11-08 09:32:35','2021-09-20 07:29:09'),(834,'en','copy','Copy','2020-11-08 10:03:42','2021-09-20 07:29:09'),(835,'en','variant','Variant','2020-11-08 10:43:02','2021-09-20 07:29:09'),(836,'en','variant_price','Variant Price','2020-11-08 10:43:03','2021-09-20 07:29:09'),(837,'en','sku','SKU','2020-11-08 10:43:03','2021-09-20 07:29:09'),(838,'en','key','Key','2020-11-08 12:35:09','2021-09-20 07:29:09'),(839,'en','value','Value','2020-11-08 12:35:09','2021-09-20 07:29:09'),(840,'en','copy_translations','Copy Translations','2020-11-08 12:35:10','2021-09-20 07:29:09'),(841,'en','all_pickup_points','All Pick-up Points','2020-11-08 12:35:43','2021-09-20 07:29:09'),(842,'en','add_new_pickup_point','Add New Pick-up Point','2020-11-08 12:35:43','2021-09-20 07:29:09'),(843,'en','manager','Manager','2020-11-08 12:35:43','2021-09-20 07:29:09'),(844,'en','location','Location','2020-11-08 12:35:43','2021-09-20 07:29:09'),(845,'en','pickup_station_contact','Pickup Station Contact','2020-11-08 12:35:43','2021-09-20 07:29:09'),(846,'en','open','Open','2020-11-08 12:35:43','2021-09-20 07:29:09'),(847,'en','pos_activation_for_seller','POS Activation for Seller','2020-11-08 12:35:55','2021-09-20 07:29:09'),(848,'en','order_completed_successfully','Order Completed Successfully.','2020-11-08 12:36:02','2021-09-20 07:29:09'),(849,'en','text_input','Text Input','2020-11-08 12:38:40','2021-09-20 07:29:09'),(850,'en','select','Select','2020-11-08 12:38:40','2021-09-20 07:29:09'),(851,'en','multiple_select','Multiple Select','2020-11-08 12:38:40','2021-09-20 07:29:09'),(852,'en','radio','Radio','2020-11-08 12:38:40','2021-09-20 07:29:09'),(853,'en','file','File','2020-11-08 12:38:40','2021-09-20 07:29:09'),(854,'en','email_address','Email Address','2020-11-08 12:39:32','2021-09-20 07:29:09'),(855,'en','verification_info','Verification Info','2020-11-08 12:39:32','2021-09-20 07:29:09'),(856,'en','approval','Approval','2020-11-08 12:39:32','2021-09-20 07:29:09'),(857,'en','due_amount','Due Amount','2020-11-08 12:39:32','2021-09-20 07:29:09'),(858,'en','show','Show','2020-11-08 12:39:32','2021-09-20 07:29:09'),(859,'en','pay_now','Pay Now','2020-11-08 12:39:32','2021-09-20 07:29:09'),(860,'en','affiliate_user_verification','Affiliate User Verification','2020-11-08 12:40:01','2021-09-20 07:29:09'),(861,'en','reject','Reject','2020-11-08 12:40:01','2021-09-20 07:29:09'),(862,'en','accept','Accept','2020-11-08 12:40:01','2021-09-20 07:29:09'),(863,'en','beauty_health__hair','Beauty, Health & Hair','2020-11-08 12:54:17','2021-09-20 07:29:09'),(864,'en','comparison','Comparison','2020-11-08 12:54:33','2021-09-20 07:29:09'),(865,'en','reset_compare_list','Reset Compare List','2020-11-08 12:54:33','2021-09-20 07:29:09'),(866,'en','your_comparison_list_is_empty','Your comparison list is empty','2020-11-08 12:54:33','2021-09-20 07:29:09'),(867,'en','convert_point_to_wallet','Convert Point To Wallet','2020-11-08 13:04:42','2021-09-20 07:29: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 13:04:43','2021-09-20 07:29:09'),(869,'en','create_an_account','Create an account.','2020-11-09 06:17:11','2021-09-20 07:29:09'),(870,'en','use_email_instead','Use Email Instead','2020-11-09 06:17:11','2021-09-20 07:29: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 06:17:11','2021-09-20 07:29:09'),(872,'en','create_account','Create Account','2020-11-09 06:17:11','2021-09-20 07:29:09'),(873,'en','or_join_with','Or Join With','2020-11-09 06:17:11','2021-09-20 07:29:09'),(874,'en','already_have_an_account','Already have an account?','2020-11-09 06:17:11','2021-09-20 07:29:09'),(875,'en','log_in','Log In','2020-11-09 06:17:11','2021-09-20 07:29:09'),(876,'en','computer__accessories','Computer & Accessories','2020-11-09 07:52:05','2021-09-20 07:29:09'),(878,'en','products','Product(s)','2020-11-09 07:52:23','2021-09-20 07:29:09'),(879,'en','in_your_cart','in your cart','2020-11-09 07:52:23','2021-09-20 07:29:09'),(880,'en','in_your_wishlist','in your wishlist','2020-11-09 07:52:23','2021-09-20 07:29:09'),(881,'en','you_ordered','you ordered','2020-11-09 07:52:24','2021-09-20 07:29:09'),(882,'en','default_shipping_address','Default Shipping Address','2020-11-09 07:52:24','2021-09-20 07:29:09'),(883,'en','sports__outdoor','Sports & outdoor','2020-11-09 07:53:32','2021-09-20 07:29:09'),(884,'en','copied','Copied','2020-11-09 07:54:19','2021-09-20 07:29:09'),(885,'en','copy_the_promote_link','Copy the Promote Link','2020-11-09 07:54:19','2021-09-20 07:29:09'),(886,'en','write_a_review','Write a review','2020-11-09 07:54:20','2021-09-20 07:29:09'),(887,'en','your_name','Your name','2020-11-09 07:54:20','2021-09-20 07:29:09'),(888,'en','comment','Comment','2020-11-09 07:54:20','2021-09-20 07:29:09'),(889,'en','your_review','Your review','2020-11-09 07:54:20','2021-09-20 07:29:09'),(890,'en','submit_review','Submit review','2020-11-09 07:54:20','2021-09-20 07:29:09'),(891,'en','claire_willis','Claire Willis','2020-11-09 08:05:00','2021-09-20 07:29:09'),(892,'en','germaine_greene','Germaine Greene','2020-11-09 08:05:00','2021-09-20 07:29:09'),(893,'en','product_file','Product File','2020-11-09 08:07:08','2021-09-20 07:29:09'),(894,'en','choose_file','Choose file','2020-11-09 08:07:08','2021-09-20 07:29:09'),(895,'en','type_to_add_a_tag','Type to add a tag','2020-11-09 08:07:08','2021-09-20 07:29:09'),(896,'en','images','Images','2020-11-09 08:07:08','2021-09-20 07:29:09'),(897,'en','main_images','Main Images','2020-11-09 08:07:08','2021-09-20 07:29:09'),(898,'en','meta_tags','Meta Tags','2020-11-09 08:07:08','2021-09-20 07:29:09'),(899,'en','digital_product_has_been_inserted_successfully','Digital Product has been inserted successfully','2020-11-09 08:14:25','2021-09-20 07:29:09'),(900,'en','edit_digital_product','Edit Digital Product','2020-11-09 08:14:34','2021-09-20 07:29:09'),(901,'en','select_an_option','Select an option','2020-11-09 08:14:34','2021-09-20 07:29:09'),(902,'en','tax','Tax','2020-11-09 08:14:35','2021-02-11 04:15:27'),(903,'en','any_question_about_this_product','Any question about this product?','2020-11-09 08:15:11','2021-09-20 07:29:09'),(904,'en','sign_in','Sign in','2020-11-09 08:15:11','2021-09-20 07:29:09'),(905,'en','login_with_google','Login with Google','2020-11-09 08:15:11','2021-09-20 07:29:09'),(906,'en','login_with_facebook','Login with Facebook','2020-11-09 08:15:11','2021-09-20 07:29:09'),(907,'en','login_with_twitter','Login with Twitter','2020-11-09 08:15:11','2021-09-20 07:29:09'),(908,'en','click_to_show_phone_number','Click to show phone number','2020-11-09 08:15:51','2021-09-20 07:29:09'),(909,'en','other_ads_of','Other Ads of','2020-11-09 08:15:52','2021-09-20 07:29:09'),(910,'en','store_home','Store Home','2020-11-09 08:54:23','2021-09-20 07:29:09'),(911,'en','top_selling','Top Selling','2020-11-09 08:54:23','2021-09-20 07:29:09'),(912,'en','shop_settings','Shop Settings','2020-11-09 08:55:38','2021-09-20 07:29:09'),(913,'en','visit_shop','Visit Shop','2020-11-09 08:55:38','2021-09-20 07:29:09'),(914,'en','pickup_points','Pickup Points','2020-11-09 08:55:38','2021-09-20 07:29:09'),(915,'en','select_pickup_point','Select Pickup Point','2020-11-09 08:55:38','2021-09-20 07:29:09'),(916,'en','slider_settings','Slider Settings','2020-11-09 08:55:39','2021-09-20 07:29:09'),(917,'en','social_media_link','Social Media Link','2020-11-09 08:55:39','2021-09-20 07:29:09'),(918,'en','facebook','Facebook','2020-11-09 08:55:39','2021-09-20 07:29:09'),(919,'en','twitter','Twitter','2020-11-09 08:55:39','2021-09-20 07:29:09'),(920,'en','google','Google','2020-11-09 08:55:39','2021-09-20 07:29:09'),(921,'en','new_arrival_products','New Arrival Products','2020-11-09 08:56:26','2021-09-20 07:29:09'),(922,'en','check_your_order_status','Check Your Order Status','2020-11-09 09:23:32','2021-09-20 07:29:09'),(923,'en','shipping_method','Shipping method','2020-11-09 09:27:40','2021-09-20 07:29:09'),(924,'en','shipped_by','Shipped By','2020-11-09 09:27:41','2021-09-20 07:29:09'),(925,'en','image','Image','2020-11-09 09:29:37','2021-09-20 07:29:09'),(926,'en','sub_sub_category','Sub Sub Category','2020-11-09 09:29:37','2021-09-20 07:29:09'),(927,'en','inhouse_products','Inhouse Products','2020-11-09 10:22:32','2021-09-20 07:29:09'),(928,'en','forgot_password','Forgot Password?','2020-11-09 10:33:21','2021-09-20 07:29:09'),(929,'en','enter_your_email_address_to_recover_your_password','Enter your email address to recover your password.','2020-11-09 10:33:21','2021-09-20 07:29:09'),(930,'en','email_or_phone','Email or Phone','2020-11-09 10:33:21','2021-09-20 07:29:09'),(931,'en','send_password_reset_link','Send Password Reset Link','2020-11-09 10:33:21','2021-09-20 07:29:09'),(932,'en','back_to_login','Back to Login','2020-11-09 10:33:21','2021-09-20 07:29:09'),(933,'en','index','index','2020-11-09 10:35:29','2021-02-09 06:52:51'),(934,'en','download_your_product','Download Your Product','2020-11-09 10:35:30','2021-09-20 07:29:09'),(935,'en','option','Option','2020-11-09 10:35:30','2021-09-20 07:29:09'),(936,'en','applied_refund_request','Applied Refund Request','2020-11-09 10:35:39','2021-09-20 07:29:09'),(937,'en','item_has_been_renoved_from_wishlist','Item has been renoved from wishlist','2020-11-09 10:36:04','2021-09-20 07:29:09'),(938,'en','bulk_products_upload','Bulk Products Upload','2020-11-09 10:39:24','2021-09-20 07:29:09'),(939,'en','upload_csv','Upload CSV','2020-11-09 10:39:25','2021-09-20 07:29:09'),(940,'en','create_a_ticket','Create a Ticket','2020-11-09 10:40:25','2021-09-20 07:29:09'),(941,'en','tickets','Tickets','2020-11-09 10:40:25','2021-09-20 07:29:09'),(942,'en','ticket_id','Ticket ID','2020-11-09 10:40:25','2021-09-20 07:29:09'),(943,'en','sending_date','Sending Date','2020-11-09 10:40:25','2021-09-20 07:29:09'),(944,'en','subject','Subject','2020-11-09 10:40:25','2021-09-20 07:29:09'),(945,'en','view_details','View Details','2020-11-09 10:40:25','2021-09-20 07:29:09'),(946,'en','provide_a_detailed_description','Provide a detailed description','2020-11-09 10:40:26','2021-09-20 07:29:09'),(947,'en','type_your_reply','Type your reply','2020-11-09 10:40:26','2021-09-20 07:29:09'),(948,'en','send_ticket','Send Ticket','2020-11-09 10:40:26','2021-09-20 07:29:09'),(949,'en','load_more','Load More','2020-11-09 10:40:57','2021-09-20 07:29:09'),(950,'en','jewelry__watches','Jewelry & Watches','2020-11-09 10:47:38','2021-09-20 07:29:09'),(951,'en','filters','Filters','2020-11-09 10:53:54','2021-09-20 07:29:09'),(952,'en','contact_address','Contact address','2020-11-09 10:58:46','2021-09-20 07:29:09'),(953,'en','contact_phone','Contact phone','2020-11-09 10:58:47','2021-09-20 07:29:09'),(954,'en','contact_email','Contact email','2020-11-09 10:58:47','2021-09-20 07:29:09'),(955,'en','filter_by','Filter by','2020-11-09 11:00:03','2021-09-20 07:29:09'),(956,'en','condition','Condition','2020-11-09 11:56:13','2021-09-20 07:29:09'),(957,'en','all_type','All Type','2020-11-09 11:56:13','2021-09-20 07:29:09'),(960,'en','pay_with_wallet','Pay with wallet','2020-11-09 12:56:34','2021-09-20 07:29:09'),(961,'en','select_variation','Select variation','2020-11-10 07:54:29','2021-09-20 07:29:09'),(962,'en','no_product_added','No Product Added','2020-11-10 08:07:53','2021-09-20 07:29:09'),(963,'en','status_has_been_updated_successfully','Status has been updated successfully','2020-11-10 08:41:23','2021-09-20 07:29:09'),(964,'en','all_seller_packages','All Seller Packages','2020-11-10 09:14:10','2021-09-20 07:29:09'),(965,'en','add_new_package','Add New Package','2020-11-10 09:14:10','2021-09-20 07:29:09'),(966,'en','package_logo','Package Logo','2020-11-10 09:14:10','2021-09-20 07:29:09'),(967,'en','days','days','2020-11-10 09:14:10','2021-02-09 06:52:51'),(968,'en','create_new_seller_package','Create New Seller Package','2020-11-10 09:14:31','2021-09-20 07:29:09'),(969,'en','package_name','Package Name','2020-11-10 09:14:31','2021-09-20 07:29:09'),(970,'en','duration','Duration','2020-11-10 09:14:31','2021-09-20 07:29:09'),(971,'en','validity_in_number_of_days','Validity in number of days','2020-11-10 09:14:31','2021-09-20 07:29:09'),(972,'en','update_package_information','Update Package Information','2020-11-10 09:14:59','2021-09-20 07:29:09'),(973,'en','package_has_been_inserted_successfully','Package has been inserted successfully','2020-11-10 09:15:14','2021-09-20 07:29:09'),(974,'en','refund_request','Refund Request','2020-11-10 09:17:25','2021-09-20 07:29:09'),(975,'en','reason','Reason','2020-11-10 09:17:25','2021-09-20 07:29:09'),(976,'en','label','Label','2020-11-10 09:20:13','2021-09-20 07:29:09'),(977,'en','select_label','Select Label','2020-11-10 09:20:13','2021-09-20 07:29:09'),(978,'en','multiple_select_label','Multiple Select Label','2020-11-10 09:20:13','2021-09-20 07:29:09'),(979,'en','radio_label','Radio Label','2020-11-10 09:20:13','2021-09-20 07:29:09'),(980,'en','pickup_point_orders','Pickup Point Orders','2020-11-10 09:25:40','2021-09-20 07:29:09'),(981,'en','view','View','2020-11-10 09:25:40','2021-09-20 07:29:09'),(982,'en','order_','Order #','2020-11-10 09:25:48','2021-09-20 07:29:09'),(983,'en','order_status','Order Status','2020-11-10 09:25:48','2021-09-20 07:29:09'),(984,'en','total_amount','Total amount','2020-11-10 09:25:48','2021-09-20 07:29:09'),(986,'en','total','TOTAL','2020-11-10 09:25:49','2021-09-20 07:29:09'),(987,'en','delivery_status_has_been_updated','Delivery status has been updated','2020-11-10 09:25:49','2021-09-20 07:29:09'),(988,'en','payment_status_has_been_updated','Payment status has been updated','2020-11-10 09:25:49','2021-09-20 07:29:09'),(989,'en','invoice','INVOICE','2020-11-10 09:25:58','2021-09-20 07:29:09'),(990,'en','set_refund_time','Set Refund Time','2020-11-10 09:34:04','2021-09-20 07:29:09'),(991,'en','set_time_for_sending_refund_request','Set Time for sending Refund Request','2020-11-10 09:34:04','2021-09-20 07:29:09'),(992,'en','set_refund_sticker','Set Refund Sticker','2020-11-10 09:34:05','2021-09-20 07:29:09'),(993,'en','sticker','Sticker','2020-11-10 09:34:05','2021-09-20 07:29:09'),(994,'en','refund_request_all','Refund Request All','2020-11-10 09:34:12','2021-09-20 07:29:09'),(995,'en','order_id','Order Id','2020-11-10 09:34:12','2021-09-20 07:29:09'),(996,'en','seller_approval','Seller Approval','2020-11-10 09:34:12','2021-09-20 07:29:09'),(997,'en','admin_approval','Admin Approval','2020-11-10 09:34:12','2021-09-20 07:29:09'),(998,'en','refund_status','Refund Status','2020-11-10 09:34:12','2021-09-20 07:29:09'),(1000,'en','no_refund','No Refund','2020-11-10 09:35:27','2021-09-20 07:29:09'),(1001,'en','status_updated_successfully','Status updated successfully','2020-11-10 09:54:20','2021-09-20 07:29:09'),(1002,'en','user_search_report','User Search Report','2020-11-11 06:43:24','2021-09-20 07:29:09'),(1003,'en','search_by','Search By','2020-11-11 06:43:24','2021-09-20 07:29:09'),(1004,'en','number_searches','Number searches','2020-11-11 06:43:24','2021-09-20 07:29:09'),(1005,'en','sender','Sender','2020-11-11 06:51:49','2021-09-20 07:29:09'),(1006,'en','receiver','Receiver','2020-11-11 06:51:49','2021-09-20 07:29:09'),(1007,'en','verification_form_updated_successfully','Verification form updated successfully','2020-11-11 06:53:29','2021-09-20 07:29:09'),(1008,'en','invalid_email_or_password','Invalid email or password','2020-11-11 07:07:49','2021-09-20 07:29:09'),(1009,'en','all_coupons','All Coupons','2020-11-11 07:14:04','2021-09-20 07:29:09'),(1010,'en','add_new_coupon','Add New Coupon','2020-11-11 07:14:04','2021-09-20 07:29:09'),(1011,'en','coupon_information','Coupon Information','2020-11-11 07:14:04','2021-09-20 07:29:09'),(1012,'en','start_date','Start Date','2020-11-11 07:14:04','2021-09-20 07:29:09'),(1013,'en','end_date','End Date','2020-11-11 07:14:05','2021-09-20 07:29:09'),(1014,'en','product_base','Product Base','2020-11-11 07:14:05','2021-09-20 07:29:09'),(1015,'en','send_newsletter','Send Newsletter','2020-11-11 07:14:10','2021-09-20 07:29:09'),(1016,'en','mobile_users','Mobile Users','2020-11-11 07:14:10','2021-09-20 07:29:09'),(1017,'en','sms_subject','SMS subject','2020-11-11 07:14:10','2021-09-20 07:29:09'),(1018,'en','sms_content','SMS content','2020-11-11 07:14:10','2021-09-20 07:29:09'),(1019,'en','all_flash_delas','All Flash Delas','2020-11-11 07:16:06','2021-09-20 07:29:09'),(1020,'en','create_new_flash_dela','Create New Flash Dela','2020-11-11 07:16:06','2021-09-20 07:29:09'),(1022,'en','page_link','Page Link','2020-11-11 07:16:06','2021-09-20 07:29:09'),(1023,'en','flash_deal_information','Flash Deal Information','2020-11-11 07:16:14','2021-09-20 07:29:09'),(1024,'en','background_color','Background Color','2020-11-11 07:16:14','2021-09-20 07:29:09'),(1025,'en','0000ff','#0000ff','2020-11-11 07:16:14','2021-09-20 07:29:09'),(1026,'en','text_color','Text Color','2020-11-11 07:16:14','2021-09-20 07:29:09'),(1027,'en','white','White','2020-11-11 07:16:14','2021-09-20 07:29:09'),(1028,'en','dark','Dark','2020-11-11 07:16:15','2021-09-20 07:29:09'),(1029,'en','choose_products','Choose Products','2020-11-11 07:16:15','2021-09-20 07:29:09'),(1030,'en','discounts','Discounts','2020-11-11 07:16:20','2021-09-20 07:29:09'),(1031,'en','discount_type','Discount Type','2020-11-11 07:16:20','2021-09-20 07:29:09'),(1032,'en','twillo_credential','Twillo Credential','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1033,'en','twilio_sid','TWILIO SID','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1034,'en','twilio_auth_token','TWILIO AUTH TOKEN','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1035,'en','twilio_verify_sid','TWILIO VERIFY SID','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1036,'en','valid_twillo_number','VALID TWILLO NUMBER','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1037,'en','nexmo_credential','Nexmo Credential','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1038,'en','nexmo_key','NEXMO KEY','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1039,'en','nexmo_secret','NEXMO SECRET','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1040,'en','ssl_wireless_credential','SSL Wireless Credential','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1041,'en','ssl_sms_api_token','SSL SMS API TOKEN','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1042,'en','ssl_sms_sid','SSL SMS SID','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1043,'en','ssl_sms_url','SSL SMS URL','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1044,'en','fast2sms_credential','Fast2SMS Credential','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1045,'en','auth_key','AUTH KEY','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1046,'en','route','ROUTE','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1047,'en','promotional_use','Promotional Use','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1048,'en','transactional_use','Transactional Use','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1050,'en','sender_id','SENDER ID','2020-11-11 07:17:35','2021-09-20 07:29:09'),(1051,'en','nexmo_otp','Nexmo OTP','2020-11-11 07:17:42','2021-09-20 07:29:09'),(1052,'en','twillo_otp','Twillo OTP','2020-11-11 07:17:43','2021-09-20 07:29:09'),(1053,'en','ssl_wireless_otp','SSL Wireless OTP','2020-11-11 07:17:43','2021-09-20 07:29:09'),(1054,'en','fast2sms_otp','Fast2SMS OTP','2020-11-11 07:17:43','2021-09-20 07:29:09'),(1055,'en','order_placement','Order Placement','2020-11-11 07:17:43','2021-09-20 07:29:09'),(1056,'en','delivery_status_changing_time','Delivery Status Changing Time','2020-11-11 07:17:43','2021-09-20 07:29:09'),(1057,'en','paid_status_changing_time','Paid Status Changing Time','2020-11-11 07:17:43','2021-09-20 07:29:09'),(1058,'en','send_bulk_sms','Send Bulk SMS','2020-11-11 07:19:14','2021-09-20 07:29:09'),(1059,'en','all_subscribers','All Subscribers','2020-11-11 07:21:51','2021-09-20 07:29:09'),(1060,'en','coupon_information_adding','Coupon Information Adding','2020-11-11 07:22:25','2021-09-20 07:29:09'),(1061,'en','coupon_type','Coupon Type','2020-11-11 07:22:25','2021-09-20 07:29:09'),(1062,'en','for_products','For Products','2020-11-11 07:22:25','2021-09-20 07:29:09'),(1063,'en','for_total_orders','For Total Orders','2020-11-11 07:22:25','2021-09-20 07:29:09'),(1064,'en','add_your_product_base_coupon','Add Your Product Base Coupon','2020-11-11 07:22:42','2021-09-20 07:29:09'),(1065,'en','coupon_code','Coupon code','2020-11-11 07:22:42','2021-09-20 07:29:09'),(1066,'en','sub_category','Sub Category','2020-11-11 07:22:42','2021-09-20 07:29:09'),(1067,'en','add_more','Add More','2020-11-11 07:22:43','2021-09-20 07:29:09'),(1068,'en','add_your_cart_base_coupon','Add Your Cart Base Coupon','2020-11-11 07:29:40','2021-09-20 07:29:09'),(1069,'en','minimum_shopping','Minimum Shopping','2020-11-11 07:29:40','2021-09-20 07:29:09'),(1070,'en','maximum_discount_amount','Maximum Discount Amount','2020-11-11 07:29:41','2021-09-20 07:29:09'),(1071,'en','coupon_information_update','Coupon Information Update','2020-11-11 08:18:34','2021-09-20 07:29: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 13:10:18','2021-09-20 07:29:09'),(1074,'en','configure_now','Configure Now','2020-11-11 13:10:18','2021-09-20 07:29:09'),(1076,'en','total_published_products','Total published products','2020-11-11 13:10:18','2021-09-20 07:29:09'),(1077,'en','total_sellers_products','Total sellers products','2020-11-11 13:10:18','2021-09-20 07:29:09'),(1078,'en','total_admin_products','Total admin products','2020-11-11 13:10:18','2021-09-20 07:29:09'),(1079,'en','manage_products','Manage Products','2020-11-11 13:10:18','2021-09-20 07:29:09'),(1080,'en','total_product_category','Total product category','2020-11-11 13:10:18','2021-09-20 07:29:09'),(1081,'en','create_category','Create Category','2020-11-11 13:10:18','2021-09-20 07:29:09'),(1082,'en','total_product_sub_sub_category','Total product sub sub category','2020-11-11 13:10:18','2021-09-20 07:29:10'),(1083,'en','create_sub_sub_category','Create Sub Sub Category','2020-11-11 13:10:18','2021-09-20 07:29:10'),(1084,'en','total_product_sub_category','Total product sub category','2020-11-11 13:10:18','2021-09-20 07:29:10'),(1085,'en','create_sub_category','Create Sub Category','2020-11-11 13:10:18','2021-09-20 07:29:10'),(1086,'en','total_product_brand','Total product brand','2020-11-11 13:10:18','2021-09-20 07:29:10'),(1087,'en','create_brand','Create Brand','2020-11-11 13:10:18','2021-09-20 07:29:10'),(1089,'en','total_sellers','Total sellers','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1091,'en','total_approved_sellers','Total approved sellers','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1093,'en','total_pending_sellers','Total pending sellers','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1094,'en','manage_sellers','Manage Sellers','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1095,'en','category_wise_product_sale','Category wise product sale','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1097,'en','sale','Sale','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1098,'en','category_wise_product_stock','Category wise product stock','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1099,'en','category_name','Category Name','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1100,'en','stock','Stock','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1101,'en','frontend','Frontend','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1103,'en','home_page','Home page','2020-11-11 13:10:19','2021-09-20 07:29:10'),(1104,'en','setting','setting','2020-11-11 13:10:19','2021-02-09 06:52:51'),(1106,'en','policy_page','Policy page','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1107,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1109,'en','general','General','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1110,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1111,'en','click_here','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1112,'en','useful_link','Useful link','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1113,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1114,'en','click_here','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1115,'en','activation','Activation','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1116,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1117,'en','click_here','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1118,'en','smtp','SMTP','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1119,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1120,'en','click_here','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1121,'en','payment_method','Payment method','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1122,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1123,'en','click_here','Click Here','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1124,'en','social_media','Social media','2020-11-11 13:10:20','2021-09-20 07:29:10'),(1125,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1126,'en','click_here','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1127,'en','business','Business','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1128,'en','setting','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1130,'en','setting','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1131,'en','click_here','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1132,'en','seller_verification','Seller verification','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1133,'en','form_setting','form setting','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1134,'en','click_here','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1135,'en','language','Language','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1136,'en','setting','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1137,'en','click_here','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1139,'en','setting','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1140,'en','click_here','Click Here','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1141,'en','dashboard','Dashboard','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1142,'en','pos_system','POS System','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1143,'en','pos_manager','POS Manager','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1144,'en','pos_configuration','POS Configuration','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1145,'en','products','Products','2020-11-11 13:10:21','2021-09-20 07:29:10'),(1146,'en','add_new_product','Add New product','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1147,'en','all_products','All Products','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1148,'en','in_house_products','In House Products','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1149,'en','seller_products','Seller Products','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1150,'en','digital_products','Digital Products','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1151,'en','bulk_import','Bulk Import','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1152,'en','bulk_export','Bulk Export','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1153,'en','category','Category','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1154,'en','subcategory','Subcategory','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1155,'en','sub_subcategory','Sub Subcategory','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1156,'en','brand','Brand','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1157,'en','attribute','Attribute','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1158,'en','product_reviews','Product Reviews','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1159,'en','sales','Sales','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1160,'en','all_orders','All Orders','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1161,'en','inhouse_orders','Inhouse orders','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1162,'en','seller_orders','Seller Orders','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1163,'en','pickup_point_order','Pick-up Point Order','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1164,'en','refunds','Refunds','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1165,'en','refund_requests','Refund Requests','2020-11-11 13:10:22','2021-09-20 07:29:10'),(1166,'en','approved_refund','Approved Refund','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1167,'en','refund_configuration','Refund Configuration','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1168,'en','customers','Customers','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1169,'en','customer_list','Customer list','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1170,'en','classified_products','Classified Products','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1171,'en','classified_packages','Classified Packages','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1172,'en','sellers','Sellers','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1173,'en','all_seller','All Seller','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1174,'en','payouts','Payouts','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1175,'en','payout_requests','Payout Requests','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1176,'en','seller_commission','Seller Commission','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1177,'en','seller_packages','Seller Packages','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1178,'en','seller_verification_form','Seller Verification Form','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1179,'en','reports','Reports','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1180,'en','in_house_product_sale','In House Product Sale','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1181,'en','seller_products_sale','Seller Products Sale','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1182,'en','products_stock','Products Stock','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1183,'en','products_wishlist','Products wishlist','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1184,'en','user_searches','User Searches','2020-11-11 13:10:23','2021-09-20 07:29:10'),(1185,'en','marketing','Marketing','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1186,'en','flash_deals','Flash deals','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1187,'en','newsletters','Newsletters','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1188,'en','bulk_sms','Bulk SMS','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1189,'en','subscribers','Subscribers','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1190,'en','coupon','Coupon','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1191,'en','support','Support','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1192,'en','ticket','Ticket','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1193,'en','product_queries','Product Queries','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1194,'en','website_setup','Website Setup','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1195,'en','header','Header','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1196,'en','footer','Footer','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1197,'en','pages','Pages','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1198,'en','appearance','Appearance','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1199,'en','setup__configurations','Setup & Configurations','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1200,'en','general_settings','General Settings','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1201,'en','features_activation','Features activation','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1202,'en','languages','Languages','2020-11-11 13:10:24','2021-09-20 07:29:10'),(1203,'en','currency','Currency','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1204,'en','pickup_point','Pickup point','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1205,'en','smtp_settings','SMTP Settings','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1206,'en','payment_methods','Payment Methods','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1207,'en','file_system_configuration','File System Configuration','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1208,'en','social_media_logins','Social media Logins','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1209,'en','analytics_tools','Analytics Tools','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1210,'en','facebook_chat','Facebook Chat','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1211,'en','google_recaptcha','Google reCAPTCHA','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1212,'en','shipping_configuration','Shipping Configuration','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1213,'en','shipping_countries','Shipping Countries','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1214,'en','affiliate_system','Affiliate System','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1215,'en','affiliate_registration_form','Affiliate Registration Form','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1216,'en','affiliate_configurations','Affiliate Configurations','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1217,'en','affiliate_users','Affiliate Users','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1218,'en','referral_users','Referral Users','2020-11-11 13:10:25','2021-09-20 07:29:10'),(1219,'en','affiliate_withdraw_requests','Affiliate Withdraw Requests','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1220,'en','offline_payment_system','Offline Payment System','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1221,'en','manual_payment_methods','Manual Payment Methods','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1222,'en','offline_wallet_recharge','Offline Wallet Recharge','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1223,'en','offline_customer_package_payments','Offline Customer Package Payments','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1224,'en','offline_seller_package_payments','Offline Seller Package Payments','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1225,'en','paytm_payment_gateway','Paytm Payment Gateway','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1226,'en','set_paytm_credentials','Set Paytm Credentials','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1227,'en','club_point_system','Club Point System','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1228,'en','club_point_configurations','Club Point Configurations','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1229,'en','set_product_point','Set Product Point','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1230,'en','user_points','User Points','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1231,'en','otp_system','OTP System','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1232,'en','otp_configurations','OTP Configurations','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1233,'en','set_otp_credentials','Set OTP Credentials','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1234,'en','staffs','Staffs','2020-11-11 13:10:26','2021-09-20 07:29:10'),(1235,'en','all_staffs','All staffs','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1236,'en','staff_permissions','Staff permissions','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1237,'en','addon_manager','Addon Manager','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1238,'en','browse_website','Browse Website','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1239,'en','pos','POS','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1240,'en','notifications','Notifications','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1241,'en','new_orders','new orders','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1242,'en','userimage','user-image','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1243,'en','profile','Profile','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1244,'en','logout','Logout','2020-11-11 13:10:27','2021-09-20 07:29:10'),(1247,'en','page_not_found','Page Not Found!','2020-11-11 13:10:28','2021-09-20 07:29: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 13:10:28','2021-09-20 07:29:10'),(1253,'en','registration','Registration','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1255,'en','i_am_shopping_for','I am shopping for...','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1257,'en','compare','Compare','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1259,'en','wishlist','Wishlist','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1261,'en','cart','Cart','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1263,'en','your_cart_is_empty','Your Cart is empty','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1265,'en','categories','Categories','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1267,'en','see_all','See All','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1269,'en','seller_policy','Seller Policy','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1271,'en','return_policy','Return Policy','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1273,'en','support_policy','Support Policy','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1275,'en','privacy_policy','Privacy Policy','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1277,'en','your_email_address','Your Email Address','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1279,'en','subscribe','Subscribe','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1281,'en','contact_info','Contact Info','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1283,'en','address','Address','2020-11-11 13:10:29','2021-09-20 07:29:10'),(1285,'en','phone','Phone','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1287,'en','email','Email','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1288,'en','login','Login','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1289,'en','my_account','My Account','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1291,'en','login','Login','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1293,'en','order_history','Order History','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1295,'en','my_wishlist','My Wishlist','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1297,'en','track_order','Track Order','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1299,'en','be_an_affiliate_partner','Be an affiliate partner','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1301,'en','be_a_seller','Be a Seller','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1303,'en','apply_now','Apply Now','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1305,'en','confirmation','Confirmation','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1307,'en','delete_confirmation_message','Delete confirmation message','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1309,'en','cancel','Cancel','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1312,'en','delete','Delete','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1313,'en','item_has_been_added_to_compare_list','Item has been added to compare list','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1314,'en','please_login_first','Please login first','2020-11-11 13:10:30','2021-09-20 07:29:10'),(1315,'en','total_earnings_from','Total Earnings From','2020-11-12 08:01:11','2021-09-20 07:29:10'),(1316,'en','client_subscription','Client Subscription','2020-11-12 08:01:12','2021-09-20 07:29:10'),(1317,'en','product_category','Product category','2020-11-12 08:03:46','2021-09-20 07:29:10'),(1318,'en','product_sub_sub_category','Product sub sub category','2020-11-12 08:03:46','2021-09-20 07:29:10'),(1319,'en','product_sub_category','Product sub category','2020-11-12 08:03:46','2021-09-20 07:29:10'),(1320,'en','product_brand','Product brand','2020-11-12 08:03:46','2021-09-20 07:29:10'),(1321,'en','top_client_packages','Top Client Packages','2020-11-12 08:05:21','2021-09-20 07:29:10'),(1322,'en','top_freelancer_packages','Top Freelancer Packages','2020-11-12 08:05:21','2021-09-20 07:29:10'),(1323,'en','number_of_sale','Number of sale','2020-11-12 09:13:09','2021-09-20 07:29:10'),(1324,'en','number_of_stock','Number of Stock','2020-11-12 09:16:02','2021-09-20 07:29:10'),(1325,'en','top_10_products','Top 10 Products','2020-11-12 10:02:29','2021-09-20 07:29:10'),(1326,'en','top_12_products','Top 12 Products','2020-11-12 10:02:39','2021-09-20 07:29:10'),(1327,'en','admin_can_not_be_a_seller','Admin cannot be a seller','2020-11-12 11:30:19','2021-09-20 07:29:10'),(1328,'en','filter_by_rating','Filter by Rating','2020-11-15 08:01:15','2021-09-20 07:29:10'),(1329,'en','published_reviews_updated_successfully','Published reviews updated successfully','2020-11-15 08:01:15','2021-09-20 07:29:10'),(1330,'en','refund_sticker_has_been_updated_successfully','Refund Sticker has been updated successfully','2020-11-15 08:17:12','2021-09-20 07:29:10'),(1331,'en','edit_product','Edit Product','2020-11-15 10:31:54','2021-09-20 07:29:10'),(1332,'en','meta_images','Meta Images','2020-11-15 10:32:12','2021-09-20 07:29:10'),(1333,'en','update_product','Update Product','2020-11-15 10:32:12','2021-09-20 07:29:10'),(1334,'en','product_has_been_deleted_successfully','Product has been deleted successfully','2020-11-15 10:32:57','2021-09-20 07:29:10'),(1335,'en','your_profile_has_been_updated_successfully','Your Profile has been updated successfully!','2020-11-15 11:10:42','2021-09-20 07:29:10'),(1336,'en','upload_limit_has_been_reached_please_upgrade_your_package','Upload limit has been reached. Please upgrade your package.','2020-11-15 11:13:45','2021-09-20 07:29:10'),(1337,'en','add_your_product','Add Your Product','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1338,'en','select_a_category','Select a category','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1339,'en','select_a_brand','Select a brand','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1340,'en','product_unit','Product Unit','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1341,'en','minimum_qty','Minimum Qty.','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1342,'en','product_tag','Product Tag','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1343,'en','type__hit_enter','Type & hit enter','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1344,'en','videos','Videos','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1345,'en','video_from','Video From','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1346,'en','video_url','Video URL','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1347,'en','customer_choice','Customer Choice','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1348,'en','pdf','PDF','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1349,'en','choose_pdf','Choose PDF','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1350,'en','select_category','Select Category','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1351,'en','target_category','Target Category','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1352,'en','subsubcategory','subsubcategory','2020-11-15 11:17:56','2021-02-09 06:53:13'),(1353,'en','search_category','Search Category','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1354,'en','search_subcategory','Search SubCategory','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1355,'en','search_subsubcategory','Search SubSubCategory','2020-11-15 11:17:56','2021-09-20 07:29:10'),(1356,'en','update_your_product','Update your product','2020-11-15 11:39:14','2021-09-20 07:29:10'),(1357,'en','product_has_been_updated_successfully','Product has been updated successfully','2020-11-15 11:51:36','2021-09-20 07:29:10'),(1358,'en','add_your_digital_product','Add Your Digital Product','2020-11-15 12:24:21','2021-09-20 07:29:10'),(1359,'en','active_ecommerce_cms_update_process','Active eCommerce CMS Update Process','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1361,'en','codecanyon_purchase_code','Codecanyon purchase code','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1362,'en','database_name','Database Name','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1363,'en','database_username','Database Username','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1364,'en','database_password','Database Password','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1365,'en','database_hostname','Database Hostname','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1366,'en','update_now','Update Now','2020-11-16 07:53:31','2021-09-20 07:29:10'),(1368,'en','congratulations','Congratulations','2020-11-16 07:55:14','2021-09-20 07:29: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 07:55:14','2021-09-20 07:29:10'),(1370,'en','go_to_home','Go to Home','2020-11-16 07:55:14','2021-09-20 07:29:10'),(1371,'en','login_to_admin_panel','Login to Admin panel','2020-11-16 07:55:14','2021-09-20 07:29:10'),(1372,'en','s3_file_system_credentials','S3 File System Credentials','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1373,'en','aws_access_key_id','AWS_ACCESS_KEY_ID','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1374,'en','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1375,'en','aws_default_region','AWS_DEFAULT_REGION','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1376,'en','aws_bucket','AWS_BUCKET','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1377,'en','aws_url','AWS_URL','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1378,'en','s3_file_system_activation','S3 File System Activation','2020-11-16 12:59:57','2021-09-20 07:29:10'),(1379,'en','your_phone_number','Your phone number','2020-11-17 05:50:10','2021-09-20 07:29:10'),(1380,'en','zip_file','Zip File','2020-11-17 06:58:45','2021-09-20 07:29:10'),(1381,'en','install','Install','2020-11-17 06:58:45','2021-09-20 07:29: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 06:59:11','2021-09-20 07:29:10'),(1383,'bd','categories','Categories','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1384,'bd','see_all','See All','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1385,'bd','top_10_categories','Top 10 Categories','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1386,'bd','view_all_categories','View All Categories','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1387,'bd','top_10_brands','Top 10 Brands','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1388,'bd','view_all_brands','View All Brands','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1389,'bd','login','Login','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1390,'bd','registration','Registration','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1391,'bd','i_am_shopping_for','I am shopping for...','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1392,'bd','compare','Compare','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1393,'bd','wishlist','Wishlist','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1394,'bd','cart','Cart','2021-02-03 03:50:34','2021-09-20 07:29:10'),(1395,'bd','your_cart_is_empty','Your Cart is empty','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1396,'bd','terms__conditions','Terms & conditions','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1397,'bd','return_policy','Return Policy','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1398,'bd','support_policy','Support Policy','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1399,'bd','privacy_policy','Privacy Policy','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1400,'bd','your_email_address','Your Email Address','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1401,'bd','subscribe','Subscribe','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1402,'bd','contact_info','Contact Info','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1403,'bd','address','Address','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1404,'bd','phone','Phone','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1405,'bd','email','Email','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1406,'bd','my_account','My Account','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1407,'bd','order_history','Order History','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1408,'bd','my_wishlist','My Wishlist','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1409,'bd','track_order','Track Order','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1410,'bd','welcome_to','Welcome to','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1411,'bd','login_to_your_account','Login to your account.','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1412,'bd','be_a_seller','Be a Seller','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1413,'bd','apply_now','Apply Now','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1414,'bd','password','Password','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1415,'bd','remember_me','Remember Me','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1416,'bd','confirmation','Confirmation','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1417,'bd','delete_confirmation_message','Delete confirmation message','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1418,'bd','cancel','Cancel','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1419,'bd','delete','Delete','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1420,'bd','item_has_been_added_to_compare_list','Item has been added to compare list','2021-02-03 03:50:35','2021-09-20 07:29:10'),(1421,'bd','please_login_first','Please login first','2021-02-03 03:50:35','2021-09-20 07:29: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 03:50:41','2021-09-20 07:29:10'),(1423,'bd','configure_now','Configure Now','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1424,'bd','total','Total','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1425,'bd','customer','Customer','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1426,'bd','order','Order','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1427,'bd','product_category','Product category','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1428,'bd','product_brand','Product brand','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1429,'bd','products','Products','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1430,'bd','sellers','Sellers','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1431,'bd','category_wise_product_sale','Category wise product sale','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1432,'bd','category_wise_product_stock','Category wise product stock','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1433,'bd','top_12_products','Top 12 Products','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1434,'bd','total_published_products','Total published products','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1435,'bd','total_sellers_products','Total sellers products','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1436,'bd','total_admin_products','Total admin products','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1437,'bd','total_sellers','Total sellers','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1438,'bd','total_approved_sellers','Total approved sellers','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1439,'bd','total_pending_sellers','Total pending sellers','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1440,'bd','number_of_sale','Number of sale','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1441,'bd','number_of_stock','Number of Stock','2021-02-03 03:50:41','2021-09-20 07:29:10'),(1442,'bd','search_in_menu','Search in menu','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1443,'bd','dashboard','Dashboard','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1444,'bd','add_new_product','Add New product','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1445,'bd','all_products','All Products','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1446,'bd','in_house_products','In House Products','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1447,'bd','seller_products','Seller Products','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1448,'bd','digital_products','Digital Products','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1449,'bd','bulk_import','Bulk Import','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1450,'bd','bulk_export','Bulk Export','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1451,'bd','category','Category','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1452,'bd','brand','Brand','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1453,'bd','attribute','Attribute','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1454,'bd','product_reviews','Product Reviews','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1455,'bd','sales','Sales','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1456,'bd','all_orders','All Orders','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1457,'bd','inhouse_orders','Inhouse orders','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1458,'bd','seller_orders','Seller Orders','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1459,'bd','pickup_point_order','Pick-up Point Order','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1460,'bd','customers','Customers','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1461,'bd','customer_list','Customer list','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1462,'bd','all_seller','All Seller','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1463,'bd','payouts','Payouts','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1464,'bd','payout_requests','Payout Requests','2021-02-03 03:50:42','2021-09-20 07:29:10'),(1465,'bd','seller_commission','Seller Commission','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1466,'bd','seller_verification_form','Seller Verification Form','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1467,'bd','uploaded_files','Uploaded Files','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1468,'bd','reports','Reports','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1469,'bd','in_house_product_sale','In House Product Sale','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1470,'bd','seller_products_sale','Seller Products Sale','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1471,'bd','products_stock','Products Stock','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1472,'bd','products_wishlist','Products wishlist','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1473,'bd','user_searches','User Searches','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1474,'bd','marketing','Marketing','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1475,'bd','flash_deals','Flash deals','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1476,'bd','newsletters','Newsletters','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1477,'bd','subscribers','Subscribers','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1478,'bd','coupon','Coupon','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1479,'bd','support','Support','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1480,'bd','ticket','Ticket','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1481,'bd','product_queries','Product Queries','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1482,'bd','website_setup','Website Setup','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1483,'bd','header','Header','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1484,'bd','footer','Footer','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1485,'bd','pages','Pages','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1486,'bd','appearance','Appearance','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1487,'bd','setup__configurations','Setup & Configurations','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1488,'bd','general_settings','General Settings','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1489,'bd','features_activation','Features activation','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1490,'bd','languages','Languages','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1491,'bd','currency','Currency','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1492,'bd','pickup_point','Pickup point','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1493,'bd','smtp_settings','SMTP Settings','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1494,'bd','payment_methods','Payment Methods','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1495,'bd','file_system_configuration','File System Configuration','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1496,'bd','social_media_logins','Social media Logins','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1497,'bd','analytics_tools','Analytics Tools','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1498,'bd','facebook_chat','Facebook Chat','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1499,'bd','google_recaptcha','Google reCAPTCHA','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1500,'bd','shipping_configuration','Shipping Configuration','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1501,'bd','shipping_countries','Shipping Countries','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1502,'bd','shipping_cities','Shipping Cities','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1503,'bd','staffs','Staffs','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1504,'bd','all_staffs','All staffs','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1505,'bd','staff_permissions','Staff permissions','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1506,'bd','system','System','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1507,'bd','update','Update','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1508,'bd','server_status','Server status','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1509,'bd','addon_manager','Addon Manager','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1510,'bd','browse_website','Browse Website','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1511,'bd','notifications','Notifications','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1512,'bd','profile','Profile','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1513,'bd','logout','Logout','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1514,'bd','nothing_found','Nothing Found','2021-02-03 03:50:42','2021-09-20 07:29:11'),(1515,'bd','my_panel','My Panel','2021-02-03 03:54:10','2021-09-20 07:29:11'),(1516,'bd','featured_products','Featured Products','2021-02-03 03:54:11','2021-09-20 07:29:11'),(1517,'bd','all_brands','All Brands','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1518,'bd','brands','Brands','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1519,'bd','type_name__enter','Type name & Enter','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1520,'bd','name','Name','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1521,'bd','logo','Logo','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1522,'bd','options','Options','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1523,'bd','edit','Edit','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1524,'bd','add_new_brand','Add New Brand','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1525,'bd','120x80','120x80','2021-02-03 03:54:25','2021-02-03 03:54:25'),(1526,'bd','browse','Browse','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1527,'bd','choose_file','Choose File','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1528,'bd','meta_title','Meta Title','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1529,'bd','meta_description','Meta Description','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1530,'bd','save','Save','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1531,'bd','delete_confirmation','Delete Confirmation','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1532,'bd','are_you_sure_to_delete_this','Are you sure to delete this?','2021-02-03 03:54:25','2021-09-20 07:29:11'),(1533,'bd','all_categories','All categories','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1534,'bd','add_new_category','Add New category','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1535,'bd','parent_category','Parent Category','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1536,'bd','level','Level','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1537,'bd','banner','Banner','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1538,'bd','icon','Icon','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1539,'bd','featured','Featured','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1540,'bd','commission','Commission','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1541,'bd','featured_categories_updated_successfully','Featured categories updated successfully','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1542,'bd','something_went_wrong','Something went wrong','2021-02-03 03:54:30','2021-09-20 07:29:11'),(1543,'bd','category_information','Category Information','2021-02-03 03:55:29','2021-09-20 07:29:11'),(1544,'bd','translatable','Translatable','2021-02-03 03:55:29','2021-09-20 07:29:11'),(1545,'bd','no_parent','No Parent','2021-02-03 03:55:29','2021-09-20 07:29:11'),(1546,'bd','type','Type','2021-02-03 03:55:30','2021-09-20 07:29:11'),(1547,'bd','physical','Physical','2021-02-03 03:55:30','2021-09-20 07:29:11'),(1548,'bd','digital','Digital','2021-02-03 03:55:30','2021-09-20 07:29:11'),(1549,'bd','200x200','200x200','2021-02-03 03:55:30','2021-02-03 03:55:30'),(1550,'bd','32x32','32x32','2021-02-03 03:55:30','2021-02-03 03:55:30'),(1551,'bd','slug','Slug','2021-02-03 03:55:30','2021-09-20 07:29:11'),(1552,'bd','default_language','Default Language','2021-02-03 03:55:45','2021-09-20 07:29:11'),(1553,'bd','add_new_language','Add New Language','2021-02-03 03:55:45','2021-09-20 07:29:11'),(1554,'bd','language','Language','2021-02-03 03:55:45','2021-09-20 07:29:11'),(1555,'bd','code','Code','2021-02-03 03:55:45','2021-09-20 07:29:11'),(1556,'bd','rtl','RTL','2021-02-03 03:55:45','2021-09-20 07:29:11'),(1557,'bd','translation','Translation','2021-02-03 03:55:45','2021-09-20 07:29:11'),(1558,'bd','settings_updated_successfully','Settings updated successfully','2021-02-03 03:55:48','2021-09-20 07:29:11'),(1559,'en','search_in_menu','Search in menu','2021-02-03 03:55:48','2021-09-20 07:29:11'),(1560,'en','uploaded_files','Uploaded Files','2021-02-03 03:55:48','2021-09-20 07:29:11'),(1561,'en','shipping_cities','Shipping Cities','2021-02-03 03:55:48','2021-09-20 07:29:11'),(1562,'en','system','System','2021-02-03 03:55:49','2021-09-20 07:29:11'),(1563,'en','server_status','Server status','2021-02-03 03:55:49','2021-09-20 07:29:11'),(1564,'en','nothing_found','Nothing Found','2021-02-03 03:55:49','2021-09-20 07:29:11'),(1565,'en','parent_category','Parent Category','2021-02-03 03:58:00','2021-09-20 07:29:11'),(1566,'en','level','Level','2021-02-03 03:58:00','2021-09-20 07:29:11'),(1567,'en','category_information','Category Information','2021-02-03 03:58:12','2021-09-20 07:29:11'),(1568,'en','translatable','Translatable','2021-02-03 03:58:12','2021-09-20 07:29:11'),(1569,'en','no_parent','No Parent','2021-02-03 03:58:12','2021-09-20 07:29:11'),(1570,'en','physical','Physical','2021-02-03 03:58:13','2021-09-20 07:29:11'),(1571,'en','digital','Digital','2021-02-03 03:58:13','2021-09-20 07:29:11'),(1572,'en','200x200','200x200','2021-02-03 03:58:13','2021-02-03 03:58:13'),(1573,'en','32x32','32x32','2021-02-03 03:58:13','2021-02-03 03:58:13'),(1574,'en','search_your_files','Search your files','2021-02-03 03:58:15','2021-09-20 07:29:11'),(1575,'en','category_has_been_updated_successfully','Category has been updated successfully','2021-02-03 04:47:29','2021-09-20 07:29:11'),(1576,'en','all_uploaded_files','All uploaded files','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1577,'en','upload_new_file','Upload New File','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1578,'en','all_files','All files','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1579,'en','search','Search','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1580,'en','details_info','Details Info','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1581,'en','copy_link','Copy Link','2021-02-03 06:25:30','2021-09-20 07:29:11'),(1582,'en','are_you_sure_to_delete_this_file','Are you sure to delete this file?','2021-02-03 06:25:31','2021-09-20 07:29:11'),(1583,'en','file_info','File Info','2021-02-03 06:25:31','2021-09-20 07:29:11'),(1584,'en','link_copied_to_clipboard','Link copied to clipboard','2021-02-03 06:25:31','2021-09-20 07:29:11'),(1585,'en','oops_unable_to_copy','Oops, unable to copy','2021-02-03 06:25:31','2021-09-20 07:29:11'),(1586,'en','file_deleted_successfully','File deleted successfully','2021-02-03 06:26:02','2021-09-20 07:29:11'),(1587,'en','add_new_brand','Add New Brand','2021-02-03 07:04:22','2021-09-20 07:29:11'),(1588,'en','120x80','120x80','2021-02-03 07:04:22','2021-02-03 07:04:22'),(1589,'en','brand_information','Brand Information','2021-02-03 07:04:29','2021-09-20 07:29:11'),(1590,'en','brand_has_been_updated_successfully','Brand has been updated successfully','2021-02-03 07:06:52','2021-09-20 07:29:11'),(1591,'en','brand_has_been_deleted_successfully','Brand has been deleted successfully','2021-02-03 07:07:54','2021-09-20 07:29: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 03:11:06','2021-09-20 07:29: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 03:11:06','2021-09-20 07:29: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 03:11:06','2021-09-20 07:29: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 03:11:06','2021-09-20 07:29:11'),(1596,'en','save_product','Save Product','2021-02-04 03:11:07','2021-09-20 07:29:11'),(1597,'en','product_has_been_inserted_successfully','Product has been inserted successfully','2021-02-04 03:29:35','2021-09-20 07:29:11'),(1598,'en','something_went_wrong','Something went wrong!','2021-02-04 04:32:50','2021-09-20 07:29: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 04:32:50','2021-09-20 07:29:11'),(1600,'en','error_code','Error code','2021-02-04 04:32:50','2021-09-20 07:29: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 04:33:06','2021-09-20 07:29:11'),(1602,'en','order','Order','2021-02-04 04:33:06','2021-09-20 07:29: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 06:10:35','2021-09-20 07:29:11'),(1604,'en','home_banner_3_max_3','Home Banner 3 (Max 3)','2021-02-04 06:10:36','2021-09-20 07:29:11'),(1605,'en','add_new_seller','Add New Seller','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1606,'en','filter_by_approval','Filter by Approval','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1607,'en','nonapproved','Non-Approved','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1608,'en','type_name_or_email__enter','Type name or email & Enter','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1609,'en','due_to_seller','Due to seller','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1610,'en','log_in_as_this_seller','Log in as this Seller','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1611,'en','go_to_payment','Go to Payment','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1612,'en','ban_this_seller','Ban this seller','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1613,'en','do_you_really_want_to_ban_this_seller','Do you really want to ban this seller?','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1614,'en','proceed','Proceed!','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1615,'en','approved_sellers_updated_successfully','Approved sellers updated successfully','2021-02-04 07:28:20','2021-09-20 07:29:11'),(1616,'en','seller_has_been_deleted_successfully','Seller has been deleted successfully','2021-02-04 07:28:26','2021-09-20 07:29:11'),(1617,'en','seller_information','Seller Information','2021-02-04 07:29:05','2021-09-20 07:29:11'),(1618,'en','seller_has_been_inserted_successfully','Seller has been inserted successfully','2021-02-04 07:35:31','2021-09-20 07:29:11'),(1619,'en','email_already_exists','Email already exists!','2021-02-04 07:38:36','2021-09-20 07:29:11'),(1620,'en','verify_your_email_address','Verify Your Email Address','2021-02-04 07:40:03','2021-09-20 07:29: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 07:40:03','2021-09-20 07:29:11'),(1622,'en','if_you_did_not_receive_the_email','If you did not receive the email.','2021-02-04 07:40:03','2021-09-20 07:29:11'),(1623,'en','click_here_to_request_another','Click here to request another','2021-02-04 07:40:03','2021-09-20 07:29:11'),(1624,'en','email_verification','Email Verification','2021-02-04 07:40:09','2021-09-20 07:29:11'),(1625,'en','email_verification__','Email Verification -','2021-02-04 07:40:09','2021-09-20 07:29:11'),(1626,'en','https_activation','HTTPS Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1627,'en','maintenance_mode','Maintenance Mode','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1628,'en','maintenance_mode_activation','Maintenance Mode Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1629,'en','classified_product_activate','Classified Product Activate','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1630,'en','classified_product','Classified Product','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1631,'en','business_related','Business Related','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1632,'en','vendor_system_activation','Vendor System Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1633,'en','wallet_system_activation','Wallet System Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1634,'en','coupon_system_activation','Coupon System Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1635,'en','pickup_point_activation','Pickup Point Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1636,'en','conversation_activation','Conversation Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1637,'en','guest_checkout_activation','Guest Checkout Activation','2021-02-04 07:43:50','2021-09-20 07:29:11'),(1638,'en','categorybased_commission','Category-based Commission','2021-02-04 07:43:50','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1640,'en','set_commisssion_now','Set Commisssion Now','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1641,'en','payment_related','Payment Related','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1642,'en','paypal_payment_activation','Paypal Payment Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1644,'en','stripe_payment_activation','Stripe Payment Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1645,'en','sslcommerz_activation','SSlCommerz Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1646,'en','instamojo_payment_activation','Instamojo Payment Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1648,'en','razor_pay_activation','Razor Pay Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1650,'en','paystack_activation','PayStack Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1652,'en','voguepay_activation','VoguePay Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1654,'en','payhere_activation','Payhere Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1655,'en','ngenius_activation','Ngenius Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1657,'en','iyzico_activation','Iyzico Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1659,'en','bkash_activation','Bkash Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1661,'en','nagad_activation','Nagad Activation','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1663,'en','cash_payment_activation','Cash Payment Activation','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1664,'en','social_media_login','Social Media Login','2021-02-04 07:43:51','2021-09-20 07:29:11'),(1665,'en','facebook_login','Facebook login','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1667,'en','google_login','Google login','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1669,'en','twitter_login','Twitter login','2021-02-04 07:43:51','2021-09-20 07:29: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 07:43:51','2021-09-20 07:29:11'),(1671,'en','shop_logo','Shop Logo','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1672,'en','shop_address','Shop Address','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1673,'en','banner_settings','Banner Settings','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1674,'en','banners','Banners','2021-02-04 07:45:53','2021-09-20 07:29: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 07:45:53','2021-09-20 07:29:11'),(1676,'en','insert_link_with_https_','Insert link with https','2021-02-04 07:45:53','2021-09-20 07:29:11'),(1677,'en','your_shop_has_been_updated_successfully','Your Shop has been updated successfully!','2021-02-04 07:49:29','2021-09-20 07:29:11'),(1678,'en','support_ticket','Support Ticket','2021-02-04 14:25:45','2021-09-20 07:29:11'),(1679,'en','delete','Delete','2021-02-05 03:06:35','2021-09-20 07:29:11'),(1680,'en','search_result_for_','Search result for','2021-02-05 03:15:40','2021-09-20 07:29:11'),(1681,'en','brand_has_been_inserted_successfully','Brand has been inserted successfully','2021-02-05 07:27:04','2021-09-20 07:29:11'),(1682,'en','about','About','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1683,'en','payout_info','Payout Info','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1684,'en','bank_acc_name','Bank Acc Name','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1685,'en','bank_acc_number','Bank Acc Number','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1686,'en','total_products','Total Products','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1687,'en','total_sold_amount','Total Sold Amount','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1688,'en','wallet_balance','Wallet Balance','2021-02-07 02:26:32','2021-09-20 07:29:11'),(1689,'en','cookies_agreement','Cookies Agreement','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1690,'en','cookies_agreement_text','Cookies Agreement Text','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1691,'en','show_cookies_agreement','Show Cookies Agreement?','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1692,'en','custom_script','Custom Script','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1693,'en','header_custom_script__before_head','Header custom script - before </head>','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1694,'en','write_script_with_script_tag','Write script with <script> tag','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1695,'en','footer_custom_script__before_body','Footer custom script - before </body>','2021-02-07 03:50:48','2021-09-20 07:29:11'),(1696,'en','category_has_been_inserted_successfully','Category has been inserted successfully','2021-02-07 04:00:49','2021-09-20 07:29:11'),(1697,'en','all_flash_deals','All Flash Deals','2021-02-07 07:05:16','2021-09-20 07:29:11'),(1698,'en','create_new_flash_deal','Create New Flash Deal','2021-02-07 07:05:16','2021-09-20 07:29:11'),(1699,'en','ffffff','#FFFFFF','2021-02-07 07:05:19','2021-09-20 07:29: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 07:05:19','2021-09-20 07:29:11'),(1701,'en','flash_deal_has_been_inserted_successfully','Flash Deal has been inserted successfully','2021-02-07 07:07:14','2021-09-20 07:29:11'),(1702,'en','flash_deal_status_updated_successfully','Flash deal status updated successfully','2021-02-07 07:07:32','2021-09-20 07:29:11'),(1703,'en','flash_deal_has_been_updated_successfully','Flash Deal has been updated successfully','2021-02-08 06:22:46','2021-09-20 07:29:11'),(1704,'en','update_language_info','update Language Info','2021-02-09 06:28:04','2021-09-20 07:29:11'),(1705,'en','language_has_been_updated_successfully','Language has been updated successfully','2021-02-09 06:28:10','2021-09-20 07:29:11'),(1706,'en','type_key__enter','Type key & Enter','2021-02-09 06:29:56','2021-09-20 07:29:11'),(1707,'en','translations_updated_for_','Translations updated for','2021-02-09 06:31:12','2021-09-20 07:29:11'),(1708,'sa','all_category','%�%� j%�%�%�j%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1709,'sa','all','j%�%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1710,'sa','flash_sale','j%�%�j%c% %�%�j%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1711,'sa','view_more','j%c%j%�%j%b% j%�%�%�j%�%%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1712,'sa','add_to_wishlist','j%�j%b%%� j%�%�%� %�j%�j%�%�j%# j%�%�j%�%�%�%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1713,'sa','add_to_compare','j%�j%b%%� %�%�%�%�j%�j%�%%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1714,'sa','add_to_cart','j%�j%b%%� j%�%�%� j%�%�j%%%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1715,'sa','club_point','%�%�%�j%� j%�%�%�%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1716,'sa','classified_ads','j%�%�j%�j%c%%�j%�%�j%�j%� j%�%�%�j%�%�j%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1717,'sa','used','%�j%%j%�j%�j%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1718,'sa','top_10_categories','j%�j%c%%�%� 10 %�j%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1719,'sa','view_all_categories','j%c%j%�%j%b% j%�%�%�j%c% j%�%�%�j%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1720,'sa','top_10_brands','j%�%�j%b%%� 10 %�j%�j%�%%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1721,'sa','view_all_brands','j%c%j%�%j%b% %�%� j%�%�%�j%�j%�%%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1722,'sa','terms__conditions','j%�%�j%�%�%�j%� %� j%�%�j%U%j%�%%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1723,'sa','best_selling','j%�%�j%b%%� %�j%�%�j%c%j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1724,'sa','top_20','j%�%�j%b%%� 20','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1725,'sa','featured_products','%�%�j%�j%�j%�j%� %�%�%�j%�%j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1726,'sa','best_sellers','j%�%�j%b%%� j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1727,'sa','visit_store','%�%� j%�j%�%%�j%�j%�%j%# j%�%�%�j%c%j%�%j%b% j%�%� j%�%�%�j%�j%�j%�%','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1728,'sa','popular_suggestions','j%�%�j%�%�j%�j%�%j%�j%�j%�j%� j%�%�j%$%j%c%j%�%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1729,'sa','category_suggestions','j%�%�j%�j%�%j%�j%�j%�j%� j%�%�%�j%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1730,'sa','automobile__motorcycle','j%�%�j%%%�j%�j%�%j%�j%� %�j%�%�j%�j%�%j%�j%�j%�j%� j%�%�%�j%�j%�%%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1731,'sa','price_range','%�j%V%j%�%� j%�%�j%%j%c%j%�%','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1732,'sa','filter_by_color','j%�j%a%%�%�j%# j%�j%%j%� j%�%�%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1733,'sa','home','j%�%�j%a%%�j%�j%# j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1734,'sa','newest','j%�%�j%�j%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1735,'sa','oldest','j%�%�j%�%�j%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1736,'sa','price_low_to_high','j%�%�j%%j%c%j%�% %�%� j%�%�j%�j%�%j%�j%a% %�%�j%�j%c%%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1737,'sa','price_high_to_low','j%�%�j%%j%c%j%�% j%�%�j%�j%c%%�%� j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1738,'sa','brands','j%�%�j%c%%�j%�%�j%�j%� j%�%�j%�j%�j%�j%�%%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1739,'sa','all_brands','j%�%�%�j%c% j%�%�j%c%%�j%�%�j%�j%� j%�%�j%�j%�j%�j%�%%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1740,'sa','all_sellers','%�%� j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1741,'sa','inhouse_product','%�%�j%�j%� j%�j%�j%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1742,'sa','message_seller','%�j%�%j%�j%%%�j%# j%�%�j%�j%�j%�j%c%','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1743,'sa','price','j%�%�j%%j%c%j%�%','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1744,'sa','discount_price','j%%j%c%j%�% j%�%�j%�j%a%%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1745,'sa','color','j%�%�%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1746,'sa','quantity','%�%�%�j%#','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1747,'sa','available','%�j%�j%�j%�','2021-02-09 06:47:58','2021-02-09 06:47:58'),(1748,'sa','total_price','j%�%�j%%j%c%j%�% j%�%�%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1749,'sa','out_of_stock','j%�%�j%�%�%� %�%� j%�%�%�j%�j%�%%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1750,'sa','refund','j%�j%c%j%�j%�j%# %�j%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1751,'sa','share','j%$%j%�j%�%%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1752,'sa','sold_by','j%�%� j%�%�j%c%%�j%� %�%� %�j%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1753,'sa','customer_reviews','j%�j%�%j%�j%� j%�%�j%c%%�%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1754,'sa','top_selling_products','j%�%�%�%�j%�j%�j%�j%� j%�%�j%�%�j%�j%�% %�j%�%�j%c%%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1755,'sa','description','%�j%a%%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1756,'sa','video','%�%�j%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1757,'sa','reviews','j%�%�%�j%�%j%�j%�j%c%j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1758,'sa','download','j%�j%�%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1759,'sa','there_have_been_no_reviews_for_this_product_yet','%�%� j%�%�%� %�%�j%�%� %�j%�%j%�j%�j%c%j%�j%� %�%�j%�%j%� j%�%�%�%�j%�j%� j%�j%�%� j%�%�j%�%�.','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1760,'sa','related_products','%�%�j%�j%�j%�j%� j%�%j%�j%� j%a%%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1761,'sa','any_query_about_this_product','j%�%� j%�j%%j%�%�j%%j%�j%�% j%c%%� %�j%�%j%� j%�%�%�%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1762,'sa','product_name','j%�j%%%� j%�%�%�%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1763,'sa','your_question','j%%j%�j%�%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1764,'sa','send','j%�j%�%j%%j%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1765,'sa','use_country_code_before_number','j%�j%%j%�j%�j%�%� j%�%%�j%�% j%�%�j%�%�j%� %�j%�%� j%�%�j%�%%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1766,'sa','remember_me','j%�j%�%%�j%�%%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1767,'sa','dont_have_an_account','%�%�j%% %�j%�%�%� j%�j%%j%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1768,'sa','register_now','j%%j%�%� j%�%�j%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1769,'sa','or_login_with','j%�%� j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�j%�j%%j%�j%�j%�j%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1770,'sa','oops','%�j%�%� j%�%�%�j%�j%�j%#..','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1771,'sa','this_item_is_out_of_stock','%�j%�%j%� j%�%�j%c%%�j%a%j%�% j%Q%%�j%�% %�j%�%�%�j%�% %�%� j%�%�%�j%�j%�%%�%�!','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1772,'sa','back_to_shopping','j%�%�j%c%%�j%�j%# j%�%�%� j%�%�j%�j%%%�%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1773,'sa','login_to_your_account','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� j%�j%%j%�j%�%�.','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1774,'sa','purchase_history','j%�j%�j%�%%�j%� j%$%j%�%j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1775,'sa','new','j%�j%�%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1776,'sa','downloads','j%�%�j%�j%�%�%�%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1777,'sa','sent_refund_request','j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%� %�j%�%j%%%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1778,'sa','product_bulk_upload','j%�j%�%�%�%� %�j%�%�j%c% %�%�%�%�j%�j%�','2021-02-09 06:47:58','2021-09-20 07:29:11'),(1779,'sa','orders','j%�%�j%V%%�j%� #%� s','2021-02-09 06:47:58','2021-09-20 07:29:12'),(1780,'sa','recieved_refund_request','j%�%� j%�j%%j%�%�j%�%� j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1781,'sa','shop_setting','j%�j%c%j%�j%�j%� j%�%�%�j%�j%�j%�%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1782,'sa','payment_history','j%�j%�j%�%%�j%� j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1783,'sa','money_withdraw','j%%j%�j%� j%�%�j%�%�%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1784,'sa','conversations','j%�%�%�j%�j%�j%�j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1785,'sa','my_wallet','%�j%�%�j%U%j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1786,'sa','earning_points','%�j%%j%� j%�%�%�%�j%�j%V%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1787,'sa','support_ticket','j%�j%V%j%�%�j%# j%�%�j%�j%c%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1788,'sa','manage_profile','j%�j%�j%�j%�%j%# j%�%�%�%�%� j%�%�j%$%j%�j%a%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1789,'sa','sold_amount','j%�%�%�j%�%�j%Q% j%�%�%�j%�j%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1790,'sa','your_sold_amount_current_month','j%�%�%�j%�%�j%Q% j%�%�%�j%�j%�j%c% (j%�%�j%$%%�j%�% j%�%�j%�j%�%�%�)','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1791,'sa','total_sold','j%�j%�%�j%�%�%� j%�%�%�j%�%�j%c%j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1792,'sa','last_month_sold','j%�%� j%�%�j%c% j%�%�j%$%%�j%�% j%�%�%�j%�j%b%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1793,'sa','total_sale','j%�j%�%�j%�%�%� j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1794,'sa','total_earnings','j%�%�j%�j%�%j%�j%�j%� j%�%�%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1795,'sa','successful_orders','j%�%�j%V%%�j%�j%�j%� j%�%�%�j%�j%�j%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1796,'sa','total_orders','j%�j%�%�j%�%�%� j%�%�j%V%%�j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1797,'sa','pending_orders','j%�%�j%V%%�j%�j%�j%� j%�%�%�j%c%%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1798,'sa','cancelled_orders','j%�%�j%V%%�j%�j%�j%� j%�%�%�%�j%Q%j%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1799,'sa','product','j%�%�%�%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1800,'sa','purchased_package','j%�%�j%�j%�%%�j%# j%�%�%�j%$%j%�j%�%j%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1801,'sa','package_not_found','j%�%�j%�j%�%%�j%# j%Q%%�j%�% %�%�j%�%�j%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1802,'sa','upgrade_package','j%�j%�%%�j%# j%�%�j%�j%�%%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1803,'sa','shop','%�j%�j%�j%�%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1804,'sa','manage__organize_your_shop','j%�j%�j%�j%�%j%# %�j%�%�j%U%%�%� %�j%�j%�j%�%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1805,'sa','go_to_setting','j%�j%�%%�j%� j%�%�%� j%�%�j%�j%c%j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1806,'sa','payment','j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1807,'sa','configure_your_payment_method','j%�%�%�%�%� j%V%j%�%%�%�j%# j%�%�j%�%�j%c% j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1808,'sa','my_panel','%�%�j%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1809,'sa','item_has_been_added_to_wishlist','j%�%�j%� j%�j%b%j%�%�j%# j%�%�j%c%%�j%a%j%�% j%�%�%� %�j%�j%�%�j%# j%�%�j%�%j%Q%j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1810,'sa','my_points','%�%�j%�j%V%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1811,'sa','_points','%�%�j%�j%V%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1812,'sa','wallet_money','j%�%�%�j%�%� j%�%�%�j%�%�j%U%j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1813,'sa','exchange_rate','j%%j%c%j%�% j%�%�j%a%j%�%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1814,'sa','point_earning_history','j%%j%�%� %�j%%j%� j%�%�%�%�j%�j%V%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1815,'sa','date','j%�j%�j%�%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1816,'sa','points','%�%�j%�j%V%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1817,'sa','converted','%�j%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1818,'sa','action','j%c%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1819,'sa','no_history_found','%�%� %�j%�%� j%�%�j%c%j%�%�j%�% j%c%%�%� j%%j%�%�.','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1820,'sa','convert_has_been_done_successfully_check_your_wallets','j%�%� j%�%�j%�j%�%�%�%� j%�%�j%�j%�j%� j%�j%�%�%� %�%� %�j%�j%�%�j%U%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1821,'sa','something_went_wrong','%�%�j%�%� j%�j%V%j%� %�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1822,'sa','remaining_uploads','j%�%�j%�j%�%�%�%�j%�j%� j%�%�%�j%�j%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1823,'sa','no_package_found','%�%� %�j%�%� j%�%�j%c%j%�%�j%�% j%c%%�%� j%�j%�%%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1824,'sa','search_product','j%�%�j%�j%�j%� j%c%%� j%�%�%�%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1825,'sa','name','j%�j%%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1826,'sa','current_qty','j%�%�%�%�%�j%# j%�%�j%�j%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1827,'sa','base_price','j%�%�j%%j%c%j%�% j%�%�j%�j%%j%�j%%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1828,'sa','published','%�j%$%j%�%j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1829,'sa','featured','%�j%�%�%�j%�%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1830,'sa','options','j%�%�j%�j%�%j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1831,'sa','edit','j%�j%c%j%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1832,'sa','duplicate','%�%�j%�%j%�%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1833,'sa','1_download_the_skeleton_file_and_fill_it_with_data','1. %�%� j%�j%�%�j%�%%�%� %�%�%� j%�%�%�%�%�%� j%�%�j%c%j%U%%�%� %�j%�%�%�j%�%� j%�j%�%�j%�%�j%�%�j%�j%�.','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1834,'sa','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2. %�%�%�%�%� j%�%�j%�%%�%� %�%�%� j%�%�%�j%�j%�%� %�%�%�%� %�%�%�%�j%# %�%�j%� j%�%�j%�%�j%�%�j%�j%�.','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1835,'sa','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3. j%�%�j%�j%�%j%� j%�%�j%�%%�%� %�%�%� j%�%�%�%�%�%� j%�%�j%c%j%U%%�%� %�j%�j%c%j%�j%�j%�%� j%� %�%� j%�j%�j%�%�%�%�%� %�%� j%�%�%�%�%�j%�%j%� j%�j%�%�j%�%� %�j%�j%�%j%%%�%�.','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1836,'sa','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4. j%�j%c%j%� j%�j%�%�%�%� j%�%�%�%�j%�j%�j%�j%� j%�j%�j%�j%�j%� j%�%�%� j%�j%c%j%�%�%�%�j%� %�j%�j%c%%�%�%� j%a%%�j%�% j%�%�%�%�j%�j%�j%�j%� %�j%�%�j%�j%�j%�%�j%�j%�%j%�j%�.','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1837,'sa','download_csv','j%�%�j%�%%�%� %�%�%� CSV','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1838,'sa','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1. %�j%�j%� j%�%� j%�%�%�%� j%�%�%�j%�j%# j%� %�j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# j%� %�j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# %�j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# %�%� %�%�%�j%�j%� j%�%%�%�%�j%#.','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1839,'sa','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. %�%�%�%�%� j%�%�j%�%%�%� %�%�%� pdf %�%�j%�j%a%%�%� j%c%%�%� j%�%�%�j%�j%# %�j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# %�j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# %�%�j%c%j%�%%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%#.','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1840,'sa','download_category','%�j%�j%# j%�%�j%�j%�%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1841,'sa','download_sub_category','j%�j%�%�%�%� %�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1842,'sa','download_sub_sub_category','j%�j%�%�%�%� %�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1843,'sa','download_brand','j%�j%�%�%�%� j%�%�%�j%�j%�%%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1844,'sa','upload_csv_file','j%�j%�%�%�%� %�%�%� CSV','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1845,'sa','csv','CSV','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1846,'sa','choose_csv_file','j%�j%�j%�j%�% %�%�%� CSV','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1847,'sa','upload','j%�j%�%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1848,'sa','add_new_digital_product','j%�j%b%j%�%�j%# %�%�j%�j%� j%�%%�%�%� j%�j%�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1849,'sa','available_status','j%�%�j%�j%�%�j%# j%�%�%�j%�j%�j%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1850,'sa','admin_status','j%�j%�%�j%# j%�%�%�j%%j%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1851,'sa','pending_balance','j%�%j%a%%�j%� %�j%c%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1852,'sa','send_withdraw_request','j%�j%�%j%%j%�%� j%V%%�j%� j%%j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1853,'sa','withdraw_request_history','j%%j%�j%� j%�j%�j%�%%�j%� j%�%�j%V%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1854,'sa','amount','%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1855,'sa','status','j%�%�j%�j%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1856,'sa','message','j%�%j%%j%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1857,'sa','send_a_withdraw_request','j%�j%�%j%%j%�%� j%V%%�j%� j%%j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1858,'sa','basic_info','%�j%c%%�%�%�j%�j%� j%�j%%j%�j%%%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1859,'sa','your_phone','%�j%�j%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1860,'sa','photo','j%a%%�j%�%j%# %�%�j%�%�j%Q%j%�%j%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1861,'sa','browse','j%�j%a%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1862,'sa','your_password','%�%�%�j%�%� j%�%�j%%j%�%%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1863,'sa','new_password','%�%�%�j%# j%�%�%�j%�%%�j%�% j%�%�j%�j%�%�j%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1864,'sa','confirm_password','j%�j%�%�%�j%� %�%�%�j%# j%�%�%�j%�%%�j%�%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1865,'sa','add_new_address','j%�j%b%%� j%c%%�%�j%�%� j%�j%�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1866,'sa','payment_setting','j%�j%c%j%�j%�j%� j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1867,'sa','cash_payment','j%�%�j%c% %�%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1868,'sa','bank_payment','j%�%�j%�%�j%c% j%�%�%�j%a%j%�%%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1869,'sa','bank_name','j%�j%%%� j%�%�j%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1870,'sa','bank_account_name','j%�j%%%� j%�%�j%�j%%j%�j%� j%�%�%�j%a%j%�%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1871,'sa','bank_account_number','j%�%%�%� j%�%�j%�j%%j%�j%� j%�%�%�j%a%j%�%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1872,'sa','bank_routing_number','j%�%%�%� j%�%�j%�j%�%�%�%� j%�%�%�j%a%j%�%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1873,'sa','update_profile','j%�j%�j%�%�j%� j%�%�%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1874,'sa','change_your_email','%�%� j%�j%�j%Q%%�%�j%�% j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1875,'sa','your_email','j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1876,'sa','sending_email','j%�j%�%j%%j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�...','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1877,'sa','verify','j%�j%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1878,'sa','update_email','j%�j%�j%�%�j%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1879,'sa','new_address','j%c%%�%�j%�%� j%�j%�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1880,'sa','your_address','j%c%%�%�j%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1881,'sa','country','j%�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1882,'sa','select_your_country','j%�j%�j%�j%�% j%�%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1883,'sa','city','%�j%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1884,'sa','your_city','%�j%�%�%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1885,'sa','your_postal_code','j%�%%�j%�%%� j%�%�j%�j%�%%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1886,'sa','880','+880','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1887,'sa','save','j%�%�j%U%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1888,'sa','received_refund_request','j%�%� j%�j%%j%�%�j%�%� j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1889,'sa','delete_confirmation','j%�j%�%�%�j%� j%�%�j%�j%�%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1890,'sa','are_you_sure_to_delete_this','%�%� j%�%�j%� %�j%�j%�%�j%� %�%� j%�j%�%%� %�j%�%j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1891,'sa','premium_packages_for_sellers','j%�j%�%%� %�j%�%�%�j%�%j%# %�%�j%�j%�j%�j%c%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1892,'sa','product_upload','j%�j%�%�%�%� j%�%�%�%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1893,'sa','digital_product_upload','j%�j%�%�%�%� j%�%�%�%�j%�j%� j%�%�j%�%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1894,'sa','purchase_package','j%�j%�%%�j%# j%�%�j%$%j%�%j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1895,'sa','select_payment_type','j%�j%�j%�j%�% j%V%j%�%%�%�j%# j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1896,'sa','payment_type','%�%�j%c% j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1897,'sa','select_one','j%�j%�j%� %�j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1898,'sa','online_payment','j%�%�j%�%�j%c% j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1899,'sa','offline_payment','j%�%�j%�%�j%c% j%�%�%� j%�j%�j%a%j%�%� j%�j%�%�j%�%�j%�j%�%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1900,'sa','purchase_your_package','j%$%j%�%j%�j%� j%�j%�%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1901,'sa','paypal','j%�j%�%� j%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1902,'sa','stripe','j%$%j%�%%�j%V%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1903,'sa','sslcommerz','sslcommerz','2021-02-09 06:47:59','2021-02-09 06:47:59'),(1904,'sa','confirm','j%�j%�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1905,'sa','offline_package_payment','j%�%�j%c% j%�j%�%%�j%# j%�%�%� j%�j%�j%a%j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1906,'sa','transaction_id','j%�%%�%� j%�%�%�j%c%j%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1907,'sa','choose_image','j%�j%�j%�j%�% j%a%%�j%�%j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1908,'sa','code','j%�%�j%$%%�j%�%j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1909,'sa','delivery_status','j%�j%�%�j%# j%�%�j%�j%%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1910,'sa','payment_status','j%�j%�%�j%# j%�%�j%%j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1911,'sa','paid','j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1912,'sa','order_details','j%�%�j%�j%a%%�%� j%�%�j%V%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1913,'sa','download_invoice','j%�j%�%�%�%� %�j%�j%�%�j%�%j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1914,'sa','unpaid','j%Q%%�j%�% %�j%�%�%�j%c%j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1915,'sa','order_placed','j%�%� j%�%�j%V%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1916,'sa','confirmed','j%�%� j%�j%�%�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1917,'sa','on_delivery','j%c%%�j%� j%�%�j%�j%%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1918,'sa','delivered','j%�%� j%�%�j%�%�j%a%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1919,'sa','order_summary','%�%�j%�j%a% j%�%�j%V%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1920,'sa','order_code','j%�%%�j%�% j%�%�j%V%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1921,'sa','customer','j%�%�j%�%j%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1922,'sa','total_order_amount','j%�j%�%�j%�%�%� %�j%�%�j%Q% j%�%�j%V%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1923,'sa','shipping_metdod','metdod j%�%�j%$%j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1924,'sa','flat_shipping_rate','j%%j%c%j%�% j%�%�j%$%j%�%� j%�j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1925,'sa','payment_metdod','metdod j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1926,'sa','variation','j%�%�j%�j%�j%�%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1927,'sa','delivery_type','%�%�j%c% j%�%�j%�%�j%a%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1928,'sa','home_delivery','j%�%�j%a%%�%� %�%�j%�%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1929,'sa','order_ammount','%�j%�%�j%Q% j%�%�j%V%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1930,'sa','subtotal','j%�%�%�j%�%�%�j%c% j%�%�%�j%�%j%c%%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1931,'sa','shipping','j%�%�j%$%j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1932,'sa','coupon_discount','j%�j%a%%� j%�%�%�j%%%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1933,'sa','na','j%Q%%�j%�% %�j%�j%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1934,'sa','in_stock','%�%� j%�%�j%�%�j%�%j%�%� j%�%�%�j%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1935,'sa','buy_now','j%�j%$%j%�j%�%%� j%�%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1936,'sa','item_added_to_your_cart','j%�j%b%j%�%�j%# j%�%�j%%%�j%c%j%# j%�%�%� j%%%�j%# j%�%�j%�j%%%�%� j%�%�j%�j%�j%a%j%# j%�%�!','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1937,'sa','proceed_to_checkout','j%�%�j%$%j%�%%�j%c% %�%� j%�%�j%�j%�%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1938,'sa','cart_items','j%c%%�j%�j%a%j%�% j%c%j%�%j%�j%# j%�%�j%�j%%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1939,'sa','1_my_cart','1. j%c%j%�%j%�j%# j%�%�j%�j%%%�%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1940,'sa','view_cart','j%c%j%�%j%b% j%c%j%�%j%�j%# j%�%�j%�j%%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1941,'sa','2_shipping_info','2. %�j%c%%�%�%�j%�j%� j%�%�j%$%j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1942,'sa','checkout','j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1943,'sa','3_delivery_info','3. %�j%c%%�%�%�j%�j%� j%�%�j%�j%%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1944,'sa','4_payment','4. j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1945,'sa','5_confirmation','5. j%�%�j%�j%�%�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1946,'sa','remove','j%�j%�%j%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1947,'sa','return_to_shop','j%�%�j%c%%�j%�j%# j%�%�%� j%�%�%�j%�j%�j%�%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1948,'sa','continue_to_shipping','j%�j%�j%�j%c% j%�%�%� j%�%�j%$%j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1949,'sa','or','j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1950,'sa','guest_checkout','j%b%%�%� j%�%�%�j%�j%�j%%j%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1951,'sa','continue_to_delivery_info','j%�j%�j%�j%c% j%�%�%� %�j%c%%�%�%�j%�j%� j%�%�j%�j%%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1952,'sa','postal_code','j%�%�j%�%%�j%�% j%�%�j%�j%�%%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1953,'sa','choose_delivery_type','j%�j%�j%�j%�% %�%�j%c% j%�%�j%�j%%%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1954,'sa','local_pickup','j%$%j%�j%�%�j%# %�j%�%�%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1955,'sa','select_your_nearest_pickup_point','j%�j%�j%� j%�%�j%�%j%� %�%�j%V%j%# j%�%�j%�%�j%�j%V% %�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1956,'sa','continue_to_payment','j%�j%�j%�j%c% j%�%�%� j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1957,'sa','select_a_payment_option','j%�j%�j%� j%�%�j%�j%�% j%�%�j%�%�j%c%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1958,'sa','razorpay','j%�%j%�j%�%%�j%�%j%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1959,'sa','paystack','Paystack','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1960,'sa','voguepay','VoguePay','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1961,'sa','payhere','j%�j%�%�j%c% %�%�j%�','2021-02-09 06:47:59','2021-02-09 06:47:59'),(1962,'sa','ngenius','j%c%j%�%�j%�%%�','2021-02-09 06:47:59','2021-02-09 06:47:59'),(1963,'sa','paytm','Paytm','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1964,'sa','cash_on_delivery','j%�%�j%�%�j%c% j%c%%�j%� j%�%�j%�j%%j%�%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1965,'sa','your_wallet_balance_','j%�%j%a%%�j%� %�j%�%�j%U%j%�%�:','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1966,'sa','insufficient_balance','j%�%j%a%%�j%� j%Q%%�j%�% %�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1967,'sa','i_agree_to_the','j%�%�j%� j%�%�j%�%�%� j%c%%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1968,'sa','complete_order','j%�%�%�%� j%�%�j%V%%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1969,'sa','summary','%�%�j%�j%a%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1970,'sa','items','j%�%�j%c%%�j%�j%a%j%�%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1971,'sa','total_club_point','%�j%�%�%�j%c% %�%�j%�j%V% j%�%�%�j%�j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1972,'sa','total_shipping','j%�j%�%�j%�%�%� j%�%�j%$%j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1973,'sa','have_coupon_code_enter_here','%�%� %�j%�%�%� j%�%%�j%�% %�j%%%�%�j%#j%� j%�j%�j%�%� %�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1974,'sa','apply','j%�j%V%j%�%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1975,'sa','you_need_to_agree_with_our_policies','j%�%�j%� j%�j%�j%�j%�j%# j%�%�%� j%�%�%�%�j%�%�%�j%# j%c%%�%� j%%%�j%�j%%j%�j%�%�j%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1976,'sa','forgot_password','%�%� %�j%%%�j%� %�%�%�j%# j%�%�%�j%�%%�j%�%','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1977,'sa','seo_setting','j%�j%c%j%�j%�j%� SEO','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1978,'sa','system_update','j%�j%�j%�%�j%� j%�%�%�j%U%j%�%�','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1979,'sa','add_new_payment_method','j%�j%b%%� j%V%j%�%%�%�j%# j%�%�j%c% j%�j%�%�j%�j%#','2021-02-09 06:47:59','2021-09-20 07:29:12'),(1980,'sa','manual_payment_method','j%V%j%�%%�%�j%# j%�%�j%�%�j%c% j%�%�%�j%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1981,'sa','heading','j%c%%�%�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1982,'sa','logo','j%$%j%c%j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1983,'sa','manual_payment_information','%�j%c%%�%�%�j%�j%� j%�%�j%�%�j%c% j%�%�%�j%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1984,'sa','type','j%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1985,'sa','custom_payment','j%�%�j%�%�j%c% j%�%�%�j%�j%a%j%a%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1986,'sa','check_payment','j%�%�j%�j%�%�%� %�%� j%�%�j%�%�j%c%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1987,'sa','checkout_thumbnail','j%a%%�j%�%j%# %�j%a%j%Q%j%�%j%# %�%�j%�j%�%%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1988,'sa','payment_instruction','j%�j%c%%�%�%�j%�j%� j%�%�j%�%�j%c%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1989,'sa','bank_information','j%�%�%�j%c%%�%�%�j%�j%� j%�%�%�j%a%j%�%%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1990,'sa','select_file','j%�j%�j%� %�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1991,'sa','upload_new','j%�j%�%�%�%� j%�j%�%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1992,'sa','sort_by_newest','j%�%�j%�j%�%j%�%�j%� j%�j%%j%� j%�%�j%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1993,'sa','sort_by_oldest','%�j%�%j%�% j%�j%%j%� j%�%�j%�%�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1994,'sa','sort_by_smallest','%�j%�%j%�% j%�j%%j%� j%�%�j%�j%a%j%Q%j%�%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1995,'sa','sort_by_largest','%�j%�%j%�% j%�j%%j%� j%�%�j%�%�j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1996,'sa','selected_only','j%�%�%�j%�j%�j%� %�%�j%V%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1997,'sa','no_files_found','%�j%� j%�%�j%�j%� %�%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1998,'sa','0_file_selected','0 %�%�%� %�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(1999,'sa','clear','%�j%�j%b%j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2000,'sa','prev','j%�%�j%%j%�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2001,'sa','next','j%�%�j%�j%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2002,'sa','add_files','j%�j%b%j%�%�j%# %�%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2003,'sa','method_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�j%V%j%�%%�%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2004,'sa','order_date','j%�j%�j%�%%�j%� j%�%�j%V%%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2005,'sa','bill_to','%�j%$%j%�%%�j%c% %�j%�%�%�%� %�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2006,'sa','sub_total','j%�%�%�j%�%�%�j%c% j%�%�%�j%�%j%c%%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2007,'sa','total_tax','%�j%�%�%�j%c% j%�%�j%b%j%�%%�j%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2008,'sa','grand_total','j%�%�%�j%�%�j%Q% j%�%�j%�j%�%�j%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2009,'sa','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','j%�%� %�j%b%j%c% j%V%%�j%�%� j%�%�j%�j%�j%�. %�j%�%j%�%� j%�%�j%�%�%� %�j%c%%�%�%�j%�j%� j%�%�j%�%�j%c% %�%� j%%j%�%� j%�%�j%$%j%�%j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2010,'sa','thank_you_for_your_order','j%$%%�j%�%j%� %�j%V%%�j%�%�!','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2011,'sa','order_code','j%�%%�j%�% j%�%�j%V%%�j%�:','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2012,'sa','a_copy_or_your_order_summary_has_been_sent_to','j%�%� j%�j%�%j%%j%�%� %�j%%j%�j%# j%�%� %�%�j%�j%a% j%V%%�j%�%� j%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2013,'sa','make_payment','%�%� j%�j%�%�j%�%�j%c%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2014,'sa','payment_screenshot','%�%�j%V%j%# j%$%j%�j%$%j%# j%�%�j%�%�j%c%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2015,'sa','paypal_credential','j%�j%c%j%�%�j%�j%� Paypal','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2016,'sa','paypal_client_id','%�j%c%j%�%%� j%c%%�%�%� Paypal','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2017,'sa','paypal_client_secret','j%%j%�% j%c%%�%�%� Paypal','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2018,'sa','paypal_sandbox_mode','%�j%b%j%c% Paypal Sandbox','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2019,'sa','sslcommerz_credential','j%�j%c%j%�%�j%�j%� Sslcommerz','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2020,'sa','sslcz_store_id','%�j%c%j%�%%� %�j%�j%�j%�% sslcz','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2021,'sa','sslcz_store_password','%�%�%�j%# %�j%�%%�j%�% %�j%�j%�j%�% sslcz','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2022,'sa','sslcommerz_sandbox_mode','%�j%b%j%c% j%�%�j%�%�j%�%�j%# Sslcommerz','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2023,'sa','stripe_credential','j%�j%c%j%�%�j%�j%� j%$%j%�%%�j%V%%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2024,'sa','stripe_key','%�%�j%�j%�j%� j%�%�j%$%j%�%%�j%V%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2025,'sa','stripe_secret','j%%j%�% j%�%�j%$%j%�%%�j%V%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2026,'sa','razorpay_credential','j%�j%c%j%�%�j%�j%� RazorPay','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2027,'sa','razor_key','%�%�j%�j%�j%� j%�%�j%�%�j%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2028,'sa','razor_secret','j%%j%�% j%�%�j%�%�j%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2029,'sa','instamojo_credential','j%�j%c%j%�%�j%�j%� Instamojo','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2030,'sa','api_key','%�%�j%�j%�j%� API','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2031,'sa','im_api_key','IM API KEY','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2032,'sa','auth_token','AUTH TOKEN','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2033,'sa','im_auth_token','j%�%%�j%�% IM AUTH','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2034,'sa','instamojo_sandbox_mode','%�j%b%j%c% Instamojo Sandbox','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2035,'sa','paystack_credential','j%�j%c%j%�%�j%�j%� PayStack','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2036,'sa','public_key','j%�%�%�%�j%�j%�j%� j%�%�j%c%%�%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2037,'sa','secret_key','%�%�j%�j%�j%� j%%j%�%%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2038,'sa','merchant_email','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� %�%�j%�j%�j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2039,'sa','voguepay_credential','j%�j%c%j%�%�j%�j%� VoguePay','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2040,'sa','merchant_id','%�j%c%j%�%%� j%�%�j%�j%�j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2041,'sa','sandbox_mode','%�j%b%j%c% j%�%�j%�%�j%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2042,'sa','payhere_credential','j%�j%c%j%�%�j%�j%� Payhere','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2043,'sa','payhere_merchant_id','%�j%c%j%�%%� j%�j%�j%�j%�% j%�j%�%�%�%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2044,'sa','payhere_secret','PAYHERE SECRET','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2045,'sa','payhere_currency','j%c%%�%�j%# j%�%�j%�%�j%c%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2046,'sa','payhere_sandbox_mode','%�j%b%j%c% Payhere Sandbox','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2047,'sa','ngenius_credential','Ngenius Credential','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2048,'sa','ngenius_outlet_id','%�j%c%j%�%%� %�%�%�j%�% NGENIUS','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2049,'sa','ngenius_api_key','NGENIUS API KEY','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2050,'sa','ngenius_currency','j%�%�j%c%%�%�j%# j%�%�j%�j%�%�j%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2051,'sa','mpesa_credential','j%�j%c%j%�%�j%�j%� Mpesa','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2052,'sa','mpesa_consumer_key','%�%�j%�j%�j%� j%�%�%�j%%j%�%�%�%� MPESA','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2053,'sa','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2054,'sa','mpesa_consumer_secret','j%%j%�% j%�%�%�j%%j%�%�%�%� MPESA','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2055,'sa','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2056,'sa','mpesa_short_code','%�%�j%� MPESA j%�%�%�j%�j%�j%a%j%�%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2057,'sa','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2058,'sa','mpesa_sandbox_activation','j%�%�j%$%%�j%V% j%%j%�%�j%�j%�%�%�j%% MPESA','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2059,'sa','flutterwave_credential','j%�j%c%j%�%�j%�j%� Flutterwave','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2060,'sa','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2061,'sa','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2062,'sa','rave_title','RAVE_TITLE','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2063,'sa','stagin_activation','j%�%�j%$%%�j%V% STAGIN','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2064,'sa','all_product','%�%� j%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2065,'sa','sort_by','j%�j%�%j%�%�j%� j%�j%%j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2066,'sa','rating_high__low','j%�%�j%�j%a%%�%�%� (%�j%�%j%�%�j%c%> %�%�j%�%�j%b%)','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2067,'sa','rating_low__high','j%�%�j%�j%a%%�%�%� (%�%�j%�%�j%b%> %�j%�%j%�%�j%c%)','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2068,'sa','num_of_sale_high__low','j%c%j%�j%� j%�%�%�j%�%�j%c%j%�j%� (%�j%�%j%�%�j%c%> %�%�j%�%�j%b%)','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2069,'sa','num_of_sale_low__high','j%c%j%�j%� j%�%�%�j%�%�j%c%j%�j%� (%�%�j%�%�j%b%> %�j%�%j%�%�j%c%)','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2070,'sa','base_price_high__low','j%�%�j%%j%c%j%�% j%�%�j%�j%%j%�j%%%� (%�j%�%j%�%�j%c%> %�%�j%�%�j%b%)','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2071,'sa','base_price_low__high','j%�%�j%%j%c%j%�% j%�%�j%�j%%j%�j%%%� (%�%�j%�%�j%b%> %�j%�%j%�%�j%c%)','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2072,'sa','type__enter','j%�%�j%�j%� & j%�j%�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2073,'sa','added_by','j%�j%b%%�%�j%� %�%� %�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2074,'sa','num_of_sale','j%�%%�%� j%�%�j%�%�j%c%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2075,'sa','total_stock','j%�j%�%�j%�%�%� j%�%�%�j%�j%�%%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2076,'sa','todays_deal','j%a%%�%�j%# j%�%�%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2077,'sa','rating','j%�%�%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2078,'sa','times','%�j%�%j%�j%�','2021-02-09 06:48:00','2021-02-09 06:48:00'),(2079,'sa','add_nerw_product','j%�j%b%%� %�%�j%�j%� %�%�j%�%%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2080,'sa','product_information','%�j%c%%�%�%�j%�j%� j%�%�%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2081,'sa','unit','%�j%�j%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2082,'sa','unit_eg_kg_pc_etc','j%�%�%�j%�j%�j%# (%�j%�%� KG j%� Pc j%�%�j%�)','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2083,'sa','minimum_qty','j%�%�j%�j%� j%�%�j%�j%�%�%� %�%� j%�%�%�%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2084,'sa','tags','j%�%�j%c%%�j%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2085,'sa','type_and_hit_enter_to_add_a_tag','j%�%�j%�j%� %�j%�j%b%j%Q%j%V% j%c%%�%� Enter %�j%�j%b%j%�%�j%# j%c%%�j%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2086,'sa','barcode','j%�%�j%�j%�j%�%%�%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2087,'sa','refundable','%�j%%j%�j%�%j%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2088,'sa','product_images','j%a%%�j%�% j%�%�%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2089,'sa','gallery_images','%�j%c%j%�%j%b% j%�%�j%a%%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2090,'sa','todays_deal_updated_successfully','j%�%� j%�j%�j%�%�j%� j%a%%�%�j%# j%�%�%�%�%� j%�%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2091,'sa','published_products_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�%�j%�j%�j%�j%� j%�%�%�%�j%$%%�j%�%j%# j%�%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2092,'sa','thumbnail_image','j%a%%�j%�%j%# %�j%a%j%Q%j%�%j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2093,'sa','featured_products_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�%�j%�j%�j%�j%� j%�%�%�%�%�j%�%j%# j%�%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2094,'sa','product_videos','%�%�j%�%�%� j%�%�%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2095,'sa','video_provider','%�j%�%%�j%� j%�%�%�%�j%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2096,'sa','youtube','%�%�%�j%c% YouTube','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2097,'sa','dailymotion','j%�%�%�%� %�%�j%$%%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2098,'sa','vimeo','%�%�%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2099,'sa','video_link','j%�%j%�j%�j%V% j%�%�%�%�j%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2100,'sa','product_variation','j%�%�%�j%c% j%�%�%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2101,'sa','colors','j%�%�j%�%�%�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2102,'sa','attributes','j%�%�j%%%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2103,'sa','choose_attributes','j%�j%�j%�j%�% j%�%�j%%%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2104,'sa','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','j%�j%�j%�j%�% j%%%�j%�j%� %�j%�%j%� j%�%�%�%�j%�j%� j%�%� %�%�%� j%�%�j%�j%�j%�j%�%� %�%�%� j%%%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:12'),(2105,'sa','product_price__stock','j%%j%c%j%�% j%�%�%�%�j%�j%� + j%�%�j%�j%%%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2106,'sa','unit_price','j%%j%c%j%�% j%�%�%�j%�j%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2107,'sa','purchase_price','j%%j%c%j%�% j%�%�j%$%j%�%j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2108,'sa','flat','%�j%%j%V%j%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2109,'sa','percent','%�j%%j%�%� %�j%�%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2110,'sa','discount','j%�j%a%%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2111,'sa','product_description','%�j%a%%� j%�%�%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2112,'sa','product_shipping_cost','j%�%�%�%�j%# j%$%j%�%� j%�%�%�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2113,'sa','free_shipping','j%�%�j%$%j%�%� %�j%�j%�%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2114,'sa','flat_rate','j%%j%c%j%�% %�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2115,'sa','shipping_cost','j%�%�%�%�j%# j%�%�j%$%j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2116,'sa','pdf_specification','%�%�j%�j%a%%�j%�j%� PDF','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2117,'sa','seo_meta_tags','j%�%�j%c%%�j%�%�j%�j%� j%�%�%�j%a%%�%�j%# SEO','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2118,'sa','meta_title','j%c%%�%�j%�%� j%�%�%�%�%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2119,'sa','meta_image','j%a%%�j%�%j%# %�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2120,'sa','choice_title','j%c%%�%�j%�%� j%�%�j%�j%�j%�%�j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2121,'sa','enter_choice_values','j%�j%�j%�%� %�%�%� j%�%�j%�j%�j%�%�j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2122,'sa','all_categories','j%�%�%�j%c% j%�%�%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2123,'sa','add_new_category','j%�j%b%j%�%�j%# %�j%�j%# j%�j%�%�j%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2124,'sa','type_name__enter','j%�%�j%�j%� j%�%�j%�j%%%� %�j%�j%�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2125,'sa','banner','%�j%�%�j%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2126,'sa','commission','j%c%%�%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2127,'sa','icon','j%�%�%�%�%�j%#','2021-02-09 06:48:00','2021-02-09 06:48:00'),(2128,'sa','featured_categories_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�j%�j%�j%� j%�%�%�%�%�j%�%j%# j%�%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2129,'sa','hot','j%�%�j%�j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2130,'sa','filter_by_payment_status','j%�j%a%%�%�j%# j%�j%%j%� j%�j%�%�j%# j%�%�j%�%�j%c%','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2131,'sa','unpaid','j%Q%%�j%�% %�j%�%�%�j%c%j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2132,'sa','filter_by_deliver_status','j%�j%a%%�%�j%# j%�j%%j%� j%�j%%%�%�%� j%�%�j%�j%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2133,'sa','pending','%�%�j%� j%�%�j%�%�j%�j%U%j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2134,'sa','type_order_code__hit_enter','j%�%�j%�j%� j%�%%�j%�% j%�%�j%V%%�j%� %�j%�j%b%j%Q%j%V% j%c%%�%� Enter','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2135,'sa','num_of_products','j%�%%�%�. j%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2136,'sa','walk_in_customer','j%�j%�%�%� j%�%�j%c%%�%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2137,'sa','qty','j%�%�%�%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2138,'sa','without_shipping_charge','j%�j%�%�%� j%�%j%%%�%� j%�%�j%$%j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2139,'sa','with_shipping_charge','%�j%c% j%�%j%%%�%� j%�%�j%$%j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2140,'sa','pay_with_cash','j%�%�j%�%�j%c% %�%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2141,'sa','shipping_address','j%c%%�%�j%�%� j%�%�j%$%j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2142,'sa','close','%�j%�%%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2143,'sa','select_country','j%�j%�j%� j%�%�j%�%�%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2144,'sa','order_confirmation','j%�j%�%�%�j%� j%�%�j%V%%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2145,'sa','are_you_sure_to_confirm_this_order','%�%� j%�%�j%� %�j%�j%�%�j%� %�%� j%�j%�%�%�j%� %�j%�%j%� j%�%�j%V%%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2146,'sa','comfirm_order','j%�j%�%j%�%�j%� Comfirm','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2147,'sa','personal_info','%�j%c%%�%�%�j%�j%� j%$%j%�j%a%%�j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2148,'sa','repeat_password','j%�j%c%j%� %�%�%�j%# j%�%�j%%j%�%','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2149,'sa','shop_name','j%�j%%%� j%�%�%�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2150,'sa','register_your_shop','j%%j%�%� %�j%�j%�j%�%%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2151,'sa','affiliate_informations','j%�%�%�j%c%%�%�%�j%�j%� j%�%�j%�j%�j%�j%c%j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2152,'sa','affiliate','j%$%j%�%%�j%# j%�j%�j%�j%c%j%#','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2153,'sa','user_info','%�j%c%%�%�%�j%�j%� j%�%�%�j%%j%�j%�j%�%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2154,'sa','installed_addon','j%�%�%�%�j%�%� j%�%�%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2155,'sa','available_addon','j%�%�%�%�j%�%� j%�%�%�j%�j%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2156,'sa','install_new_addon','%�%� j%�j%�j%�j%�%�j%� %�%�j%�%� j%�j%�%�j%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2157,'sa','version','j%�%�j%�j%a%j%�j%�j%�%','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2158,'sa','activated','%�%�j%c%%�','2021-02-09 06:48:00','2021-09-20 07:29:13'),(2159,'sa','deactivated','%�j%c%j%V%%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2160,'sa','activate_otp','j%�%�j%c%%�%� OTP','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2161,'sa','otp_will_be_used_for','j%%%�j%�%� j%�j%%j%�j%�j%�j%�%� OTP %�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2162,'sa','settings_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%c%j%�j%�j%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2163,'sa','product_owner','%�j%�%�%� j%�%�%�%�j%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2164,'sa','point','%�%�j%V%j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2165,'sa','set_point_for_product_within_a_range','j%�j%c%%�%�%� %�%�j%V%j%# %�%�%�%�j%�j%� j%b%%�%� j%�%�%�j%V%j%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2166,'sa','set_point_for_multiple_products','j%�j%c%%�%�%� %�%�j%V%j%# %�%�%�j%�j%�j%�j%� %�j%�j%c%j%�j%�j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2167,'sa','min_price','j%%j%c%j%�% j%�%�%�%�j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2168,'sa','max_price','j%�%�j%a%%� j%%j%c%j%�%','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2169,'sa','set_point_for_all_products','j%�j%c%%�%�%� %�%�j%V%j%# %�j%�%�%�j%c% j%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2170,'sa','set_point_for_','j%�j%c%%�%�%� %�%�j%V%j%# %�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2171,'sa','convert_status','j%�j%�%�%�%� j%�%�j%�j%�%�j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2172,'sa','earned_at','j%�j%a%%� %�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2173,'sa','seller_based_selling_report','j%�%�j%�%%�j%�% j%�%�j%�%�j%c% j%�%�%�j%�j%�%� j%c%%�%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2174,'sa','sort_by_verificarion_status','%�j%�%j%�% j%�j%%j%� j%�j%�%�j%# j%�%�j%�j%�%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2175,'sa','approved','%�j%�%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2176,'sa','non_approved','%�%�j%% %�j%a%j%�%� j%c%%�%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2177,'sa','filter','%�%�%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2178,'sa','seller_name','j%�%�j%�j%�j%�j%c% j%�j%%%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2179,'sa','number_of_product_sale','j%c%j%�j%� j%�%�j%c% j%�%�%�%�j%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2180,'sa','order_amount','%�%�%�j%# j%�%�j%V%%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2181,'sa','facebook_chat_setting','j%�j%c%j%�j%�j%� j%�j%�%j%�j%$%j%# Facebook','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2182,'sa','facebook_page_id','%�j%c%j%�%%� j%a%%�j%�j%# j%�%�%�%�j%%j%�%�%�','2021-02-09 06:48:01','2021-09-20 07:29: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','%�j%�%j%�%� j%�%�j%�%� j%�%�j%�j%�%j%�% j%c%%�j%� j%�%�%�%�%� j%�j%�%j%�j%$%j%# Facebook. %�%�j%�%�%�%�%� j%Q%%�j%�% j%�%�j%a%j%�%�j%� j%� %�%� j%�j%�j%a%%� j%c%%�%� j%�%�%�%�%�j%# messenger j%c%%�%� %�%�%�j%c% j%�%�%�j%%j%�j%�j%�%� j%�%�j%�j%�j%a% j%�%�.','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2184,'sa','login_into_your_facebook_page','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� j%a%%�j%�j%# j%�%�%�%�j%%j%�%�%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2185,'sa','find_the_about_option_of_your_facebook_page','j%�j%�j%�j%� j%c%%� j%�%�j%�j%�% j%�%�%� j%a%%�j%�j%�%� j%c%%�%� Facebook','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2186,'sa','at_the_very_bottom_you_can_find_the_facebook_page_id','%�%� j%�%�j%�j%�%j%� j%�%�j%%%�%�%� j%� %�%�%�%�%� j%�%�j%c%j%�%�j%�% j%c%%�%� \\ \"%�j%c%j%�%%� j%a%%�j%�j%# Facebook \\\"','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2187,'sa','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','j%�%�j%�%�%� j%�%�%� j%�j%c%j%�j%�j%�j%�j%� j%a%%�j%�j%�%� %�j%�j%�j%�j%� j%c%%� j%�%�j%�j%�% \\ \"j%�%�j%�%�%� j%�%�j%�%j%%j%�j%�%� \\\"','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2188,'sa','scroll_down_that_page_and_you_will_get_white_listed_domain','%�j%�%j%�% %�j%�j%%%�%� j%�%�%� j%�%�j%a%%�j%�j%# %�j%%j%�j%�j%a%%� j%c%%�%� \\ \"j%�%�%�j%�j%�%� j%�%�%�j%�j%�%j%� %�%� j%�%�%�j%�j%�%�j%# j%�%�j%�%�j%b%j%�j%� \\\"','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2189,'sa','set_your_website_domain_name','%�%� j%�j%�j%c%%�%�%� j%�j%%%� %�j%�j%�%� %�%�%�j%c% j%�%�%�%�j%� j%�%�j%�j%�j%a% j%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2190,'sa','google_recaptcha_setting','j%�j%c%j%�j%�j%� Google reCAPTCHA','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2191,'sa','site_key','%�%�j%�j%�j%� j%�%�%�%�%�j%c%','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2192,'sa','select_shipping_method','j%�j%�j%�j%�% j%V%j%�%%�%�j%# j%�%�j%$%j%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2193,'sa','product_wise_shipping_cost','j%�%�%�%�j%# j%$%j%�%� j%�%�%�%�j%�j%� j%�%�j%�%�%�%�j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2194,'sa','flat_rate_shipping_cost','j%�%�%�%�j%# j%�%�j%$%j%�%� j%�j%%j%c%j%�% %�%�j%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2195,'sa','seller_wise_flat_shipping_cost','j%�%�j%�j%�j%�j%c% j%$%%�j%# j%�%�j%�%�%�j%# j%�j%�%�j%�% j%�%�j%$%j%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2196,'sa','note','%�%�j%�%�j%U%j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2197,'sa','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','j%�j%%j%�j%� j%�%�%�%�j%# j%�%�j%$%j%�%� j%�%�j%�%�%�%�j%# %�%�%�%�j%�j%�: %�j%�%� j%�j%%j%�j%� j%�%�%�%�j%# j%�%�j%$%j%�%� j%c%%� j%V%j%�%%�%� j%�j%b%j%�%�j%# j%�%�%�%�j%# j%$%j%�%� %�%� %�%�j%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2198,'sa','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','j%�j%%j%�j%� j%�%�%�%�j%# j%�%�j%$%j%�%� j%�j%�%�j%%j%c%j%�% j%�%�j%�j%�j%�j%�: %�j%� %�%�%� %�%� j%c%j%�j%� j%�%�%�%�j%�j%�j%�j%� j%�%�j%�%� %�j%$%j%�j%�%%�%�j%� j%�%�j%c%%�%�%�. j%�%�%�%�j%# j%�%�j%$%j%�%� j%�j%�j%�j%�j%#','2021-02-09 06:48:01','2021-09-20 07:29: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','j%�j%%j%�j%� j%�%�j%�j%�j%�j%c% %�j%�%�%�%�j%# j%�%�j%$%j%�%� j%�%�j%�j%�j%�j%�j%#: j%%j%c%j%�% j%�j%�j%�j%� %�%�%� j%�j%�j%�j%c%. j%�j%�%j%� %�j%�%� j%�%�j%c%%�%�%� j%�j%$%j%�%j%�j%� %�%�j%�j%�%�%� %�%� j%�j%�%�%�%� %�%� j%�%�%�%�j%# j%�%�j%$%j%�%� %�%�j%�j%�j%�j%c%%�%� j%� %�j%�%� j%�j%%j%�j%�%�j%� j%�j%�j%b%j%�%�j%# j%�%�%�%�j%# j%�%�j%$%j%�%� j%�%�j%�j%�j%�j%�j%# %�%�%� j%�j%�j%�j%c%','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2200,'sa','flat_rate_cost','j%�%�%�%�j%# j%�%�j%%j%c%j%�% j%�%�j%�j%�j%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2201,'sa','shipping_cost_for_admin_products','j%�%�%�%�j%# j%�%�j%$%j%�%� %�%�%�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%�%%�j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2202,'sa','countries','j%�%�j%�j%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2203,'sa','showhide','j%�j%U%%�j%�% j%�%�%�j%�%�%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2204,'sa','country_status_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# j%�%�j%�%�j%� j%�%�j%�j%�j%�','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2205,'sa','all_subcategories','j%�%�%�j%c% j%�%�%�j%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2206,'sa','add_new_subcategory','j%�j%b%j%�%�j%# %�j%�j%# %�j%�%j%c%%�j%# j%�j%�%�j%�j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2207,'sa','subcategories','j%�%�%�j%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 06:48:01','2021-09-20 07:29:13'),(2208,'sa','sub_category_information','%�j%c%%�%�%�j%�j%� j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%#','2021-02-09 06:48:25','2021-09-20 07:29:13'),(2209,'sa','slug','j%%j%�%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2210,'sa','all_sub_subcategories','j%�%�%�j%c% j%�%�%�j%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2211,'sa','add_new_sub_subcategory','j%�j%b%j%�%�j%# j%�j%a%%�%�%� %�j%�%j%c%%� j%�j%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2212,'sa','subsubcategories','j%�%�%�j%�j%�j%� j%�%�%�j%�%j%c%%�j%# j%�%�%�j%�%j%c%%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2213,'sa','make_this_default','j%�j%�j%c%%� %�j%�%j%� j%�%�j%�%�j%�j%�%j%�j%b%%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2214,'sa','shops','%�j%�%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2215,'sa','women_clothing__fashion','%�%�j%�j%�j%% %�%�%�j%b%j%# %�j%%j%�j%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2216,'sa','cellphones__tabs','j%�%�%�%�j%�j%�%� j%�%�%�j%�%�%�%�j%# %�j%c%%�j%�%�j%�j%� j%�%�j%�j%�%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2217,'sa','welcome_to','%�j%�%j%�j%�j%� j%�%� %�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2218,'sa','create_a_new_account','j%�%�j%$%j%�j%� j%�j%%j%�j%� j%�j%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2219,'sa','full_name','j%�%�j%�j%%%� j%�%�%�j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2220,'sa','password','%�%�%�%� j%�%�j%%j%�%','2021-02-09 06:48:26','2021-02-09 06:48:26'),(2221,'sa','confrim_password','j%�j%�%�%�j%� %�%�%�j%# j%�%�%�j%�%%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2222,'sa','i_agree_with_the','%�j%�%�j%� j%�j%�%�%� %�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2223,'sa','terms_and_conditions','j%�%�j%�j%�%�j%�%� %�j%�%�j%$%j%�%%�j%V%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2224,'sa','register','j%�j%%j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2225,'sa','already_have_an_account','%�%� %�j%�%�%� j%�j%%j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2226,'sa','sign_up_with','j%%j%�%� %�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2227,'sa','i_agree_with_the_terms_and_conditions','j%�%�%� j%�%�j%�%�%� j%c%%�%� j%�%�j%$%j%�%%�j%V% %�j%�%�j%U%j%�%%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2228,'sa','all_role','%�%� j%�%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2229,'sa','add_new_role','j%�j%b%j%�%�j%# j%�%�j%�% j%�j%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2230,'sa','roles','j%�%�j%�j%�%�j%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2231,'sa','add_new_staffs','j%�j%b%j%�%�j%# j%V%j%�%�%� j%c%%�%� j%�j%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2232,'sa','role','%�j%U%%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2233,'sa','frontend_website_name','j%�j%%%� %�%�%�j%c% j%�%�%�j%�j%�%�j%# j%�%�j%�%�j%�%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2234,'sa','website_name','j%�j%%%� j%�%�%�%�%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2235,'sa','site_motto','j%$%j%c%j%�j%�% j%�%�%�%�%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2236,'sa','best_ecommerce_website','j%�%�j%b%%� %�%�%�j%c% %�%�j%�j%�j%�j%�%j%# j%�%�j%�%�%�j%�j%�%%�%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2237,'sa','site_icon','j%�%�%�%�%�j%# j%�%�%�%�%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2238,'sa','website_favicon_32x32_png','j%�%�%�%�%�j%# %�%�%�j%c% j%�%�%�%�j%�. 32 %� 32. png','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2239,'sa','website_base_color','%�%�%� %�j%�j%c%j%�j%# j%�%�%�%�%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2240,'sa','hex_color_code','j%�%%�j%�% j%�%�%�%�%� j%�%�j%%j%�j%�j%%%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2241,'sa','website_base_hover_color','%�%�%� %�j%�j%c%j%�j%# %�%�%�j%c% j%�%�%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2242,'sa','update','j%�j%�j%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2243,'sa','global_seo','j%�%�j%c%j%�%�%�%�j%# j%%%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2244,'sa','meta_description','%�%�j%�j%� j%�%�%�j%a%%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2245,'sa','keywords','j%�%�%�%�%�j%�j%� j%�%�j%�j%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2246,'sa','separate_with_coma','%�j%a%%� %�j%c% j%Q%%�j%�%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2247,'sa','website_pages','j%a%%�j%�j%�j%� j%�%�%�%�%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2248,'sa','all_pages','%�%� j%�%�j%a%%�j%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2249,'sa','add_new_page','j%�j%b%%� j%a%%�j%�j%# j%�j%�%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2250,'sa','url','URL','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2251,'sa','actions','j%�j%�j%�%j%�j%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2252,'sa','edit_page_information','j%�j%�j%�%%�j%�% %�j%c%%�%�%�j%�j%� j%�%�j%a%%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2253,'sa','page_content','%�j%�j%�%�%� j%�%�j%a%%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2254,'sa','title','j%c%%�%�j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2255,'sa','link','j%�%�%�j%# j%�%�%�j%a%%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2256,'sa','use_character_number_hypen_only','j%�j%%j%�j%�j%�%� j%�%�j%�j%�%%� j%� j%�%�j%�%%�%� j%� j%�%�%�j%�j%a%%�j%# %�%�j%V%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2257,'sa','add_content','j%�j%b%j%�%�j%# %�j%�j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2258,'sa','seo_fields','j%%%�%� %�%�%�j%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2259,'sa','update_page','j%�j%�j%�%�j%� j%�%�j%a%%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2260,'sa','default_language','j%�%�%�j%Q%j%# j%�%�j%�%�j%�j%�%j%�j%b%%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2261,'sa','add_new_language','j%�j%b%%� %�j%Q%j%# j%�j%�%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2262,'sa','rtl','RTL','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2263,'sa','translation','j%�j%�%j%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2264,'sa','language_information','%�j%c%%�%�%�j%�j%� j%�%�%�j%Q%j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2265,'sa','save_page','j%�j%�%�j%U% j%�%�j%a%%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2266,'sa','home_page_settings','j%�j%c%j%�j%�j%�j%�j%� j%�%�j%a%%�j%�j%# j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2267,'sa','home_slider','j%�%�%�%�j%�%%� j%�%�%�%�j%�%%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2268,'sa','photos__links','j%�%�j%a%%�j%�% %�j%�%�j%�%%�j%�j%�j%V%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2269,'sa','add_new','j%�j%b%%� j%�j%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2270,'sa','home_categories','%�j%�j%�j%� j%�%�%�%�j%�%%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2271,'sa','home_banner_1_max_3','%�j%�%�j%�j%# j%�%�%�%�j%�%%� 1 (j%�%�j%�j%� j%�%�j%�%�j%a%%� 3)','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2272,'sa','banner__links','%�j%�%�j%�j%# %�j%�%%�j%�j%�j%V%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2273,'sa','home_banner_2_max_3','%�j%�%�j%�j%# j%�%�%�%�j%�%%� 2 (j%�%�j%�j%� j%�%�j%�%�j%a%%� 3)','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2274,'sa','top_10','j%�j%c%%�%� 10','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2275,'sa','top_categories_max_10','j%�%�%� j%�%�%�j%�j%�j%� (j%�j%�j%� j%�%�j%a%%� 10)','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2276,'sa','top_brands_max_10','j%�j%$%%�j%�% j%�%�%�j%�j%�%%�j%�j%� (j%�j%�j%� j%�%�j%a%%� 10)','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2277,'sa','system_name','j%�j%%%� j%�%�%�j%U%j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2278,'sa','system_logo__white','j%$%j%c%j%�j%�% j%�%�%�j%U%j%�%� - j%�j%�%�j%b%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2279,'sa','choose_files','j%�j%�j%�j%�% j%�%�%�%�%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2280,'sa','will_be_used_in_admin_panel_side_menu','j%%%�j%�%� j%�j%%j%�j%�j%�j%�%�%�j%� %�%� j%�%�%�j%�j%�%�j%# j%�%�j%�j%�%�j%�%�j%# %�%�%�j%�j%# j%�%�j%�j%�j%�j%�%j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2281,'sa','system_logo__black','j%$%j%c%j%�j%�% j%�%�%�j%U%j%�%� - j%�j%%%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2282,'sa','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','j%%%�j%�%� j%�j%%j%�j%�j%�j%�%�%�j%� %�%� j%�%�j%$%j%�%%�j%V% j%�%�j%c%%�%�%� %�%�%�j%�j%# j%�%�j%�j%�j%�j%�%j%# %�%� j%�%�j%�%�j%�%� + j%a%%�j%�j%# j%�j%%j%�%�%� j%�j%�%�%� j%�%�%�j%%j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2283,'sa','system_timezone','j%�%�%�%�j%V%%�j%# j%�%�j%�%%�%�%�j%# %�%�%�j%U%j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2284,'sa','admin_login_page_background','j%�%�%�%�j%# j%a%%�j%�j%# j%�j%%j%�%�%� j%�j%�%�%� j%�%�%�j%%j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2285,'sa','website_header','j%�%j%�j%% %�%�%�j%c% j%�%�%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2286,'sa','header_setting','j%�j%c%j%�j%�j%� j%�%�j%�%j%�j%%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2287,'sa','header_logo','j%�%j%�j%% j%�%�j%$%j%c%j%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2288,'sa','show_language_switcher','j%�j%U%%�j%�j%�% %�j%�%�%�%� j%�%�%�j%Q%j%#j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2289,'sa','show_currency_switcher','j%�j%U%%�j%�j%�% %�j%�%�%�%� j%�%�j%c%%�%�j%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2290,'sa','enable_stikcy_header','j%�%�%�%�%� j%�%j%�j%% stikcyj%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2291,'sa','website_footer','j%�j%�%%�%�%� %�%�%�j%c% j%�%�%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2292,'sa','footer_widget','j%�%�%�j%V%j%c%j%# j%�%�j%�j%�%%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2293,'sa','about_widget','j%�%�%� j%�%�%�j%V%j%c%j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2294,'sa','footer_logo','j%�j%�%%�%�%� j%�%�j%$%j%c%j%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2295,'sa','about_description','j%�%�%� j%�%�%�j%a%%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2296,'sa','contact_info_widget','j%�j%�j%�j%# %�j%c%%�%�%�j%�j%� j%�%�j%�j%�j%a%j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2297,'sa','footer_contact_address','j%c%%�%�j%�%� j%�j%�j%a%j%�%� j%�%�j%�j%�%%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2298,'sa','footer_contact_phone','%�j%�j%�%� j%�%�j%# j%�j%�j%a%j%�%� j%�%�j%�j%�%%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2299,'sa','footer_contact_email','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� %�j%�%�j%# j%�j%�j%a%j%�%� j%�%�j%�j%�%%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2300,'sa','link_widget_one','j%�%j%�j%�j%V% j%�%�%�j%V%j%c%j%# %�j%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2301,'sa','links','j%�%�j%�%%�j%�j%�j%V%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2302,'sa','footer_bottom','j%�j%%%�%� j%�%�j%�j%�%%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2303,'sa','copyright_widget_','j%�%�%�j%V%j%c%j%# j%�%�%�%� j%�%�j%V%j%�j%c% %�j%�%�%�j%$%j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2304,'sa','copyright_text','%�j%a% j%�%�%�%� j%�%�%�j%$%j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2305,'sa','social_link_widget_','j%�j%�j%�j%# j%�%�j%�j%�%j%�j%�j%�j%V% j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2306,'sa','show_social_links','j%�j%U%%�j%�j%�% j%�%�j%�%%�j%�j%�j%V% j%�%�j%�j%�j%�%�j%�j%c%%�j%#j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2307,'sa','social_links','j%�%%�j%�j%�j%V% j%�j%�j%�%�j%�j%c%%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2308,'sa','payment_methods_widget_','j%�j%�j%�j%# j%V%j%�%%� j%�%�j%�%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2309,'sa','rtl_status_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# RTL j%�%�j%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2310,'sa','language_changed_to_','j%�j%Q%%�j%�%j%� j%�%�%�j%Q%j%# j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2311,'sa','inhouse_product_sale_report','j%�%�j%�%%�j%�% j%�%�j%c% j%�%�%�%�j%�j%� j%�%�j%�j%�j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2312,'sa','sort_by_category','%�j%�%j%�% j%�j%%j%� j%�%�%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2313,'sa','product_wise_stock_report','j%�%�j%�%%�j%�% %�j%�j%�%%�%� j%�%�%�%�j%�j%� j%�%�j%�%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2314,'sa','currency_changed_to_','j%�j%Q%%�j%�%j%� j%�%�j%c%%�%�j%# j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2315,'sa','avatar','j%�%�j%a%%�j%�%j%# j%�%�j%�%%�j%�%%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2316,'sa','copy','%�j%%j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2317,'sa','variant','%�j%�j%Q%%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2318,'sa','variant_price','j%%j%c%j%�% %�j%�j%Q%%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2319,'sa','sku','SKU','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2320,'sa','key','%�%�j%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2321,'sa','value','j%�%�%�%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2322,'sa','copy_translations','%�j%%j%� j%�%�j%�j%�%j%�%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2323,'sa','all_pickup_points','j%�%�%�j%c% %�%�j%�j%V% j%�%�j%�j%%j%�%�j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2324,'sa','add_new_pickup_point','j%�j%b%%� %�%�j%V%j%# j%�%�j%�%�j%�j%V% j%�j%�%�j%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2325,'sa','manager','%�j%�%�j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2326,'sa','location','%�%�%�j%c%%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2327,'sa','pickup_station_contact','j%�%�j%�j%�j%a%j%�%� j%�%�j%�j%V%j%# j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2328,'sa','open','j%�%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2329,'sa','pos_activation_for_seller','j%�%�j%c%%�%� %�%�j%�j%V% j%�%�j%�%�j%c% %�%�j%�j%�j%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2330,'sa','order_completed_successfully','j%�%�j%�%�%� j%�%�j%V%%�j%� j%�%�j%�j%�j%�.','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2331,'sa','text_input','j%�j%�j%�j%�%� j%�%�%�j%a%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2332,'sa','select','j%�j%�j%�%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2333,'sa','multiple_select','j%�j%�j%�%�j%� %�j%�j%c%j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2334,'sa','radio','%�j%�%%�j%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2335,'sa','file','%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2336,'sa','email_address','j%c%%�%�j%�%� j%�j%�%%�j%� j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2337,'sa','verification_info','%�j%c%%�%�%�j%�j%� j%�%�j%�j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2338,'sa','approval','%�%�j%�%�%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2339,'sa','due_amount','%�j%�%�j%Q% %�j%%j%�j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2340,'sa','show','j%�j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2341,'sa','pay_now','j%�j%�%�j%c% j%�%�j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2342,'sa','affiliate_user_verification','j%�%�j%�j%�%�%� %�%� j%�%�%�j%%j%�j%�j%�%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2343,'sa','reject','j%�%%�j%b%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2344,'sa','accept','%�j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2345,'sa','beauty_health__hair','j%�%�j%�%�j%�%� %�j%�%�j%a%j%�j%# %�j%�%�j%$%j%c%j%�%','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2346,'sa','comparison','%�%�j%�j%�%%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2347,'sa','reset_compare_list','j%�j%c%j%�j%�j%# j%�j%c%%�%�%� %�j%�j%�%�j%# j%�%�%�%�j%�j%�%%�j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2348,'sa','your_comparison_list_is_empty','%�j%�j%�%�j%# j%�%�%�%�j%�j%�%%�j%# j%�%�j%�j%�j%a%j%# j%�%� %�j%�j%�%j%Q%j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2349,'sa','convert_point_to_wallet','j%�j%�%�%�%� j%�%�%�%�j%V%j%# j%�%�%� j%�%�%�j%�%�j%U%j%#','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2350,'sa','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','%�%�j%�j%�j%U%j%#: j%�%�j%� j%�j%�j%�j%�j%# j%�%�%� j%�%�j%$%%�j%V% j%�%�j%�j%�% j%�%�%�j%�%�j%U%j%# j%�%�%�j%�%� %�j%�%� j%�j%%j%�j%�j%�j%�%� %�%�j%�%� %�%�j%V%j%# j%�%�%�j%�j%�%�.','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2351,'sa','create_an_account','j%�%�j%$%j%� j%�j%%j%�j%�.','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2352,'sa','use_email_instead','j%�j%%j%�j%�j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� j%�j%�%�j%�%� %�%� j%�%%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2353,'sa','by_signing_up_you_agree_to_our_terms_and_conditions','j%�j%�%�j%�j%%j%�%�%� %�j%�%�%� j%�%�j%�%�%� j%c%%�%� j%�%�j%$%j%�%%�j%V% %�j%�%�j%�j%�%�j%�%� j%�%�j%�j%�j%a%j%# j%�%�j%�.','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2354,'sa','create_account','j%�%�j%$%j%�j%� j%�j%%j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2355,'sa','or_join_with','j%�%� j%�%�j%b%%� j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2356,'sa','already_have_an_account','%�%� %�j%�%�%� j%�j%%j%�j%�j%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2357,'sa','log_in','j%�j%%j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2358,'sa','computer__accessories','j%�%�%�%�j%�%�%�j%�j%�% %�%�%�j%�%�j%�j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2359,'sa','products','%�%�j%�j%�j%�j%�)','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2360,'sa','in_your_cart','%�%� j%c%j%�%j%�j%# j%�%�j%�j%%%�%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2361,'sa','in_your_wishlist','%�%� %�j%�j%�%�j%# j%�%�j%�%j%Q%j%�j%�j%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 06:48:26','2021-09-20 07:29:13'),(2362,'sa','you_ordered','%�%�j%� j%V%%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2363,'sa','default_shipping_address','j%c%%�%�j%�%� j%�%�j%$%j%�%� j%�%�j%�%�j%�j%�%j%�j%b%%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2364,'sa','sports__outdoor','j%�%%�j%�j%b%j%# %�j%�j%�j%�%j%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2365,'sa','copied','%�j%%j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2366,'sa','copy_the_promote_link','j%�%�j%%j%� j%�%j%�j%�j%V% j%�%�j%�j%�%%�%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2367,'sa','write_a_review','j%�%�j%�j%� %�j%�%j%�j%�j%c%j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2368,'sa','your_name','j%�j%%%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2369,'sa','comment','j%�j%c%%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2370,'sa','your_review','%�j%�%j%�j%�j%c%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2371,'sa','submit_review','j%�j%�%j%%j%�%� j%�%�%�j%�%j%�j%�j%c%j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2372,'sa','claire_willis','%�%�%�j%�% %�%�%�%�j%%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2373,'sa','germaine_greene','j%�%�j%�%%�%�%� j%�j%�%%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2374,'sa','product_file','%�%�%� j%�%�%�%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2375,'sa','choose_file','j%�j%�j%�j%�% %�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2376,'sa','type_to_add_a_tag','j%�%�j%�j%� %�j%�j%b%j%�%�j%# j%c%%�j%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2377,'sa','images','j%�%�j%a%%�j%�%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2378,'sa','main_images','j%�%�j%a%%�j%�% j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2379,'sa','meta_tags','j%�%�j%c%%�j%�%�j%�j%� j%�%�%�%�%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2380,'sa','digital_product_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�%�%�j%�j%� j%�%�j%�%%�%�%� j%�%�j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2381,'sa','edit_digital_product','j%�j%�j%�%%�j%�% j%�%�%�%�j%�j%� j%�%�j%�%%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2382,'sa','select_an_option','j%�j%�j%� j%�j%�j%�%�j%�j%�%j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2383,'sa','tax','j%b%j%�%%�j%�j%#','2021-02-09 06:48:27','2021-02-09 06:48:27'),(2384,'sa','any_question_about_this_product','j%�%� j%%j%�j%�%� j%�%�%� %�j%�%j%� j%�%�%�%�j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2385,'sa','sign_in','j%�j%%j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2386,'sa','login_with_google','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%c%j%�j%�% j%�%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2387,'sa','login_with_facebook','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�j%�j%%j%�j%�j%�j%�%� j%�%�%�%�j%%j%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2388,'sa','login_with_twitter','j%�j%%j%�%�%� j%�%�j%�j%�%�%� %�j%c% Twitter','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2389,'sa','click_to_show_phone_number','j%�%�%�j%�% %�j%�j%U%%�j%�j%�% j%�%%�%� j%�%�%�j%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2390,'sa','other_ads_of','j%�j%c%%�j%�%�j%�j%� j%�j%�j%�%%� %�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2391,'sa','store_home','%�j%�j%�%%� j%�%�%�%�j%�%%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2392,'sa','top_selling','j%�%�j%�%�j%�j%�% %�j%�%�j%c%j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2393,'sa','shop_settings','j%�j%c%j%�j%�j%�j%�j%� j%�%�%�j%�j%�j%�%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2394,'sa','visit_shop','%�%� j%�j%�%%�j%�j%�%j%# j%�%�%�j%�j%�j%�%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2395,'sa','pickup_points','%�%�j%�j%V% j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2396,'sa','select_pickup_point','j%�j%�j%� %�%�j%V%j%# j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2397,'sa','slider_settings','j%�j%c%j%�j%�j%�j%�j%� j%�%�%�%�j%�%%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2398,'sa','social_media_link','j%�%j%�j%�j%V% j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2399,'sa','facebook','%�%�%�j%c% j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%� j%�%�%�%�j%%j%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2400,'sa','twitter','j%�%�%�j%�j%�%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2401,'sa','google','j%�%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2402,'sa','new_arrival_products','%�%�j%�j%�j%�j%� %�j%a%%�%� j%�j%�%�j%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2403,'sa','check_your_order_status','j%�j%�%�%� %�%� j%�j%�%�j%# j%V%%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2404,'sa','shipping_method','j%V%j%�%%�%�j%# j%�%�j%$%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2405,'sa','shipped_by','j%�%� j%�%�j%$%j%�%� j%�%�j%�j%%j%V%j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2406,'sa','image','j%a%%�j%�%j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2407,'sa','sub_sub_category','%�j%�j%# %�j%�%j%c%%�j%# %�j%�%j%c%%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2408,'sa','inhouse_products','j%�%�%�%�j%�j%�j%�j%� j%�%�j%�j%�j%�%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2409,'sa','forgot_password','%�%� %�j%%%�j%� %�%�%�j%# j%�%�%�j%�%%�j%�%j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2410,'sa','enter_your_email_address_to_recover_your_password','j%�j%�j%�%� j%c%%�%�j%�%� j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%� %�j%�j%%j%�j%c%j%�j%�j%# %�%�%�j%# j%�%�%�j%�%%�j%�% j%�%�j%�j%�j%a%j%# j%�%�.','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2411,'sa','email_or_phone','j%�j%�%%�j%� j%�%�%�j%�j%�%%�%�%� j%�%� %�j%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2412,'sa','send_password_reset_link','j%�j%�%j%%j%�%� j%�%j%�j%�j%V% j%�j%c%j%�j%�j%# j%�j%c%%�%�%� %�%�%�j%# j%�%�j%%j%�%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2413,'sa','back_to_login','j%�%�j%c%%�j%�j%# j%�%�%� j%�j%%j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2414,'sa','index','%�%�j%�%j%%','2021-02-09 06:48:27','2021-02-09 06:48:27'),(2415,'sa','download_your_product','%�%� j%�j%�%�j%�%%�%� %�%�j%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2416,'sa','option','j%�j%�j%�%�j%�j%�%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2417,'sa','applied_refund_request','j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%� %�j%V%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2418,'sa','item_has_been_renoved_from_wishlist','j%�%�j%� j%�j%c%j%�j%�j%# j%�%�j%c%%�j%a%j%�% %�%� %�j%�j%�%�j%# j%�%�j%�%j%Q%j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2419,'sa','bulk_products_upload','j%�j%�%�%�%� j%�%�%�%�j%�j%�j%�j%� j%�j%�%�j%�%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2420,'sa','upload_csv','j%�j%�%�%�%� CSV','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2421,'sa','create_a_ticket','%�%� j%�j%�%�j%$%j%�j%� j%�j%�%%�j%�%j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2422,'sa','tickets','j%�j%�%j%�%�j%�%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2423,'sa','ticket_id','%�j%c%j%�%%� j%�%�j%�j%�%%�j%�%j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2424,'sa','sending_date','j%�j%�j%�%%�j%� j%�j%�%j%%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2425,'sa','subject','%�%�j%b%%�j%c%','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2426,'sa','view_details','j%c%j%�%j%b% j%�%�j%�%�j%�j%a%%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2427,'sa','provide_a_detailed_description','%�j%�%� %�j%a%%�j%�%� %�%�j%a%%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2428,'sa','type_your_reply','j%�%�j%�j%� j%�%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2429,'sa','send_ticket','j%�j%�%j%%j%�%� j%�%�j%�j%�%%�j%�%j%#','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2430,'sa','load_more','j%�j%�%�%�%� j%�%�%�j%�%%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2431,'sa','jewelry__watches','j%�%�%�j%�%�%�j%�%j%�j%� %�j%�%�j%%j%�j%c%j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:13'),(2432,'sa','filters','j%�%�%�j%�%j%$%j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2433,'sa','contact_address','j%c%%�%�j%�%� j%�%�j%�j%�j%a%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2434,'sa','contact_phone','%�j%�j%�%� j%�%�j%�j%�j%a%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2435,'sa','contact_email','j%�%�j%�j%a%%� j%�j%�%�j%�j%�%%�j%� j%�%�j%�%�j%�j%�%%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2436,'sa','filter_by','%�j%a%%�%� j%�%�j%�j%%j%V%j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2437,'sa','condition','j%$%j%�%j%V%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2438,'sa','all_type','%�%� j%�%�j%�%�%�j%�j%c%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2439,'sa','pay_with_wallet','j%�j%�%�j%c% j%�j%�%�%�j%�%�j%U%j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2440,'sa','select_variation','j%�j%�j%� j%�%�j%�j%�j%�%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2441,'sa','no_product_added','%�j%� %�%�j%�j%� %�%�j%�j%� %�j%b%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2442,'sa','status_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%�%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2443,'sa','all_seller_packages','j%�%�%�j%c% j%�j%�%%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2444,'sa','add_new_package','j%�j%b%j%�%�j%# j%�j%�%%�j%# j%�j%�%�j%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2445,'sa','package_logo','j%�j%�%%�j%# j%�%�j%$%j%c%j%�j%�%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2446,'sa','days','j%�%�j%�%�','2021-02-09 06:48:27','2021-02-09 06:48:27'),(2447,'sa','create_new_seller_package','j%�%�j%$%j%�j%� j%�j%�%%�j%# j%�j%�j%�j%c% j%�j%�%�j%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2448,'sa','package_name','j%�j%%%� j%�%�j%�j%�%%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2449,'sa','duration','j%�%�%�j%�j%# j%�%�j%�%%�%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2450,'sa','validity_in_number_of_days','j%�%�j%a%%�j%�j%�%�j%# %�%� j%c%j%�j%� j%�%�j%�%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2451,'sa','update_package_information','j%�j%�j%�%�j%� %�j%c%%�%�%�j%�j%� j%�%�j%�j%�%%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2452,'sa','package_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�j%�j%�%%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2453,'sa','refund_request','j%V%%�j%� j%�j%�%j%�j%�j%c%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2454,'sa','reason','j%�%�j%%j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2455,'sa','label','j%b%j%c% j%�%�%�%�%�j%# j%�%�%�%�j%�j%%j%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2456,'sa','select_label','j%�j%�j%� j%�%�j%�j%%%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2457,'sa','multiple_select_label','%�j%�j%c%j%�j%� j%�j%�j%�%�j%� j%�%�j%�j%%%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2458,'sa','radio_label','j%�j%%%�%�j%# j%�%�j%�%j%�j%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2459,'sa','pickup_point_orders','j%�%�j%�%�j%�% %�%�j%V%j%# j%�%�j%�j%%j%�%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2460,'sa','view','j%�%j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2461,'sa','order_','j%V%%�j%� #','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2462,'sa','order_status','j%�j%�%�j%# j%�%�j%V%%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2463,'sa','total_amount','j%�%�%�j%�%�j%Q% j%�%�j%�j%�%�j%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2464,'sa','total','%�j%�%�%�j%c%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2465,'sa','delivery_status_has_been_updated','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# j%�%�j%�j%%%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2466,'sa','payment_status_has_been_updated','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# j%�%�j%�%�j%c%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2467,'sa','invoice','%�j%�j%�%�j%�%j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2468,'sa','set_refund_time','j%b%j%�j%V% %�%�j%� j%�%�j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2469,'sa','set_time_for_sending_refund_request','j%�j%c%%�%�%� j%�%�%�%�j%� %�j%�j%�%j%%j%�%� j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2470,'sa','set_refund_sticker','j%�j%c%%�%�%� %�%�j%a%%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2471,'sa','sticker','%�%�j%a%%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2472,'sa','refund_request_all','j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%� j%�%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2473,'sa','order_id','j%�%%�%� j%�%�j%�j%c%j%�%%�%� j%�%�j%�j%�j%a% j%�j%�%�j%V%%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2474,'sa','seller_approval','%�%�j%�%�%�j%# j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2475,'sa','admin_approval','%�%�j%�%�%�j%# j%�%�%�j%%j%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2476,'sa','refund_status','j%�j%�%�j%# j%�%j%� j%�%�j%�%�%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2477,'sa','no_refund','%�j%� j%�%j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2478,'sa','status_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%�%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2479,'sa','user_search_report','j%�%�j%�%%�j%�% j%�j%�j%� j%�%�%�j%%j%�j%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2480,'sa','search_by','j%�%�j%�j%�j%� j%c%%� j%V%j%�%%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2481,'sa','number_searches','j%c%j%�j%� j%c%%�%�%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2482,'sa','sender','%�j%�%j%%%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2483,'sa','receiver','j%�%�%�j%�%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2484,'sa','verification_form_updated_successfully','j%�%� j%�j%�j%�%�j%� %�%�%�j%�%j%� j%�%�j%�j%�%�%� j%�%�j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2485,'sa','invalid_email_or_password','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� j%�%� %�%�%�j%# j%�%�j%%j%�% j%�j%�j%V%j%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2486,'sa','all_coupons','j%�%�%�j%c% j%�%�%�j%%j%�j%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2487,'sa','add_new_coupon','j%�j%b%%� %�j%%%�%�j%# j%�j%�%�j%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2488,'sa','coupon_information','%�j%c%%�%�%�j%�j%� j%�%�%�j%%%�%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2489,'sa','start_date','j%�j%�j%�%%�j%� j%�%�j%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2490,'sa','end_date','j%�j%�j%�%%�j%� j%�%�j%�%�j%�%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2491,'sa','product_base','%�j%�j%c%j%�j%# j%�%�%�%�j%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2492,'sa','send_newsletter','j%�j%�%j%%j%�%� j%�%�%�j%$%j%�%j%# j%�%�j%�j%�j%�j%�j%�%%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2493,'sa','mobile_users','%�j%%j%�j%�j%�%�%� j%�%�%�j%�%�%�%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2494,'sa','sms_subject','%�%�j%b%%�j%c% j%�%�j%�%j%%j%�j%�%� j%�%�%�j%a%%�j%�%j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2495,'sa','sms_content','%�j%�j%�%�%� j%�%�j%�%j%%j%�j%�%� j%�%�%�j%a%%�j%�%j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2496,'sa','all_flash_delas','%�%� %�%�j%�j%$% j%�%�%�j%�j%%','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2497,'sa','create_new_flash_dela','j%�%�j%$%j%�j%� %�%�j%�j%$% j%�%�%�j%� j%�j%�%�j%�','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2498,'sa','page_link','j%�%j%�j%�j%V% j%�%�j%a%%�j%�j%#','2021-02-09 06:48:27','2021-09-20 07:29:14'),(2499,'sa','flash_deal_information','%�j%c%%�%�%�j%�j%� j%a%%�%�j%# %�%�j%�j%$%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2500,'sa','background_color','%�%�%� j%�%�j%�%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2501,'sa','0000ff','# 0000ff','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2502,'sa','text_color','%�%�%� j%�%�j%�j%V%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2503,'sa','white','j%�j%�%�j%b%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2504,'sa','dark','j%�j%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2505,'sa','choose_products','j%�j%�j%�j%�% j%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2506,'sa','discounts','j%�%�j%�j%a%%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2507,'sa','discount_type','%�%�j%c% j%�%�j%�j%a%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2508,'sa','twillo_credential','j%�j%c%j%�%�j%�j%� Twillo','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2509,'sa','twilio_sid','TWILIO SID','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2510,'sa','twilio_auth_token','j%�%%�j%�% TWILIO AUTH','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2511,'sa','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2512,'sa','valid_twillo_number','j%�%%�%� j%�%�%�%�%� j%a%j%�%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2513,'sa','nexmo_credential','j%�j%c%j%�%�j%�j%� Nexmo','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2514,'sa','nexmo_key','NEXMO KEY','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2515,'sa','nexmo_secret','NEXMO SECRET','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2516,'sa','ssl_wireless_credential','j%�j%c%j%�%�j%�j%� %�j%�j%%%�%�%� SSL','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2517,'sa','ssl_sms_api_token','SSL SMS API TOKEN','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2518,'sa','ssl_sms_sid','SSL SMS SID','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2519,'sa','ssl_sms_url','j%c%%�%�j%�%� URL %�%� SSL SMS','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2520,'sa','fast2sms_credential','j%�j%c%j%�%�j%�j%� Fast2SMS','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2521,'sa','auth_key','%�%�j%�j%�j%� j%�%�%�j%a%j%�j%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2522,'sa','route','j%V%j%�%%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2523,'sa','promotional_use','j%�%�j%�j%%j%�j%�j%�j%�%� j%�%�j%�j%�%%�%�j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2524,'sa','transactional_use','j%�j%%j%�j%�j%�j%�%� j%�%�%�j%c%j%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2525,'sa','sender_id','%�%�%�j%# j%�%�%�j%�%j%%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2526,'sa','nexmo_otp','Nexmo OTP','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2527,'sa','twillo_otp','Twillo OTP','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2528,'sa','ssl_wireless_otp','SSL Wireless OTP','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2529,'sa','fast2sms_otp','Fast2SMS OTP','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2530,'sa','order_placement','j%�j%�%j%�%�j%� j%�%�j%�%�j%%%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2531,'sa','delivery_status_changing_time','%�%�j%� j%�j%Q%%�%�j%�% j%�j%�%�j%# j%�%�j%�j%%%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2532,'sa','paid_status_changing_time','%�%�j%� j%�j%Q%%�%�j%�% j%�%�j%�j%�%�j%# j%�%�%�j%�%�%�j%c%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2533,'sa','send_bulk_sms','j%�j%�%j%%j%�%� j%�%j%%j%�j%�%� %�j%a%%�j%# %�j%�%�j%c%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2534,'sa','all_subscribers','%�%� j%�%�%�j%$%j%�j%�%%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2535,'sa','coupon_information_adding','j%�j%b%j%�%�j%# %�j%c%%�%�%�j%�j%� j%�%�%�j%%%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2536,'sa','coupon_type','%�%�j%c% j%�%�%�j%%%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2537,'sa','for_products','%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2538,'sa','for_total_orders','%�j%�j%�%�j%�%�%� j%�%�j%V%%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2539,'sa','add_your_product_base_coupon','j%�j%b%%� %�j%%%�%�j%# %�j%�j%c%j%�j%# j%�%�%�%�j%�j%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2540,'sa','coupon_code','j%�%%�j%�% j%�%�%�%�j%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2541,'sa','sub_category','j%�j%a%%�%�%� %�j%�%j%c%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2542,'sa','add_more','j%�j%b%%� j%�%�%�j%�%%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2543,'sa','add_your_cart_base_coupon','j%�j%b%%� %�j%%%�%�j%# j%%%�j%# j%�%�j%�j%%%�%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2544,'sa','minimum_shopping','j%�%�j%�j%� j%�%�j%�j%�%�%� %�%� j%�%�j%�j%%%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2545,'sa','maximum_discount_amount','j%�%�j%�j%� j%�%�j%�%�j%a%%� %�%�j%�%�j%Q% j%�%�j%�j%a%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2546,'sa','coupon_information_update','j%�j%�j%�%�j%� %�j%c%%�%�%�j%�j%� j%�%�%�j%%%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2547,'sa','please_configure_smtp_setting_to_work_all_email_sending_funtionality','%�j%�%j%�%� j%�%�%�%�%� j%�j%c%j%�j%�j%� SMTP %�%�j%c%%�%� j%c%%�%� j%�%�%�j%c% %�j%U%j%�j%�%� j%�j%�%j%%j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2548,'sa','configure_now','j%�%�%�%�%� j%�%�j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2549,'sa','total_published_products','j%�j%�%�j%�%�%� j%�%�%�%�j%�j%�j%�j%� j%�%�%�%�j%$%%�j%�%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2550,'sa','total_sellers_products','j%�j%�%�j%�%�%� %�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2551,'sa','total_admin_products','j%�j%�%�j%�%�%� %�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%�%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2552,'sa','manage_products','j%�j%�j%�j%�%j%# j%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2553,'sa','total_product_category','%�j%�j%# j%�%�%�%�j%�j%� j%�%�j%�j%�%�j%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2554,'sa','create_category','j%�%�j%$%j%�j%� %�j%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2555,'sa','total_product_sub_sub_category','j%�j%�%�j%�%�%� %�j%�j%# %�j%�%j%c%%�j%# j%�%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2556,'sa','create_sub_sub_category','j%�%�%�%�%� %�j%�j%# %�j%�%j%c%%�j%# %�j%�%j%c%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2557,'sa','total_product_sub_category','j%�j%�%�j%�%�%� %�j%�j%# j%�%�%�%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2558,'sa','create_sub_category','j%�%�j%$%j%�j%� %�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2559,'sa','total_product_brand','j%�j%�%�j%�%�%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# %�%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2560,'sa','create_brand','j%�%�j%$%j%�j%� j%c%%�j%�%�j%# j%�j%�j%�j%�%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2561,'sa','total_sellers','%�j%�%�%�j%c% j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2562,'sa','total_approved_sellers','j%�j%�%�j%�%�%� j%�%�j%�j%�j%�j%c%%�%� j%�%�%�j%c%j%�%�j%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2563,'sa','total_pending_sellers','j%�j%�%�j%�%�%� j%�%�j%�j%�j%�j%c%%�%� j%�%�%�j%c%%�%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2564,'sa','manage_sellers','j%�j%�j%�j%�%j%# j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2565,'sa','category_wise_product_sale','j%�%�j%c% j%�%�%�%�j%�j%� %�%� %�j%�j%# j%�%�j%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2566,'sa','sale','j%�j%�%�%�j%b% j%�%�j%%j%c%j%�%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2567,'sa','category_wise_product_stock','%�j%�j%# %�j%�j%�%%�%� j%�%�%�%�j%�j%� j%�%�j%�%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2568,'sa','category_name','j%�j%%%� j%�%�j%�j%a%%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2569,'sa','stock','%�j%�j%�%%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2570,'sa','frontend','%�%�j%�%�j%# j%�%�%�%�j%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2571,'sa','home_page','j%�%�j%a%%�j%�j%# j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2572,'sa','setting','j%b%j%�j%V%','2021-02-09 06:48:28','2021-02-09 06:48:28'),(2573,'sa','policy_page','j%a%%�j%�j%# j%�%�j%%%�j%�j%%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2574,'sa','general','j%�%�j%�%j%�%� %�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2575,'sa','click_here','j%�%�%�j%�% %�%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2576,'sa','useful_link','j%�%j%�j%�j%V% %�%�%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2577,'sa','activation','j%�%�j%�%�j%$%%�j%V%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2578,'sa','smtp','SMTP','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2579,'sa','payment_method','j%V%j%�%%�%�j%# j%�%�j%�%�j%c% j%�%� j%�%�j%%j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2580,'sa','social_media','%�j%%j%�j%�%� j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2581,'sa','business','j%�j%c%%�j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2582,'sa','seller_verification','j%�%�j%�j%�%�%� %�%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2583,'sa','form_setting','%�j%b%j%c% j%�%�%�%�%�j%�%j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2584,'sa','language','%�j%Q%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2585,'sa','dashboard','%�%�j%�j%# j%�%�%�%�j%�j%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2586,'sa','pos_system','%�j%U%j%�%� %�%�j%�j%V% j%�%�j%�%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2587,'sa','pos_manager','%�j%�%�j%�% %�%�j%�j%V% j%�%�j%�%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2588,'sa','pos_configuration','j%�%�%�%�%� %�%�j%�j%V% j%�%�j%�%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2589,'sa','products','%�%�j%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2590,'sa','add_new_product','j%�j%b%j%�%�j%# %�%�j%�j%� j%�j%�%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2591,'sa','all_products','j%�%�%�j%c% j%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2592,'sa','in_house_products','%�%�j%�j%�j%�j%� j%�%�%�%�j%�%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2593,'sa','seller_products','%�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2594,'sa','digital_products','j%�%�%�%�j%�j%�j%�j%� j%�%�j%�%%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2595,'sa','bulk_import','j%�j%%j%�%�j%�%j%�j%� j%�j%�%�j%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2596,'sa','bulk_export','j%�j%a%j%�%�j%�% j%�j%�%�j%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2597,'sa','category','j%�%�%�j%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2598,'sa','subcategory','j%�j%a%%�%�%� %�j%�%j%c%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2599,'sa','sub_subcategory','%�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2600,'sa','brand','j%�%�%�j%�j%�%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2601,'sa','attribute','%�%�j%%j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2602,'sa','product_reviews','j%�j%c%%�%�%�j%�j%� j%�%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2603,'sa','sales','%�j%�%�j%c%j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2604,'sa','all_orders','j%�%�%�j%c% j%�%�j%V%%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2605,'sa','inhouse_orders','j%�%�j%�%�j%�% j%�j%�j%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2606,'sa','seller_orders','j%V%%�j%�j%�j%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2607,'sa','pickup_point_order','j%V%%�j%� %�%�j%V%j%# j%�%�j%�j%%j%�%�j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2608,'sa','refunds','j%�%�%�j%�j%�%�j%Q% j%�%�%�j%%j%�j%�%j%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2609,'sa','refund_requests','j%V%%�j%�j%�j%� j%�%�j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2610,'sa','approved_refund','j%�j%c%j%�j%�j%# j%�%�j%�%�%�j%�%� j%�%�%�j%c%j%�%�j%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2611,'sa','refund_configuration','j%�%�%�%�%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2612,'sa','customers','j%�%�j%c%%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2613,'sa','customer_list','%�j%�j%�%�j%# j%�%�j%c%%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2614,'sa','classified_products','j%�%�%�%�j%�j%�j%�j%� j%�%�%�j%�%�j%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2615,'sa','classified_packages','j%�%�j%�j%�%%� j%�%�%�j%a%%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2616,'sa','sellers','j%�%�j%�j%�j%c%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2617,'sa','all_seller','%�%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2618,'sa','payouts','j%�%�%�j%�%�%�j%c%j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2619,'sa','payout_requests','j%V%%�j%�j%�j%� j%�%�j%�%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2620,'sa','seller_commission','j%c%%�%�%�j%# j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2621,'sa','seller_packages','j%�j%�%%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2622,'sa','seller_verification_form','%�%�%�j%�%j%� j%�%�j%�j%�%�%� %�%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2623,'sa','reports','j%�%�j%�%�j%�j%�%%�j%�%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2624,'sa','in_house_product_sale','j%�%�j%c% j%�%�%�%�j%�j%�j%�j%� %�%� j%�%�%�%�j%�%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2625,'sa','seller_products_sale','j%�%�j%c% %�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2626,'sa','products_stock','%�j%�j%�%%�%� j%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2627,'sa','products_wishlist','%�j%�j%�%�j%# j%�%�%�%�j%�j%�j%�j%� j%�%�%�%�j%b%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2628,'sa','user_searches','j%c%%�%�%�j%�j%� j%�j%�j%� j%�%�%�j%%j%�j%�j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2629,'sa','marketing','j%�j%%%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2630,'sa','flash_deals','j%a%%�%�j%�j%� %�%�j%�j%$%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2631,'sa','newsletters','j%�%�%�j%$%j%�%j%�j%� j%�%�j%�j%�j%�j%�j%�%%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2632,'sa','bulk_sms','j%�%�j%�%j%%j%�j%�%� j%�%�%�j%a%%�j%�%j%# j%�j%�%�j%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2633,'sa','subscribers','%�j%$%j%�j%�%%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2634,'sa','coupon','j%�%�%�j%%%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2635,'sa','support','j%�%�j%�j%c%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2636,'sa','ticket','j%�j%�%%�j%�%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2637,'sa','product_queries','j%�j%%j%�%�j%%j%�j%�%j%�j%� j%�%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2638,'sa','website_setup','j%�j%c%j%�j%�j%� j%�%�%�%�%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2639,'sa','header','j%�%j%�j%%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2640,'sa','footer','j%�j%�%%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2641,'sa','pages','j%�%�j%a%%�j%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2642,'sa','appearance','%�j%U%%�j%�% j%�j%�j%�%j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2643,'sa','setup__configurations','j%�%�j%�j%c%j%�j%�j%� %�j%�%�j%�%�%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2644,'sa','general_settings','j%�%�j%�j%c%j%�j%�j%�j%�j%� j%�%�j%c%j%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2645,'sa','features_activation','j%�%�j%c%%�%� j%�%�%�%�j%�%j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2646,'sa','languages','j%�%�%�j%Q%j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2647,'sa','currency','j%c%%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2648,'sa','pickup_point','%�%�j%V%j%# j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2649,'sa','smtp_settings','j%�j%c%j%�j%�j%�j%�j%� SMTP','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2650,'sa','payment_methods','j%V%j%�%%� j%�%�j%�%�j%c%','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2651,'sa','file_system_configuration','j%�%�%�%�%� %�j%U%j%�%� j%�%�%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2652,'sa','social_media_logins','j%c%%�%�%�j%�j%� j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� %�j%%j%�j%�%� j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2653,'sa','analytics_tools','j%�j%�%�j%�j%� j%�%�j%�j%�%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2654,'sa','facebook_chat','j%�j%�%j%�j%$%j%# j%�%�%�%�j%%j%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2655,'sa','google_recaptcha','j%�%�j%�%� reCAPTCHA','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2656,'sa','shipping_configuration','j%�%�%�%�%� j%�%�j%$%j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2657,'sa','shipping_countries','j%�%�%� j%�%�j%$%j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2658,'sa','affiliate_system','%�j%U%j%�%� j%�%�j%�%�j%�j%%j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2659,'sa','affiliate_registration_form','j%�j%%j%�%�j%�j%�%j%# j%�j%%j%�%�%� j%�%�%�%�j%�j%%j%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2660,'sa','affiliate_configurations','j%�%�j%�%�%�%�%�j%�j%� j%�%�j%�j%�j%�j%c%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2661,'sa','affiliate_users','j%�%�%�j%%j%�j%�j%�%�%�%� j%�%�%�%�j%�j%%j%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2662,'sa','referral_users','j%�%�%�j%%j%�j%�j%�%�%�%� j%�%�%�j%�j%�%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2663,'sa','affiliate_withdraw_requests','j%V%%�j%�j%�j%� j%�%�j%%j%�j%� j%�%�j%�j%�j%�j%c%j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2664,'sa','offline_payment_system','%�j%U%j%�%� j%�%�j%�%�j%c% j%�%�%� j%�j%�j%a%j%�%� j%�j%�%�j%�%�j%�j%�%%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2665,'sa','manual_payment_methods','j%V%j%�%%� j%�%�j%�%�j%c% j%�%�%�j%�%�%�j%#','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2666,'sa','offline_wallet_recharge','j%�j%c%j%�j%�j%# j%$%j%�%� j%�%�%�j%�%�j%U%j%# j%�%�%� j%�j%�j%a%j%�%� j%�j%�%�j%�%�j%�j%�%%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2667,'sa','offline_customer_package_payments','%�j%�%�%�j%c%j%�j%� j%�j%�%%�j%# j%�%�j%c%%�%�j%�j%� j%Q%%�j%�% j%�%�%�j%�j%a%%�%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2668,'sa','offline_seller_package_payments','%�j%�%�%�j%c%j%�j%� j%�j%�%%�j%# j%�%�j%�j%�j%�j%c% j%Q%%�j%�% j%�%�%�j%�j%a%%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2669,'sa','paytm_payment_gateway','j%�%�j%�j%�j%# j%�%�j%�%�j%c% Paytm','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2670,'sa','set_paytm_credentials','%�%� j%�j%�j%c%%�%�%� j%�%�j%�%�j%�j%� j%�j%c%j%�%�j%�j%� Paytm','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2671,'sa','club_point_system','%�j%U%j%�%� %�%�%�j%� j%�%�%�%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2672,'sa','club_point_configurations','j%�%�%�%�%�j%�j%� %�%�%�j%� j%�%�%�%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2673,'sa','set_product_point','j%�j%c%%�%�%� %�%�j%V%j%# j%�%�%�%�j%�j%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2674,'sa','user_points','%�%�j%�j%V% j%�%�%�j%%j%�j%�j%�%�','2021-02-09 06:48:28','2021-09-20 07:29:14'),(2675,'sa','otp_system','%�j%U%j%�%� OTP','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2676,'sa','otp_configurations','j%�%�%�%�%�j%�j%� OTP','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2677,'sa','set_otp_credentials','%�%� j%�j%�j%c%%�%�%� j%�%�j%�%�j%�j%� j%�j%c%j%�%�j%�j%� OTP','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2678,'sa','staffs','j%V%j%�%�%� j%�%�j%c%%�%�','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2679,'sa','all_staffs','%�%� %�j%�%%�%� j%�%�j%c%%�%�','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2680,'sa','staff_permissions','j%�j%�%%�%�j%�j%� j%�%�%�%�j%U%%�%�%�','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2681,'sa','addon_manager','%�j%�%�j%�% j%�%�%�%�j%�%�','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2682,'sa','browse_website','j%�j%a%%�j%� j%�%�%�%�%�j%c%','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2683,'sa','pos','%�%�j%�j%V% j%�%�j%�%�j%c%','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2684,'sa','notifications','j%�j%$%j%c%j%�j%�%j%�j%�','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2685,'sa','new_orders','j%V%%�j%�j%�j%� j%�j%�%�j%�j%#','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2686,'sa','userimage','j%a%%�j%�%j%# j%�%�%�j%%j%�j%�j%�%�','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2687,'sa','profile','j%�%�%�%�%� j%�%�j%$%j%�j%a%%�','2021-02-09 06:48:29','2021-09-20 07:29:14'),(2688,'sa','logout','j%�j%%j%�%�%� j%�j%�%%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2689,'sa','page_not_found','j%�%�j%a%%�j%�j%# j%Q%%�j%�% %�%�j%�%�j%�j%#!','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2690,'sa','the_page_you_are_looking_for_has_not_been_found_on_our_server','%�%� %�j%�%� j%�%�j%c%j%�%�j%�% j%c%%�%� j%�%�j%a%%�j%�j%# j%�%�j%�%� j%�j%�j%�j%� j%c%%�%�j%� j%c%%�%� j%�j%�j%�%�%�j%�.','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2691,'sa','registration','j%�%�j%�j%%j%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2692,'sa','i_am_shopping_for','j%�%�j%� j%�j%�j%%%�%� %�j%�j%�%�...','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2693,'sa','compare','%�j%�j%�%%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2694,'sa','wishlist','%�j%�j%�%�j%# j%�%�j%�%j%Q%j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2695,'sa','cart','j%c%j%�%j%�j%# j%�%�j%�j%%%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2696,'sa','your_cart_is_empty','j%c%j%�%j%�j%# j%�%�j%�j%%%�%� %�j%�j%�%j%Q%j%#','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2697,'sa','categories','j%�%�j%�j%a%%�%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2698,'sa','see_all','j%�j%U%%�j%�j%�% j%�%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2699,'sa','seller_policy','j%%%�j%�j%%j%# j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2700,'sa','return_policy','j%%%�j%�j%%j%# j%�%�j%c%j%�j%�j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2701,'sa','support_policy','j%%%�j%�j%%j%# j%�%�j%�j%c%%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2702,'sa','privacy_policy','j%%%�j%�j%%j%# j%�j%�j%a%j%#','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2703,'sa','your_email_address','j%c%%�%�j%�%� j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2704,'sa','subscribe','j%�%�j%�j%$%j%�j%�%j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2705,'sa','contact_info','%�j%c%%�%�%�j%�j%� j%�%�j%�j%�j%a%j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2706,'sa','address','j%c%%�%�j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2707,'sa','phone','%�j%�j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2708,'sa','email','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2709,'sa','login','j%�j%%j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2710,'sa','my_account','j%�j%%j%�j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2711,'sa','order_history','j%�j%�j%�%%�j%� j%�%�j%V%%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2712,'sa','my_wishlist','%�j%�j%�%�j%# j%�%�%�%�j%�j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2713,'sa','track_order','j%�j%�%j%�%�j%� j%�%�%�j%%j%�j%�%','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2714,'sa','be_an_affiliate_partner','%�%� j%$%j%�%%�%�%�j%� j%�j%�j%�j%c%%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2715,'sa','be_a_seller','%�%� j%�j%�j%�j%c%j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2716,'sa','apply_now','%�j%�%� j%�%�j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2717,'sa','confirmation','j%�%�j%�j%�%�%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2718,'sa','delete_confirmation_message','j%�j%�%%� j%�%j%%j%�%�j%# j%�%�j%�j%�%�%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2719,'sa','cancel','j%�%�j%Q%j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2720,'sa','delete','j%�j%�%%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2721,'sa','item_has_been_added_to_compare_list','j%�%�j%� j%�j%b%j%�%�j%# j%�%�j%c%%�j%a%j%�% j%�%�%� %�j%�j%�%�j%# j%�%�%�%�j%�j%�%%�j%#','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2722,'sa','please_login_first','j%�%�j%�%j%�j%�j%� j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2723,'sa','total_earnings_from','j%�j%�%�j%�%�%� j%�%�j%�j%�%j%�j%�j%� %�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2724,'sa','client_subscription','j%�j%$%j%�j%�%j%�%� j%�%�j%c%%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2725,'sa','product_category','%�j%�j%# j%�%�%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2726,'sa','product_sub_sub_category','j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# %�%�%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2727,'sa','product_sub_category','%�j%�j%# j%�%�%�%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2728,'sa','product_brand','j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# j%�%�%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2729,'sa','top_client_packages','j%�j%�%%� j%�%�j%c%%�%�%� j%�%�j%�j%c%%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2730,'sa','top_freelancer_packages','j%�%�j%b%%� j%�%�j%�j%�%%� %�j%�j%%j%�j%�%�%� j%�%�j%�j%�j%a%','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2731,'sa','number_of_sale','j%�%%�%� j%�%�j%�%�j%c%','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2732,'sa','number_of_stock','j%c%j%�j%� j%�%�j%�j%%%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2733,'sa','top_10_products','j%�%�j%b%%� 10 %�%�j%�j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2734,'sa','top_12_products','j%�%�j%b%%� 12 %�%�j%�j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2735,'sa','admin_can_not_be_a_seller','%�j%� %�%�%�%� %�%�%�j%%j%�%�%� j%�%� %�%�%�%� j%�j%�j%�j%c%%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2736,'sa','filter_by_rating','j%�j%a%%�%�j%# j%�j%%j%� j%�%�j%�j%a%%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2737,'sa','published_reviews_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�j%�%j%�j%�j%c%j%�j%� j%�%�%�%�j%$%%�j%�%j%# j%�%�j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2738,'sa','refund_sticker_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� %�%�j%a%%� j%�%j%� j%�%�j%�%�%�j%�%� j%�%�j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2739,'sa','edit_product','j%�j%�j%�%%�j%�% j%�%�%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2740,'sa','meta_images','%�%�j%�j%� j%a%%�j%�%','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2741,'sa','update_product','j%�j%�j%�%�j%� j%�%�%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2742,'sa','product_has_been_deleted_successfully','j%�%� j%�j%�%%� j%�%�%�%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2743,'sa','your_profile_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� %�%�%�%� j%�%�j%$%j%�j%a%%� j%�%�j%�j%�j%�!','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2744,'sa','upload_limit_has_been_reached_please_upgrade_your_package','j%�%� j%�%�%�j%a%%�%� j%�%�%� j%�j%� j%�%�j%�j%�%�%�%�. j%�%�j%�%j%�j%�j%� j%�j%�%%�%�j%# j%�%�j%�j%�%%�j%# j%�%�j%�j%�j%a%j%# j%�%�.','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2745,'sa','add_your_product','j%�j%b%%� %�%�j%�j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:14'),(2746,'sa','select_a_category','j%�j%�j%�j%�% j%�j%a%%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2747,'sa','select_a_brand','j%�j%�j%�j%�% %�j%�j%�%%�j%#','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2748,'sa','product_unit','%�j%�j%�j%# j%�%�%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2749,'sa','minimum_qty','j%�%�j%�j%� j%�%�j%�j%�%�%� %�%� j%�%�%�%�%�j%#.','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2750,'sa','product_tag','j%c%%�j%�%�j%# j%�%�%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2751,'sa','type__hit_enter','j%�%�j%�j%� & j%�j%b%j%Q%j%V% j%�j%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2752,'sa','videos','j%�j%$%j%�%j%V%j%# %�%�j%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2753,'sa','video_from','%�%�j%�%�%� %�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2754,'sa','video_url','j%�%j%�j%�j%V% j%�%�%�%�j%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2755,'sa','customer_choice','j%�j%�j%�%�j%�j%�% j%�%�j%c%%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2756,'sa','pdf','j%�%� j%�%� j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2757,'sa','choose_pdf','j%�j%�j%�j%�% PDF','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2758,'sa','select_category','j%�j%�j%�j%�% j%�%�%�j%�j%#','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2759,'sa','target_category','j%�%�%�j%�j%# j%�%�%�j%%j%�%�j%�%�j%#','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2760,'sa','subsubcategory','%�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 06:48:49','2021-02-09 06:48:49'),(2761,'sa','search_category','%�j%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2762,'sa','search_subcategory','j%�j%�j%� %�j%�%j%c%%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2763,'sa','search_subsubcategory','j%�j%�j%� SubSubCategory','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2764,'sa','update_your_product','%�%� j%�j%�j%�j%�%�j%� %�%�j%�j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2765,'sa','product_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2766,'sa','add_your_digital_product','j%�j%b%%� %�%�j%�j%�%� j%�%�j%�%%�%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2767,'sa','active_ecommerce_cms_update_process','j%c%%�%�%�j%# j%�j%�j%�%�j%� CMS %�%�j%�j%�j%�j%�%j%# j%�%�j%�%�%�j%�j%�%%�%�%�j%# j%�%�%�j%$%j%V%j%#','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2768,'sa','codecanyon_purchase_code','%�%�j%� j%$%j%�%j%�j%� Codecanyon','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2769,'sa','database_name','j%�j%%%� %�j%�j%c%j%�j%# j%�%�j%�%�j%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2770,'sa','database_username','j%�j%%%� %�j%%j%�j%�j%�%� %�j%�j%c%j%�j%# j%�%�j%�%�j%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2771,'sa','database_password','%�%�%�j%# %�j%�%%�j%�% %�j%�j%c%j%�j%# j%�%�j%�%�j%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2772,'sa','database_hostname','j%�j%%%� %�j%b%%�%� %�j%�j%c%j%�j%# j%�%�j%�%�j%�%�j%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2773,'sa','update_now','j%�j%�j%�%�j%� j%�%�j%�%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2774,'sa','congratulations','j%�%�j%�%�%�%�j%�','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2775,'sa','you_have_successfully_completed_the_updating_process_please_login_to_continue','%�%�j%� j%�%�%�%�j%� j%�%�j%�j%�j%� j%c%%�%�%�j%# j%�%�j%�j%�j%�%�j%�. j%�%�j%�%j%�j%�j%� j%�j%%j%�%�%� j%�%�j%�j%�%�%� %�%�%�j%�j%�j%�j%c%j%#','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2776,'sa','go_to_home','j%�j%�%%�j%� j%�%�%� j%�%�j%a%%�j%�j%# j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2777,'sa','login_to_admin_panel','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� %�%�j%�j%# j%�%�j%�j%�j%�j%�%j%#','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2778,'sa','s3_file_system_credentials','j%�%�j%�%�j%�j%� j%�j%c%j%�%�j%�j%� %�j%U%j%�%� %�%�%� S3','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2779,'sa','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2780,'sa','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2781,'sa','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2782,'sa','aws_bucket','AWS_BUCKET','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2783,'sa','aws_url','AWS_URL','2021-02-09 06:48:49','2021-09-20 07:29:15'),(2784,'sa','s3_file_system_activation','j%�%�j%c%%�%� %�j%U%j%�%� %�%�%�j%�j%� S3','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2785,'sa','your_phone_number','j%�%%�%� j%�%�%�%�%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2786,'sa','zip_file','%�%�%� %�j%b%j%Q%%�j%V%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2787,'sa','install','j%�j%�j%�%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2788,'sa','this_version_is_not_capable_of_installing_addons_please_update','%�j%�%j%� j%�%�j%�j%a%j%�j%�j%�% j%Q%%�j%�% %�j%�j%�j%�% j%c%%�%� j%�j%�j%�%�j%� j%�%�%�%�j%�%�j%�j%� j%� %�j%�%j%�%� j%�%�j%�j%�j%�%�j%�.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2789,'sa','search_in_menu','j%�%�j%�j%�j%� %�%� j%�%�%�j%�j%�%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2790,'sa','uploaded_files','j%�%�%�%�%�j%�j%� j%�%�j%�%� %�j%�%� j%�j%�%�%�%�%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2791,'sa','shipping_cities','%�j%�%� j%�%�j%$%j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2792,'sa','system','j%�%�%�j%U%j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2793,'sa','server_status','j%�j%�%�j%# j%�%�%�%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2794,'sa','nothing_found','%�j%� j%$%%�j%� %�%�j%�%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2795,'sa','parent_category','j%�%�%�j%%%� j%�%�j%�%j%�%�j%%%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2796,'sa','level','%�j%%j%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2797,'sa','category_information','%�j%c%%�%�%�j%�j%� j%�%�%�j%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2798,'sa','translatable','%�j%�j%�%� %�%�j%�j%�%j%�%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2799,'sa','no_parent','%�j%� %�%�j%�j%� j%�j%a%%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2800,'sa','physical','j%�j%%j%�%� - j%�j%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2801,'sa','digital','j%�%%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2802,'sa','200x200','200 %� 200','2021-02-09 06:48:50','2021-02-09 06:48:50'),(2803,'sa','32x32','32x32','2021-02-09 06:48:50','2021-02-09 06:48:50'),(2804,'sa','search_your_files','j%�j%�j%�j%� %�%� %�%�%�j%�j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2805,'sa','category_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�j%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2806,'sa','all_uploaded_files','j%�%�%�j%c% j%�%�%�%�%�j%�j%� j%�%�%�j%�%%�%�j%c%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2807,'sa','upload_new_file','j%�j%�%�%�%� %�%�%� j%�j%�%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2808,'sa','all_files','%�%� j%�%�%�%�%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2809,'sa','search','j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2810,'sa','details_info','j%�%�j%�j%a%%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2811,'sa','copy_link','j%�%�j%%j%� j%�%�j%�%j%�j%�j%V%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2812,'sa','are_you_sure_to_delete_this_file','%�%� j%�%�j%� %�j%�j%�%�j%� %�%� j%�j%�%%� %�j%�%j%� j%�%�%�%�%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2813,'sa','file_info','%�j%c%%�%�%�j%�j%� j%�%�%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2814,'sa','link_copied_to_clipboard','j%�%� %�j%%j%� j%�%�j%�%j%�j%�j%V% j%�%�%� j%�%�j%�j%�%�j%U%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2815,'sa','oops_unable_to_copy','j%c%%�%�%�j%� j%� j%Q%%�j%�% %�j%�j%�j%�% j%c%%�%� j%�%�%�j%%j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2816,'sa','file_deleted_successfully','j%�%� j%�j%�%%� j%�%�%�%�%� j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2817,'sa','add_new_brand','j%�j%b%%� j%c%%�j%�%�j%# j%�j%�j%�j%�%%�j%# j%�j%�%�j%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2818,'sa','120x80','120 %� 80','2021-02-09 06:48:50','2021-02-09 06:48:50'),(2819,'sa','brand_information','%�j%c%%�%�%�j%�j%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2820,'sa','brand_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2821,'sa','brand_has_been_deleted_successfully','j%�%� j%�j%�%%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2822,'sa','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','%�j%�%j%� %�j%%j%�j%�j%�%� %�%�j%�j%�j%�. j%�j%�j%�%� j%�%�%� j%�%�%�%�%�j%�j%� j%�%�j%�%� %�%�%�%� %�%� cutomer j%�%�j%c%j%�%�j%�% j%c%%�%� %�j%�%j%� j%�%�%�%�j%�j%� %�%� j%�%�j%�%�%�j%�.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2823,'sa','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','%�j%�%%� j%�%�j%a%%�j%�% %�j%�%j%�%�j%# %�%� %�j%c%j%�%j%b% j%a%%�j%�j%# j%�%�j%�j%a%%�%� j%�%�%�%�j%�j%�. j%�j%%j%�j%�j%�%� j%a%%�j%�% j%�j%�j%�%� 600 %� 600.','2021-02-09 06:48:50','2021-09-20 07:29: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','%�j%�%%� j%�%�j%a%%�j%�%j%# %�j%�%j%�%�j%# %�%� %�%� j%c%%�j%�j%# j%�%�%�%�j%�j%�. j%�j%%j%�j%�j%�%� j%a%%�j%�%j%# j%�j%�j%�%� 300 %� 300. j%�j%�j%�%�j%U% j%�j%�j%c%j%b% j%�%�%�j%%j%�j%�j%# j%�%�%�j%�j%�%j%Q%j%# j%�%�%� j%�%�%�j%�j%�%� j%�%�j%�%j%�%�j%%%� %�j%a%%�j%�%j%�%� j%�%�j%� %�j%�%� j%c%%�%�%�j%� %�j%a% j%�j%c%j%b% j%�%�j%�%�j%�%� %�%� j%�j%�%�j%�%j%# %�j%�j%�%�%�j%# %�j%�j%c%%�%�j%� %�j%%j%�j%�%�j%�j%#.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2825,'sa','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','j%�j%%j%�j%�j%�%� j%�%�j%�j%�%j%�j%�j%�j%V% j%�%�%�%�j%�j%%j%� j%�j%�%�%� %�j%c%%�%�j%# j%�j%b%j%�%�%�j%#. %�j%� j%�j%%j%�j%�j%�%� j%�%j%�j%�j%V% j%�%�%�j%$%j%�j%�%%�j%# j%�%�%�j%a%%�j%�% / %�%�j%� iframe j%�%�%�j%b%%�%�.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2826,'sa','save_product','j%�%�j%U% j%�%�%�%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2827,'sa','product_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�%�%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2828,'sa','something_went_wrong','%�%�j%�%� j%�j%V%j%� %�j%�!','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2829,'sa','sorry_for_the_inconvenience_but_were_working_on_it','j%�j%%%� j%c%%�%� j%�%�j%�j%�%j%c%j%�j%� j%� %�%�%�%�j%� %�j%c%%�%� j%c%%�%� j%�%%�%�.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2830,'sa','error_code','j%�j%V%j%� j%�j%�%�%�%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2831,'sa','please_configure_smtp_setting_to_work_all_email_sending_functionality','%�j%�%j%�%� j%�%�%�%�%� j%�j%c%j%�j%�j%� SMTP %�%�j%c%%�%� j%c%%�%� j%�%�%�j%c% %�j%U%j%�j%�%� j%�j%�%j%%j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2832,'sa','order','j%V%%�j%�','2021-02-09 06:48:50','2021-09-20 07:29: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','%�j%�%�%�j%� j%�j%�%j%�%�j%�j%c% %�j%�j%�%�j%� %�%�j%�%�j%�j%# %�%�j%�%�j%�j%U% j%c%%�%� %�j%�j%�%�j%# j%�%�%�j%%j%�j%�j%�%�. %�j%�%� j%c%%�%�%�j%� j%�%�j%�%�j%�j%a%j%�j%a% %�%� %�%�j%� j%�%�j%�j%�%�j%�%�%� j%�%�j%�%�j%%j%�% %�j%�%�j%�%�%�%� %�%� j%c%j%�%j%b% j%�%�j%�j%�%�j%�%j%# j%�%�%�j%�j%�%�%�j%# %�j%�j%c%%�%�j%� %�j%%j%�j%�%�j%�j%#. %�j%�%� j%�j%a%%�%�%� %�j%�%�j%�j%# j%b%j%c% %�j%�%%� j%�%�%�%�j%�j%V% %�%� j%�%�j%�j%c%j%�j%�j%�j%�%.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2834,'sa','home_banner_3_max_3','%�j%�%�j%�j%# j%�%�%�%�j%�%%� 3 (j%�%�j%�j%� j%�%�j%�%�j%a%%� 3)','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2835,'sa','add_new_seller','j%�j%b%j%�%�j%# j%�j%�j%�j%c% j%�j%�%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2836,'sa','filter_by_approval','j%�j%a%%�%�j%# j%�j%%j%� j%�%�%�%�j%�%�%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2837,'sa','nonapproved','%�%�j%% %�j%a%j%�%� j%c%%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2838,'sa','type_name_or_email__enter','j%�%�j%�j%� j%�%�j%�j%%%� j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� %�j%�j%�j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2839,'sa','due_to_seller','%�j%%j%�j%�%� %�%�j%�j%�j%�j%c%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2840,'sa','log_in_as_this_seller','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�j%�j%%%� %�j%�%j%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2841,'sa','go_to_payment','j%�%�j%�%�%� j%�%�%� j%�%�j%�%�j%c%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2842,'sa','ban_this_seller','j%�j%U%j%�% %�j%�%j%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2843,'sa','do_you_really_want_to_ban_this_seller','%�%� j%�j%�%%�j%� j%�%�%�j%� j%�j%U%j%�% %�j%�%j%� j%�%�j%�j%�j%�j%c%j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2844,'sa','proceed','j%�%�j%�%�!','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2845,'sa','approved_sellers_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%�j%�j%c%%�%� j%�%�%�j%c%j%�%�j%�%�%� j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2846,'sa','seller_has_been_deleted_successfully','j%�%� j%�j%�%%� j%�%�j%�j%�j%�j%c% j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2847,'sa','seller_information','%�j%c%%�%�%�j%�j%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2848,'sa','seller_has_been_inserted_successfully','j%�%� j%�j%�j%�%j%�j%� j%�%�j%�j%�j%�j%c% j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2849,'sa','email_already_exists','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� %�%�j%�%�j%� j%�j%�%�%�j%c%%�!','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2850,'sa','verify_your_email_address','j%�j%�%�%� %�%� j%c%%�%�j%�%� j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2851,'sa','before_proceeding_please_check_your_email_for_a_verification_link','%�j%�%� j%�%�%�j%�j%�j%�j%c%j%# j%� %�j%�%j%�%� j%�%�j%�j%�%�%� %�%� j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%� %�%�j%�j%a%%�%� j%c%%�%� j%�%j%�j%�j%V% j%�%�j%�j%�%�%�.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2852,'sa','if_you_did_not_receive_the_email','j%�j%�%j%� %�%� j%�j%%j%�%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2853,'sa','click_here_to_request_another','j%�%�%�j%�% %�%�j%� %�j%V%%�j%� j%�j%�j%�%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2854,'sa','email_verification','j%�j%�%�%�j%� j%�%�j%�j%%j%V%j%# j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2855,'sa','email_verification__','j%�j%�%�%�j%� j%�%�j%�j%%j%V%j%# j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� -','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2856,'sa','https_activation','j%�%�j%c%%�%� HTTPS','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2857,'sa','maintenance_mode','%�%�j%V% j%�%�j%a%%�j%�%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2858,'sa','maintenance_mode_activation','j%�%�j%c%%�%� %�j%b%j%c% j%�%�j%a%%�j%�%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2859,'sa','classified_product_activate','j%�%�j%$%%�j%V% j%�%�%�%�j%�j%� j%�%�%�j%a%%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2860,'sa','classified_product','%�%�j%�j%� %�j%a%%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2861,'sa','business_related','j%�%�j%�j%c%%�j%�%� j%�%j%�j%� j%�%�j%a%%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2862,'sa','vendor_system_activation','j%�%�j%c%%�%� %�j%U%j%�%� j%�%�j%�j%�j%�j%c%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2863,'sa','wallet_system_activation','j%�%�j%c%%�%� %�j%U%j%�%� j%�%�%�j%�%�j%U%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2864,'sa','coupon_system_activation','j%�%�j%c%%�%� %�j%U%j%�%� j%�%�%�j%%%�%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2865,'sa','pickup_point_activation','j%�%�j%c%%�%� %�%�j%V%j%# j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2866,'sa','conversation_activation','j%�%�j%c%%�%� j%�%�%�j%�j%�j%�j%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2867,'sa','guest_checkout_activation','j%�%�j%c%%�%� j%�j%%j%�%�%� j%�j%�%%�j%� j%�%�j%b%%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2868,'sa','categorybased_commission','j%c%%�%�%�j%# j%c%%�%� j%�j%%j%�j%% j%�%�%�j%�j%#','2021-02-09 06:48:50','2021-09-20 07:29: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','j%�j%c%j%� j%�%�j%c%%�%� %�j%�%j%� j%�%�j%�%�j%�j%�% j%� j%%%�j%�%� j%�j%c%j%V%%�%� j%c%%�%�%�j%# j%�%�j%�j%�j%�j%c% %�j%�j%�j%�j%�j%� j%�%�%� j%�j%c%%�%�%� j%�%�j%c%%�%�%�j%# j%c%%�%� %�%� %�j%�j%# %�j%�%�j%� %�%�%� %�j%�j%a%%� j%�%�%�j%%j%�%�%� j%c%%�%� j%�%� j%c%%�%�%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2870,'sa','set_commisssion_now','j%�j%c%%�%�%� %�%�%�%�j%%%�%�%� j%�%�j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2871,'sa','payment_related','j%�%�j%�%�j%c% j%�%j%�j%� j%�%�j%a%%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2872,'sa','paypal_payment_activation','j%�%�j%c%%�%� j%�%�j%�%�j%c% j%�j%�%� j%�j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2873,'sa','you_need_to_configure_paypal_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Paypal j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2874,'sa','stripe_payment_activation','j%�%�j%c%%�%� j%�%�j%�%�j%c% j%c%j%�j%�% j%�%�j%$%j%�%%�j%V%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2875,'sa','sslcommerz_activation','j%�%�j%c%%�%� SSlCommerz','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2876,'sa','instamojo_payment_activation','j%�%�j%c%%�%� j%�%�j%�%�j%c% Instamojo','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2877,'sa','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Instamojo Payment j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2878,'sa','razor_pay_activation','j%�%�j%c%%�%� j%�%�j%c% j%�%�j%�%�j%�%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2879,'sa','you_need_to_configure_razor_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Razor j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2880,'sa','paystack_activation','j%�%�j%c%%�%� PayStack','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2881,'sa','you_need_to_configure_paystack_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� PayStack j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2882,'sa','voguepay_activation','j%�%�j%c%%�%� VoguePay','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2883,'sa','you_need_to_configure_voguepay_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� VoguePay j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2884,'sa','payhere_activation','j%�%�j%c%%�%� Payhere','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2885,'sa','ngenius_activation','j%�%�j%c%%�%� Ngenius','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2886,'sa','you_need_to_configure_ngenius_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Ngenius j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2887,'sa','iyzico_activation','j%�%�j%c%%�%� Iyzico','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2888,'sa','you_need_to_configure_iyzico_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� iyzico j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2889,'sa','bkash_activation','j%�%�j%c%%�%� j%�%�j%�j%$%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2890,'sa','you_need_to_configure_bkash_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� bkash j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2891,'sa','nagad_activation','j%�%�j%c%%�%� %�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2892,'sa','you_need_to_configure_nagad_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� nagad j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2893,'sa','cash_payment_activation','j%�%�j%c%%�%� j%�%�j%�%�j%c% j%�%�%�%�j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2894,'sa','social_media_login','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� %�j%%j%�j%�%� j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2895,'sa','facebook_login','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� j%�%�%�%�j%%j%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2896,'sa','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Facebook Client j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2897,'sa','google_login','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� Google','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2898,'sa','you_need_to_configure_google_client_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� j%c%%�%�%� Google j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2899,'sa','twitter_login','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� Twitter','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2900,'sa','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� j%c%%�%�%� j%�%�%�j%�j%�% j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2901,'sa','shop_logo','%�j%�j%�j%�% j%�%�j%$%j%c%j%�j%�%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2902,'sa','shop_address','j%c%%�%�j%�%� j%�%�%�j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2903,'sa','banner_settings','j%�j%c%j%�j%�j%�j%�j%� j%�%�j%�j%�%�j%�%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2904,'sa','banners','%�j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29: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','%�j%�%� j%c%%�%�%�j%� j%�j%�j%�%�j%� j%�%�j%�j%�%j%�%�j%�j%c% %�%�j%�%�j%�j%U% j%c%%�%� j%�%�j%�j%�j%%j%�%�. %�%� j%�j%c%j%b% j%�%�j%�j%�%�j%�%j%# j%� %�j%� %�j%�%� j%�%�j%�j%a%j%�j%a% %�%�j%� j%�j%�%�j%�%� j%�%�j%$%j%c%j%�j%�% %�%�j%�j%� %�%� j%�%�j%�j%�%j%�%�j%�j%c%.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2906,'sa','insert_link_with_https_','j%�j%�j%�%� j%�%�j%�j%�%j%�j%�j%�j%V% %�j%c% https','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2907,'sa','your_shop_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� %�j%�j%�j%�%%� j%�%�j%�j%�j%�!','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2908,'sa','search_result_for_','%�j%�%�j%�j%# j%�%�j%�j%�j%� j%c%%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2909,'sa','brand_has_been_inserted_successfully','j%�%� j%�j%�j%�%j%�j%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2910,'sa','about','j%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2911,'sa','payout_info','%�j%c%%�%�%�j%�j%� j%�%�j%�%�j%c%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2912,'sa','bank_acc_name','j%�j%%%� j%�j%%j%�j%� j%�%�j%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2913,'sa','bank_acc_number','j%�%%�%� j%�j%%j%�j%� j%�%�j%�%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2914,'sa','total_products','j%�j%�%�j%�%�%� j%�%�%�%�j%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2915,'sa','total_sold_amount','j%�j%�%�j%�%�%� j%�%�%�j%�%�j%Q% j%�%�%�j%�j%�j%c%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2916,'sa','wallet_balance','j%�%j%a%%�j%� j%�%�%�j%�%�j%U%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2917,'sa','cookies_agreement','j%�j%�%�j%�%�%�j%# %�%�%�j%�j%� j%�j%c%j%�%%�%� j%�%�j%�j%�%j%�j%�j%�j%V%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2918,'sa','cookies_agreement_text','%�j%a% j%�j%�%�j%�%�%�j%# %�%�%�j%�j%� j%�j%c%j%�%%�%� j%�%�j%�j%�%j%�j%�j%�j%V%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2919,'sa','show_cookies_agreement','j%�j%U%%�j%�j%�% j%�j%�%�j%�%�%�j%# %�%�%�j%�j%� j%�j%c%j%�%%�%� j%�%�j%�j%�%j%�j%�j%�j%V%j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2920,'sa','custom_script','j%�j%�%%�j%�%�j%� %�j%a%%� %�j%�j%a%j%a%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2921,'sa','header_custom_script__before_head','j%�%�j%�j%�%%�j%�%�j%� j%�%�%�j%a%%� j%�%�%�j%�j%a%j%a% %�%�j%�%j%�j%% - %�j%�%� </head>','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2922,'sa','write_script_with_script_tag','j%�%�j%�j%� j%�%�j%�j%�%%�j%�%�j%� j%�%�%�j%a%%� j%�j%c%%�j%�%�j%# <script>','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2923,'sa','footer_custom_script__before_body','j%�%�j%�j%�%%�j%�%�j%� j%�%�%�j%a%%� j%�%�%�j%�j%a%j%a% %�%�j%�j%�%%�%�%� - %�j%�%� </ body>','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2924,'sa','category_has_been_inserted_successfully','j%�%� j%�j%�j%�%j%�j%� j%�%�%�j%�j%# j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2925,'sa','all_flash_deals','j%�%�%�j%c% j%c%j%�%%�j%b% %�%�j%�j%$%','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2926,'sa','create_new_flash_deal','j%�%�j%$%j%�j%� j%a%%�%�j%# %�%�j%�j%$% j%�j%�%�j%�j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2927,'sa','ffffff','#FFFFFF','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2928,'sa','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','j%�j%U%%�j%�% %�j%�%%� j%�%�j%a%%�j%�%j%# %�j%�j%�%�j%�% j%Q%%�j%�%� %�%� j%a%%�j%�j%# j%�%�j%�j%a%%�%� j%a%%�%�j%# %�%�j%�j%$%.','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2929,'sa','flash_deal_has_been_inserted_successfully','j%�%� j%�j%�j%�%j%�j%� j%c%j%�%j%b% j%�%�%�%�j%�j%$% j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2930,'sa','flash_deal_status_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# j%a%%�%�j%# j%�%�%�%�j%�j%$% j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2931,'sa','flash_deal_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%a%%�%�j%# j%�%�%�%�j%�j%$% j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2932,'sa','update_language_info','j%�j%�j%�%�j%� %�j%c%%�%�%�j%�j%� j%�%�%�j%Q%j%#','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2933,'sa','language_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�j%Q%j%# j%�%�j%�j%�j%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2934,'sa','type_key__enter','j%�%�j%�j%� %�%�j%�j%�j%� %�j%�j%�j%�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2935,'sa','translations_updated_for_','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%�%j%�%�j%�j%� %�%�','2021-02-09 06:48:50','2021-09-20 07:29:15'),(2936,'en','language_has_been_inserted_successfully','Language has been inserted successfully','2021-02-09 06:54:07','2021-09-20 07:29:15'),(2937,'es','all_category','Todas las categor%�as','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2938,'es','all','Todos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2939,'es','flash_sale','Venta express','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2940,'es','view_more','Ver m%�s','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2941,'es','add_to_wishlist','A%�%adir a la lista de deseos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2942,'es','add_to_compare','A%�%adir a comparar','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2943,'es','add_to_cart','A%�%adir a la cesta','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2944,'es','club_point','Punto Club','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2945,'es','classified_ads','Anuncios clasificados','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2946,'es','used','Usado','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2947,'es','top_10_categories','10 categor%�as principales','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2948,'es','view_all_categories','Ver todas las categor%�as','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2949,'es','top_10_brands','Las 10 mejores marcas','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2950,'es','view_all_brands','Ver todas las marcas','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2951,'es','terms__conditions','T%#rminos y condiciones','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2952,'es','best_selling','M%�s vendido','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2953,'es','top_20','Top 20','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2954,'es','featured_products','Productos Destacados','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2955,'es','best_sellers','M%�s vendidos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2956,'es','visit_store','Visita la tienda','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2957,'es','popular_suggestions','Sugerencias populares','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2958,'es','category_suggestions','Sugerencias de categor%�a','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2959,'es','automobile__motorcycle','Autom%%vil y motocicleta','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2960,'es','price_range','Rango de precios','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2961,'es','filter_by_color','Filtrar por color','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2962,'es','home','Hogar','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2963,'es','newest','El m%�s nuevo','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2964,'es','oldest','M%�s antiguo','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2965,'es','price_low_to_high','Precios de barato a caro','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2966,'es','price_high_to_low','Precio de mayor a menor','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2967,'es','brands','Marcas','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2968,'es','all_brands','Todas las marcas','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2969,'es','all_sellers','Todos los vendedores','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2970,'es','inhouse_product','Producto interno','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2971,'es','message_seller','Vendedor de mensajes','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2972,'es','price','Precio','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2973,'es','discount_price','Precio de descuento','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2974,'es','color','Color','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2975,'es','quantity','Cantidad','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2976,'es','available','disponible','2021-02-09 06:55:44','2021-02-09 06:55:44'),(2977,'es','total_price','Precio total','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2978,'es','out_of_stock','Agotado','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2979,'es','refund','Reembolso','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2980,'es','share','Compartir','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2981,'es','sold_by','Vendido por','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2982,'es','customer_reviews','Valoraci%%n de los clientes','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2983,'es','top_selling_products','Productos m%�s vendidos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2984,'es','description','Descripci%%n','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2985,'es','video','V%�deo','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2986,'es','reviews','Rese%�%as','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2987,'es','download','Descargar','2021-02-09 06:55:44','2021-09-20 07:29: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 06:55:44','2021-09-20 07:29:15'),(2989,'es','related_products','Productos relacionados','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2990,'es','any_query_about_this_product','Cualquier consulta sobre este producto','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2991,'es','product_name','nombre del producto','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2992,'es','your_question','Tu pregunta','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2993,'es','send','Enviar','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2994,'es','use_country_code_before_number','Use el c%%digo de pa%�s antes del n%Q%mero','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2995,'es','remember_me','Recu%#rdame','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2996,'es','dont_have_an_account',',%%No tienes una cuenta?','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2997,'es','register_now','Reg%�strate ahora','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2998,'es','or_login_with','O inicie sesi%%n con','2021-02-09 06:55:44','2021-09-20 07:29:15'),(2999,'es','oops','Ups ..','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3000,'es','this_item_is_out_of_stock',',%�Este art%�culo no est%� en inventario!','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3001,'es','back_to_shopping','De vuelta a las compras','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3002,'es','login_to_your_account','Ingrese a su cuenta.','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3003,'es','purchase_history','Historial de compras','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3004,'es','new','Nuevo','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3005,'es','downloads','Descargas','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3006,'es','sent_refund_request','Solicitud de reembolso enviada','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3007,'es','product_bulk_upload','Carga masiva de productos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3008,'es','orders','Pedidos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3009,'es','recieved_refund_request','Solicitud de reembolso recibida','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3010,'es','shop_setting','Configuraci%%n de la tienda','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3011,'es','payment_history','historial de pagos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3012,'es','money_withdraw','Retirar dinero','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3013,'es','conversations','Conversaciones','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3014,'es','my_wallet','Mi billetera','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3015,'es','earning_points','Ganar puntos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3016,'es','support_ticket','Ticket de soporte','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3017,'es','manage_profile','Administrar perfil','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3018,'es','sold_amount','Cantidad vendida','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3019,'es','your_sold_amount_current_month','Su cantidad vendida (mes actual)','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3020,'es','total_sold','Total vendido','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3021,'es','last_month_sold','%�ltimo mes vendido','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3022,'es','total_sale','Venta total','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3023,'es','total_earnings','Ganancias Totales','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3024,'es','successful_orders','%�rdenes exitosas','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3025,'es','total_orders','Pedidos totales','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3026,'es','pending_orders','Ordenes pendientes','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3027,'es','cancelled_orders','Pedidos cancelados','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3028,'es','product','Producto','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3029,'es','purchased_package','Paquete comprado','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3030,'es','package_not_found','Paquete no encontrado','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3031,'es','upgrade_package','Paquete de actualizaci%%n','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3032,'es','shop','tienda','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3033,'es','manage__organize_your_shop','Administra y organiza tu tienda','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3034,'es','go_to_setting','Ir a configuraci%%n','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3035,'es','payment','Pago','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3036,'es','configure_your_payment_method','Configura tu m%#todo de pago','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3037,'es','my_panel','Mi panel','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3038,'es','item_has_been_added_to_wishlist','El art%�culo ha sido agregado a la lista de deseos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3039,'es','my_points','Mis puntos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3040,'es','_points','Puntos','2021-02-09 06:55:44','2021-09-20 07:29:15'),(3041,'es','wallet_money','Monedero de dinero','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3042,'es','exchange_rate','Tipo de cambio','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3043,'es','point_earning_history','Historial de obtenci%%n de puntos','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3044,'es','date','Fecha','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3045,'es','points','Puntos','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3046,'es','converted','Convertido','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3047,'es','action','Acci%%n','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3048,'es','no_history_found','No se encontr%% historial.','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3049,'es','convert_has_been_done_successfully_check_your_wallets','La conversi%%n se ha realizado correctamente. Compruebe sus carteras.','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3050,'es','something_went_wrong','Algo sali%% mal','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3051,'es','remaining_uploads','Cargas restantes','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3052,'es','no_package_found','Ning%Q%n paquete encontrado','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3053,'es','search_product','Buscar producto','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3054,'es','name','Nombre','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3055,'es','current_qty','Cantidad actual','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3056,'es','base_price','Precio base','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3057,'es','published','Publicado','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3058,'es','featured','Destacados','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3059,'es','options','Opciones','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3060,'es','edit','Editar','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3061,'es','duplicate','Duplicar','2021-02-09 06:55:45','2021-09-20 07:29: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 06:55:45','2021-09-20 07:29: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 06:55:45','2021-09-20 07:29: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 06:55:45','2021-09-20 07:29: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 06:55:45','2021-09-20 07:29:15'),(3066,'es','download_csv','Descarga CSV','2021-02-09 06:55:45','2021-09-20 07:29: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 06:55:45','2021-09-20 07:29: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 06:55:45','2021-09-20 07:29:15'),(3069,'es','download_category','Categor%�a de descarga','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3070,'es','download_sub_category','Descargar subcategor%�a','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3071,'es','download_sub_sub_category','Descargar sub categor%�a','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3072,'es','download_brand','Descargar marca','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3073,'es','upload_csv_file','Subir archivo CSV','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3074,'es','csv','CSV','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3075,'es','choose_csv_file','Elija archivo CSV','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3076,'es','upload','Subir','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3077,'es','add_new_digital_product','Agregar nuevo producto digital','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3078,'es','available_status','Estado disponible','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3079,'es','admin_status','Estado de administrador','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3080,'es','pending_balance','Balance pendiente','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3081,'es','send_withdraw_request','Enviar solicitud de retiro','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3082,'es','withdraw_request_history','Retirar historial de solicitudes','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3083,'es','amount','Cantidad','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3084,'es','status','Estado','2021-02-09 06:55:45','2021-09-20 07:29:15'),(3085,'es','message','Mensaje','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3086,'es','send_a_withdraw_request','Enviar una solicitud de retiro','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3087,'es','basic_info','Informaci%%n b%�sica','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3088,'es','your_phone','Su tel%#fono','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3089,'es','photo','Foto','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3090,'es','browse','Vistazo','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3091,'es','your_password','Tu contrase%�%a','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3092,'es','new_password','Nueva contrase%�%a','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3093,'es','confirm_password','confirmar Contrase%�%a','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3094,'es','add_new_address','Agregar nueva direcci%%n','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3095,'es','payment_setting','Configuraci%%n de pago','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3096,'es','cash_payment','Pago en efectivo','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3097,'es','bank_payment','Pago bancario','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3098,'es','bank_name','Nombre del banco','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3099,'es','bank_account_name','Nombre de la cuenta bancaria','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3100,'es','bank_account_number','N%Q%mero de cuenta bancaria','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3101,'es','bank_routing_number','N%Q%mero de ruta bancaria','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3102,'es','update_profile','Actualizaci%%n del perfil','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3103,'es','change_your_email','Cambia tu correo electr%%nico','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3104,'es','your_email','Tu correo electr%%nico','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3105,'es','sending_email','Enviando correo electr%%nico ...','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3106,'es','verify','Verificar','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3107,'es','update_email','Actualizar correo electr%%nico','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3108,'es','new_address','Nueva direccion','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3109,'es','your_address','Su direcci%%n','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3110,'es','country','Pa%�s','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3111,'es','select_your_country','Selecciona tu pais','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3112,'es','city','Ciudad','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3113,'es','your_city','Tu ciudad','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3114,'es','your_postal_code','Tu c%%digo postal','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3115,'es','880','+880','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3116,'es','save','Salvar','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3117,'es','received_refund_request','Solicitud de reembolso recibida','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3118,'es','delete_confirmation','Eliminar confirmaci%%n','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3119,'es','are_you_sure_to_delete_this',',%%Est%�s seguro de eliminar esto?','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3120,'es','premium_packages_for_sellers','Paquetes premium para vendedores','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3121,'es','product_upload','Carga de producto','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3122,'es','digital_product_upload','Carga de productos digitales','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3123,'es','purchase_package','Paquete de compra','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3124,'es','select_payment_type','Seleccione el tipo de pago','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3125,'es','payment_type','Tipo de pago','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3126,'es','select_one','Seleccione uno','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3127,'es','online_payment','Pago en l%�nea','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3128,'es','offline_payment','Pago fuera de l%�nea','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3129,'es','purchase_your_package','Compra tu paquete','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3130,'es','paypal','Paypal','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3131,'es','stripe','Raya','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3132,'es','sslcommerz','sslcommerz','2021-02-09 06:55:45','2021-02-09 06:55:45'),(3133,'es','confirm','Confirmar','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3134,'es','offline_package_payment','Pago del paquete sin conexi%%n','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3135,'es','transaction_id','ID de transacci%%n','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3136,'es','choose_image','Elegir imagen','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3137,'es','code','C%%digo','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3138,'es','delivery_status','Estado de entrega','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3139,'es','payment_status','Estado de pago','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3140,'es','paid','Pagado','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3141,'es','order_details','Detalles del pedido','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3142,'es','download_invoice','Descargar factura','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3143,'es','unpaid','No pagado','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3144,'es','order_placed','Pedido realizado','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3145,'es','confirmed','Confirmado','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3146,'es','on_delivery','En la entrega','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3147,'es','delivered','Entregado','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3148,'es','order_summary','Resumen del pedido','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3149,'es','order_code','C%%digo de orden','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3150,'es','customer','Cliente','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3151,'es','total_order_amount','Importe total del pedido','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3152,'es','shipping_metdod','Env%�o metdod','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3153,'es','flat_shipping_rate','Cargo de env%�o fijo','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3154,'es','payment_metdod','Pago metdod','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3155,'es','variation','Variaci%%n','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3156,'es','delivery_type','tipo de entrega','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3157,'es','home_delivery','Entrega a domicilio','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3158,'es','order_ammount','Orden Ammount','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3159,'es','subtotal','Total parcial','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3160,'es','shipping','Env%�o','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3161,'es','coupon_discount','Cup%%n de descuento','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3162,'es','na','N / A','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3163,'es','in_stock','En stock','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3164,'es','buy_now','Compra ahora','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3165,'es','item_added_to_your_cart','Art%�culo a%�%adido a tu carrito!','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3166,'es','proceed_to_checkout','Pasar por la caja','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3167,'es','cart_items','Art%�culos del carrito','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3168,'es','1_my_cart','1. Mi carrito','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3169,'es','view_cart','Ver carrito','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3170,'es','2_shipping_info','2. Informaci%%n de env%�o','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3171,'es','checkout','Echa un vistazo','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3172,'es','3_delivery_info','3. Informaci%%n de entrega','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3173,'es','4_payment','4. Pago','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3174,'es','5_confirmation','5. Confirmaci%%n','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3175,'es','remove','Eliminar','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3176,'es','return_to_shop','Volver a la tienda','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3177,'es','continue_to_shipping','Continuar con el env%�o','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3178,'es','or','O','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3179,'es','guest_checkout','Pago como invitado','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3180,'es','continue_to_delivery_info','Continuar con la informaci%%n de entrega','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3181,'es','postal_code','C%%digo postal','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3182,'es','choose_delivery_type','Elija el tipo de entrega','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3183,'es','local_pickup','Recogida local','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3184,'es','select_your_nearest_pickup_point','Seleccione su punto de recogida m%�s cercano','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3185,'es','continue_to_payment','Continuar con el pago','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3186,'es','select_a_payment_option','Seleccione una opci%%n de pago','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3187,'es','razorpay','Razorpay','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3188,'es','paystack','Pila de pagos','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3189,'es','voguepay','VoguePay','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3190,'es','payhere','Pague aqu%�','2021-02-09 06:55:45','2021-02-09 06:55:45'),(3191,'es','ngenius','genio','2021-02-09 06:55:45','2021-02-09 06:55:45'),(3192,'es','paytm','Paytm','2021-02-09 06:55:45','2021-09-20 07:29:16'),(3193,'es','cash_on_delivery','Contra reembolso','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3194,'es','your_wallet_balance_','El saldo de su billetera:','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3195,'es','insufficient_balance','Saldo insuficiente','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3196,'es','i_agree_to_the','Estoy de acuerdo con la','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3197,'es','complete_order','Orden completa','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3198,'es','summary','Resumen','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3199,'es','items','Art%�culos','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3200,'es','total_club_point','Puntos totales del club','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3201,'es','total_shipping','Env%�o total','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3202,'es','have_coupon_code_enter_here',',%%Tiene un c%%digo de cup%%n? Entre aqu%�','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3203,'es','apply','Aplicar','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3204,'es','you_need_to_agree_with_our_policies','Debes estar de acuerdo con nuestras pol%�ticas','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3205,'es','forgot_password','Se te olvid%% tu contrase%�%a','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3206,'es','seo_setting','Configuraci%%n de SEO','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3207,'es','system_update','Actualizacion del sistema','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3208,'es','add_new_payment_method','Agregar nuevo m%#todo de pago','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3209,'es','manual_payment_method','M%#todo de pago manual','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3210,'es','heading','B%%veda','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3211,'es','logo','Logo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3212,'es','manual_payment_information','Informaci%%n de pago manual','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3213,'es','type','Tipo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3214,'es','custom_payment','Pago personalizado','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3215,'es','check_payment','Pago con cheque','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3216,'es','checkout_thumbnail','Miniatura de pago','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3217,'es','payment_instruction','Instrucciones de pago','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3218,'es','bank_information','Informaci%%n bancaria','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3219,'es','select_file','Seleccione Archivo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3220,'es','upload_new','Subir nuevo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3221,'es','sort_by_newest','Ordenar por m%�s reciente','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3222,'es','sort_by_oldest','Ordenar por m%�s antiguo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3223,'es','sort_by_smallest','Ordenar por m%�s peque%�%o','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3224,'es','sort_by_largest','Ordenar por mayor','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3225,'es','selected_only','Solo seleccionado','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3226,'es','no_files_found','No se encontraron archivos','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3227,'es','0_file_selected','0 Archivo seleccionado','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3228,'es','clear','Claro','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3229,'es','prev','Anterior','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3230,'es','next','Siguiente','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3231,'es','add_files','Agregar archivos','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3232,'es','method_has_been_inserted_successfully','El m%#todo se ha insertado correctamente','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3233,'es','order_date','Fecha de orden','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3234,'es','bill_to','Cobrar a','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3235,'es','sub_total','Sub total','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3236,'es','total_tax','Total impuestos','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3237,'es','grand_total','Gran total','2021-02-09 06:55:46','2021-09-20 07:29: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 06:55:46','2021-09-20 07:29:16'),(3239,'es','thank_you_for_your_order',',%�Gracias por su orden!','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3240,'es','order_code','C%%digo de orden:','2021-02-09 06:55:46','2021-09-20 07:29: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 06:55:46','2021-09-20 07:29:16'),(3242,'es','make_payment','Hacer el pago','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3243,'es','payment_screenshot','Captura de pantalla de pago','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3244,'es','paypal_credential','Credencial Paypal','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3245,'es','paypal_client_id','Identificaci%%n de cliente de Paypal','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3246,'es','paypal_client_secret','Secreto del cliente de Paypal','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3247,'es','paypal_sandbox_mode','Modo de caja de arena de Paypal','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3248,'es','sslcommerz_credential','Credencial Sslcommerz','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3249,'es','sslcz_store_id','ID de tienda Sslcz','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3250,'es','sslcz_store_password','Contrase%�%a de la tienda sslcz','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3251,'es','sslcommerz_sandbox_mode','Modo Sandbox de Sslcommerz','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3252,'es','stripe_credential','Credencial de banda','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3253,'es','stripe_key','LLAVE RAYA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3254,'es','stripe_secret','SECRETO DE RAYAS','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3255,'es','razorpay_credential','Credencial RazorPay','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3256,'es','razor_key','LLAVE DE RAZOR','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3257,'es','razor_secret','EL SECRETO DE LA NAVAJA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3258,'es','instamojo_credential','Credencial de Instamojo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3259,'es','api_key','CLAVE API','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3260,'es','im_api_key','CLAVE API IM','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3261,'es','auth_token','AUTH TOKEN','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3262,'es','im_auth_token','SOY FICHA AUTOM%�TICA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3263,'es','instamojo_sandbox_mode','Modo Sandbox de Instamojo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3264,'es','paystack_credential','Credencial PayStack','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3265,'es','public_key','LLAVE P%�BLICA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3266,'es','secret_key','LLAVE SECRETA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3267,'es','merchant_email','CORREO ELECTR%�NICO DEL COMERCIANTE','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3268,'es','voguepay_credential','Credencial de VoguePay','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3269,'es','merchant_id','IDENTIFICACI%�N DEL COMERCIANTE','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3270,'es','sandbox_mode','modo sandbox','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3271,'es','payhere_credential','Credencial Payhere','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3272,'es','payhere_merchant_id','ID DE COMERCIANTE DE PAYHERE','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3273,'es','payhere_secret','PAYHERE SECRET','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3274,'es','payhere_currency','PAYHERE MONEDA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3275,'es','payhere_sandbox_mode','Modo Sandbox de Payhere','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3276,'es','ngenius_credential','Credencial Ngenius','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3277,'es','ngenius_outlet_id','ID DE SALIDA NGENIUS','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3278,'es','ngenius_api_key','CLAVE API NGENIUS','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3279,'es','ngenius_currency','MONEDA NGENIUS','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3280,'es','mpesa_credential','Credencial Mpesa','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3281,'es','mpesa_consumer_key','CLAVE DE CONSUMIDOR MPESA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3282,'es','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3283,'es','mpesa_consumer_secret','SECRETO DEL CONSUMIDOR DE MPESA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3284,'es','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3285,'es','mpesa_short_code','C%�DIGO CORTO MPESA','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3286,'es','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3287,'es','mpesa_sandbox_activation','ACTIVACI%�N MPESA SANDBOX','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3288,'es','flutterwave_credential','Credencial de Flutterwave','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3289,'es','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3290,'es','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3291,'es','rave_title','RAVE_TITLE','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3292,'es','stagin_activation','ACTIVACI%�N DE STAGIN','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3293,'es','all_product','Todo el producto','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3294,'es','sort_by','Ordenar por','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3295,'es','rating_high__low','Calificaci%%n (alta> baja)','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3296,'es','rating_low__high','Calificaci%%n (baja> alta)','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3297,'es','num_of_sale_high__low','N%Q%mero de venta (alto> bajo)','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3298,'es','num_of_sale_low__high','N%Q%mero de venta (bajo> alto)','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3299,'es','base_price_high__low','Precio base (alto> bajo)','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3300,'es','base_price_low__high','Precio base (bajo> alto)','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3301,'es','type__enter','Escriba e ingrese','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3302,'es','added_by','A%�%adido por','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3303,'es','num_of_sale','N%Q%mero de venta','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3304,'es','total_stock','Stock total','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3305,'es','todays_deal','Oferta de hoy','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3306,'es','rating','Clasificaci%%n','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3307,'es','times','veces','2021-02-09 06:55:46','2021-02-09 06:55:46'),(3308,'es','add_nerw_product','Agregar producto Nerw','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3309,'es','product_information','Informaci%%n del Producto','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3310,'es','unit','Unidad','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3311,'es','unit_eg_kg_pc_etc','Unidad (por ejemplo, KG, Pc, etc.)','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3312,'es','minimum_qty','Cantidad m%�nima','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3313,'es','tags','Etiquetas','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3314,'es','type_and_hit_enter_to_add_a_tag','Escriba y presione enter para agregar una etiqueta','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3315,'es','barcode','C%%digo de barras','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3316,'es','refundable','Reintegrable','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3317,'es','product_images','Im%�genes del producto','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3318,'es','gallery_images','Galer%�a de im%�genes','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3319,'es','todays_deal_updated_successfully','Oferta de hoy actualizada correctamente','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3320,'es','published_products_updated_successfully','Productos publicados actualizados con %#xito','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3321,'es','thumbnail_image','Imagen en miniatura','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3322,'es','featured_products_updated_successfully','Productos destacados actualizados con %#xito','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3323,'es','product_videos','V%�deos de productos','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3324,'es','video_provider','Proveedor de video','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3325,'es','youtube','Youtube','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3326,'es','dailymotion','Dailymotion','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3327,'es','vimeo','Vimeo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3328,'es','video_link','Enlace de video','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3329,'es','product_variation','Variaci%%n de producto','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3330,'es','colors','Colores','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3331,'es','attributes','Atributos','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3332,'es','choose_attributes','Elija atributos','2021-02-09 06:55:46','2021-09-20 07:29: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 06:55:46','2021-09-20 07:29:16'),(3334,'es','product_price__stock','Precio del producto + stock','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3335,'es','unit_price','Precio unitario','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3336,'es','purchase_price','Precio de compra','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3337,'es','flat','Plano','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3338,'es','percent','Por ciento','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3339,'es','discount','Descuento','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3340,'es','product_description','Descripci%%n del producto','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3341,'es','product_shipping_cost','Costo de env%�o del producto','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3342,'es','free_shipping','Env%�o gratis','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3343,'es','flat_rate','Tarifa plana','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3344,'es','shipping_cost','Costo de env%�o','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3345,'es','pdf_specification','Especificaci%%n PDF','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3346,'es','seo_meta_tags','Metaetiquetas SEO','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3347,'es','meta_title','Meta t%�tulo','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3348,'es','meta_image','Meta imagen','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3349,'es','choice_title','T%�tulo de elecci%%n','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3350,'es','enter_choice_values','Ingrese valores de elecci%%n','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3351,'es','all_categories','Todas las categorias','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3352,'es','add_new_category','A%�%adir nueva categoria','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3353,'es','type_name__enter','Escriba el nombre e ingrese','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3354,'es','banner','Bandera','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3355,'es','commission','Comisi%%n','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3356,'es','icon','icono','2021-02-09 06:55:46','2021-02-09 06:55:46'),(3357,'es','featured_categories_updated_successfully','Categor%�as destacadas actualizadas con %#xito','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3358,'es','hot','Caliente','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3359,'es','filter_by_payment_status','Filtrar por estado de pago','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3360,'es','unpaid','No pagado','2021-02-09 06:55:46','2021-09-20 07:29:16'),(3361,'es','filter_by_deliver_status','Filtrar por estado de entrega','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3362,'es','pending','Pendiente','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3363,'es','type_order_code__hit_enter','Escriba el c%%digo de pedido y presione Enter','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3364,'es','num_of_products','Num. de productos','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3365,'es','walk_in_customer','Cliente sin cita','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3366,'es','qty','CANTIDAD','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3367,'es','without_shipping_charge','Sin gastos de env%�o','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3368,'es','with_shipping_charge','Con cargo de env%�o','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3369,'es','pay_with_cash','Pagar en efectivo','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3370,'es','shipping_address','Direcci%%n de Env%�o','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3371,'es','close','Cerrar','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3372,'es','select_country','Seleccionar pa%�s','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3373,'es','order_confirmation','Confirmaci%%n del pedido','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3374,'es','are_you_sure_to_confirm_this_order',',%%Est%� seguro de confirmar este pedido?','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3375,'es','comfirm_order','Confirmar orden','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3376,'es','personal_info','Informaci%%n personal','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3377,'es','repeat_password','Repita la contrase%�%a','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3378,'es','shop_name','Nombre de tienda','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3379,'es','register_your_shop','Registre su tienda','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3380,'es','affiliate_informations','Informaci%%n de afiliados','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3381,'es','affiliate','Afiliado','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3382,'es','user_info','Informaci%%n de usuario','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3383,'es','installed_addon','Complemento instalado','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3384,'es','available_addon','Complemento disponible','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3385,'es','install_new_addon','Instalar nuevo complemento','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3386,'es','version','Versi%%n','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3387,'es','activated','Activado','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3388,'es','deactivated','Desactivado','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3389,'es','activate_otp','Activar OTP','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3390,'es','otp_will_be_used_for','OTP se utilizar%� para','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3391,'es','settings_updated_successfully','Configuraci%%n actualizada correctamente','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3392,'es','product_owner','Due%�%o del producto','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3393,'es','point','Punto','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3394,'es','set_point_for_product_within_a_range','Punto de ajuste para producto dentro de un rango','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3395,'es','set_point_for_multiple_products','Punto de ajuste para varios productos','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3396,'es','min_price','Precio min','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3397,'es','max_price','Precio m%�ximo','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3398,'es','set_point_for_all_products','Punto de ajuste para todos los productos','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3399,'es','set_point_for_','Punto de ajuste para','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3400,'es','convert_status','Convertir estado','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3401,'es','earned_at','Ganado en','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3402,'es','seller_based_selling_report','Informe de ventas basado en el vendedor','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3403,'es','sort_by_verificarion_status','Ordenar por estado de verificaci%%n','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3404,'es','approved','Aprobado','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3405,'es','non_approved','No aprovado','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3406,'es','filter','Filtrar','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3407,'es','seller_name','Nombre del vendedor','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3408,'es','number_of_product_sale','N%Q%mero de venta de productos','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3409,'es','order_amount','Total de la orden','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3410,'es','facebook_chat_setting','Configuraci%%n de chat de Facebook','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3411,'es','facebook_page_id','ID de p%�gina de Facebook','2021-02-09 06:55:47','2021-09-20 07:29: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 06:55:47','2021-09-20 07:29:16'),(3413,'es','login_into_your_facebook_page','Inicie sesi%%n en su p%�gina de Facebook','2021-02-09 06:55:47','2021-09-20 07:29: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 06:55:47','2021-09-20 07:29: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 06:55:47','2021-09-20 07:29: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 06:55:47','2021-09-20 07:29: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 06:55:47','2021-09-20 07:29:16'),(3418,'es','set_your_website_domain_name','Configure el nombre de dominio de su sitio web','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3419,'es','google_recaptcha_setting','Configuraci%%n de reCAPTCHA de Google','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3420,'es','site_key','Clave del sitio','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3421,'es','select_shipping_method','Seleccione el m%#todo de env%�o','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3422,'es','product_wise_shipping_cost','Costo de env%�o inteligente del producto','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3423,'es','flat_rate_shipping_cost','Costo de env%�o de tarifa plana','2021-02-09 06:55:47','2021-09-20 07:29:16'),(3424,'es','seller_wise_flat_shipping_cost','Costo de env%�o plano sabio del vendedor','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3425,'es','note','Nota','2021-02-09 06:55:47','2021-09-20 07:29: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 06:55:47','2021-09-20 07:29: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 06:55:47','2021-09-20 07:29: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 06:55:47','2021-09-20 07:29:17'),(3429,'es','flat_rate_cost','Costo de tarifa plana','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3430,'es','shipping_cost_for_admin_products','Costo de env%�o para productos de administraci%%n','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3431,'es','countries','Pa%�ses','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3432,'es','showhide','Mostrar ocultar','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3433,'es','country_status_updated_successfully','El estado del pa%�s se actualiz%% correctamente','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3434,'es','all_subcategories','Todas las subcategor%�as','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3435,'es','add_new_subcategory','Agregar nueva subcategor%�a','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3436,'es','subcategories','Subcategor%�as','2021-02-09 06:55:47','2021-09-20 07:29:17'),(3437,'es','sub_category_information','Informaci%%n de la subcategor%�a','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3438,'es','slug','Babosa','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3439,'es','all_sub_subcategories','Todas las subcategor%�as','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3440,'es','add_new_sub_subcategory','Agregar nueva subcategor%�a','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3441,'es','subsubcategories','Sub-subcategor%�as','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3442,'es','make_this_default','Hacer esto predeterminado','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3443,'es','shops','Tiendas','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3444,'es','women_clothing__fashion','Ropa de mujer y moda','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3445,'es','cellphones__tabs','Tel%#fonos m%%viles y pesta%�%as','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3446,'es','welcome_to','Bienvenido a','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3447,'es','create_a_new_account','Crea una cuenta nueva','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3448,'es','full_name','Nombre completo','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3449,'es','password','contrase%�%a','2021-02-09 06:56:37','2021-02-09 06:56:37'),(3450,'es','confrim_password','Confirmar contrase%�%a','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3451,'es','i_agree_with_the','Estoy de acuerdo con el','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3452,'es','terms_and_conditions','T%#rminos y condiciones','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3453,'es','register','Registrarse','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3454,'es','already_have_an_account','Ya tienes una cuenta','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3455,'es','sign_up_with','Registrarte con','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3456,'es','i_agree_with_the_terms_and_conditions','Estoy de acuerdo con los t%#rminos y condiciones','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3457,'es','all_role','Todo Rol','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3458,'es','add_new_role','Agregar nuevo rol','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3459,'es','roles','Roles','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3460,'es','add_new_staffs','Agregar personal nuevo','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3461,'es','role','Papel','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3462,'es','frontend_website_name','Nombre del sitio web de la interfaz','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3463,'es','website_name','Nombre del Sitio Web','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3464,'es','site_motto','Lema del sitio','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3465,'es','best_ecommerce_website','Mejor sitio web de comercio electr%%nico','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3466,'es','site_icon','Icono del sitio','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3467,'es','website_favicon_32x32_png','Favicon del sitio web. 32x32 .png','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3468,'es','website_base_color','Color base del sitio web','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3469,'es','hex_color_code','C%%digo de color hexagonal','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3470,'es','website_base_hover_color','Color de desplazamiento base del sitio web','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3471,'es','update','Actualizar','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3472,'es','global_seo','Global Seo','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3473,'es','meta_description','Metadescripci%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3474,'es','keywords','Palabras clave','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3475,'es','separate_with_coma','Separado con coma','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3476,'es','website_pages','P%�ginas del sitio web','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3477,'es','all_pages','Todas las p%�ginas','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3478,'es','add_new_page','Agregar nueva p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3479,'es','url','URL','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3480,'es','actions','Comportamiento','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3481,'es','edit_page_information','Editar informaci%%n de la p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3482,'es','page_content','Contenido de p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3483,'es','title','T%�tulo','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3484,'es','link','Enlace','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3485,'es','use_character_number_hypen_only','Utilice solo car%�cter, n%Q%mero, gui%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3486,'es','add_content','Agregar contenido','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3487,'es','seo_fields','Seo Fields','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3488,'es','update_page','Actualizar p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3489,'es','default_language','Idioma predeterminado','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3490,'es','add_new_language','Agregar nuevo idioma','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3491,'es','rtl','RTL','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3492,'es','translation','Traducci%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3493,'es','language_information','Informaci%%n del idioma','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3494,'es','save_page','Guardar p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3495,'es','home_page_settings','Configuraci%%n de la p%�gina de inicio','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3496,'es','home_slider','Control deslizante de inicio','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3497,'es','photos__links','Fotos y enlaces','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3498,'es','add_new','Agregar nuevo','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3499,'es','home_categories','Categor%�as de inicio','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3500,'es','home_banner_1_max_3','Banner de inicio 1 (m%�ximo 3)','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3501,'es','banner__links','Banner y enlaces','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3502,'es','home_banner_2_max_3','Banner de inicio 2 (m%�ximo 3)','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3503,'es','top_10','Top 10','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3504,'es','top_categories_max_10','Categor%�as principales (m%�ximo 10)','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3505,'es','top_brands_max_10','Mejores marcas (m%�ximo 10)','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3506,'es','system_name','Nombre del sistema','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3507,'es','system_logo__white','Logotipo del sistema - Blanco','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3508,'es','choose_files','Seleccionar archivos','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3509,'es','will_be_used_in_admin_panel_side_menu','Se utilizar%� en el men%Q% lateral del panel de administraci%%n.','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3510,'es','system_logo__black','Logotipo del sistema - Negro','2021-02-09 06:56:37','2021-09-20 07:29: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 06:56:37','2021-09-20 07:29:17'),(3512,'es','system_timezone','Zona horaria del sistema','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3513,'es','admin_login_page_background','Fondo de la p%�gina de inicio de sesi%%n del administrador','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3514,'es','website_header','Encabezado del sitio web','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3515,'es','header_setting','Configuraci%%n de encabezado','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3516,'es','header_logo','El logotipo de cabecera','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3517,'es','show_language_switcher',',%%Mostrar selector de idioma?','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3518,'es','show_currency_switcher',',%%Mostrar cambio de moneda?','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3519,'es','enable_stikcy_header',',%%Habilitar encabezado de stikcy?','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3520,'es','website_footer','Pie de p%�gina del sitio web','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3521,'es','footer_widget','Widget de pie de p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3522,'es','about_widget','Acerca del widget','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3523,'es','footer_logo','Logotipo de pie de p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3524,'es','about_description','Acerca de la descripci%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3525,'es','contact_info_widget','Widget de informaci%%n de contacto','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3526,'es','footer_contact_address','Direcci%%n de contacto del pie de p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3527,'es','footer_contact_phone','Tel%#fono de contacto de pie de p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3528,'es','footer_contact_email','Correo electr%%nico de contacto de pie de p%�gina','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3529,'es','link_widget_one','Enlace Widget Uno','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3530,'es','links','Enlaces','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3531,'es','footer_bottom','Pie de p%�gina inferior','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3532,'es','copyright_widget_','Widget de derechos de autor','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3533,'es','copyright_text','Texto de copyright','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3534,'es','social_link_widget_','Widget de enlace social','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3535,'es','show_social_links',',%%Mostrar enlaces sociales?','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3536,'es','social_links','v%�nculos sociales','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3537,'es','payment_methods_widget_','Widget de m%#todos de pago','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3538,'es','rtl_status_updated_successfully','El estado de RTL se actualiz%% correctamente','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3539,'es','language_changed_to_','Idioma cambiado a','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3540,'es','inhouse_product_sale_report','Informe de venta de productos internos','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3541,'es','sort_by_category','Ordenar por categor%�a','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3542,'es','product_wise_stock_report','Informe de stock de producto','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3543,'es','currency_changed_to_','Moneda cambiada a','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3544,'es','avatar','Avatar','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3545,'es','copy','Copiar','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3546,'es','variant','Variante','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3547,'es','variant_price','Precio Variante','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3548,'es','sku','SKU','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3549,'es','key','Llave','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3550,'es','value','Valor','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3551,'es','copy_translations','Copiar traducciones','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3552,'es','all_pickup_points','Todos los puntos de recogida','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3553,'es','add_new_pickup_point','Agregar nuevo punto de recogida','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3554,'es','manager','Gerente','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3555,'es','location','Ubicaci%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3556,'es','pickup_station_contact','Contacto de la estaci%%n de recogida','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3557,'es','open','Abierto','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3558,'es','pos_activation_for_seller','Activaci%%n de POS para vendedor','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3559,'es','order_completed_successfully','Pedido completado con %#xito.','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3560,'es','text_input','Entrada de texto','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3561,'es','select','Seleccione','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3562,'es','multiple_select','Selecci%%n m%Q%ltiple','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3563,'es','radio','Radio','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3564,'es','file','Archivo','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3565,'es','email_address','Direcci%%n de correo electr%%nico','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3566,'es','verification_info','Informaci%%n de verificaci%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3567,'es','approval','Aprobaci%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3568,'es','due_amount','Cantidad debida','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3569,'es','show','mostrar','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3570,'es','pay_now','Pagar ahora','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3571,'es','affiliate_user_verification','Verificaci%%n de usuario afiliado','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3572,'es','reject','Rechazar','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3573,'es','accept','Aceptar','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3574,'es','beauty_health__hair','Belleza, salud y cabello','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3575,'es','comparison','Comparaci%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3576,'es','reset_compare_list','Restablecer lista de comparaci%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3577,'es','your_comparison_list_is_empty','Tu lista de comparaci%%n est%� vac%�a','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3578,'es','convert_point_to_wallet','Convertir punto en billetera','2021-02-09 06:56:37','2021-09-20 07:29: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 06:56:37','2021-09-20 07:29:17'),(3580,'es','create_an_account','Crea una cuenta.','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3581,'es','use_email_instead','Utilice el correo electr%%nico en su lugar','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3582,'es','by_signing_up_you_agree_to_our_terms_and_conditions','Al registrarse, acepta nuestros t%#rminos y condiciones.','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3583,'es','create_account','Crear una cuenta','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3584,'es','or_join_with','O %Q%nete con','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3585,'es','already_have_an_account',',%%Ya tienes una cuenta?','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3586,'es','log_in','Iniciar sesi%%n','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3587,'es','computer__accessories','Accesorios de computador','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3588,'es','products','Producto (s)','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3589,'es','in_your_cart','en tu carrito','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3590,'es','in_your_wishlist','en tu lista de deseos','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3591,'es','you_ordered','usted ordeno','2021-02-09 06:56:37','2021-09-20 07:29:17'),(3592,'es','default_shipping_address','Direcci%%n de entrega por defecto','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3593,'es','sports__outdoor','Deportes y aire libre','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3594,'es','copied','Copiado','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3595,'es','copy_the_promote_link','Copiar el enlace de promoci%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3596,'es','write_a_review','Escribe una rese%�%a','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3597,'es','your_name','Tu nombre','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3598,'es','comment','Comentario','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3599,'es','your_review','Tu rese%�%a','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3600,'es','submit_review','Enviar opini%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3601,'es','claire_willis','Claire Willis','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3602,'es','germaine_greene','Germaine Greene','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3603,'es','product_file','Archivo de producto','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3604,'es','choose_file','Elija el archivo','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3605,'es','type_to_add_a_tag','Escribe para agregar una etiqueta','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3606,'es','images','Imagenes','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3607,'es','main_images','Im%�genes principales','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3608,'es','meta_tags','Meta etiquetas','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3609,'es','digital_product_has_been_inserted_successfully','El producto digital se ha insertado correctamente','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3610,'es','edit_digital_product','Editar producto digital','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3611,'es','select_an_option','Seleccione una opci%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3612,'es','tax','impuesto','2021-02-09 06:56:38','2021-02-09 06:56:38'),(3613,'es','any_question_about_this_product',',%%Alguna pregunta sobre este producto?','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3614,'es','sign_in','Registrarse','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3615,'es','login_with_google','Iniciar sesi%%n con Google','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3616,'es','login_with_facebook','Iniciar sesi%%n con Facebook','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3617,'es','login_with_twitter','Iniciar sesi%%n con Twitter','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3618,'es','click_to_show_phone_number','Haga clic para mostrar el n%Q%mero de tel%#fono','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3619,'es','other_ads_of','Otros anuncios de','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3620,'es','store_home','Tienda del hogar','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3621,'es','top_selling','M%�s vendidos','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3622,'es','shop_settings','Configuraci%%n de la tienda','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3623,'es','visit_shop','Visitar tienda','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3624,'es','pickup_points','Puntos de recogida','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3625,'es','select_pickup_point','Seleccionar punto de recogida','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3626,'es','slider_settings','Configuraci%%n del control deslizante','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3627,'es','social_media_link','Enlace de redes sociales','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3628,'es','facebook','Facebook','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3629,'es','twitter','Gorjeo','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3630,'es','google','Google','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3631,'es','new_arrival_products','Nuevos productos de llegada','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3632,'es','check_your_order_status','Verifique el estado de su pedido','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3633,'es','shipping_method','M%#todo de env%�o','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3634,'es','shipped_by','Enviado por','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3635,'es','image','Imagen','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3636,'es','sub_sub_category','Sub Subcategor%�a','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3637,'es','inhouse_products','Productos internos','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3638,'es','forgot_password',',%%Has olvidado tu contrase%�%a?','2021-02-09 06:56:38','2021-09-20 07:29: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 06:56:38','2021-09-20 07:29:17'),(3640,'es','email_or_phone','Email o tel%#fono','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3641,'es','send_password_reset_link','Enviar enlace de restablecimiento de contrase%�%a','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3642,'es','back_to_login','Atr%�s para iniciar sesi%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3643,'es','index','%�ndice','2021-02-09 06:56:38','2021-02-09 06:56:38'),(3644,'es','download_your_product','Descargue su producto','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3645,'es','option','Opci%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3646,'es','applied_refund_request','Solicitud de reembolso aplicada','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3647,'es','item_has_been_renoved_from_wishlist','El art%�culo ha sido renovado de la lista de deseos','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3648,'es','bulk_products_upload','Carga masiva de productos','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3649,'es','upload_csv','Subir CSV','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3650,'es','create_a_ticket','Crear un ticket','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3651,'es','tickets','Entradas','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3652,'es','ticket_id','Identificaci%%n de entradas','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3653,'es','sending_date','Fecha de env%�o','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3654,'es','subject','Tema','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3655,'es','view_details','Ver detalles','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3656,'es','provide_a_detailed_description','Proporcione una descripci%%n detallada','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3657,'es','type_your_reply','Escriba su respuesta','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3658,'es','send_ticket','Enviar ticket','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3659,'es','load_more','Carga m%�s','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3660,'es','jewelry__watches','joyas y relojes','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3661,'es','filters','Filtros','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3662,'es','contact_address','Direcci%%n de contacto','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3663,'es','contact_phone','Tel%#fono de contacto','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3664,'es','contact_email','Email de contacto','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3665,'es','filter_by','Filtrado por','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3666,'es','condition','Condici%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3667,'es','all_type','Todo tipo','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3668,'es','pay_with_wallet','Paga con billetera','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3669,'es','select_variation','Seleccionar variaci%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3670,'es','no_product_added','Ning%Q%n producto a%�%adido','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3671,'es','status_has_been_updated_successfully','El estado se ha actualizado correctamente','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3672,'es','all_seller_packages','Todos los paquetes del vendedor','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3673,'es','add_new_package','Agregar nuevo paquete','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3674,'es','package_logo','Logotipo del paquete','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3675,'es','days','dias','2021-02-09 06:56:38','2021-02-09 06:56:38'),(3676,'es','create_new_seller_package','Crear nuevo paquete de vendedor','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3677,'es','package_name','Nombre del paquete','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3678,'es','duration','Duraci%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3679,'es','validity_in_number_of_days','Validez en n%Q%mero de d%�as','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3680,'es','update_package_information','Actualizar la informaci%%n del paquete','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3681,'es','package_has_been_inserted_successfully','El paquete se ha insertado correctamente','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3682,'es','refund_request','Petici%%n para reembolso','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3683,'es','reason','Raz%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3684,'es','label','Etiqueta','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3685,'es','select_label','Seleccionar etiqueta','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3686,'es','multiple_select_label','Etiqueta de selecci%%n m%Q%ltiple','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3687,'es','radio_label','Etiqueta de radio','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3688,'es','pickup_point_orders','%�rdenes de puntos de recogida','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3689,'es','view','Ver','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3690,'es','order_','Orden #','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3691,'es','order_status','Estado del pedido','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3692,'es','total_amount','Cantidad total','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3693,'es','total','TOTAL','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3694,'es','delivery_status_has_been_updated','El estado de entrega se ha actualizado','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3695,'es','payment_status_has_been_updated','El estado del pago se ha actualizado','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3696,'es','invoice','FACTURA','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3697,'es','set_refund_time','Establecer hora de reembolso','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3698,'es','set_time_for_sending_refund_request','Establecer hora para enviar la solicitud de reembolso','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3699,'es','set_refund_sticker','Establecer etiqueta de reembolso','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3700,'es','sticker','Pegatina','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3701,'es','refund_request_all','Solicitud de reembolso todo','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3702,'es','order_id','Solicitar ID','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3703,'es','seller_approval','Aprobaci%%n del vendedor','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3704,'es','admin_approval','Aprobaci%%n del administrador','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3705,'es','refund_status','Estado de reembolso','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3706,'es','no_refund','No hay reembolso','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3707,'es','status_updated_successfully','Estado actualizado con %#xito','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3708,'es','user_search_report','Informe de b%Q%squeda de usuarios','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3709,'es','search_by','B%Q%squeda por','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3710,'es','number_searches','B%Q%squedas de n%Q%meros','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3711,'es','sender','Remitente','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3712,'es','receiver','Receptor','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3713,'es','verification_form_updated_successfully','Formulario de verificaci%%n actualizado correctamente','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3714,'es','invalid_email_or_password','Correo electr%%nico o contrase%�%a inv%�lidos','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3715,'es','all_coupons','Todos los cupones','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3716,'es','add_new_coupon','Agregar nuevo cup%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3717,'es','coupon_information','Informaci%%n del cup%%n','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3718,'es','start_date','Fecha de inicio','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3719,'es','end_date','Fecha final','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3720,'es','product_base','Base de productos','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3721,'es','send_newsletter','Enviar Newsletter','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3722,'es','mobile_users','Usuarios m%%viles','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3723,'es','sms_subject','Asunto del SMS','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3724,'es','sms_content','Contenido de SMS','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3725,'es','all_flash_delas','Todos Flash Delas','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3726,'es','create_new_flash_dela','Crear nuevo Flash Dela','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3727,'es','page_link','Enlace de p%�gina','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3728,'es','flash_deal_information','Informaci%%n de oferta flash','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3729,'es','background_color','Color de fondo','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3730,'es','0000ff','# 0000ff','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3731,'es','text_color','Color de texto','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3732,'es','white','Blanco','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3733,'es','dark','Oscuro','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3734,'es','choose_products','Elija productos','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3735,'es','discounts','Descuentos.','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3736,'es','discount_type','Tipo de descuento','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3737,'es','twillo_credential','Credencial Twillo','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3738,'es','twilio_sid','TWILIO SID','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3739,'es','twilio_auth_token','TOKEN DE AUTOR DE TWILIO','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3740,'es','twilio_verify_sid','TWILIO VERIFICAR SID','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3741,'es','valid_twillo_number','N%�MERO V%�LIDO DE TWILLO','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3742,'es','nexmo_credential','Credencial Nexmo','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3743,'es','nexmo_key','LLAVE NEXMO','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3744,'es','nexmo_secret','NEXMO SECRETO','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3745,'es','ssl_wireless_credential','Credencial inal%�mbrica SSL','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3746,'es','ssl_sms_api_token','TOKEN API SSL SMS','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3747,'es','ssl_sms_sid','SSL SMS SID','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3748,'es','ssl_sms_url','URL de SMS SSL','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3749,'es','fast2sms_credential','Credencial Fast2SMS','2021-02-09 06:56:38','2021-09-20 07:29:17'),(3750,'es','auth_key','CLAVE DE AUTENTICACI%�N','2021-02-09 06:56:38','2021-09-20 07:29:18'),(3751,'es','route','RUTA','2021-02-09 06:56:38','2021-09-20 07:29:18'),(3752,'es','promotional_use','Uso promocional','2021-02-09 06:56:38','2021-09-20 07:29:18'),(3753,'es','transactional_use','Uso transaccional','2021-02-09 06:56:38','2021-09-20 07:29:18'),(3754,'es','sender_id','IDENTIFICACI%�N DEL REMITENTE','2021-02-09 06:56:38','2021-09-20 07:29:18'),(3755,'es','nexmo_otp','Nexmo OTP','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3756,'es','twillo_otp','Twillo OTP','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3757,'es','ssl_wireless_otp','SSL OTP inal%�mbrico','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3758,'es','fast2sms_otp','Fast2SMS OTP','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3759,'es','order_placement','Colocaci%%n de la orden','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3760,'es','delivery_status_changing_time','Tiempo de cambio de estado de entrega','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3761,'es','paid_status_changing_time','Tiempo de cambio de estado pagado','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3762,'es','send_bulk_sms','Enviar SMS masivos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3763,'es','all_subscribers','Todos los suscriptores','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3764,'es','coupon_information_adding','Adici%%n de informaci%%n del cup%%n','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3765,'es','coupon_type','Tipo de cup%%n','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3766,'es','for_products','Para productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3767,'es','for_total_orders','Para pedidos totales','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3768,'es','add_your_product_base_coupon','Agregue su cup%%n base de producto','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3769,'es','coupon_code','C%%digo promocional','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3770,'es','sub_category','Subcategor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3771,'es','add_more','A%�%adir m%�s','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3772,'es','add_your_cart_base_coupon','Agregue el cup%%n base de su carrito','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3773,'es','minimum_shopping','Compras m%�nimas','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3774,'es','maximum_discount_amount','Cantidad m%�xima de descuento','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3775,'es','coupon_information_update','Actualizaci%%n de la informaci%%n del cup%%n','2021-02-09 06:56:39','2021-09-20 07:29: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 06:56:39','2021-09-20 07:29:18'),(3777,'es','configure_now','Configurar ahora','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3778,'es','total_published_products','Total de productos publicados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3779,'es','total_sellers_products','Total de productos de los vendedores','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3780,'es','total_admin_products','Productos de administraci%%n totales','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3781,'es','manage_products','Gestionar productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3782,'es','total_product_category','Categor%�a de producto total','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3783,'es','create_category','Crear categor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3784,'es','total_product_sub_sub_category','Subcategor%�a total de productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3785,'es','create_sub_sub_category','Crear subcategor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3786,'es','total_product_sub_category','Subcategor%�a de producto total','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3787,'es','create_sub_category','Crear subcategor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3788,'es','total_product_brand','Marca de producto total','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3789,'es','create_brand','Crear marca','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3790,'es','total_sellers','Vendedores totales','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3791,'es','total_approved_sellers','Total de vendedores aprobados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3792,'es','total_pending_sellers','Total de vendedores pendientes','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3793,'es','manage_sellers','Administrar vendedores','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3794,'es','category_wise_product_sale','Venta de productos por categor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3795,'es','sale','Rebaja','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3796,'es','category_wise_product_stock','Stock de productos por categor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3797,'es','category_name','nombre de la categor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3798,'es','stock','Valores','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3799,'es','frontend','Interfaz','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3800,'es','home_page','P%�gina de inicio','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3801,'es','setting','ajuste','2021-02-09 06:56:39','2021-02-09 06:56:39'),(3802,'es','policy_page','P%�gina de pol%�ticas','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3803,'es','general','General','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3804,'es','click_here','Haga clic aqu%�','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3805,'es','useful_link','Enlace %Q%til','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3806,'es','activation','Activaci%%n','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3807,'es','smtp','SMTP','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3808,'es','payment_method','M%#todo de pago','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3809,'es','social_media','Social media','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3810,'es','business','Negocio','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3811,'es','seller_verification','Verificaci%%n del vendedor','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3812,'es','form_setting','configuraci%%n de formulario','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3813,'es','language','Idioma','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3814,'es','dashboard','Tablero','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3815,'es','pos_system','Sistema POS','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3816,'es','pos_manager','Gerente POS','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3817,'es','pos_configuration','Configuraci%%n POS','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3818,'es','products','Productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3819,'es','add_new_product','Agregar nuevo producto','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3820,'es','all_products','Todos los productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3821,'es','in_house_products','Productos internos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3822,'es','seller_products','Productos del vendedor','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3823,'es','digital_products','Productos digitales','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3824,'es','bulk_import','Importaci%%n masiva','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3825,'es','bulk_export','Exportaci%%n masiva','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3826,'es','category','Categor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3827,'es','subcategory','Subcategor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3828,'es','sub_subcategory','Sub-subcategor%�a','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3829,'es','brand','Marca','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3830,'es','attribute','Atributo','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3831,'es','product_reviews','Rese%�%as de productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3832,'es','sales','Ventas','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3833,'es','all_orders','Todas las %%rdenes','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3834,'es','inhouse_orders','Pedidos internos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3835,'es','seller_orders','Pedidos del vendedor','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3836,'es','pickup_point_order','Orden de punto de recogida','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3837,'es','refunds','Reembolsos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3838,'es','refund_requests','Solicitudes de reembolso','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3839,'es','approved_refund','Reembolso aprobado','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3840,'es','refund_configuration','Configuraci%%n de reembolso','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3841,'es','customers','Clientes','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3842,'es','customer_list','Lista de clientes','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3843,'es','classified_products','Productos clasificados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3844,'es','classified_packages','Paquetes clasificados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3845,'es','sellers','Vendedores','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3846,'es','all_seller','Todo vendedor','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3847,'es','payouts','Pagos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3848,'es','payout_requests','Solicitudes de pago','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3849,'es','seller_commission','Comisi%%n de vendedor','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3850,'es','seller_packages','Paquetes de vendedor','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3851,'es','seller_verification_form','Formulario de verificaci%%n del vendedor','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3852,'es','reports','Informes','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3853,'es','in_house_product_sale','Venta de productos internos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3854,'es','seller_products_sale','Venta de productos del vendedor','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3855,'es','products_stock','Stock de productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3856,'es','products_wishlist','Lista de deseos de productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3857,'es','user_searches','B%Q%squedas de usuario','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3858,'es','marketing','M%�rketing','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3859,'es','flash_deals','Ofertas flash','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3860,'es','newsletters','Boletines','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3861,'es','bulk_sms','SMS masivos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3862,'es','subscribers','Suscriptores','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3863,'es','coupon','Cup%%n','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3864,'es','support','Apoyo','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3865,'es','ticket','Boleto','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3866,'es','product_queries','Consultas sobre productos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3867,'es','website_setup','Configuraci%%n del sitio web','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3868,'es','header','Encabezamiento','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3869,'es','footer','Pie de p%�gina','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3870,'es','pages','P%�ginas','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3871,'es','appearance','Apariencia','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3872,'es','setup__configurations','Instalaci%%n y configuraciones','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3873,'es','general_settings','Configuraci%%n general','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3874,'es','features_activation','Activaci%%n de funciones','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3875,'es','languages','Idiomas','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3876,'es','currency','Moneda','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3877,'es','pickup_point','Punto de recogida','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3878,'es','smtp_settings','Configuraci%%n de SMTP','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3879,'es','payment_methods','M%#todos de pago','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3880,'es','file_system_configuration','Configuraci%%n del sistema de archivos','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3881,'es','social_media_logins','Inicios de sesi%%n en redes sociales','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3882,'es','analytics_tools','Herramientas anal%�ticas','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3883,'es','facebook_chat','El chat de Facebook','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3884,'es','google_recaptcha','Google reCAPTCHA','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3885,'es','shipping_configuration','Configuraci%%n de env%�o','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3886,'es','shipping_countries','Pa%�ses de env%�o','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3887,'es','affiliate_system','Sistema de afiliados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3888,'es','affiliate_registration_form','Formulario de registro de afiliados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3889,'es','affiliate_configurations','Configuraciones de afiliados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3890,'es','affiliate_users','Usuarios afiliados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3891,'es','referral_users','Usuarios de referencia','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3892,'es','affiliate_withdraw_requests','Solicitudes de retiro de afiliados','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3893,'es','offline_payment_system','Sistema de pago fuera de l%�nea','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3894,'es','manual_payment_methods','M%#todos de pago manual','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3895,'es','offline_wallet_recharge','Recarga de billetera sin conexi%%n','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3896,'es','offline_customer_package_payments','Pagos de paquetes de clientes fuera de l%�nea','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3897,'es','offline_seller_package_payments','Pagos del paquete del vendedor fuera de l%�nea','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3898,'es','paytm_payment_gateway','Pasarela de pago Paytm','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3899,'es','set_paytm_credentials','Establecer credenciales de Paytm','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3900,'es','club_point_system','Sistema de puntos de club','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3901,'es','club_point_configurations','Configuraciones de puntos de club','2021-02-09 06:56:39','2021-09-20 07:29:18'),(3902,'es','set_product_point','Establecer punto de producto','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3903,'es','user_points','Puntos de usuario','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3904,'es','otp_system','Sistema OTP','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3905,'es','otp_configurations','Configuraciones de OTP','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3906,'es','set_otp_credentials','Establecer credenciales de OTP','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3907,'es','staffs','Personal','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3908,'es','all_staffs','Todo el personal','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3909,'es','staff_permissions','Permisos del personal','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3910,'es','addon_manager','Administrador de complementos','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3911,'es','browse_website','Navegar por el sitio web','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3912,'es','pos','POS','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3913,'es','notifications','Notificaciones','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3914,'es','new_orders','Nuevos pedidos','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3915,'es','userimage','imagen de usuario','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3916,'es','profile','Perfil','2021-02-09 06:56:40','2021-09-20 07:29:18'),(3917,'es','logout','Cerrar sesi%%n','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3918,'es','page_not_found',',%�P%�gina no encontrada!','2021-02-09 06:57:08','2021-09-20 07:29: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 06:57:08','2021-09-20 07:29:18'),(3920,'es','registration','Registro','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3921,'es','i_am_shopping_for','Estoy comprando ...','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3922,'es','compare','Comparar','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3923,'es','wishlist','Lista de deseos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3924,'es','cart','Carro','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3925,'es','your_cart_is_empty','Tu carrito esta vac%�o','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3926,'es','categories','Categor%�as','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3927,'es','see_all','Ver todo','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3928,'es','seller_policy','Pol%�tica del vendedor','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3929,'es','return_policy','Pol%�tica de devoluciones','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3930,'es','support_policy','Pol%�tica de soporte','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3931,'es','privacy_policy','Pol%�tica de privacidad','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3932,'es','your_email_address','Su direcci%%n de correo electr%%nico','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3933,'es','subscribe','Suscribir','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3934,'es','contact_info','Datos de contacto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3935,'es','address','Habla a','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3936,'es','phone','Tel%#fono','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3937,'es','email','Email','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3938,'es','login','Iniciar sesi%%n','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3939,'es','my_account','Mi cuenta','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3940,'es','order_history','Historial de pedidos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3941,'es','my_wishlist','mi lista de deseos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3942,'es','track_order','Orden de pista','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3943,'es','be_an_affiliate_partner','Sea un socio afiliado','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3944,'es','be_a_seller','Ser vendedor','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3945,'es','apply_now','Aplica ya','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3946,'es','confirmation','Confirmaci%%n','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3947,'es','delete_confirmation_message','Eliminar mensaje de confirmaci%%n','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3948,'es','cancel','Cancelar','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3949,'es','delete','Eliminar','2021-02-09 06:57:08','2021-09-20 07:29: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 06:57:08','2021-09-20 07:29:18'),(3951,'es','please_login_first','Por favor ingresa primero','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3952,'es','total_earnings_from','Ganancias totales de','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3953,'es','client_subscription','Suscripci%%n de cliente','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3954,'es','product_category','Categoria de producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3955,'es','product_sub_sub_category','Subcategor%�a de producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3956,'es','product_sub_category','Subcategor%�a de producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3957,'es','product_brand','Producto de marca','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3958,'es','top_client_packages','Paquetes de clientes principales','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3959,'es','top_freelancer_packages','Los mejores paquetes para aut%%nomos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3960,'es','number_of_sale','Numero de venta','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3961,'es','number_of_stock','N%Q%mero de stock','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3962,'es','top_10_products','Los 10 mejores productos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3963,'es','top_12_products','Los 12 mejores productos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3964,'es','admin_can_not_be_a_seller','El administrador no puede ser vendedor','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3965,'es','filter_by_rating','Filtrar por calificaci%%n','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3966,'es','published_reviews_updated_successfully','Rese%�%as publicadas actualizadas correctamente','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3967,'es','refund_sticker_has_been_updated_successfully','La etiqueta de reembolso se ha actualizado correctamente','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3968,'es','edit_product','Editar producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3969,'es','meta_images','Meta im%�genes','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3970,'es','update_product','Actualizar producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3971,'es','product_has_been_deleted_successfully','El producto se ha eliminado correctamente','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3972,'es','your_profile_has_been_updated_successfully',',%�Tu perfil ha sido actualizado exitosamente!','2021-02-09 06:57:08','2021-09-20 07:29: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 06:57:08','2021-09-20 07:29:18'),(3974,'es','add_your_product','Agregue su producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3975,'es','select_a_category','Seleccione una categor%�a','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3976,'es','select_a_brand','Seleccione una marca','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3977,'es','product_unit','Unidad de producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3978,'es','minimum_qty','Cant. M%�nima','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3979,'es','product_tag','Etiqueta de producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3980,'es','type__hit_enter','Escribe y presiona enter','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3981,'es','videos','Videos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3982,'es','video_from','Video de','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3983,'es','video_url','URL del v%�deo','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3984,'es','customer_choice','Elecci%%n del cliente','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3985,'es','pdf','PDF','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3986,'es','choose_pdf','Elija PDF','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3987,'es','select_category','selecciona una categor%�a','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3988,'es','target_category','Categor%�a de destino','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3989,'es','subsubcategory','subcategor%�a','2021-02-09 06:57:08','2021-02-09 06:57:08'),(3990,'es','search_category','Categor%�a de b%Q%squeda','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3991,'es','search_subcategory','Subcategor%�a de b%Q%squeda','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3992,'es','search_subsubcategory','Buscar SubSubCategory','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3993,'es','update_your_product','Actualiza tu producto','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3994,'es','product_has_been_updated_successfully','El producto se ha actualizado correctamente','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3995,'es','add_your_digital_product','Agregue su producto digital','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3996,'es','active_ecommerce_cms_update_process','Proceso de actualizaci%%n de CMS de comercio electr%%nico activo','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3997,'es','codecanyon_purchase_code','C%%digo de compra de Codecanyon','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3998,'es','database_name','Nombre de la base de datos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(3999,'es','database_username','Nombre de usuario de la base de datos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4000,'es','database_password','Contrase%�%a de la base de datos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4001,'es','database_hostname','Nombre de host de la base de datos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4002,'es','update_now','Actualizar ahora','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4003,'es','congratulations','Felicidades','2021-02-09 06:57:08','2021-09-20 07:29: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 06:57:08','2021-09-20 07:29:18'),(4005,'es','go_to_home','Ir a casa','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4006,'es','login_to_admin_panel','Iniciar sesi%%n en el panel de administraci%%n','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4007,'es','s3_file_system_credentials','Credenciales del sistema de archivos S3','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4008,'es','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4009,'es','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4010,'es','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4011,'es','aws_bucket','AWS_BUCKET','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4012,'es','aws_url','AWS_URL','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4013,'es','s3_file_system_activation','Activaci%%n del sistema de archivos S3','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4014,'es','your_phone_number','Su n%Q%mero de tel%#fono','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4015,'es','zip_file','Archivo zip','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4016,'es','install','Instalar en pc','2021-02-09 06:57:08','2021-09-20 07:29: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 06:57:08','2021-09-20 07:29:18'),(4018,'es','search_in_menu','Buscar en el men%Q%','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4019,'es','uploaded_files','Archivos subidos','2021-02-09 06:57:08','2021-09-20 07:29:18'),(4020,'es','shipping_cities','Ciudades de env%�o','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4021,'es','system','Sistema','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4022,'es','server_status','El estado del servidor','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4023,'es','nothing_found','Nada Encontrado','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4024,'es','parent_category','Categor%�a principal','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4025,'es','level','Nivel','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4026,'es','category_information','Informaci%%n de categor%�a','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4027,'es','translatable','Traducible','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4028,'es','no_parent','Sin padre','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4029,'es','physical','F%�sico','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4030,'es','digital','Digital','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4031,'es','200x200','200x200','2021-02-09 06:57:09','2021-02-09 06:57:09'),(4032,'es','32x32','32x32','2021-02-09 06:57:09','2021-02-09 06:57:09'),(4033,'es','search_your_files','Busca tus archivos','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4034,'es','category_has_been_updated_successfully','La categor%�a se ha actualizado correctamente','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4035,'es','all_uploaded_files','Todos los archivos cargados','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4036,'es','upload_new_file','Subir archivo nuevo','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4037,'es','all_files','Todos los archivos','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4038,'es','search','Buscar','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4039,'es','details_info','Informaci%%n de detalles','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4040,'es','copy_link','Copiar link','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4041,'es','are_you_sure_to_delete_this_file',',%%Est%� seguro de eliminar este archivo?','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4042,'es','file_info','Informaci%%n del archivo','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4043,'es','link_copied_to_clipboard','link copiado al portapapeles','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4044,'es','oops_unable_to_copy','Vaya, no se puede copiar','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4045,'es','file_deleted_successfully','Archivo eliminado correctamente','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4046,'es','add_new_brand','Agregar nueva marca','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4047,'es','120x80','120 x 80','2021-02-09 06:57:09','2021-02-09 06:57:09'),(4048,'es','brand_information','Informaci%%n de marca','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4049,'es','brand_has_been_updated_successfully','La marca se ha actualizado correctamente','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4050,'es','brand_has_been_deleted_successfully','La marca se ha eliminado correctamente','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4051,'es','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','Esto se usa para la b%Q%squeda. Introduzca las palabras con las que cutomer puede encontrar este producto.','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:18'),(4055,'es','save_product','Guardar producto','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4056,'es','product_has_been_inserted_successfully','El producto se ha insertado correctamente','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4057,'es','something_went_wrong',',%�Algo sali%% mal!','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4058,'es','sorry_for_the_inconvenience_but_were_working_on_it','Disculpe las molestias, pero estamos trabajando en ello.','2021-02-09 06:57:09','2021-09-20 07:29:18'),(4059,'es','error_code','C%%digo de error','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:18'),(4061,'es','order','Orden','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4063,'es','home_banner_3_max_3','Banner de inicio 3 (m%�ximo 3)','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4064,'es','add_new_seller','Agregar nuevo vendedor','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4065,'es','filter_by_approval','Filtrar por aprobaci%%n','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4066,'es','nonapproved','No aprovado','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4067,'es','type_name_or_email__enter','Escriba su nombre o correo electr%%nico e ingrese','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4068,'es','due_to_seller','Debido al vendedor','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4069,'es','log_in_as_this_seller','Inicie sesi%%n como este vendedor','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4070,'es','go_to_payment','Ir a Pago','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4071,'es','ban_this_seller','Prohibir este vendedor','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4072,'es','do_you_really_want_to_ban_this_seller',',%%De verdad quieres prohibir a este vendedor?','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4073,'es','proceed',',%�Continuar!','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4074,'es','approved_sellers_updated_successfully','Los vendedores aprobados se actualizaron correctamente','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4075,'es','seller_has_been_deleted_successfully','El vendedor se ha eliminado correctamente','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4076,'es','seller_information','Informaci%%n del vendedor','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4077,'es','seller_has_been_inserted_successfully','El vendedor se ha insertado correctamente','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4078,'es','email_already_exists',',%�El Email ya existe!','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4079,'es','verify_your_email_address','Verifique su direcci%%n de correo electr%%nico','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4081,'es','if_you_did_not_receive_the_email','Si no recibi%% el correo electr%%nico.','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4082,'es','click_here_to_request_another','Haga clic aqu%� para solicitar otro','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4083,'es','email_verification','verificacion de email','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4084,'es','email_verification__','Verificacion de email -','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4085,'es','https_activation','Activaci%%n HTTPS','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4086,'es','maintenance_mode','Modo de mantenimiento','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4087,'es','maintenance_mode_activation','Activaci%%n del modo de mantenimiento','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4088,'es','classified_product_activate','Producto clasificado Activar','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4089,'es','classified_product','Producto clasificado','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4090,'es','business_related','Relacionado al negocio','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4091,'es','vendor_system_activation','Activaci%%n del sistema de proveedor','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4092,'es','wallet_system_activation','Activaci%%n del sistema de billetera','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4093,'es','coupon_system_activation','Activaci%%n del sistema de cupones','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4094,'es','pickup_point_activation','Activaci%%n del punto de recogida','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4095,'es','conversation_activation','Activaci%%n de conversaci%%n','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4096,'es','guest_checkout_activation','Activaci%%n de pago como invitado','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4097,'es','categorybased_commission','Comisi%%n basada en categor%�as','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4099,'es','set_commisssion_now','Establecer comisi%%n ahora','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4100,'es','payment_related','Relacionados con el pago','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4101,'es','paypal_payment_activation','Activaci%%n de pago de Paypal','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4103,'es','stripe_payment_activation','Activaci%%n de pago de Stripe','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4104,'es','sslcommerz_activation','Activaci%%n SSlCommerz','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4105,'es','instamojo_payment_activation','Activaci%%n de pago de Instamojo','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4107,'es','razor_pay_activation','Activaci%%n de Razor Pay','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4109,'es','paystack_activation','Activaci%%n PayStack','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4111,'es','voguepay_activation','Activaci%%n de VoguePay','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4113,'es','payhere_activation','Activaci%%n de Payhere','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4114,'es','ngenius_activation','Activaci%%n Ngenius','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4116,'es','iyzico_activation','Activaci%%n de Iyzico','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4118,'es','bkash_activation','Activaci%%n Bkash','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4120,'es','nagad_activation','Activaci%%n de Nagad','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4122,'es','cash_payment_activation','Activaci%%n de pago en efectivo','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4123,'es','social_media_login','Inicio de sesi%%n en redes sociales','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4124,'es','facebook_login','Iniciar sesi%%n en Facebook','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4126,'es','google_login','Inicio de sesi%%n de Google','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4128,'es','twitter_login','Iniciar sesi%%n en Twitter','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4130,'es','shop_logo','Logotipo de la tienda','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4131,'es','shop_address','Direcci%%n de la tienda','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4132,'es','banner_settings','Configuraci%%n de banner','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4133,'es','banners','Banners','2021-02-09 06:57:09','2021-09-20 07:29: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 06:57:09','2021-09-20 07:29:19'),(4135,'es','insert_link_with_https_','Insertar enlace con https','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4136,'es','your_shop_has_been_updated_successfully',',%�Tu tienda se ha actualizado correctamente!','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4137,'es','search_result_for_','Resultado de b%Q%squeda para','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4138,'es','brand_has_been_inserted_successfully','La marca se ha insertado correctamente','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4139,'es','about','Acerca de','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4140,'es','payout_info','Informaci%%n de pago','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4141,'es','bank_acc_name','Nombre de cuenta bancaria','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4142,'es','bank_acc_number','N%Q%mero de cuenta bancaria','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4143,'es','total_products','Productos totales','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4144,'es','total_sold_amount','Monto total vendido','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4145,'es','wallet_balance','Saldo de Wallet','2021-02-09 06:57:09','2021-09-20 07:29:19'),(4146,'es','cookies_agreement','Acuerdo de cookies','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4147,'es','cookies_agreement_text','Texto del acuerdo de cookies','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4148,'es','show_cookies_agreement',',%%Mostrar acuerdo de cookies?','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4149,'es','custom_script','Script personalizado','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4150,'es','header_custom_script__before_head','Secuencia de comandos personalizada de encabezado: antes de </head>','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4151,'es','write_script_with_script_tag','Escribir script con etiqueta <script>','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4152,'es','footer_custom_script__before_body','Secuencia de comandos personalizada de pie de p%�gina: antes de </body>','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4153,'es','category_has_been_inserted_successfully','La categor%�a se ha insertado correctamente','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4154,'es','all_flash_deals','Todas las ofertas flash','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4155,'es','create_new_flash_deal','Crear nueva oferta flash','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4156,'es','ffffff','#FFFFFF','2021-02-09 06:57:10','2021-09-20 07:29: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 06:57:10','2021-09-20 07:29:19'),(4158,'es','flash_deal_has_been_inserted_successfully','La oferta flash se ha insertado correctamente','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4159,'es','flash_deal_status_updated_successfully','El estado de la oferta flash se actualiz%% correctamente','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4160,'es','flash_deal_has_been_updated_successfully','La oferta flash se ha actualizado correctamente','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4161,'es','update_language_info','actualizar la informaci%%n del idioma','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4162,'es','language_has_been_updated_successfully','El idioma se ha actualizado correctamente','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4163,'es','type_key__enter','Escriba la tecla e introduzca','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4164,'es','translations_updated_for_','Traducciones actualizadas para','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4165,'es','language_has_been_inserted_successfully','El idioma se ha insertado correctamente','2021-02-09 06:57:10','2021-09-20 07:29:19'),(4166,'jp','all_category','�����c%��������������$%�����]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4167,'jp','all','�����c%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4168,'jp','flash_sale','�����#�����V%�����W%��]%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4169,'jp','view_more','���������������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4170,'jp','add_to_wishlist','��W%��������#�����c%�������%\%���������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4171,'jp','add_to_compare','����]%������c%�������%\%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4172,'jp','add_to_cart','�����]%�������%\%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4173,'jp','club_point','�����#�����������%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4174,'jp','classified_ads','�����#��V%�������������Q%����','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4175,'jp','used','�U%����','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4176,'jp','top_10_categories','���������10��������$%�����]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4177,'jp','view_all_categories','�����c%��������������$%�����������Q%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4178,'jp','top_10_brands','���������10�����#��%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4179,'jp','view_all_brands','�����c%�����������#��%�����������Q%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4180,'jp','terms__conditions','��#�������$%�','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4181,'jp','best_selling','�����c%�����W%��#��]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4182,'jp','top_20','���������20','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4183,'jp','featured_products','������������������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4184,'jp','best_sellers','�����c%�����W%��#��]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4185,'jp','visit_store','��c%�����������������W%��c%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4186,'jp','popular_suggestions','�Q%Q%��%����������������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4187,'jp','category_suggestions','��������$%������������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4188,'jp','automobile__motorcycle','�������W%���������]%���������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4189,'jp','price_range','�[%���]%�U%�','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4190,'jp','filter_by_color','���%��������������%�����%���%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4191,'jp','home','�����]%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4192,'jp','newest','������%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4193,'jp','oldest','������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4194,'jp','price_low_to_high','�\%��[%���]%����������[%���]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4195,'jp','price_high_to_low','�[%���]%����������������������\%������������U%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4196,'jp','brands','�����#��%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4197,'jp','all_brands','�����c%�����������#��%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4198,'jp','all_sellers','�����c%���������%������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4199,'jp','inhouse_product','�����[%��\%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4200,'jp','message_seller','��������W%��]%��U%���%������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4201,'jp','price','�[%���]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4202,'jp','discount_price','���%�]%��[%���]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4203,'jp','color','���%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4204,'jp','quantity','���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4205,'jp','available','��#��������\%','2021-02-09 07:00:17','2021-02-09 07:00:17'),(4206,'jp','total_price','������������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4207,'jp','out_of_stock','����Q%�������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4208,'jp','refund','��������W%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4209,'jp','share','��V%������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4210,'jp','sold_by','�����������%#���%��������������[%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4211,'jp','customer_reviews','�����c%��%��� ��]%�����������]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4212,'jp','top_selling_products','���%������������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4213,'jp','description','������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4214,'jp','video','���������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4215,'jp','reviews','�����������]%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4216,'jp','download','��������%�����]%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4217,'jp','there_have_been_no_reviews_for_this_product_yet','��������\%�����������������]%�����[%�����������[%���������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4218,'jp','related_products','��������\%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4219,'jp','any_query_about_this_product','��������\%����������������%����','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4220,'jp','product_name','���������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4221,'jp','your_question','�������������%����','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4222,'jp','send','����%�','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4223,'jp','use_country_code_before_number','�����V%�����������\%��%��]%�������\%%���������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4224,'jp','remember_me','�����������������[%������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4225,'jp','dont_have_an_account','�����������%�����������������������������[%���������)"]%�','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4226,'jp','register_now','�W%���������W%���%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4227,'jp','or_login_with','��[%���������������%�����%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4228,'jp','oops','���������..','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4229,'jp','this_item_is_out_of_stock','�������������������Q%�������������)"]%�','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4230,'jp','back_to_shopping','��V%�����������%���%�����W%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4231,'jp','login_to_your_account','�����������������������%������������%�����%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4232,'jp','purchase_history','�%]%�����%���$%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4233,'jp','new','���%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4234,'jp','downloads','��������%�����]%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4235,'jp','sent_refund_request','��������W%��������������c%����������%������[%������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4236,'jp','product_bulk_upload','��\%�������U%������������������]%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4237,'jp','orders','�%����','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4238,'jp','recieved_refund_request','�����������������������W%��������������c%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4239,'jp','shop_setting','��V%���������������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4240,'jp','payment_history','��������$%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4241,'jp','money_withdraw','����������]%������Q%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4242,'jp','conversations','�]%��#�%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4243,'jp','my_wallet','��������%��U%�','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4244,'jp','earning_points','���%�[%���������%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4245,'jp','support_ticket','��a%�����]%���������%������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4246,'jp','manage_profile','���������������������������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4247,'jp','sold_amount','��%#���%���','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4248,'jp','your_sold_amount_current_month','��%#���%���)"]%��\%����)"]%�','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4249,'jp','total_sold','�V%���%#���%���%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4250,'jp','last_month_sold','��������%#���%','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4251,'jp','total_sale','�V%����%�U%����','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4252,'jp','total_earnings','�V%�������','2021-02-09 07:00:17','2021-09-20 07:29:19'),(4253,'jp','successful_orders','�������������%����','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4254,'jp','total_orders','�V%��%�������%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4255,'jp','pending_orders','�%�����U%�����%����','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4256,'jp','cancelled_orders','��������%��W%�������������%����','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4257,'jp','product','��\%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4258,'jp','purchased_package','�%]%������������������%��]%��U%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4259,'jp','package_not_found','���������%��]%��U%�����������������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4260,'jp','upgrade_package','������������%�����]%������������%��]%��U%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4261,'jp','shop','��V%���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4262,'jp','manage__organize_your_shop','��V%�����������������������$%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4263,'jp','go_to_setting','�����������W%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4264,'jp','payment','���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4265,'jp','configure_your_payment_method','��������������c%�%���������������[%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4266,'jp','my_panel','��� ������������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4267,'jp','item_has_been_added_to_wishlist','��������������������������V%��������c%�������%\%�����������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4268,'jp','my_points','��� �����������%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4269,'jp','_points','��������%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4270,'jp','wallet_money','�����#������������ �����]%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4271,'jp','exchange_rate','��Q%��%�����]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4272,'jp','point_earning_history','��������%������%�[%���%���$%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4273,'jp','date','����W%�','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4274,'jp','points','��������%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4275,'jp','converted','�������U%���%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4276,'jp','action','��������V%�����%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4277,'jp','no_history_found','��%���$%�����������������[%���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4278,'jp','convert_has_been_done_successfully_check_your_wallets','�������������U%U%�������Q%������[%�����������#��������������Q%���������������������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4279,'jp','something_went_wrong','�\%������������[%���������������������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4280,'jp','remaining_uploads','�����������������������]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4281,'jp','no_package_found','���������%��]%��U%�����������������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4282,'jp','search_product','��\%����������$%�','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4283,'jp','name','������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4284,'jp','current_qty','��[%���������%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4285,'jp','base_price','����\%��[%���]%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4286,'jp','published','������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4287,'jp','featured','��c%�[%$%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4288,'jp','options','��������V%�����%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4289,'jp','edit','�V%����','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4290,'jp','duplicate','�����\%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4291,'jp','1_download_the_skeleton_file_and_fill_it_with_data','1.��c%���%��������%�����������������������%�����]%�����������������]%��%��������������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4292,'jp','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2.��a%��%�����������������������������%�����]%�����������������]%��%�����������c%�%������������������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4293,'jp','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3.��c%���%��������%�����������������������%�����]%����������������������������W%��U%���������#��]%��������������������]%�������������%������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4294,'jp','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4.�����������������������]%����������[%��������������V%���������������������W%��������U%��� �������������������%���������������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4295,'jp','download_csv','CSV�����������%�����]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4296,'jp','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1.��������$%��������a%�����������$%��������a%�����a%�����������$%��������������%�����#��%���������%���ID����������%���������������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4297,'jp','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. PDF�����������%�����]%��������������������$%��������a%�����������$%��������a%�����a%�����������$%��������������%�����#��%���ID�������[%���������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4298,'jp','download_category','��������$%��������������%�����]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4299,'jp','download_sub_category','��a%�����������$%��������������%�����]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4300,'jp','download_sub_sub_category','��a%�����a%�����������$%��������������%�����]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4301,'jp','download_brand','�����#��%��������������%�����]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4302,'jp','upload_csv_file','CSV�����������������������������]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4303,'jp','csv','CSV','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4304,'jp','choose_csv_file','CSV�����������������U%��� ','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4305,'jp','upload','��������������]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4306,'jp','add_new_digital_product','���%�����������U%��%�����\%�������%\%���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4307,'jp','available_status','��#��������\%�����c%�����]%��%��c%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4308,'jp','admin_status','�����������c%�����]%��%��c%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4309,'jp','pending_balance','�%�����U%����������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4310,'jp','send_withdraw_request','�]%������Q%��������������c%����������%�������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4311,'jp','withdraw_request_history','�����������c%�����%���$%��������� ','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4312,'jp','amount','���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4313,'jp','status','��b%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4314,'jp','message','��������W%��]%��U%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4315,'jp','send_a_withdraw_request','�]%������Q%��������������c%����������%�������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4316,'jp','basic_info','��Q%���������%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4317,'jp','your_phone','��������������W%�#�%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4318,'jp','photo','������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4319,'jp','browse','�����#�����Q%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4320,'jp','your_password','�����������������c%�����]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4321,'jp','new_password','���%�����������c%�����]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4322,'jp','confirm_password','�����c%�����]%�����������]%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4323,'jp','add_new_address','���%�������\%��������%\%���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4324,'jp','payment_setting','���������������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4325,'jp','cash_payment','��[%���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4326,'jp','bank_payment','���������������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4327,'jp','bank_name','���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4328,'jp','bank_account_name','����������Q%����','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4329,'jp','bank_account_number','�������������Q%������V%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4330,'jp','bank_routing_number','��������%��]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4331,'jp','update_profile','�����������������������$%���%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4332,'jp','change_your_email','�����]%��������������c%��������$%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4333,'jp','your_email','�����������������]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4334,'jp','sending_email','�����]%����������%������������[%���...','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4335,'jp','verify','��Q%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4336,'jp','update_email','�����]%��������$%���%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4337,'jp','new_address','���%�����������������c%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4338,'jp','your_address','�������������\%����','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4339,'jp','country','��\%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4340,'jp','select_your_country','��������������\%�����U%��� ','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4341,'jp','city','�U%�','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4342,'jp','your_city','���������������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4343,'jp','your_postal_code','��������������a%�[%%�����V%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4344,'jp','880','+880','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4345,'jp','save','��W%��]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4346,'jp','received_refund_request','��������W%��������������c%��������������������[%������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4347,'jp','delete_confirmation','��������Q%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4348,'jp','are_you_sure_to_delete_this','���������������������������������������������)"]%�','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4349,'jp','premium_packages_for_sellers','���%������������������������������������������%��]%��U%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4350,'jp','product_upload','��\%��������������������]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4351,'jp','digital_product_upload','�����U%��%�����\%��������������������]%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4352,'jp','purchase_package','�%]%������������%��]%��U%','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4353,'jp','select_payment_type','�����������%�����������U%��� �����[%���','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4354,'jp','payment_type','��������������� ','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4355,'jp','select_one','�U%������U%��� ������������������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4356,'jp','online_payment','�����%��#�����%���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4357,'jp','offline_payment','��������#�����%���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4358,'jp','purchase_your_package','���������%��]%��U%����%]%���������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4359,'jp','paypal','������������','2021-02-09 07:00:18','2021-09-20 07:29:19'),(4360,'jp','stripe','�U%� ','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4361,'jp','sslcommerz','sslcommerz','2021-02-09 07:00:19','2021-02-09 07:00:19'),(4362,'jp','confirm','��Q%���','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4363,'jp','offline_package_payment','��������#�����%���������%��]%��U%���������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4364,'jp','transaction_id','�����#��%��b%�����V%�����%ID','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4365,'jp','choose_image','��W%��������U%��� ','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4366,'jp','code','��%��]%���','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4367,'jp','delivery_status','��������b%�%�','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4368,'jp','payment_status','�����������b%�%�','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4369,'jp','paid','������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4370,'jp','order_details','�%�����#%�$%�%','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4371,'jp','download_invoice','�����%���U%�����������%�����]%���������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4372,'jp','unpaid','���������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4373,'jp','order_placed','�%�����U%���%','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4374,'jp','confirmed','��Q%����U%���%','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4375,'jp','on_delivery','�������U%�','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4376,'jp','delivered','����%�','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4377,'jp','order_summary','�%�������������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4378,'jp','order_code','�%������%��]%���','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4379,'jp','customer','���������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4380,'jp','total_order_amount','�%�����V%����','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4381,'jp','shipping_metdod','��������c%�%�','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4382,'jp','flat_shipping_rate','����U%�������������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4383,'jp','payment_metdod','�����������c%�%�','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4384,'jp','variation','������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4385,'jp','delivery_type','����%���%������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4386,'jp','home_delivery','������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4387,'jp','order_ammount','�%����������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4388,'jp','subtotal','��%����','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4389,'jp','shipping','������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4390,'jp','coupon_discount','�����]%�����%���%�]%�','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4391,'jp','na','�#�%�\%�������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4392,'jp','in_stock','����Q%�������','2021-02-09 07:00:19','2021-09-20 07:29:19'),(4393,'jp','buy_now','�W%���%V%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4394,'jp','item_added_to_your_cart','�����]%����������������������%\%�����������[%������)"]%�','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4395,'jp','proceed_to_checkout','���������������������������%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4396,'jp','cart_items','�����]%���������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4397,'jp','1_my_cart','1.�����������]%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4398,'jp','view_cart','����������U%��Q%����������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4399,'jp','2_shipping_info','2.������������%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4400,'jp','checkout','���������������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4401,'jp','3_delivery_info','3.����%�������%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4402,'jp','4_payment','4.���������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4403,'jp','5_confirmation','5.��Q%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4404,'jp','remove','������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4405,'jp','return_to_shop','��V%��������������W%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4406,'jp','continue_to_shipping','��Q%�������b%�������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4407,'jp','or','��[%������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4408,'jp','guest_checkout','���%��c%������������������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4409,'jp','continue_to_delivery_info','����%�������%������%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4410,'jp','postal_code','��a%�[%%�����V%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4411,'jp','choose_delivery_type','����%���%�����������U%��� �����[%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4412,'jp','local_pickup','�����]%������������������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4413,'jp','select_your_nearest_pickup_point','��������������������������������������%��������U%��� ������������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4414,'jp','continue_to_payment','�������������b%�������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4415,'jp','select_a_payment_option','�����������������V%�����%�����U%��� �����[%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4416,'jp','razorpay','Razorpay','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4417,'jp','paystack','��������c%��%������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4418,'jp','voguepay','VoguePay','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4419,'jp','payhere','����]%����','2021-02-09 07:00:19','2021-02-09 07:00:19'),(4420,'jp','ngenius','ngenius','2021-02-09 07:00:19','2021-02-09 07:00:19'),(4421,'jp','paytm','Paytm','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4422,'jp','cash_on_delivery','�W%�����]%����','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4423,'jp','your_wallet_balance_','��������������%��U%���������#��%��c%)"]%�','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4424,'jp','insufficient_balance','�������U%��b%%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4425,'jp','i_agree_to_the','�����������������[%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4426,'jp','complete_order','�������%����','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4427,'jp','summary','������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4428,'jp','items','������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4429,'jp','total_club_point','�����#�����������������%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4430,'jp','total_shipping','�V%�������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4431,'jp','have_coupon_code_enter_here','�����]%�����%��%��]%������������������������)"]%����������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4432,'jp','apply','��#���������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4433,'jp','you_need_to_agree_with_our_policies','��������������������������������V%��]%����������������%���������������[%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4434,'jp','forgot_password','�����c%�����]%����������%�������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4435,'jp','seo_setting','SEO������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4436,'jp','system_update','��V%��c%��������������������]%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4437,'jp','add_new_payment_method','���%�����������������c%�%�����%\%���������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4438,'jp','manual_payment_method','�����������������c%�%�','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4439,'jp','heading','�����Q%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4440,'jp','logo','�����$%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4441,'jp','manual_payment_information','���������������������%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4442,'jp','type','��%������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4443,'jp','custom_payment','�����c%��%������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4444,'jp','check_payment','��������������Q%���������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4445,'jp','checkout_thumbnail','�����������������������a%������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4446,'jp','payment_instruction','��������������c%�%�','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4447,'jp','bank_information','������������%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4448,'jp','select_file','�����������������U%��b%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4449,'jp','upload_new','���%�����������������]%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4450,'jp','sort_by_newest','������%�������������U%���c%��%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4451,'jp','sort_by_oldest','����������������������U%���c%��%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4452,'jp','sort_by_smallest','�����%�����U%���c%��%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4453,'jp','sort_by_largest','����������U%���c%��%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4454,'jp','selected_only','��U%��� �����%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4455,'jp','no_files_found','�����������������������������[%������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4456,'jp','0_file_selected','0�����������������U%��� ��������[%������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4457,'jp','clear','��$%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4458,'jp','prev','�����U%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4459,'jp','next','���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4460,'jp','add_files','�%\%���������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4461,'jp','method_has_been_inserted_successfully','�����\%�������������U%U%�����%�����������[%������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4462,'jp','order_date','�%�������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4463,'jp','bill_to','�����%���U%����W%����','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4464,'jp','sub_total','��%����','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4465,'jp','total_tax','�V%����','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4466,'jp','grand_total','�V%����','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4467,'jp','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','����%�����������U%U%��������������[%����������%]%�����%���$%������������������������%�������%�������������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4468,'jp','thank_you_for_your_order','�%������������������������������������������[%���)"]%�','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4469,'jp','order_code','�%������%��]%���)"]%�','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4470,'jp','a_copy_or_your_order_summary_has_been_sent_to','��%�����]%��[%�������%��������������������%���������[%������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4471,'jp','make_payment','���������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4472,'jp','payment_screenshot','��������������c%��������]%��%��V%���������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4473,'jp','paypal_credential','Paypal����%���]%������%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4474,'jp','paypal_client_id','Paypal�����#��������%���ID','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4475,'jp','paypal_client_secret','Paypal�����#��������%�����V%��]%������������','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4476,'jp','paypal_sandbox_mode','Paypal��a%��%��������������c%�����]%���','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4477,'jp','sslcommerz_credential','Sslcommerz�%���]%������%','2021-02-09 07:00:19','2021-09-20 07:29:20'),(4478,'jp','sslcz_store_id','Sslcz��c%������ID','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4479,'jp','sslcz_store_password','Sslcz��c%��������������c%�����]%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4480,'jp','sslcommerz_sandbox_mode','Sslcommerz��a%��%��������������c%�����]%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4481,'jp','stripe_credential','��c%�����#�������%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4482,'jp','stripe_key','��c%�����#�����������]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4483,'jp','stripe_secret','��c%�����#��������V%��]%������������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4484,'jp','razorpay_credential','RazorPay�%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4485,'jp','razor_key','RAZOR KEY','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4486,'jp','razor_secret','�����%���������������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4487,'jp','instamojo_credential','Instamojo�%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4488,'jp','api_key','API�����]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4489,'jp','im_api_key','IMAPI�����]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4490,'jp','auth_token','AUTH�����]%�����%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4491,'jp','im_auth_token','IMAUTH�����]%�����%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4492,'jp','instamojo_sandbox_mode','Instamojo��a%��%��������������c%�����]%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4493,'jp','paystack_credential','PayStack�%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4494,'jp','public_key','��������a%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4495,'jp','secret_key','��V%��]%�����������������]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4496,'jp','merchant_email','��� ��]%��������%��������]%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4497,'jp','voguepay_credential','VoguePay�%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4498,'jp','merchant_id','��%#���%���ID','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4499,'jp','sandbox_mode','��a%��%��������������c%�����]%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4500,'jp','payhere_credential','Payhere�%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4501,'jp','payhere_merchant_id','PAYHERE MERCHANT ID','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4502,'jp','payhere_secret','PAYHERE SECRET','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4503,'jp','payhere_currency','�����������������%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4504,'jp','payhere_sandbox_mode','Payhere��a%��%��������������c%�����]%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4505,'jp','ngenius_credential','Ngenius�%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4506,'jp','ngenius_outlet_id','NGENIUS������������������ID','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4507,'jp','ngenius_api_key','NGENIUSAPI�����]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4508,'jp','ngenius_currency','NGENIUS�����%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4509,'jp','mpesa_credential','Mpesa�%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4510,'jp','mpesa_consumer_key','MPESA��%��%��V%�����]%��� ��]%�����]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4511,'jp','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4512,'jp','mpesa_consumer_secret','MPESA�b%���%W%���������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4513,'jp','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4514,'jp','mpesa_short_code','MPESA��V%�����]%�����%��]%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4515,'jp','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4516,'jp','mpesa_sandbox_activation','MPESA��a%��%��������������c%�����������������]%��V%�����%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4517,'jp','flutterwave_credential','Flutterwave�%���]%������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4518,'jp','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4519,'jp','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4520,'jp','rave_title','RAVE_TITLE','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4521,'jp','stagin_activation','STAGIN ACTIVATION','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4522,'jp','all_product','�����c%��������\%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4523,'jp','sort_by','�U%���%��%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4524,'jp','rating_high__low','�#��[%�)"]%����>�\%�)"]%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4525,'jp','rating_low__high','�#��[%�)"]%��\%�>���)"]%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4526,'jp','num_of_sale_high__low','��%#���%���%)"]%����>�\%�)"]%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4527,'jp','num_of_sale_low__high','��%#���%���%)"]%��\%�>���)"]%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4528,'jp','base_price_high__low','��Q%����[%���]%)"]%����>�\%�)"]%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4529,'jp','base_price_low__high','��Q%����[%���]%)"]%��\%�>���)"]%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4530,'jp','type__enter','��%������)"]%������%��%��]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4531,'jp','added_by','�������������%\%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4532,'jp','num_of_sale','��%#���%���%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4533,'jp','total_stock','�V%�����Q%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4534,'jp','todays_deal','�W%�����������]%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4535,'jp','rating','�#��[%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4536,'jp','times','��%��������Q%','2021-02-09 07:00:20','2021-02-09 07:00:20'),(4537,'jp','add_nerw_product','Nerw��\%�������%\%���������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4538,'jp','product_information','��\%���������%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4539,'jp','unit','����\%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4540,'jp','unit_eg_kg_pc_etc','������������)"]%��[%�)"]%�KG���Pc�����#)"]%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4541,'jp','minimum_qty','�����%����%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4542,'jp','tags','��%���%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4543,'jp','type_and_hit_enter_to_add_a_tag','������������Enter�����]%�����]%��������%���%����%\%��������[%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4544,'jp','barcode','�����]%��%��]%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4545,'jp','refundable','�%���������\%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4546,'jp','product_images','��������W%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4547,'jp','gallery_images','��������#�����]%��W%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4548,'jp','todays_deal_updated_successfully','�W%�����������]%��������U%U%�����$%���%��������[%������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4549,'jp','published_products_updated_successfully','�����������������\%����������U%U%�����$%���%��������[%������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4550,'jp','thumbnail_image','��a%��������������W%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4551,'jp','featured_products_updated_successfully','�%���������\%����������U%U%�����$%���%��������[%������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4552,'jp','product_videos','��\%������������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4553,'jp','video_provider','��������������������������]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4554,'jp','youtube','Youtube','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4555,'jp','dailymotion','Dailymotion','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4556,'jp','vimeo','Vimeo','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4557,'jp','video_link','��������������%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4558,'jp','product_variation','��\%��������������]%��V%�����%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4559,'jp','colors','���%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4560,'jp','attributes','��%� ���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4561,'jp','choose_attributes','��%� ��������U%��� ','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4562,'jp','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','��������\%��������%� ��������U%��� ��������������������%� �����������������������[%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4563,'jp','product_price__stock','�������[%���]%+����Q%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4564,'jp','unit_price','����[%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4565,'jp','purchase_price','�%]%���������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4566,'jp','flat','�c%%������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4567,'jp','percent','�����]%��W%��%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4568,'jp','discount','��������c%��������%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4569,'jp','product_description','��\%���������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4570,'jp','product_shipping_cost','���������������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4571,'jp','free_shipping','������������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4572,'jp','flat_rate','��������b%������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4573,'jp','shipping_cost','�]%U%�����%W%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4574,'jp','pdf_specification','PDF�W%����','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4575,'jp','seo_meta_tags','SEO�����%��%���%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4576,'jp','meta_title','�����%��%���������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4577,'jp','meta_image','�����%��W%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4578,'jp','choice_title','��U%��� ��%���������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4579,'jp','enter_choice_values','��U%��� ������������������������������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4580,'jp','all_categories','�����c%��������������$%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4581,'jp','add_new_category','���%��������������$%�������%\%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4582,'jp','type_name__enter','���������������������������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4583,'jp','banner','��������]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4584,'jp','commission','������%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4585,'jp','icon','��������%��%','2021-02-09 07:00:20','2021-02-09 07:00:20'),(4586,'jp','featured_categories_updated_successfully','�%���������������$%����������U%U%�����$%���%��������[%������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4587,'jp','hot','���������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4588,'jp','filter_by_payment_status','�����������c%�����]%��%��c%��������������%�����%���%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4589,'jp','unpaid','���������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4590,'jp','filter_by_deliver_status','����%���c%�����]%��%��c%��������������%�����%���%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4591,'jp','pending','�%�����U%�','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4592,'jp','type_order_code__hit_enter','�%������%��]%������������������Enter�����]%�����]%�����[%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4593,'jp','num_of_products','���% ��\%������','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4594,'jp','walk_in_customer','�����#��]%��������%�����c%��%��� ��]%','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4595,'jp','qty','���%���','2021-02-09 07:00:20','2021-09-20 07:29:20'),(4596,'jp','without_shipping_charge','���������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4597,'jp','with_shipping_charge','���������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4598,'jp','pay_with_cash','��[%���������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4599,'jp','shipping_address','�����%�����������\%����','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4600,'jp','close','���������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4601,'jp','select_country','��\%�����U%��� ','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4602,'jp','order_confirmation','�%������Q%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4603,'jp','are_you_sure_to_confirm_this_order','�������%���������Q%���������������������������������)"]%�','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4604,'jp','comfirm_order','�%���������Q%���������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4605,'jp','personal_info','����Q%Q%������%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4606,'jp','repeat_password','�����c%�����]%����������Q%�������������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4607,'jp','shop_name','��V%������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4608,'jp','register_your_shop','��V%��������������W%���%������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4609,'jp','affiliate_informations','���������������������������%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4610,'jp','affiliate','���������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4611,'jp','user_info','�����]%��b%��]%������%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4612,'jp','installed_addon','�����%��c%�����]%�����������������������%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4613,'jp','available_addon','��#��������\%��������������%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4614,'jp','install_new_addon','���%�����������������%��������%��c%�����]%���������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4615,'jp','version','�����]%��U%�����%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4616,'jp','activated','�����c%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4617,'jp','deactivated','��� ������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4618,'jp','activate_otp','OTP���������������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4619,'jp','otp_will_be_used_for','OTP�������������������\%%�����������[%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4620,'jp','settings_updated_successfully','�������������U%U%�����$%���%��������[%������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4621,'jp','product_owner','��������������������]%�����]%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4622,'jp','point','��������%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4623,'jp','set_point_for_product_within_a_range','������%��������\%���������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4624,'jp','set_point_for_multiple_products','������%�����\%��������W%��������������%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4625,'jp','min_price','�����%��[%���]%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4626,'jp','max_price','�������[%���]%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4627,'jp','set_point_for_all_products','�����c%��������\%���������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4628,'jp','set_point_for_','������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4629,'jp','convert_status','��c%�����]%��%��c%���������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4630,'jp','earned_at','������%�[%�','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4631,'jp','seller_based_selling_report','���%�����������]%��c%�����%#���%��������]%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4632,'jp','sort_by_verificarion_status','�����]%��c%�����]%��%��c%����U%���c%��%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4633,'jp','approved','��%����U%���%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4634,'jp','non_approved','�����%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4635,'jp','filter','�����������%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4636,'jp','seller_name','���%���������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4637,'jp','number_of_product_sale','��\%�����%#���%���%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4638,'jp','order_amount','�%����������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4639,'jp','facebook_chat_setting','Facebook���������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4640,'jp','facebook_page_id','Facebook�����]%��U%ID','2021-02-09 07:00:21','2021-09-20 07:29: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�������������������������������������%���������������������������������������������������$%�����������]%��b%��]%�����%�����a%�����������������W%��%��U%�����]%��������%��%��������Q%��������[%���������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4642,'jp','login_into_your_facebook_page','Facebook�����]%��U%���������%�����%�����[%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4643,'jp','find_the_about_option_of_your_facebook_page','Facebook�����]%��U%���About��������V%�����%���������������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4644,'jp','at_the_very_bottom_you_can_find_the_facebook_page_id','�U%�����U%�������Facebook�����]%��U%ID��������������[%������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4645,'jp','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','�����]%��U%��������������W%�����������������������%��c%��������W%��]%��U%��%���%��������������V%�����%��������������[%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4646,'jp','scroll_down_that_page_and_you_will_get_white_listed_domain','�����������]%��U%����U%������c%��������]%�����������������������������������c%��������������%�����������Q%��������[%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4647,'jp','set_your_website_domain_name','�����������a%��������������������%������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4648,'jp','google_recaptcha_setting','GooglereCAPTCHA������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4649,'jp','site_key','��a%�����������]%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4650,'jp','select_shipping_method','��������c%�%������U%��� ������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4651,'jp','product_wise_shipping_cost','��\%������������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4652,'jp','flat_rate_shipping_cost','���������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4653,'jp','seller_wise_flat_shipping_cost','���%��������������Q%�����#������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4654,'jp','note','�%����','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4655,'jp','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','��\%���������������������������)"]%������������������������������������������������������������[%������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4656,'jp','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','������������������������)"]%�����������%]%�����������\%���������%�������%���������[%��������������������Q%���������','2021-02-09 07:00:21','2021-09-20 07:29: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','���%��������������Q%�����#������������������������)"]%�������%�����������Q%���������������������2���������%������������2��������\%�������%]%�����������$%���������������������%��������������#�����������������������������������������[%������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4658,'jp','flat_rate_cost','������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4659,'jp','shipping_cost_for_admin_products','��������\%������������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4660,'jp','countries','��\%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4661,'jp','showhide','�����Q%/��� �����Q%','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4662,'jp','country_status_updated_successfully','��\%�����c%�����]%��%��c%�������U%U%�����$%���%��������[%������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4663,'jp','all_subcategories','�����c%��������a%�����������$%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4664,'jp','add_new_subcategory','���%��������a%�����������$%�������%\%���������','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4665,'jp','subcategories','��a%�����������$%���','2021-02-09 07:00:21','2021-09-20 07:29:20'),(4666,'jp','sub_category_information','��a%�����������$%���������%','2021-02-09 07:01:08','2021-09-20 07:29:20'),(4667,'jp','slug','�����������U%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4668,'jp','all_sub_subcategories','�����c%��������a%�����a%�����������$%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4669,'jp','add_new_sub_subcategory','���%��������a%�����a%�����������$%�������%\%���������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4670,'jp','subsubcategories','��a%�����a%�����������$%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4671,'jp','make_this_default','�����������������#���������������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4672,'jp','shops','��V%���������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4673,'jp','women_clothing__fashion','��%�����������������������V%�����%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4674,'jp','cellphones__tabs','��Q%�U%���W%�#�%�����%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4675,'jp','welcome_to','������������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4676,'jp','create_a_new_account','���%�����������������%�������\%����������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4677,'jp','full_name','�����������]%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4678,'jp','password','�����c%�����]%���','2021-02-09 07:01:09','2021-02-09 07:01:09'),(4679,'jp','confrim_password','Confrim�����c%�����]%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4680,'jp','i_agree_with_the','�����������������[%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4681,'jp','terms_and_conditions','����$%��������W%b%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4682,'jp','register','��W%���%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4683,'jp','already_have_an_account','��������������������%������������������������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4684,'jp','sign_up_with','�����W%���%������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4685,'jp','i_agree_with_the_terms_and_conditions','��#�������$%���������������[%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4686,'jp','all_role','�����c%�������\%c%���%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4687,'jp','add_new_role','���%�������\%c%���%����%\%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4688,'jp','roles','�\%c%���%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4689,'jp','add_new_staffs','���%��������c%��%����������%\%���������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4690,'jp','role','�\%c%���%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4691,'jp','frontend_website_name','��������%��������%�����������������a%���������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4692,'jp','website_name','�����������a%���������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4693,'jp','site_motto','��a%��������������������]%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4694,'jp','best_ecommerce_website','���������e��%��� ��]%��c%�����������a%������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4695,'jp','site_icon','��a%��������������%��%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4696,'jp','website_favicon_32x32_png','�����������a%��������������������%��%���32x32 .png','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4697,'jp','website_base_color','�����������a%��������������]%��c%�����#��]%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4698,'jp','hex_color_code','16���%�����#��]%��%��]%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4699,'jp','website_base_hover_color','�����������a%��������������]%��c%��������]%�����#��]%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4700,'jp','update','��$%���%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4701,'jp','global_seo','���%�����]%��������\%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4702,'jp','meta_description','�����%����%�%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4703,'jp','keywords','�����]%�����]%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4704,'jp','separate_with_coma','��������b%������������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4705,'jp','website_pages','�����������a%�����������]%��U%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4706,'jp','all_pages','�����c%�����������]%��U%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4707,'jp','add_new_page','���%�����������]%��U%����%\%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4708,'jp','url','URL','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4709,'jp','actions','������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4710,'jp','edit_page_information','�����]%��U%������%����V%����','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4711,'jp','page_content','�����]%��U%��%��%�����%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4712,'jp','title','������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4713,'jp','link','�����%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4714,'jp','use_character_number_hypen_only','������������%�����������������%�����%����\%%���','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4715,'jp','add_content','��%��%�����%�������%\%���������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4716,'jp','seo_fields','��\%��������]%������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4717,'jp','update_page','�����]%��U%�����$%���%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4718,'jp','default_language','��������������� ','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4719,'jp','add_new_language','���%������������ ����%\%���������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4720,'jp','rtl','RTL','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4721,'jp','translation','�%W%��%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4722,'jp','language_information','������ ������%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4723,'jp','save_page','�����]%��U%����%����','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4724,'jp','home_page_settings','�����]%��������]%��U%���������','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4725,'jp','home_slider','�����]%�����c%��#��������]%','2021-02-09 07:01:09','2021-09-20 07:29:20'),(4726,'jp','photos__links','��������������%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4727,'jp','add_new','���%�������%\%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4728,'jp','home_categories','�����]%�����������$%�����]%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4729,'jp','home_banner_1_max_3','�����]%�����������]%1)"]%�������3)"]%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4730,'jp','banner__links','��������]%��������%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4731,'jp','home_banner_2_max_3','�����]%�����������]%2)"]%�������3)"]%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4732,'jp','top_10','���������10','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4733,'jp','top_categories_max_10','�����������������$%�����]%)"]%�������10)"]%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4734,'jp','top_brands_max_10','��������������#��%���)"]%�������10)"]%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4735,'jp','system_name','��V%��c%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4736,'jp','system_logo__white','��V%��c%�����������$%-��\%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4737,'jp','choose_files','�����������������U%��� ','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4738,'jp','will_be_used_in_admin_panel_side_menu','��������������������a%�����������������]%����\%%�����������[%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4739,'jp','system_logo__black','��V%��c%�����������$%-�W%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4740,'jp','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','��������������������������������������������]%+���������������%�����%�����]%��U%����\%%�����������[%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4741,'jp','system_timezone','��V%��c%��������%��������[%��]%��%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4742,'jp','admin_login_page_background','���������������%�����%�����]%��U%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4743,'jp','website_header','�����������a%�����������������]%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4744,'jp','header_setting','�����������]%������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4745,'jp','header_logo','�����������]%�����$%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4746,'jp','show_language_switcher','������ ��c%��������������]%��������Q%�����[%������)"]%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4747,'jp','show_currency_switcher','�����%���c%��������������]%��������Q%�����[%������)"]%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4748,'jp','enable_stikcy_header','stikcy�����������]%��������c%��������[%������)"]%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4749,'jp','website_footer','�����������a%��������������%��]%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4750,'jp','footer_widget','��������%��]%��������U%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4751,'jp','about_widget','��������U%���������������������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4752,'jp','footer_logo','��������%��]%�����$%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4753,'jp','about_description','������������������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4754,'jp','contact_info_widget','����a%����������%��������U%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4755,'jp','footer_contact_address','��������%��]%�������a%����','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4756,'jp','footer_contact_phone','��������%��]%����a%������W%�#�%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4757,'jp','footer_contact_email','��������%��]%�������a%���������]%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4758,'jp','link_widget_one','�����%�����������U%���������1','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4759,'jp','links','�����%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4760,'jp','footer_bottom','��������%��]%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4761,'jp','copyright_widget_','����\%���#��������U%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4762,'jp','copyright_text','����\%���#��������c%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4763,'jp','social_link_widget_','��\%��]%��V%�����������%�����������U%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4764,'jp','show_social_links','��\%��]%��V%�����������%�����������Q%�����[%������)"]%�','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4765,'jp','social_links','��\%��]%��V%�����������%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4766,'jp','payment_methods_widget_','�����������c%�%���������U%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4767,'jp','rtl_status_updated_successfully','RTL��c%�����]%��%��c%�������U%U%�����$%���%��������[%������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4768,'jp','language_changed_to_','������ �����������$%��������[%������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4769,'jp','inhouse_product_sale_report','�����[%��\%�����%#���%��������]%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4770,'jp','sort_by_category','��������$%�������U%���c%��%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4771,'jp','product_wise_stock_report','��\%����������������Q%���������]%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4772,'jp','currency_changed_to_','�����%������������$%��������[%������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4773,'jp','avatar','��������%��]%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4774,'jp','copy','��%�����]%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4775,'jp','variant','�����������%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4776,'jp','variant_price','�����������%����[%���]%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4777,'jp','sku','SKU','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4778,'jp','key','�����]%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4779,'jp','value','���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4780,'jp','copy_translations','�%W%��%�����%�����]%������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4781,'jp','all_pickup_points','�����c%��������������������������������%���','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4782,'jp','add_new_pickup_point','���%��������������������������������%�������%\%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4783,'jp','manager','��� �����]%��U%�����]%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4784,'jp','location','������%��]%��V%�����%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4785,'jp','pickup_station_contact','��������������������c%�����]%��V%�����%�������a%����','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4786,'jp','open','���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4787,'jp','pos_activation_for_seller','���%������������������POS�����������������]%��V%�����%','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4788,'jp','order_completed_successfully','�%�����������U%U%�������Q%������[%���������','2021-02-09 07:01:09','2021-09-20 07:29:21'),(4789,'jp','text_input','��������c%���������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4790,'jp','select','��U%��� ������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4791,'jp','multiple_select','������%��U%��� ','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4792,'jp','radio','����V%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4793,'jp','file','������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4794,'jp','email_address','��W%��������]%��������������c%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4795,'jp','verification_info','�����]%������%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4796,'jp','approval','��%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4797,'jp','due_amount','������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4798,'jp','show','����]%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4799,'jp','pay_now','�W%�������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4800,'jp','affiliate_user_verification','��������������������������]%��b%��]%�����Q%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4801,'jp','reject','������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4802,'jp','accept','���������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4803,'jp','beauty_health__hair','�[%���c%�������Q%V%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4804,'jp','comparison','����]%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4805,'jp','reset_compare_list','����]%������c%�����������W%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4806,'jp','your_comparison_list_is_empty','����]%������c%�������#Q%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4807,'jp','convert_point_to_wallet','��������%�����������#������������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4808,'jp','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','�%�)"]%������#�����������%��������������%����\%%��������������������[%��������#�����������������V%�����%��������c%����������%���������������[%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4809,'jp','create_an_account','�����������%�������\%�������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4810,'jp','use_email_instead','�W%���������������]%�������\%%���������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4811,'jp','by_signing_up_you_agree_to_our_terms_and_conditions','��a%�����%�����������������������#�������$%���������������������������������[%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4812,'jp','create_account','�����������%�������\%����������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4813,'jp','or_join_with','��[%������������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4814,'jp','already_have_an_account','��������������������%������������������������)"]%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4815,'jp','log_in','������%�����%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4816,'jp','computer__accessories','��%��%��������]%��%��������W%��a%�����]%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4817,'jp','products','��\%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4818,'jp','in_your_cart','�����]%�������U%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4819,'jp','in_your_wishlist','�����������V%��������c%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4820,'jp','you_ordered','�������������%����������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4821,'jp','default_shipping_address','��������#�������������������\%����','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4822,'jp','sports__outdoor','��c%�����]%���)"]%����������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4823,'jp','copied','��%�����]%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4824,'jp','copy_the_promote_link','�����������]%��������%��������%�����]%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4825,'jp','write_a_review','�����������]%�����U%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4826,'jp','your_name','������������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4827,'jp','comment','��%�����%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4828,'jp','your_review','�����������������������]%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4829,'jp','submit_review','�����������]%����%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4830,'jp','claire_willis','��������������������c%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4831,'jp','germaine_greene','Germaine Greene','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4832,'jp','product_file','��\%���������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4833,'jp','choose_file','�����������������U%��b%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4834,'jp','type_to_add_a_tag','��%���%����%\%�����������������������������[%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4835,'jp','images','��W%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4836,'jp','main_images','��������%��W%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4837,'jp','meta_tags','�����%��%���%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4838,'jp','digital_product_has_been_inserted_successfully','�����U%��%�����\%����������U%U%�����%�����������[%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4839,'jp','edit_digital_product','�����U%��%�����\%�������V%����','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4840,'jp','select_an_option','��U%��� ����U%���������U%��� ������������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4841,'jp','tax','������','2021-02-09 07:01:10','2021-02-09 07:01:10'),(4842,'jp','any_question_about_this_product','��������\%����������������%���������������[%������)"]%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4843,'jp','sign_in','������%�����%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4844,'jp','login_with_google','Google���������%�����%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4845,'jp','login_with_facebook','Facebook���������%�����%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4846,'jp','login_with_twitter','Twitter���������%�����%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4847,'jp','click_to_show_phone_number','��������������������W%�#�%�����V%��������Q%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4848,'jp','other_ads_of','�������W%�����Q%����','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4849,'jp','store_home','��c%�����������]%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4850,'jp','top_selling','�����������W%��#��]%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4851,'jp','shop_settings','��V%���������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4852,'jp','visit_shop','��V%��������������������W%��c%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4853,'jp','pickup_points','��������������������������%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4854,'jp','select_pickup_point','��������������������������%��������U%��� ','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4855,'jp','slider_settings','��c%��#��������]%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4856,'jp','social_media_link','��\%��]%��V%�����������������������%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4857,'jp','facebook','�����������c%���������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4858,'jp','twitter','�����������%��]%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4859,'jp','google','���%��]%���%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4860,'jp','new_arrival_products','���%���������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4861,'jp','check_your_order_status','�%������b%�%������Q%���������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4862,'jp','shipping_method','��������c%�%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4863,'jp','shipped_by','�����Q%��V%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4864,'jp','image','��W%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4865,'jp','sub_sub_category','��a%�����a%�����������$%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4866,'jp','inhouse_products','�����[%��\%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4867,'jp','forgot_password','�����c%�����]%����������%�������������)"]%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4868,'jp','enter_your_email_address_to_recover_your_password','�����c%�����]%��������� �[%#��������������������]%��������������c%������������������������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4869,'jp','email_or_phone','�����]%�����[%��������W%�#�%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4870,'jp','send_password_reset_link','�����c%�����]%��������W%�����������%����������%�','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4871,'jp','back_to_login','������%�����%�����W%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4872,'jp','index','�����%�����������c%','2021-02-09 07:01:10','2021-02-09 07:01:10'),(4873,'jp','download_your_product','��\%��������������%�����]%���������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4874,'jp','option','��������V%�����%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4875,'jp','applied_refund_request','��#��������������������W%��������������c%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4876,'jp','item_has_been_renoved_from_wishlist','��������������������������V%��������c%��������������������]%��������������[%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4877,'jp','bulk_products_upload','�����������\%��������������������]%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4878,'jp','upload_csv','CSV�����������������]%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4879,'jp','create_a_ticket','������%����������\%����������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4880,'jp','tickets','���������%��$%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4881,'jp','ticket_id','������%������ID','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4882,'jp','sending_date','����%����','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4883,'jp','subject','�W%b%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4884,'jp','view_details','�#%�$%�%���������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4885,'jp','provide_a_detailed_description','�#%�$%�%������������������������������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4886,'jp','type_your_reply','�%��%����������������������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4887,'jp','send_ticket','������%���������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4888,'jp','load_more','��������������%�[%]%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4889,'jp','jewelry__watches','��U%�����������]%)"]%�������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4890,'jp','filters','�����������%��]%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4891,'jp','contact_address','����a%�����\%����','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4892,'jp','contact_phone','��������������������W%�#�%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4893,'jp','contact_email','����a%���������]%��������������c%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4894,'jp','filter_by','�����������%�����%���%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4895,'jp','condition','��b%���','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4896,'jp','all_type','�����c%��������%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4897,'jp','pay_with_wallet','��%��U%�������������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4898,'jp','select_variation','�����������]%��V%�����%�����U%��� ','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4899,'jp','no_product_added','��\%�������%\%�����������������[%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4900,'jp','status_has_been_updated_successfully','��c%�����]%��%��c%�������U%U%�����$%���%��������[%������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4901,'jp','all_seller_packages','�����c%��������W%��#��]%���������%��]%��U%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4902,'jp','add_new_package','���%���������������%��]%��U%����%\%���������','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4903,'jp','package_logo','���������%��]%��U%�����$%','2021-02-09 07:01:10','2021-09-20 07:29:21'),(4904,'jp','days','������','2021-02-09 07:01:11','2021-02-09 07:01:11'),(4905,'jp','create_new_seller_package','���%��������W%��#��]%���������%��]%��U%����\%����������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4906,'jp','package_name','���������%��]%��U%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4907,'jp','duration','�����������]%��V%�����%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4908,'jp','validity_in_number_of_days','������%�����������c%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4909,'jp','update_package_information','���������%��]%��U%������%�����$%���%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4910,'jp','package_has_been_inserted_successfully','���������%��]%��U%�������U%U%�����%�����������[%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4911,'jp','refund_request','��������W%�����������������c%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4912,'jp','reason','������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4913,'jp','label','��#������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4914,'jp','select_label','��#�����������U%��� ','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4915,'jp','multiple_select_label','������%��U%��� ��#������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4916,'jp','radio_label','��#��U%�����#������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4917,'jp','pickup_point_orders','��������������������������%�������%����','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4918,'jp','view','������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4919,'jp','order_','�%���������V%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4920,'jp','order_status','�%���������b%�%�','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4921,'jp','total_amount','������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4922,'jp','total','������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4923,'jp','delivery_status_has_been_updated','����%���c%�����]%��%��c%�����$%���%��������[%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4924,'jp','payment_status_has_been_updated','�����������c%�����]%��%��c%�����$%���%��������[%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4925,'jp','invoice','�����%���U%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4926,'jp','set_refund_time','��������W%������������������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4927,'jp','set_time_for_sending_refund_request','��������W%��������������c%����������%����������������������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4928,'jp','set_refund_sticker','��������W%�����c%�����������]%���������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4929,'jp','sticker','��c%�����������]%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4930,'jp','refund_request_all','�����c%��������������W%��������������c%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4931,'jp','order_id','�%����ID','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4932,'jp','seller_approval','���%�����������%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4933,'jp','admin_approval','��������������%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4934,'jp','refund_status','��������W%�����c%�����]%��%��c%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4935,'jp','no_refund','�%����������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4936,'jp','status_updated_successfully','��c%�����]%��%��c%�������U%U%�����$%���%��������[%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4937,'jp','user_search_report','�����]%��b%��]%����$%���������]%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4938,'jp','search_by','�������$%�������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4939,'jp','number_searches','�����V%����$%�','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4940,'jp','sender','����%����','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4941,'jp','receiver','�����V%��]%�����]%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4942,'jp','verification_form_updated_successfully','��Q%��������#��]%����������U%U%�����$%���%��������[%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4943,'jp','invalid_email_or_password','�����c%��������]%��������������c%��[%�����������c%�����]%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4944,'jp','all_coupons','�����c%�����������]%�����%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4945,'jp','add_new_coupon','���%�����������]%�����%����%\%���������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4946,'jp','coupon_information','�����]%�����%������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4947,'jp','start_date','���������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4948,'jp','end_date','�a%��Q%����','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4949,'jp','product_base','��\%��������]%��c%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4950,'jp','send_newsletter','��������]%��c%�����%��]%�������%�������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4951,'jp','mobile_users','�����������������]%��b%��]%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4952,'jp','sms_subject','SMS����W%b%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4953,'jp','sms_content','SMS��%��%�����%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4954,'jp','all_flash_delas','�����]%��������#�����V%��������#��c%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4955,'jp','create_new_flash_dela','���%�����������#�����V%��������#����\%����������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4956,'jp','page_link','�����]%��U%�����%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4957,'jp','flash_deal_information','�����#�����V%�������]%�������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4958,'jp','background_color','���������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4959,'jp','0000ff',')"]%�0000ff','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4960,'jp','text_color','��������c%���������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4961,'jp','white','��\%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4962,'jp','dark','���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4963,'jp','choose_products','��\%��������U%��� ������������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4964,'jp','discounts','���%�]%�','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4965,'jp','discount_type','���%�]%���%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4966,'jp','twillo_credential','Twillo�%���]%������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4967,'jp','twilio_sid','TWILIO SID','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4968,'jp','twilio_auth_token','TWILIOAUTH�����]%�����%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4969,'jp','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4970,'jp','valid_twillo_number','�����c%���TWILLO�����V%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4971,'jp','nexmo_credential','Nexmo�%���]%������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4972,'jp','nexmo_key','NEXMO�����]%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4973,'jp','nexmo_secret','NEXMO��V%��]%������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4974,'jp','ssl_wireless_credential','SSL��������������c%�%���]%������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4975,'jp','ssl_sms_api_token','SSL SMSAPI�����]%�����%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4976,'jp','ssl_sms_sid','SSL SMS SID','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4977,'jp','ssl_sms_url','SSL SMSURL','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4978,'jp','fast2sms_credential','Fast2SMS�%���]%������%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4979,'jp','auth_key','�����]%�����]%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4980,'jp','route','�����]%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4981,'jp','promotional_use','��%#�%����','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4982,'jp','transactional_use','�����#��%��b%�����V%�����%�\%%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4983,'jp','sender_id','SENDER ID','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4984,'jp','nexmo_otp','Nexmo OTP','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4985,'jp','twillo_otp','Twillo OTP','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4986,'jp','ssl_wireless_otp','SSL��������������c%OTP','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4987,'jp','fast2sms_otp','Fast2SMS OTP','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4988,'jp','order_placement','��Q%�%�','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4989,'jp','delivery_status_changing_time','��������b%�%������$%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4990,'jp','paid_status_changing_time','��������c%�����]%��%��c%�����$%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4991,'jp','send_bulk_sms','���������SMS�������%�������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4992,'jp','all_subscribers','�����c%��������a%�����c%�����#��������]%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4993,'jp','coupon_information_adding','�����]%�����%������%�%\%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4994,'jp','coupon_type','�����]%�����%��%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4995,'jp','for_products','��\%��������$%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4996,'jp','for_total_orders','����%���������$%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4997,'jp','add_your_product_base_coupon','��\%��������]%��c%�����]%�����%����%\%���������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4998,'jp','coupon_code','�����]%�����%��%��]%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(4999,'jp','sub_category','��a%�����������$%�����]%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5000,'jp','add_more','����������%\%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5001,'jp','add_your_cart_base_coupon','�����]%��������]%��c%�����]%�����%����%\%���������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5002,'jp','minimum_shopping','�����%���������%V%�����#','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5003,'jp','maximum_discount_amount','���������%�]%����','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5004,'jp','coupon_information_update','�����]%�����%������%��$%���%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5005,'jp','please_configure_smtp_setting_to_work_all_email_sending_funtionality','�����c%��������W%��������]%�������%��#���\%����#���\%���������������SMTP���������������������������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5006,'jp','configure_now','�W%�������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5007,'jp','total_published_products','�����������������\%������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5008,'jp','total_sellers_products','�����]%��%�����W%��#��]%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5009,'jp','total_admin_products','�V%���������\%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5010,'jp','manage_products','��\%������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5011,'jp','total_product_category','�V%���\%�����������$%�����]%','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5012,'jp','create_category','��������$%�������\%����������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5013,'jp','total_product_sub_sub_category','��\%�����a%�����a%�����������$%������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5014,'jp','create_sub_sub_category','��a%�����a%�����������$%�������\%����������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5015,'jp','total_product_sub_category','��\%�����a%�����������$%������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5016,'jp','create_sub_category','��a%�����������$%�������\%����������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5017,'jp','total_product_brand','�����]%��%��������������#��%���','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5018,'jp','create_brand','�����#��%�������\%����������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5019,'jp','total_sellers','�V%����%������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5020,'jp','total_approved_sellers','��%���������������%���������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5021,'jp','total_pending_sellers','�%�����U%�������%���������������','2021-02-09 07:01:11','2021-09-20 07:29:21'),(5022,'jp','manage_sellers','���%���������������������','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5023,'jp','category_wise_product_sale','��������$%��������������%#���%','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5024,'jp','sale','��W%��]%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5025,'jp','category_wise_product_stock','��������$%�����������\%�������Q%�','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5026,'jp','category_name','���������','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5027,'jp','stock','����]%�','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5028,'jp','frontend','��������%��������%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5029,'jp','home_page','�����]%��������]%��U%','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5030,'jp','setting','������','2021-02-09 07:01:12','2021-02-09 07:01:12'),(5031,'jp','policy_page','��������V%��]%�����]%��U%','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5032,'jp','general','�U%����','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5033,'jp','click_here','���������������������','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5034,'jp','useful_link','�[%%��#��������%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5035,'jp','activation','�����������������]%��V%�����%','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5036,'jp','smtp','SMTP','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5037,'jp','payment_method','��������c%�%�','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5038,'jp','social_media','��\%��]%��V%������������������','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5039,'jp','business','�����U%�����c%','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5040,'jp','seller_verification','���%�����������Q%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5041,'jp','form_setting','�����#��]%���������','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5042,'jp','language','������ ','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5043,'jp','dashboard','��������V%��������]%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5044,'jp','pos_system','POS��V%��c%������','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5045,'jp','pos_manager','POS��� �����]%��U%�����]%','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5046,'jp','pos_configuration','POS������','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5047,'jp','products','��\%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5048,'jp','add_new_product','���%��\%�������%\%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5049,'jp','all_products','�����c%��������\%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5050,'jp','in_house_products','�����%��������c%��\%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5051,'jp','seller_products','���%�����������\%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5052,'jp','digital_products','�����U%��%�����\%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5053,'jp','bulk_import','�U%���������%�����]%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5054,'jp','bulk_export','�U%������������c%�����]%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5055,'jp','category','��������$%�����]%','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5056,'jp','subcategory','��a%�����������$%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5057,'jp','sub_subcategory','��a%�����a%�����������$%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5058,'jp','brand','�����#��%���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5059,'jp','attribute','��%� ���','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5060,'jp','product_reviews','��\%��������������]%','2021-02-09 07:01:12','2021-09-20 07:29:21'),(5061,'jp','sales','��%#���%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5062,'jp','all_orders','�����c%�������%����','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5063,'jp','inhouse_orders','��[%����%����','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5064,'jp','seller_orders','���%����������%����','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5065,'jp','pickup_point_order','��������������������������%�������%����','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5066,'jp','refunds','��������W%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5067,'jp','refund_requests','��������W%��������������c%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5068,'jp','approved_refund','��%��������������������W%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5069,'jp','refund_configuration','��������W%������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5070,'jp','customers','���������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5071,'jp','customer_list','�����������c%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5072,'jp','classified_products','������ �����������\%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5073,'jp','classified_packages','������ ������������������%��]%��U%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5074,'jp','sellers','���%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5075,'jp','all_seller','�����c%���������%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5076,'jp','payouts','���������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5077,'jp','payout_requests','��������������%�','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5078,'jp','seller_commission','���%������������%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5079,'jp','seller_packages','���%���������������%��]%��U%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5080,'jp','seller_verification_form','���%��������Q%��������#��]%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5081,'jp','reports','��������]%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5082,'jp','in_house_product_sale','�����[%��\%�����%#���%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5083,'jp','seller_products_sale','���%��������\%��������%#���%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5084,'jp','products_stock','����������Q%�','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5085,'jp','products_wishlist','��\%�����������������V%��������c%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5086,'jp','user_searches','�����]%��b%��]%����$%�','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5087,'jp','marketing','��� ��]%���%��������%���%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5088,'jp','flash_deals','�����#�����V%����������[%����������%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5089,'jp','newsletters','��������]%��c%�����%��]%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5090,'jp','bulk_sms','���������SMS','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5091,'jp','subscribers','��a%�����c%�����#��������]%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5092,'jp','coupon','�����]%�����%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5093,'jp','support','��a%�����]%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5094,'jp','ticket','������%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5095,'jp','product_queries','��\%������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5096,'jp','website_setup','�����������a%�����������W%���������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5097,'jp','header','���������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5098,'jp','footer','��������%��]%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5099,'jp','pages','�����]%��U%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5100,'jp','appearance','�����%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5101,'jp','setup__configurations','��W%������������������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5102,'jp','general_settings','�U%����������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5103,'jp','features_activation','�#���\%���������������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5104,'jp','languages','������ ','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5105,'jp','currency','�����%�','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5106,'jp','pickup_point','�����V%��$%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5107,'jp','smtp_settings','SMTP������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5108,'jp','payment_methods','��������������c%�%�','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5109,'jp','file_system_configuration','��������������V%��c%���������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5110,'jp','social_media_logins','��\%��]%��V%������������������������%�����%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5111,'jp','analytics_tools','����� ������]%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5112,'jp','facebook_chat','Facebook������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5113,'jp','google_recaptcha','Google reCAPTCHA','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5114,'jp','shipping_configuration','��Q%��V%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5115,'jp','shipping_countries','��Q%��V%��\%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5116,'jp','affiliate_system','�����������������������V%��c%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5117,'jp','affiliate_registration_form','�����������������������W%���%�����#��]%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5118,'jp','affiliate_configurations','���������������������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5119,'jp','affiliate_users','��������������������������]%��b%��]%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5120,'jp','referral_users','�$%c%�W%������]%��b%��]%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5121,'jp','affiliate_withdraw_requests','��������������������������� �����������c%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5122,'jp','offline_payment_system','��������#�����%��%Q%�U%���V%��c%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5123,'jp','manual_payment_methods','�����������������c%�%�','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5124,'jp','offline_wallet_recharge','��������#�����%�����#��������������������]%��U%','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5125,'jp','offline_customer_package_payments','��������#�����%������������������%��]%��U%���������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5126,'jp','offline_seller_package_payments','��������#�����%��W%��#��]%���������%��]%��U%���������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5127,'jp','paytm_payment_gateway','Paytm�����������%������%��]%������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5128,'jp','set_paytm_credentials','Paytm�%���]%������%���������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5129,'jp','club_point_system','�����#�����������%�����V%��c%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5130,'jp','club_point_configurations','�����#�����������%������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5131,'jp','set_product_point','��\%�����������%������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5132,'jp','user_points','�����]%��b%��]%��������%���','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5133,'jp','otp_system','OTP��V%��c%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5134,'jp','otp_configurations','OTP������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5135,'jp','set_otp_credentials','OTP�%���]%������%���������������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5136,'jp','staffs','��c%��%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5137,'jp','all_staffs','�����c%��������c%��%������','2021-02-09 07:01:12','2021-09-20 07:29:22'),(5138,'jp','staff_permissions','��c%��%������������%���','2021-02-09 07:01:13','2021-09-20 07:29:22'),(5139,'jp','addon_manager','�����������%��� �����]%��U%�����]%','2021-02-09 07:01:13','2021-09-20 07:29:22'),(5140,'jp','browse_website','�����������a%������������%���������','2021-02-09 07:01:13','2021-09-20 07:29:22'),(5141,'jp','pos','POS','2021-02-09 07:01:13','2021-09-20 07:29:22'),(5142,'jp','notifications','������','2021-02-09 07:01:13','2021-09-20 07:29:22'),(5143,'jp','new_orders','���%����%����','2021-02-09 07:01:13','2021-09-20 07:29:22'),(5144,'jp','userimage','�����]%��b%��]%��������]%��U%','2021-02-09 07:01:13','2021-09-20 07:29:22'),(5145,'jp','profile','��������������]%���','2021-02-09 07:01:13','2021-09-20 07:29:22'),(5146,'jp','logout','������%���������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5147,'jp','page_not_found','�����]%��U%�����������������[%������)"]%�','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5148,'jp','the_page_you_are_looking_for_has_not_been_found_on_our_server','�����������������]%��U%�����a%��]%�����]%�����������������[%������������������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5149,'jp','registration','��W%���%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5150,'jp','i_am_shopping_for','��������%V%�����#��������������[%���...','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5151,'jp','compare','����]%�������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5152,'jp','wishlist','�����������V%��������c%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5153,'jp','cart','�����]%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5154,'jp','your_cart_is_empty','�����������������]%�������#Q%������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5155,'jp','categories','��������$%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5156,'jp','see_all','�����c%������������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5157,'jp','seller_policy','���%�����������c%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5158,'jp','return_policy','�%����������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5159,'jp','support_policy','��a%�����]%�����������V%��]%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5160,'jp','privacy_policy','����Q%Q%������%�%���V%��c%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5161,'jp','your_email_address','�����]%��������������c%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5162,'jp','subscribe','��%����[%]%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5163,'jp','contact_info','����a%����������%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5164,'jp','address','�\%����','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5165,'jp','phone','��W%�#�%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5166,'jp','email','E�����]%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5167,'jp','login','������%�����%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5168,'jp','my_account','��� ��������������%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5169,'jp','order_history','�%������%���$%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5170,'jp','my_wishlist','�����������������V%��������c%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5171,'jp','track_order','�%��������%\%�V%�','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5172,'jp','be_an_affiliate_partner','��������������������������]%��������]%���������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5173,'jp','be_a_seller','���%���������������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5174,'jp','apply_now','�W%���������%����[%]%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5175,'jp','confirmation','��Q%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5176,'jp','delete_confirmation_message','��Q%�����������W%��]%��U%���������������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5177,'jp','cancel','��������%��W%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5178,'jp','delete','������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5179,'jp','item_has_been_added_to_compare_list','����]%������c%����������������%\%��������[%������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5180,'jp','please_login_first','���������������%�����%������������������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5181,'jp','total_earnings_from','����������V%�������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5182,'jp','client_subscription','�����#��������%�����a%�����c%�����������V%�����%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5183,'jp','product_category','��\%�����������$%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5184,'jp','product_sub_sub_category','��\%�����a%�����a%�����������$%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5185,'jp','product_sub_category','��\%�����a%�����������$%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5186,'jp','product_brand','��\%��������#��%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5187,'jp','top_client_packages','��������������#��������%������������%��]%��U%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5188,'jp','top_freelancer_packages','�����������������]%��#��%��a%��]%���������%��]%��U%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5189,'jp','number_of_sale','��%#���%���%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5190,'jp','number_of_stock','����Q%����%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5191,'jp','top_10_products','���������10��\%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5192,'jp','top_12_products','���������12��\%���','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5193,'jp','admin_can_not_be_a_seller','���������������%��������������������������������[%������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5194,'jp','filter_by_rating','�#��[%���������������������%�����%���%','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5195,'jp','published_reviews_updated_successfully','��������������������������]%�������U%U%�����$%���%��������[%������','2021-02-09 07:02:03','2021-09-20 07:29:22'),(5196,'jp','refund_sticker_has_been_updated_successfully','��������W%�����c%�����������]%�������U%U%�����$%���%��������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5197,'jp','edit_product','��\%�������V%����','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5198,'jp','meta_images','�����%��W%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5199,'jp','update_product','��\%��������$%���%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5200,'jp','product_has_been_deleted_successfully','��\%����������U%U%�����������������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5201,'jp','your_profile_has_been_updated_successfully','�������������������������������������U%U%�����$%���%��������[%������)"]%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5202,'jp','upload_limit_has_been_reached_please_upgrade_your_package','��������������]%�����b%��������������[%������������������%��]%��U%���������������%�����]%������������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5203,'jp','add_your_product','��\%�������%\%���������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5204,'jp','select_a_category','��������$%�����]%�����U%��b%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5205,'jp','select_a_brand','�����#��%��������U%��� ������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5206,'jp','product_unit','��\%���������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5207,'jp','minimum_qty','�����%����%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5208,'jp','product_tag','��������%���%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5209,'jp','type__hit_enter','������������Enter�����]%�����]%�����[%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5210,'jp','videos','���������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5211,'jp','video_from','���������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5212,'jp','video_url','���������URL','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5213,'jp','customer_choice','�����������U%��� ','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5214,'jp','pdf','PDF','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5215,'jp','choose_pdf','PDF�����U%��� ','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5216,'jp','select_category','��������$%��������U%������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5217,'jp','target_category','��[%��%���������$%�����]%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5218,'jp','subsubcategory','��a%�����a%�����������$%���','2021-02-09 07:02:04','2021-02-09 07:02:04'),(5219,'jp','search_category','����$%���������$%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5220,'jp','search_subcategory','SubCategory�������$%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5221,'jp','search_subsubcategory','SubSubCategory�������$%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5222,'jp','update_your_product','��\%��������$%���%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5223,'jp','product_has_been_updated_successfully','��\%����������U%U%�����$%���%��������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5224,'jp','add_your_digital_product','�����U%��%�����\%�������%\%���������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5225,'jp','active_ecommerce_cms_update_process','������������������e��%��� ��]%��c%CMS��$%���%��������W%��c%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5226,'jp','codecanyon_purchase_code','Codecanyon�%]%�����%��]%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5227,'jp','database_name','�����]%��%�����]%��c%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5228,'jp','database_username','�����]%��%�����]%��c%�����]%��b%��]%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5229,'jp','database_password','�����]%��%�����]%��c%�����c%�����]%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5230,'jp','database_hostname','�����]%��%�����]%��c%��������c%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5231,'jp','update_now','�W%���������������������]%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5232,'jp','congratulations','���������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5233,'jp','you_have_successfully_completed_the_updating_process_please_login_to_continue','��$%���%��������W%��c%�������U%U%�������Q%������[%����������b%����������������������%�����%������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5234,'jp','go_to_home','��b%����U%�%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5235,'jp','login_to_admin_panel','������������������������%�����%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5236,'jp','s3_file_system_credentials','S3��������������V%��c%����������%���]%������%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5237,'jp','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5238,'jp','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5239,'jp','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5240,'jp','aws_bucket','AWS_BUCKET','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5241,'jp','aws_url','AWS_URL','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5242,'jp','s3_file_system_activation','S3��������������V%��c%��������������������������]%��V%�����%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5243,'jp','your_phone_number','��������������W%�#�%�����V%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5244,'jp','zip_file','ZIP������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5245,'jp','install','�����%��c%�����]%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5246,'jp','this_version_is_not_capable_of_installing_addons_please_update','�����������]%��U%�����%��������������%��������%��c%�����]%�����������[%�����������$%���%���������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5247,'jp','search_in_menu','�����������]%�������$%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5248,'jp','uploaded_files','��������������]%������������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5249,'jp','shipping_cities','��������\%�U%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5250,'jp','system','��V%��c%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5251,'jp','server_status','��a%��]%�����]%��c%�����]%��%��c%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5252,'jp','nothing_found','�\%������������������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5253,'jp','parent_category','�����������$%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5254,'jp','level','���������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5255,'jp','category_information','��������$%���������%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5256,'jp','translatable','�%W%��%�����\%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5257,'jp','no_parent','���������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5258,'jp','physical','��#������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5259,'jp','digital','�����U%��%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5260,'jp','200x200','200x200','2021-02-09 07:02:04','2021-02-09 07:02:04'),(5261,'jp','32x32','32x32','2021-02-09 07:02:04','2021-02-09 07:02:04'),(5262,'jp','search_your_files','�������������������$%�������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5263,'jp','category_has_been_updated_successfully','��������$%����������U%U%�����$%���%��������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5264,'jp','all_uploaded_files','��������������]%�����������������c%������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5265,'jp','upload_new_file','���%�����������������������������������]%���������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5266,'jp','all_files','�����c%������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5267,'jp','search','������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5268,'jp','details_info','�#%�$%�%������%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5269,'jp','copy_link','�����%��������%�����]%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5270,'jp','are_you_sure_to_delete_this_file','���������������������������������������������������������)"]%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5271,'jp','file_info','������������������%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5272,'jp','link_copied_to_clipboard','�����%�����������������������]%��������%�����]%��������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5273,'jp','oops_unable_to_copy','��������������%�����]%��������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5274,'jp','file_deleted_successfully','�������������������U%U%�����������������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5275,'jp','add_new_brand','���%�����������#��%�������%\%���������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5276,'jp','120x80','120x80','2021-02-09 07:02:04','2021-02-09 07:02:04'),(5277,'jp','brand_information','�����#��%���������%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5278,'jp','brand_has_been_updated_successfully','�����#��%����������U%U%�����$%���%��������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5279,'jp','brand_has_been_deleted_successfully','�����#��%����������U%U%�����������������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5280,'jp','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','�������������$%�����\%%�����������[%��������������]%������ ��]%�����������\%������������������������������������������ ������������������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5281,'jp','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','��������������W%�����������\%����#%�$%�%�����]%��U%��������#�����]%��������Q%��������[%������600x600��a%�����Q%�����W%�������\%%������������������������','2021-02-09 07:02:04','2021-09-20 07:29: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','��������W%�����������c%��������\%��������������c%��������Q%��������[%������300x300��a%�����Q%�����W%�������\%%�����������������������������c%�����%��V%��������������������������[%�����[%��������������c%�����������U%��������������%���%�������%���������������������������W%��������������%��������U%������������������%����#Q%��\%�����������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5283,'jp','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','�%\%�����������#�����]%��%�����������#�����������%�������\%%���������������������������������%��������%���/�������[%]%��%iframe��%��]%�������\%%������������������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5284,'jp','save_product','��\%�������%����������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5285,'jp','product_has_been_inserted_successfully','��\%����������U%U%�����%�����������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5286,'jp','something_went_wrong','�\%������������[%���������������������)"]%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5287,'jp','sorry_for_the_inconvenience_but_were_working_on_it','����U%��[%%��������������������%�����%��������[%��������������[%����������a%������������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5288,'jp','error_code','�����#��]%��%��]%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5289,'jp','please_configure_smtp_setting_to_work_all_email_sending_functionality','�����c%��������W%��������]%�������%��#���\%����#���\%���������������SMTP���������������������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5290,'jp','order','�%����','2021-02-09 07:02:04','2021-09-20 07:29: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����b%���������������������������]%��������������b%��������������[%�����������c%�����%��V%�����������������������������[%�����[%��������������c%�������������������������V%���$%�����%��$%����U%���c%�����������������%���%�������%���������������[%�����������������]%��������b%�����%�����������������������������c%������������������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5292,'jp','home_banner_3_max_3','�����]%�����������]%3)"]%�������3)"]%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5293,'jp','add_new_seller','���%���������%����������%\%���������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5294,'jp','filter_by_approval','��%�����������������������%�����%���%','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5295,'jp','nonapproved','�����%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5296,'jp','type_name_or_email__enter','��������[%�����������]%��������������c%���������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5297,'jp','due_to_seller','���%���������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5298,'jp','log_in_as_this_seller','���������%���������������������%�����%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5299,'jp','go_to_payment','��������������W%���','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5300,'jp','ban_this_seller','���������%���������������������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5301,'jp','do_you_really_want_to_ban_this_seller','����������������\%�������������%���������������������������������)"]%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5302,'jp','proceed','�b%����������������������)"]%�','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5303,'jp','approved_sellers_updated_successfully','��%��������������%#���%����������U%U%�����$%���%��������[%������','2021-02-09 07:02:04','2021-09-20 07:29:22'),(5304,'jp','seller_has_been_deleted_successfully','���%�������������U%U%�����������������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5305,'jp','seller_information','��%#���%���������%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5306,'jp','seller_has_been_inserted_successfully','���%�������������U%U%�����%�����������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5307,'jp','email_already_exists','�����]%�����������������������[%���)"]%�','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5308,'jp','verify_your_email_address','�����������������]%��������������c%�����Q%���������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5309,'jp','before_proceeding_please_check_your_email_for_a_verification_link','�b%���������������������Q%��������%��������������������]%��������Q%������������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5310,'jp','if_you_did_not_receive_the_email','�����]%��������%������������$%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5311,'jp','click_here_to_request_another','�����������������c%���������������������������������������������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5312,'jp','email_verification','�����]%��������Q%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5313,'jp','email_verification__','�����]%��������Q%���-','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5314,'jp','https_activation','HTTPS�����������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5315,'jp','maintenance_mode','�����%��������%��c%�����]%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5316,'jp','maintenance_mode_activation','�����%��������%��c%�����]%������������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5317,'jp','classified_product_activate','������ �����������\%������������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5318,'jp','classified_product','������ �����������\%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5319,'jp','business_related','�W%��Q%�������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5320,'jp','vendor_system_activation','�����%�����]%��V%��c%���������������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5321,'jp','wallet_system_activation','�����#�����������V%��c%��������������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5322,'jp','coupon_system_activation','�����]%�����%��V%��c%��������������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5323,'jp','pickup_point_activation','��������������������������%������������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5324,'jp','conversation_activation','�]%��#�%��������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5325,'jp','guest_checkout_activation','���%��c%�����������������������������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5326,'jp','categorybased_commission','��������$%��������]%��c%����������]%�','2021-02-09 07:02:05','2021-09-20 07:29: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','��������������V%�����%��������c%������������������%�����������%��������V%�����%��������c%�����������������������$%��������%��������V%�����%����������������%���������������[%�����������������������������������������%��������V%�����%�������[%���������[%���������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5328,'jp','set_commisssion_now','�W%��������������]%����������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5329,'jp','payment_related','���������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5330,'jp','paypal_payment_activation','Paypal��������������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5331,'jp','you_need_to_configure_paypal_correctly_to_enable_this_feature','�������#���\%��������c%������������������Paypal�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5332,'jp','stripe_payment_activation','��c%�����#������������������������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5333,'jp','sslcommerz_activation','SSlCommerz�����������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5334,'jp','instamojo_payment_activation','Instamojo��������������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5335,'jp','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','�������#���\%��������c%������������������InstamojoPayment�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5336,'jp','razor_pay_activation','�����%�����������������������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5337,'jp','you_need_to_configure_razor_correctly_to_enable_this_feature','�������#���\%��������c%������������������Razor�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5338,'jp','paystack_activation','PayStack�����������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5339,'jp','you_need_to_configure_paystack_correctly_to_enable_this_feature','�������#���\%��������c%������������������PayStack�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5340,'jp','voguepay_activation','VoguePay�����������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5341,'jp','you_need_to_configure_voguepay_correctly_to_enable_this_feature','�������#���\%��������c%������������������VoguePay�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5342,'jp','payhere_activation','Payhere�����������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5343,'jp','ngenius_activation','Ngenius�����������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5344,'jp','you_need_to_configure_ngenius_correctly_to_enable_this_feature','�������#���\%��������c%������������������Ngenius�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5345,'jp','iyzico_activation','Iyzico�����������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5346,'jp','you_need_to_configure_iyzico_correctly_to_enable_this_feature','�������#���\%��������c%������������������iyzico�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5347,'jp','bkash_activation','Bkash�����������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5348,'jp','you_need_to_configure_bkash_correctly_to_enable_this_feature','�������#���\%��������c%������������������bkash�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5349,'jp','nagad_activation','��������������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5350,'jp','you_need_to_configure_nagad_correctly_to_enable_this_feature','�������#���\%��������c%������������������nagad�������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5351,'jp','cash_payment_activation','��[%��������������������������������]%��V%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5352,'jp','social_media_login','��\%��]%��V%������������������������%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5353,'jp','facebook_login','�����������c%���������������%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5354,'jp','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','�������#���\%��������c%������������������Facebook�����#��������%����������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5355,'jp','google_login','Google������%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5356,'jp','you_need_to_configure_google_client_correctly_to_enable_this_feature','�������#���\%��������c%������������������Google�����#��������%����������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5357,'jp','twitter_login','Twitter������%�����%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5358,'jp','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','�������#���\%��������c%������������������Twitter�����#��������%����������������������������%���������������[%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5359,'jp','shop_logo','��V%��������������$%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5360,'jp','shop_address','��V%�������������\%����','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5361,'jp','banner_settings','��������]%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5362,'jp','banners','��������]%','2021-02-09 07:02:05','2021-09-20 07:29: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','����������b%��������U%���%���������b%����������%���������������[%����������U%������������������c%�����������������b%�����������������������]%����U%���$%��������������%���%�����������$%��������������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5364,'jp','insert_link_with_https_','https��������%��������%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5365,'jp','your_shop_has_been_updated_successfully','��V%����������������U%U%�����$%���%��������[%���������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5366,'jp','search_result_for_','�������$%��a%��� �','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5367,'jp','brand_has_been_inserted_successfully','�����#��%����������U%U%�����%�����������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5368,'jp','about','�$%�','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5369,'jp','payout_info','���������������%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5370,'jp','bank_acc_name','����������Q%����','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5371,'jp','bank_acc_number','����������Q%������V%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5372,'jp','total_products','�V%���\%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5373,'jp','total_sold_amount','�V%���%#���%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5374,'jp','wallet_balance','�����#��������������#��%��c%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5375,'jp','cookies_agreement','�����������]%����$%�','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5376,'jp','cookies_agreement_text','�����������]%����$%���������c%���','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5377,'jp','show_cookies_agreement','�����������]%����$%���������Q%�����[%������)"]%�','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5378,'jp','custom_script','�����c%��%�����c%������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5379,'jp','header_custom_script__before_head','�����������]%�����c%��%�����c%������������-</ head>������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5380,'jp','write_script_with_script_tag','<script>��%���%����\%%�����������c%����������������\%����������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5381,'jp','footer_custom_script__before_body','��������%��]%�����c%��%�����c%������������-</ body>������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5382,'jp','category_has_been_inserted_successfully','��������$%����������U%U%�����%�����������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5383,'jp','all_flash_deals','�����c%�����������#�����V%����������[%����������%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5384,'jp','create_new_flash_deal','���%�����������#�����V%�����������]%�������\%����������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5385,'jp','ffffff','#FFFFFF','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5386,'jp','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','��������W%��������������#�����V%�������]%�����#%�$%�%�����]%��U%�����������]%��������]%��������������Q%��������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5387,'jp','flash_deal_has_been_inserted_successfully','�����#�����V%�����������]%����������U%U%�����%�����������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5388,'jp','flash_deal_status_updated_successfully','�����#�����V%�������]%���c%�����]%��%��c%�������U%U%�����$%���%��������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5389,'jp','flash_deal_has_been_updated_successfully','FlashDeal�������U%U%�����$%���%��������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5390,'jp','update_language_info','������ ������%�����$%���%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5391,'jp','language_has_been_updated_successfully','������ �������U%U%�����$%���%��������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5392,'jp','type_key__enter','�����]%���������������������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5393,'jp','translations_updated_for_','��������������$%���%����������%W%��%','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5394,'jp','language_has_been_inserted_successfully','������ �������U%U%�����%�����������[%������','2021-02-09 07:02:05','2021-09-20 07:29:22'),(5395,'fr','all_category','Toutes les cat%#gories','2021-02-09 07:04:02','2021-09-20 07:29:22'),(5396,'fr','all','Tout','2021-02-09 07:04:02','2021-09-20 07:29:22'),(5397,'fr','flash_sale','Vente flash','2021-02-09 07:04:02','2021-09-20 07:29:22'),(5398,'fr','view_more','Voir plus','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5399,'fr','add_to_wishlist','Ajouter %� la liste de souhaits','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5400,'fr','add_to_compare','Ajouter pour comparer','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5401,'fr','add_to_cart','Ajouter au panier','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5402,'fr','club_point','Point Club','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5403,'fr','classified_ads','Petites annonces','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5404,'fr','used','Utilis%#','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5405,'fr','top_10_categories','Top 10 des cat%#gories','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5406,'fr','view_all_categories','Voir toutes les cat%#gories','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5407,'fr','top_10_brands','Top 10 des marques','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5408,'fr','view_all_brands','Voir toutes les marques','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5409,'fr','terms__conditions','Termes et conditions','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5410,'fr','best_selling','Meilleure vente','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5411,'fr','top_20','Top 20','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5412,'fr','featured_products','Produits populaires','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5413,'fr','best_sellers','Meilleurs vendeurs','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5414,'fr','visit_store','Visiter le magasin','2021-02-09 07:04:02','2021-09-20 07:29:23'),(5415,'fr','popular_suggestions','Suggestions populaires','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5416,'fr','category_suggestions','Suggestions de cat%#gories','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5417,'fr','automobile__motorcycle','Automobile et moto','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5418,'fr','price_range','%�chelle des prix','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5419,'fr','filter_by_color','Filtrer par couleur','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5420,'fr','home','Accueil','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5421,'fr','newest','Plus r%#cent','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5422,'fr','oldest','Le plus ancien','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5423,'fr','price_low_to_high','Prix ������croissant','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5424,'fr','price_high_to_low','Prix ������d%#croissant','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5425,'fr','brands','Marques','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5426,'fr','all_brands','Toutes les marques','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5427,'fr','all_sellers','Tous les vendeurs','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5428,'fr','inhouse_product','Produit en interne','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5429,'fr','message_seller','Message au vendeur','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5430,'fr','price','Prix','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5431,'fr','discount_price','Prix ������bas','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5432,'fr','color','Couleur','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5433,'fr','quantity','Quantit%#','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5434,'fr','available','disponible','2021-02-09 07:04:03','2021-02-09 07:04:03'),(5435,'fr','total_price','Prix ������total','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5436,'fr','out_of_stock','En rupture de stock','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5437,'fr','refund','Rembourser','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5438,'fr','share','Partager','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5439,'fr','sold_by','Vendu par','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5440,'fr','customer_reviews','Avis des clients','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5441,'fr','top_selling_products','Produits les plus vendus','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5442,'fr','description','La description','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5443,'fr','video','Vid%#o','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5444,'fr','reviews','Commentaires','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5445,'fr','download','T%#l%#charger','2021-02-09 07:04:03','2021-09-20 07:29: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 07:04:03','2021-09-20 07:29:23'),(5447,'fr','related_products','Produits connexes','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5448,'fr','any_query_about_this_product','Toute question concernant ce produit','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5449,'fr','product_name','Nom du produit','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5450,'fr','your_question','Ta question','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5451,'fr','send','Envoyer','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5452,'fr','use_country_code_before_number','Utilisez le code du pays avant le num%#ro','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5453,'fr','remember_me','Souviens-toi de moi','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5454,'fr','dont_have_an_account','Vous n\'avez pas de compte?','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5455,'fr','register_now','S\'inscrire maintenant','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5456,'fr','or_login_with','Ou connectez-vous avec','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5457,'fr','oops','Oops..','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5458,'fr','this_item_is_out_of_stock','L\'article n\'est plus en stock!','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5459,'fr','back_to_shopping','Retour aux achats','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5460,'fr','login_to_your_account','Connectez-vous %� votre compte.','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5461,'fr','purchase_history','Historique d\'achat','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5462,'fr','new','Nouveau','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5463,'fr','downloads','T%#l%#chargements','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5464,'fr','sent_refund_request','Demande de remboursement envoy%#e','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5465,'fr','product_bulk_upload','T%#l%#chargement group%# de produits','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5466,'fr','orders','Ordres','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5467,'fr','recieved_refund_request','Demande de remboursement re%�ue','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5468,'fr','shop_setting','Cadre de la boutique','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5469,'fr','payment_history','historique de paiement','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5470,'fr','money_withdraw','Retrait d\'argent','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5471,'fr','conversations','Des conversations','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5472,'fr','my_wallet','Mon portefeuille','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5473,'fr','earning_points','Gagner des points','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5474,'fr','support_ticket','Ticket de support','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5475,'fr','manage_profile','G%#rer le profil','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5476,'fr','sold_amount','Montant vendu','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5477,'fr','your_sold_amount_current_month','Votre montant vendu (mois en cours)','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5478,'fr','total_sold','Total vendu','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5479,'fr','last_month_sold','Vendu le mois dernier','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5480,'fr','total_sale','Vente totale','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5481,'fr','total_earnings','Total des gains','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5482,'fr','successful_orders','Commandes r%#ussies','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5483,'fr','total_orders','Total des commandes','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5484,'fr','pending_orders','Les ordres en attente','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5485,'fr','cancelled_orders','Commandes annul%#es','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5486,'fr','product','Produit','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5487,'fr','purchased_package','Paquet achet%#','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5488,'fr','package_not_found','Paquet introuvable','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5489,'fr','upgrade_package','Package de mise %� niveau','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5490,'fr','shop','Boutique','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5491,'fr','manage__organize_your_shop','G%#rez et organisez votre boutique','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5492,'fr','go_to_setting','Aller au r%#glage','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5493,'fr','payment','Paiement','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5494,'fr','configure_your_payment_method','Configurez votre mode de paiement','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5495,'fr','my_panel','Mon panneau','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5496,'fr','item_has_been_added_to_wishlist','L\'article a %#t%# ajout%# %� la liste de souhaits','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5497,'fr','my_points','Mes points','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5498,'fr','_points','Points','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5499,'fr','wallet_money','Argent portefeuille','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5500,'fr','exchange_rate','Taux de change','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5501,'fr','point_earning_history','Historique des gains de points','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5502,'fr','date','Date','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5503,'fr','points','Points','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5504,'fr','converted','Converti','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5505,'fr','action','action','2021-02-09 07:04:03','2021-09-20 07:29:23'),(5506,'fr','no_history_found','Aucune histoire trouv%#e.','2021-02-09 07:04:03','2021-09-20 07:29: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 07:04:04','2021-09-20 07:29:23'),(5508,'fr','something_went_wrong','Un probl%�me est survenu','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5509,'fr','remaining_uploads','T%#l%#chargements restants','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5510,'fr','no_package_found','Aucun package trouv%#','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5511,'fr','search_product','Rechercher un produit','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5512,'fr','name','Nom','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5513,'fr','current_qty','Qt%# actuelle','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5514,'fr','base_price','Prix ������de base','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5515,'fr','published','Publi%#','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5516,'fr','featured','En vedette','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5517,'fr','options','Options','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5518,'fr','edit','%�diter','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5519,'fr','duplicate','Dupliquer','2021-02-09 07:04:04','2021-09-20 07:29: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 07:04:04','2021-09-20 07:29: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 07:04:04','2021-09-20 07:29: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 07:04:04','2021-09-20 07:29: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 07:04:04','2021-09-20 07:29:23'),(5524,'fr','download_csv','T%#l%#charger CSV','2021-02-09 07:04:04','2021-09-20 07:29: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 07:04:04','2021-09-20 07:29: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 07:04:04','2021-09-20 07:29:23'),(5527,'fr','download_category','T%#l%#charger la cat%#gorie','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5528,'fr','download_sub_category','T%#l%#charger la sous-cat%#gorie','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5529,'fr','download_sub_sub_category','T%#l%#charger la sous-cat%#gorie','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5530,'fr','download_brand','T%#l%#charger la marque','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5531,'fr','upload_csv_file','T%#l%#charger un fichier CSV','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5532,'fr','csv','CSV','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5533,'fr','choose_csv_file','Choisissez un fichier CSV','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5534,'fr','upload','T%#l%#charger','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5535,'fr','add_new_digital_product','Ajouter un nouveau produit num%#rique','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5536,'fr','available_status','Statut disponible','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5537,'fr','admin_status','Statut administrateur','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5538,'fr','pending_balance','Solde en attente','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5539,'fr','send_withdraw_request','Envoyer une demande de retrait','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5540,'fr','withdraw_request_history','Historique des demandes de retrait','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5541,'fr','amount','Montant','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5542,'fr','status','Statut','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5543,'fr','message','Message','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5544,'fr','send_a_withdraw_request','Envoyer une demande de retrait','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5545,'fr','basic_info','Informations de base','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5546,'fr','your_phone','Ton t%#l%#phone','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5547,'fr','photo','Photo','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5548,'fr','browse','Feuilleter','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5549,'fr','your_password','Votre mot de passe','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5550,'fr','new_password','nouveau mot de passe','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5551,'fr','confirm_password','Confirmez le mot de passe','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5552,'fr','add_new_address','Ajouter une nouvelle adresse','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5553,'fr','payment_setting','Param%�tre de paiement','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5554,'fr','cash_payment','Paiement en esp%�ces','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5555,'fr','bank_payment','Paiement bancaire','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5556,'fr','bank_name','Nom de banque','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5557,'fr','bank_account_name','Nom du compte bancaire','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5558,'fr','bank_account_number','Num%#ro de compte bancaire','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5559,'fr','bank_routing_number','Num%#ro d\'acheminement bancaire','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5560,'fr','update_profile','Mettre %� jour le profil','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5561,'fr','change_your_email','Changez votre email','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5562,'fr','your_email','Votre e-mail','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5563,'fr','sending_email','Envoi d\'un e-mail ...','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5564,'fr','verify','V%#rifier','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5565,'fr','update_email','Mettre %� jour l\'e-mail','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5566,'fr','new_address','Nouvelle adresse','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5567,'fr','your_address','Votre adresse','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5568,'fr','country','Pays','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5569,'fr','select_your_country','S%#lectionnez votre pays','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5570,'fr','city','Ville','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5571,'fr','your_city','Ta ville','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5572,'fr','your_postal_code','Votre code postal','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5573,'fr','880','+880','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5574,'fr','save','sauver','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5575,'fr','received_refund_request','Demande de remboursement re%�ue','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5576,'fr','delete_confirmation','Confirmation de suppression','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5577,'fr','are_you_sure_to_delete_this','%�tes-vous s%W%r de vouloir le supprimer?','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5578,'fr','premium_packages_for_sellers','Forfaits premium pour les vendeurs','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5579,'fr','product_upload','T%#l%#chargement de produit','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5580,'fr','digital_product_upload','T%#l%#chargement de produit num%#rique','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5581,'fr','purchase_package','Acheter un package','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5582,'fr','select_payment_type','S%#lectionnez le type de paiement','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5583,'fr','payment_type','Type de paiement','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5584,'fr','select_one','S%#lectionnez-en un','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5585,'fr','online_payment','Paiement en ligne','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5586,'fr','offline_payment','Paiement hors ligne','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5587,'fr','purchase_your_package','Achetez votre forfait','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5588,'fr','paypal','Pay Pal','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5589,'fr','stripe','Bande','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5590,'fr','sslcommerz','sslcommerz','2021-02-09 07:04:04','2021-02-09 07:04:04'),(5591,'fr','confirm','Confirmer','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5592,'fr','offline_package_payment','Paiement hors ligne du forfait','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5593,'fr','transaction_id','identifiant de transaction','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5594,'fr','choose_image','Choisissez une image','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5595,'fr','code','Code','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5596,'fr','delivery_status','Statut de livraison','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5597,'fr','payment_status','Statut de paiement','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5598,'fr','paid','Pay%#','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5599,'fr','order_details','d%#tails de la commande','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5600,'fr','download_invoice','T%#l%#charger la facture','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5601,'fr','unpaid','Non pay%#','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5602,'fr','order_placed','Commande pass%#e','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5603,'fr','confirmed','Confirm%#','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5604,'fr','on_delivery','%� la livraison','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5605,'fr','delivered','Livr%#','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5606,'fr','order_summary','R%#capitulatif de la commande','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5607,'fr','order_code','Code de commande','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5608,'fr','customer','Client','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5609,'fr','total_order_amount','Montant total de la commande','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5610,'fr','shipping_metdod','Exp%#dition metdod','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5611,'fr','flat_shipping_rate','Tarif d\'exp%#dition fixe','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5612,'fr','payment_metdod','Paiement metdod','2021-02-09 07:04:04','2021-09-20 07:29:23'),(5613,'fr','variation','Variation','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5614,'fr','delivery_type','type de livraison','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5615,'fr','home_delivery','Livraison %� domicile','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5616,'fr','order_ammount','Montant de la commande','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5617,'fr','subtotal','Total','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5618,'fr','shipping','livraison','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5619,'fr','coupon_discount','Remise de coupon','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5620,'fr','na','N / A','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5621,'fr','in_stock','En stock','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5622,'fr','buy_now','Acheter maintenant','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5623,'fr','item_added_to_your_cart','Article ajout%# %� votre panier!','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5624,'fr','proceed_to_checkout','Passer %� la caisse','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5625,'fr','cart_items','Articles du panier','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5626,'fr','1_my_cart','1. Mon panier','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5627,'fr','view_cart','Voir le panier','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5628,'fr','2_shipping_info','2. Informations d\'exp%#dition','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5629,'fr','checkout','Check-out','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5630,'fr','3_delivery_info','3. Informations de livraison','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5631,'fr','4_payment','4. Paiement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5632,'fr','5_confirmation','5. Confirmation','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5633,'fr','remove','Retirer','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5634,'fr','return_to_shop','Retour %� la boutique','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5635,'fr','continue_to_shipping','Continuer vers l\'exp%#dition','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5636,'fr','or','Ou','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5637,'fr','guest_checkout','V%#rification des invit%#s','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5638,'fr','continue_to_delivery_info','Continuer vers les informations de livraison','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5639,'fr','postal_code','code postal','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5640,'fr','choose_delivery_type','Choisissez le type de livraison','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5641,'fr','local_pickup','Collecte locale','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5642,'fr','select_your_nearest_pickup_point','S%#lectionnez votre point de ramassage le plus proche','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5643,'fr','continue_to_payment','Continuer au paiement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5644,'fr','select_a_payment_option','S%#lectionnez une option de paiement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5645,'fr','razorpay','Razorpay','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5646,'fr','paystack','Paystack','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5647,'fr','voguepay','VoguePay','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5648,'fr','payhere','Payez ici','2021-02-09 07:04:05','2021-02-09 07:04:05'),(5649,'fr','ngenius','ngenius','2021-02-09 07:04:05','2021-02-09 07:04:05'),(5650,'fr','paytm','Paytm','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5651,'fr','cash_on_delivery','Paiement %� la livraison','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5652,'fr','your_wallet_balance_','Votre solde de portefeuille:','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5653,'fr','insufficient_balance','Solde insuffisant','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5654,'fr','i_agree_to_the','je suis d\'accord avec le','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5655,'fr','complete_order','Compl%#tez la commande','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5656,'fr','summary','Sommaire','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5657,'fr','items','Articles','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5658,'fr','total_club_point','Total de points Club','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5659,'fr','total_shipping','Exp%#dition totale','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5660,'fr','have_coupon_code_enter_here','Vous avez un code promo? Entrer ici','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5661,'fr','apply','Appliquer','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5662,'fr','you_need_to_agree_with_our_policies','Vous devez accepter nos politiques','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5663,'fr','forgot_password','Mot de passe oubli%#','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5664,'fr','seo_setting','Param%�tre SEO','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5665,'fr','system_update','Mise %� jour du syst%�me','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5666,'fr','add_new_payment_method','Ajouter un nouveau mode de paiement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5667,'fr','manual_payment_method','Mode de paiement manuel','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5668,'fr','heading','Titre','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5669,'fr','logo','Logo','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5670,'fr','manual_payment_information','Informations de paiement manuel','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5671,'fr','type','Type','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5672,'fr','custom_payment','Paiement personnalis%#','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5673,'fr','check_payment','Paiement par ch%�que','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5674,'fr','checkout_thumbnail','Vignette de paiement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5675,'fr','payment_instruction','Instruction de paiement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5676,'fr','bank_information','Information bancaire','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5677,'fr','select_file','Choisir le dossier','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5678,'fr','upload_new','T%#l%#charger nouveau','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5679,'fr','sort_by_newest','Trier par plus r%#cent','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5680,'fr','sort_by_oldest','Trier par plus ancien','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5681,'fr','sort_by_smallest','Trier par plus petit','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5682,'fr','sort_by_largest','Trier par plus grand','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5683,'fr','selected_only','S%#lectionn%# seulement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5684,'fr','no_files_found','Aucun fichier trouv%#','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5685,'fr','0_file_selected','0 Fichier s%#lectionn%#','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5686,'fr','clear','Clair','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5687,'fr','prev','Pr%#c%#dente','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5688,'fr','next','Suivant','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5689,'fr','add_files','Ajouter des fichiers','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5690,'fr','method_has_been_inserted_successfully','La m%#thode a %#t%# ins%#r%#e avec succ%�s','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5691,'fr','order_date','Date de commande','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5692,'fr','bill_to','facturer','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5693,'fr','sub_total','Sous-total','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5694,'fr','total_tax','Taxe total','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5695,'fr','grand_total','Total','2021-02-09 07:04:05','2021-09-20 07:29: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 07:04:05','2021-09-20 07:29:23'),(5697,'fr','thank_you_for_your_order','Nous vous remercions de votre commande!','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5698,'fr','order_code','Code de commande:','2021-02-09 07:04:05','2021-09-20 07:29: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 07:04:05','2021-09-20 07:29:23'),(5700,'fr','make_payment','Effectuer le paiement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5701,'fr','payment_screenshot','Capture d\'%#cran du paiement','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5702,'fr','paypal_credential','Identifiant Paypal','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5703,'fr','paypal_client_id','Identifiant client Paypal','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5704,'fr','paypal_client_secret','Secret du client Paypal','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5705,'fr','paypal_sandbox_mode','Mode bac %� sable Paypal','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5706,'fr','sslcommerz_credential','Identifiant Sslcommerz','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5707,'fr','sslcz_store_id','Identifiant de magasin Sslcz','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5708,'fr','sslcz_store_password','Mot de passe du magasin SSLCZ','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5709,'fr','sslcommerz_sandbox_mode','Mode bac %� sable Sslcommerz','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5710,'fr','stripe_credential','Identifiant Stripe','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5711,'fr','stripe_key','CL%� DE RAYURE','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5712,'fr','stripe_secret','STRIPE SECRET','2021-02-09 07:04:05','2021-09-20 07:29:23'),(5713,'fr','razorpay_credential','Informations d\'identification RazorPay','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5714,'fr','razor_key','CL%� DE RASOIR','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5715,'fr','razor_secret','SECRET DE RASOIR','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5716,'fr','instamojo_credential','Identifiant Instamojo','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5717,'fr','api_key','CL%� API','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5718,'fr','im_api_key','CL%� API IM','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5719,'fr','auth_token','JETON AUTH','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5720,'fr','im_auth_token','JETON IM AUTH','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5721,'fr','instamojo_sandbox_mode','Mode bac %� sable Instamojo','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5722,'fr','paystack_credential','Identifiant PayStack','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5723,'fr','public_key','CL%� PUBLIQUE','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5724,'fr','secret_key','CLEF SECR%�TE','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5725,'fr','merchant_email','COURRIEL DU MARCHAND','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5726,'fr','voguepay_credential','Identifiant VoguePay','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5727,'fr','merchant_id','ID MARCHAND','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5728,'fr','sandbox_mode','Mode bac %� sable','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5729,'fr','payhere_credential','Identifiant Payhere','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5730,'fr','payhere_merchant_id','ID MARCHAND PAYHERE','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5731,'fr','payhere_secret','PAYHERE SECRET','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5732,'fr','payhere_currency','MONNAIE PAYHERE','2021-02-09 07:04:06','2021-09-20 07:29:23'),(5733,'fr','payhere_sandbox_mode','Mode bac %� sable Payhere','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5734,'fr','ngenius_credential','Identifiant Ngenius','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5735,'fr','ngenius_outlet_id','ID DE SORTIE NGENIUS','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5736,'fr','ngenius_api_key','CL%� D\'API NGENIUS','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5737,'fr','ngenius_currency','MONNAIE NGENIUS','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5738,'fr','mpesa_credential','Dipl%$%me Mpesa','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5739,'fr','mpesa_consumer_key','CL%� DE CONSOMMATION MPESA','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5740,'fr','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5741,'fr','mpesa_consumer_secret','SECRET DU CONSOMMATEUR MPESA','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5742,'fr','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5743,'fr','mpesa_short_code','CODE ABR%�G%� MPESA','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5744,'fr','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5745,'fr','mpesa_sandbox_activation','ACTIVATION DE LA SANDBOX MPESA','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5746,'fr','flutterwave_credential','Identifiant Flutterwave','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5747,'fr','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5748,'fr','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5749,'fr','rave_title','RAVE_TITLE','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5750,'fr','stagin_activation','ACTIVATION DU STAGIN','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5751,'fr','all_product','Tous les produits','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5752,'fr','sort_by','Trier par','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5753,'fr','rating_high__low','Note (%#lev%#e> faible)','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5754,'fr','rating_low__high','Note (faible> %#lev%#e)','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5755,'fr','num_of_sale_high__low','Nombre de ventes (haut> bas)','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5756,'fr','num_of_sale_low__high','Nombre de ventes (faible> %#lev%#)','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5757,'fr','base_price_high__low','Prix ������de base (haut> bas)','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5758,'fr','base_price_low__high','Prix ������de base (bas> haut)','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5759,'fr','type__enter','Tapez et entrez','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5760,'fr','added_by','Ajout%# par','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5761,'fr','num_of_sale','Nombre de vente','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5762,'fr','total_stock','Stock total','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5763,'fr','todays_deal','Offre d\'aujourd\'hui','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5764,'fr','rating','%�valuation','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5765,'fr','times','fois','2021-02-09 07:04:06','2021-02-09 07:04:06'),(5766,'fr','add_nerw_product','Ajouter un produit Nerw','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5767,'fr','product_information','Information produit','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5768,'fr','unit','Unit%#','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5769,'fr','unit_eg_kg_pc_etc','Unit%# (par exemple KG, Pc, etc.)','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5770,'fr','minimum_qty','Qt%# minimum','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5771,'fr','tags','Mots cl%#s','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5772,'fr','type_and_hit_enter_to_add_a_tag','Tapez et appuyez sur Entr%#e pour ajouter une balise','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5773,'fr','barcode','code %� barre','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5774,'fr','refundable','Remboursable','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5775,'fr','product_images','Images du produit','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5776,'fr','gallery_images','Images de la galerie','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5777,'fr','todays_deal_updated_successfully','L\'offre du jour a bien %#t%# mise %� jour','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5778,'fr','published_products_updated_successfully','Produits publi%#s mis %� jour avec succ%�s','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5779,'fr','thumbnail_image','Image miniature','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5780,'fr','featured_products_updated_successfully','Produits en vedette mis %� jour avec succ%�s','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5781,'fr','product_videos','Vid%#os produits','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5782,'fr','video_provider','Fournisseur vid%#o','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5783,'fr','youtube','Youtube','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5784,'fr','dailymotion','Dailymotion','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5785,'fr','vimeo','Vimeo','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5786,'fr','video_link','Lien vid%#o','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5787,'fr','product_variation','Variation de produit','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5788,'fr','colors','Couleurs','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5789,'fr','attributes','Les attributs','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5790,'fr','choose_attributes','Choisissez les attributs','2021-02-09 07:04:06','2021-09-20 07:29: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 07:04:06','2021-09-20 07:29:24'),(5792,'fr','product_price__stock','Prix ������du produit + stock','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5793,'fr','unit_price','Prix ������unitaire','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5794,'fr','purchase_price','Prix ������d\'achat','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5795,'fr','flat','Plat','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5796,'fr','percent','Pour cent','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5797,'fr','discount','Remise','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5798,'fr','product_description','Description du produit','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5799,'fr','product_shipping_cost','Frais d\'exp%#dition du produit','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5800,'fr','free_shipping','Livraison gratuite','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5801,'fr','flat_rate','Forfait','2021-02-09 07:04:06','2021-09-20 07:29:24'),(5802,'fr','shipping_cost','Frais de port','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5803,'fr','pdf_specification','Sp%#cification PDF','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5804,'fr','seo_meta_tags','Balises Meta SEO','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5805,'fr','meta_title','Meta Title','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5806,'fr','meta_image','Meta Image','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5807,'fr','choice_title','Titre de choix','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5808,'fr','enter_choice_values','Entrez les valeurs de choix','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5809,'fr','all_categories','Toutes cat%#gories','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5810,'fr','add_new_category','Ajouter une nouvelle cat%#gorie','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5811,'fr','type_name__enter','Tapez le nom et entrez','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5812,'fr','banner','Banni%�re','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5813,'fr','commission','Commission','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5814,'fr','icon','ic%$%ne','2021-02-09 07:04:07','2021-02-09 07:04:07'),(5815,'fr','featured_categories_updated_successfully','Cat%#gories en vedette mises %� jour avec succ%�s','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5816,'fr','hot','Chaud','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5817,'fr','filter_by_payment_status','Filtrer par statut de paiement','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5818,'fr','unpaid','Non pay%#','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5819,'fr','filter_by_deliver_status','Filtrer par statut de livraison','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5820,'fr','pending','En attente','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5821,'fr','type_order_code__hit_enter','Tapez le code de commande et appuyez sur Entr%#e','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5822,'fr','num_of_products','Num. de produits','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5823,'fr','walk_in_customer','Marcher dans le client','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5824,'fr','qty','QT%�','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5825,'fr','without_shipping_charge','Sans frais d\'exp%#dition','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5826,'fr','with_shipping_charge','Avec frais d\'exp%#dition','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5827,'fr','pay_with_cash','Payer en esp%�ces','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5828,'fr','shipping_address','Adresse de livraison','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5829,'fr','close','proche','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5830,'fr','select_country','Choisissez le pays','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5831,'fr','order_confirmation','Confirmation de commande','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5832,'fr','are_you_sure_to_confirm_this_order','%�tes-vous s%W%r de confirmer cette commande?','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5833,'fr','comfirm_order','Commande de confirmation','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5834,'fr','personal_info','Informations personnelles','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5835,'fr','repeat_password','R%#p%#ter le mot de passe','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5836,'fr','shop_name','Nom de la boutique','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5837,'fr','register_your_shop','Enregistrez votre boutique','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5838,'fr','affiliate_informations','Informations sur les affili%#s','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5839,'fr','affiliate','Affilier','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5840,'fr','user_info','informations utilisateur','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5841,'fr','installed_addon','Addon install%#','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5842,'fr','available_addon','Addon disponible','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5843,'fr','install_new_addon','Installer un nouvel addon','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5844,'fr','version','Version','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5845,'fr','activated','Activ%#','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5846,'fr','deactivated','D%#sactiv%#','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5847,'fr','activate_otp','Activer OTP','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5848,'fr','otp_will_be_used_for','OTP sera utilis%# pour','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5849,'fr','settings_updated_successfully','Param%�tres mis %� jour avec succ%�s','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5850,'fr','product_owner','Propri%#taire du produit','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5851,'fr','point','Point','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5852,'fr','set_point_for_product_within_a_range','Point de consigne pour le produit dans une plage','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5853,'fr','set_point_for_multiple_products','Point de consigne pour plusieurs produits','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5854,'fr','min_price','Prix ������min','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5855,'fr','max_price','Prix ������maximum','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5856,'fr','set_point_for_all_products','Point de consigne pour tous les produits','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5857,'fr','set_point_for_','Point de consigne pour','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5858,'fr','convert_status','Convertir le statut','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5859,'fr','earned_at','Gagn%# %�','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5860,'fr','seller_based_selling_report','Rapport de vente bas%# sur le vendeur','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5861,'fr','sort_by_verificarion_status','Trier par statut de v%#rification','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5862,'fr','approved','Approuv%#','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5863,'fr','non_approved','Non approuv%#','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5864,'fr','filter','Filtre','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5865,'fr','seller_name','Nom du Vendeur','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5866,'fr','number_of_product_sale','Nombre de produits vendus','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5867,'fr','order_amount','Montant de la commande','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5868,'fr','facebook_chat_setting','Param%�tres de chat Facebook','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5869,'fr','facebook_page_id','ID de page Facebook','2021-02-09 07:04:07','2021-09-20 07:29: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 07:04:07','2021-09-20 07:29:24'),(5871,'fr','login_into_your_facebook_page','Connectez-vous %� votre page facebook','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5872,'fr','find_the_about_option_of_your_facebook_page','Trouvez l\'option %� propos de votre page Facebook','2021-02-09 07:04:07','2021-09-20 07:29: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 07:04:07','2021-09-20 07:29: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 07:04:07','2021-09-20 07:29: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 07:04:07','2021-09-20 07:29:24'),(5876,'fr','set_your_website_domain_name','D%#finissez le nom de domaine de votre site Web','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5877,'fr','google_recaptcha_setting','Param%�tre Google reCAPTCHA','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5878,'fr','site_key','Cl%# du site','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5879,'fr','select_shipping_method','S%#lectionnez le mode de livraison','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5880,'fr','product_wise_shipping_cost','Co%W%t d\'exp%#dition sage du produit','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5881,'fr','flat_rate_shipping_cost','Frais d\'exp%#dition forfaitaires','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5882,'fr','seller_wise_flat_shipping_cost','Vendeur Wise Flat Shipping Cost','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5883,'fr','note','Remarque','2021-02-09 07:04:07','2021-09-20 07:29: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 07:04:07','2021-09-20 07:29: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 07:04:07','2021-09-20 07:29: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 07:04:07','2021-09-20 07:29:24'),(5887,'fr','flat_rate_cost','Co%W%t forfaitaire','2021-02-09 07:04:07','2021-09-20 07:29:24'),(5888,'fr','shipping_cost_for_admin_products','Frais d\'exp%#dition pour les produits d\'administration','2021-02-09 07:04:08','2021-09-20 07:29:24'),(5889,'fr','countries','Des pays','2021-02-09 07:04:08','2021-09-20 07:29:24'),(5890,'fr','showhide','Afficher / Masquer','2021-02-09 07:04:08','2021-09-20 07:29:24'),(5891,'fr','country_status_updated_successfully','Statut du pays mis %� jour avec succ%�s','2021-02-09 07:04:08','2021-09-20 07:29:24'),(5892,'fr','all_subcategories','Toutes les sous-cat%#gories','2021-02-09 07:04:08','2021-09-20 07:29:24'),(5893,'fr','add_new_subcategory','Ajouter une nouvelle sous-cat%#gorie','2021-02-09 07:04:08','2021-09-20 07:29:24'),(5894,'fr','subcategories','Sous-cat%#gories','2021-02-09 07:04:08','2021-09-20 07:29:24'),(5895,'fr','sub_category_information','Informations sur la sous-cat%#gorie','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5896,'fr','slug','Limace','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5897,'fr','all_sub_subcategories','Toutes les sous-cat%#gories','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5898,'fr','add_new_sub_subcategory','Ajouter une nouvelle sous-cat%#gorie','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5899,'fr','subsubcategories','Sous-sous-cat%#gories','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5900,'fr','make_this_default','D%#finir cette valeur par d%#faut','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5901,'fr','shops','Magasins','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5902,'fr','women_clothing__fashion','V%�tements et mode pour femmes','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5903,'fr','cellphones__tabs','T%#l%#phones portables et onglets','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5904,'fr','welcome_to','Bienvenue %�','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5905,'fr','create_a_new_account','Cr%#er un nouveau compte','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5906,'fr','full_name','Nom et pr%#nom','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5907,'fr','password','mot de passe','2021-02-09 07:04:50','2021-02-09 07:04:50'),(5908,'fr','confrim_password','Confirmer le mot de passe','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5909,'fr','i_agree_with_the','Je suis d\'accord avec le','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5910,'fr','terms_and_conditions','Termes et conditions','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5911,'fr','register','S\'inscrire','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5912,'fr','already_have_an_account','Vous avez d%#j%� un compte','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5913,'fr','sign_up_with','Se connecter avec','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5914,'fr','i_agree_with_the_terms_and_conditions','J\'accepte les termes et conditions','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5915,'fr','all_role','Tous les r%$%les','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5916,'fr','add_new_role','Ajouter un nouveau r%$%le','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5917,'fr','roles','Les r%$%les','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5918,'fr','add_new_staffs','Ajouter de nouveaux personnels','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5919,'fr','role','R%$%le','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5920,'fr','frontend_website_name','Nom du site Web frontal','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5921,'fr','website_name','Nom du site Web','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5922,'fr','site_motto','Devise du site','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5923,'fr','best_ecommerce_website','Meilleur site de commerce %#lectronique','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5924,'fr','site_icon','Ic%$%ne du site','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5925,'fr','website_favicon_32x32_png','Favicon du site Web. 32x32 .png','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5926,'fr','website_base_color','Couleur de base du site Web','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5927,'fr','hex_color_code','Code couleur hexad%#cimal','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5928,'fr','website_base_hover_color','Couleur de survol de base du site Web','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5929,'fr','update','Mise %� jour','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5930,'fr','global_seo','Global SEO','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5931,'fr','meta_description','Meta Description','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5932,'fr','keywords','Mots cl%#s','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5933,'fr','separate_with_coma','S%#parez avec le coma','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5934,'fr','website_pages','Pages du site Web','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5935,'fr','all_pages','Toutes les pages','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5936,'fr','add_new_page','Ajouter une nouvelle page','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5937,'fr','url','URL','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5938,'fr','actions','Actions','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5939,'fr','edit_page_information','Modifier les informations de la page','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5940,'fr','page_content','Contenu de la page','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5941,'fr','title','Titre','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5942,'fr','link','Lien','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5943,'fr','use_character_number_hypen_only','Utilisez uniquement des caract%�res, des nombres et des hypen','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5944,'fr','add_content','Ajouter du contenu','2021-02-09 07:04:50','2021-09-20 07:29:24'),(5945,'fr','seo_fields','Champs de r%#f%#rencement','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5946,'fr','update_page','Mettre %� jour la page','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5947,'fr','default_language','Langage par d%#faut','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5948,'fr','add_new_language','Ajouter une nouvelle langue','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5949,'fr','rtl','RTL','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5950,'fr','translation','Traduction','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5951,'fr','language_information','Informations sur la langue','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5952,'fr','save_page','Sauvegarder la page','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5953,'fr','home_page_settings','Param%�tres de la page d\'accueil','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5954,'fr','home_slider','Curseur d\'accueil','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5955,'fr','photos__links','Photos et liens','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5956,'fr','add_new','Ajouter nouveau','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5957,'fr','home_categories','Accueil Cat%#gories','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5958,'fr','home_banner_1_max_3','Banni%�re d\'accueil 1 (max 3)','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5959,'fr','banner__links','Banni%�re et liens','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5960,'fr','home_banner_2_max_3','Banni%�re d\'accueil 2 (max 3)','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5961,'fr','top_10','Top 10','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5962,'fr','top_categories_max_10','Top Cat%#gories (Max 10)','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5963,'fr','top_brands_max_10','Top Marques (Max 10)','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5964,'fr','system_name','Nom du syst%�me','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5965,'fr','system_logo__white','Logo du syst%�me - Blanc','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5966,'fr','choose_files','Choisir des fichiers','2021-02-09 07:04:51','2021-09-20 07:29: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 07:04:51','2021-09-20 07:29:24'),(5968,'fr','system_logo__black','Logo du syst%�me - Noir','2021-02-09 07:04:51','2021-09-20 07:29: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 07:04:51','2021-09-20 07:29:24'),(5970,'fr','system_timezone','Fuseau horaire du syst%�me','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5971,'fr','admin_login_page_background','Arri%�re-plan de la page de connexion administrateur','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5972,'fr','website_header','En-t%�te de site Web','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5973,'fr','header_setting','Param%�tre d\'en-t%�te','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5974,'fr','header_logo','Logo d\'en-t%�te','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5975,'fr','show_language_switcher','Afficher le s%#lecteur de langue?','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5976,'fr','show_currency_switcher','Afficher le s%#lecteur de devises?','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5977,'fr','enable_stikcy_header','Activer l\'en-t%�te stikcy?','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5978,'fr','website_footer','Pied de page du site Web','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5979,'fr','footer_widget','Widget de pied de page','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5980,'fr','about_widget','%� propos du widget','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5981,'fr','footer_logo','Logo du pied de page','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5982,'fr','about_description','%� propos de la description','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5983,'fr','contact_info_widget','Widget d\'informations de contact','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5984,'fr','footer_contact_address','Adresse de contact du pied de page','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5985,'fr','footer_contact_phone','T%#l%#phone de contact de pied de page','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5986,'fr','footer_contact_email','Adresse e-mail de contact de pied de page','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5987,'fr','link_widget_one','Lier le widget un','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5988,'fr','links','Liens','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5989,'fr','footer_bottom','Bas de pied de page','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5990,'fr','copyright_widget_','Widget de droits d\'auteur','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5991,'fr','copyright_text','Texte du droit d\'auteur','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5992,'fr','social_link_widget_','Widget de lien social','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5993,'fr','show_social_links','Afficher les liens sociaux?','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5994,'fr','social_links','Liens sociaux','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5995,'fr','payment_methods_widget_','Widget des m%#thodes de paiement','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5996,'fr','rtl_status_updated_successfully','Statut RTL mis %� jour avec succ%�s','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5997,'fr','language_changed_to_','Langue remplac%#e par','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5998,'fr','inhouse_product_sale_report','Rapport de vente de produits en interne','2021-02-09 07:04:51','2021-09-20 07:29:24'),(5999,'fr','sort_by_category','Trier par cat%#gorie','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6000,'fr','product_wise_stock_report','Rapport de stock par produit','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6001,'fr','currency_changed_to_','Devise remplac%#e par','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6002,'fr','avatar','Avatar','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6003,'fr','copy','Copie','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6004,'fr','variant','Une variante','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6005,'fr','variant_price','Prix ������de la variante','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6006,'fr','sku','SKU','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6007,'fr','key','Cl%#','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6008,'fr','value','Valeur','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6009,'fr','copy_translations','Copier les traductions','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6010,'fr','all_pickup_points','Tous les points de ramassage','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6011,'fr','add_new_pickup_point','Ajouter un nouveau point de ramassage','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6012,'fr','manager','Directeur','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6013,'fr','location','Emplacement','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6014,'fr','pickup_station_contact','Contact de la station de ramassage','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6015,'fr','open','Ouvert','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6016,'fr','pos_activation_for_seller','Activation POS pour le vendeur','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6017,'fr','order_completed_successfully','Commande termin%#e avec succ%�s.','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6018,'fr','text_input','Saisie de texte','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6019,'fr','select','S%#lectionner','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6020,'fr','multiple_select','S%#lection multiple','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6021,'fr','radio','Radio','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6022,'fr','file','Fichier','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6023,'fr','email_address','Adresse e-mail','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6024,'fr','verification_info','Informations de v%#rification','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6025,'fr','approval','Approbation','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6026,'fr','due_amount','Montant d%W%','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6027,'fr','show','Montrer','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6028,'fr','pay_now','Payez maintenant','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6029,'fr','affiliate_user_verification','V%#rification de l\'utilisateur affili%#','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6030,'fr','reject','Rejeter','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6031,'fr','accept','J\'accepte','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6032,'fr','beauty_health__hair','Beaut%#, sant%# et cheveux','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6033,'fr','comparison','Comparaison','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6034,'fr','reset_compare_list','R%#initialiser la liste de comparaison','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6035,'fr','your_comparison_list_is_empty','Votre liste de comparaison est vide','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6036,'fr','convert_point_to_wallet','Convertir un point en portefeuille','2021-02-09 07:04:51','2021-09-20 07:29: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 07:04:51','2021-09-20 07:29:24'),(6038,'fr','create_an_account','Cr%#er un compte.','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6039,'fr','use_email_instead','Utilisez plut%$%t le courrier %#lectronique','2021-02-09 07:04:51','2021-09-20 07:29: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 07:04:51','2021-09-20 07:29:24'),(6041,'fr','create_account','Cr%#er un compte','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6042,'fr','or_join_with','Ou rejoindre avec','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6043,'fr','already_have_an_account','Vous avez d%#j%� un compte?','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6044,'fr','log_in','S\'identifier','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6045,'fr','computer__accessories','Accessoires informatiques','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6046,'fr','products','Des produits)','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6047,'fr','in_your_cart','dans votre panier','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6048,'fr','in_your_wishlist','dans votre liste de souhaits','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6049,'fr','you_ordered','vous avez command%#','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6050,'fr','default_shipping_address','Adresse de livraison par d%#faut','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6051,'fr','sports__outdoor','Sports et plein air','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6052,'fr','copied','Copi%#','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6053,'fr','copy_the_promote_link','Copier le lien de promotion','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6054,'fr','write_a_review','%�crire une critique','2021-02-09 07:04:51','2021-09-20 07:29:24'),(6055,'fr','your_name','Votre nom','2021-02-09 07:04:51','2021-09-20 07:29:25'),(6056,'fr','comment','Commentaire','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6057,'fr','your_review','Votre avis','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6058,'fr','submit_review','Poster le commentaire','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6059,'fr','claire_willis','Claire Willis','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6060,'fr','germaine_greene','Germaine Greene','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6061,'fr','product_file','Fiche produit','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6062,'fr','choose_file','Choisir le fichier','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6063,'fr','type_to_add_a_tag','Tapez pour ajouter une balise','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6064,'fr','images','Images','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6065,'fr','main_images','Main Images','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6066,'fr','meta_tags','Balises Meta','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6067,'fr','digital_product_has_been_inserted_successfully','Le produit num%#rique a %#t%# ins%#r%# avec succ%�s','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6068,'fr','edit_digital_product','Modifier le produit num%#rique','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6069,'fr','select_an_option','S%#lectionner une option','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6070,'fr','tax','imp%$%t','2021-02-09 07:04:52','2021-02-09 07:04:52'),(6071,'fr','any_question_about_this_product','Une question sur ce produit?','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6072,'fr','sign_in','se connecter','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6073,'fr','login_with_google','Connectez-vous avec Google','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6074,'fr','login_with_facebook','Se connecter avec Facebook','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6075,'fr','login_with_twitter','Connectez-vous avec Twitter','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6076,'fr','click_to_show_phone_number','Cliquez pour afficher le num%#ro de t%#l%#phone','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6077,'fr','other_ads_of','Autres annonces de','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6078,'fr','store_home','Accueil du magasin','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6079,'fr','top_selling','Meilleures ventes','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6080,'fr','shop_settings','Param%�tres de la boutique','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6081,'fr','visit_shop','Visiter la boutique','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6082,'fr','pickup_points','Points de ramassage','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6083,'fr','select_pickup_point','S%#lectionnez le point de ramassage','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6084,'fr','slider_settings','Param%�tres du curseur','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6085,'fr','social_media_link','Lien de m%#dias sociaux','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6086,'fr','facebook','Facebook','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6087,'fr','twitter','Twitter','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6088,'fr','google','Google','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6089,'fr','new_arrival_products','Nouveaux produits d\'arriv%#e','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6090,'fr','check_your_order_status','V%#rifiez l\'%#tat de votre commande','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6091,'fr','shipping_method','Mode de livraison','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6092,'fr','shipped_by','Exp%#di%# par','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6093,'fr','image','Image','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6094,'fr','sub_sub_category','Sous sous-cat%#gorie','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6095,'fr','inhouse_products','Produits internes','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6096,'fr','forgot_password','Mot de passe oubli%#?','2021-02-09 07:04:52','2021-09-20 07:29: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 07:04:52','2021-09-20 07:29:25'),(6098,'fr','email_or_phone','Email ou t%#l%#phone','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6099,'fr','send_password_reset_link','Envoyer le lien de r%#initialisation du mot de passe','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6100,'fr','back_to_login','Retour connexion','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6101,'fr','index','indice','2021-02-09 07:04:52','2021-02-09 07:04:52'),(6102,'fr','download_your_product','T%#l%#chargez votre produit','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6103,'fr','option','Option','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6104,'fr','applied_refund_request','Demande de remboursement appliqu%#e','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6105,'fr','item_has_been_renoved_from_wishlist','L\'article a %#t%# retir%# de la liste de souhaits','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6106,'fr','bulk_products_upload','T%#l%#chargement de produits en masse','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6107,'fr','upload_csv','T%#l%#charger CSV','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6108,'fr','create_a_ticket','Cr%#er un ticket','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6109,'fr','tickets','Des billets','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6110,'fr','ticket_id','ID de billets','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6111,'fr','sending_date','Date d\'envoi','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6112,'fr','subject','Mati%�re','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6113,'fr','view_details','Voir les d%#tails','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6114,'fr','provide_a_detailed_description','Fournissez une description d%#taill%#e','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6115,'fr','type_your_reply','Tapez votre r%#ponse','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6116,'fr','send_ticket','Envoyer un ticket','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6117,'fr','load_more','Charger plus','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6118,'fr','jewelry__watches','Bijoux & Montres','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6119,'fr','filters','Filtres','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6120,'fr','contact_address','Adresse de contact','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6121,'fr','contact_phone','Num%#ro du contact','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6122,'fr','contact_email','Email du contact','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6123,'fr','filter_by','Filtrer par','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6124,'fr','condition','%�tat','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6125,'fr','all_type','Tous les types','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6126,'fr','pay_with_wallet','Payer avec portefeuille','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6127,'fr','select_variation','S%#lectionnez une variante','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6128,'fr','no_product_added','Aucun produit ajout%#','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6129,'fr','status_has_been_updated_successfully','Le statut a %#t%# mis %� jour avec succ%�s','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6130,'fr','all_seller_packages','Tous les packages du vendeur','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6131,'fr','add_new_package','Ajouter un nouveau package','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6132,'fr','package_logo','Logo du paquet','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6133,'fr','days','journ%#es','2021-02-09 07:04:52','2021-02-09 07:04:52'),(6134,'fr','create_new_seller_package','Cr%#er un nouveau package vendeur','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6135,'fr','package_name','Nom du paquet','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6136,'fr','duration','Dur%#e','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6137,'fr','validity_in_number_of_days','Validit%# en nombre de jours','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6138,'fr','update_package_information','Mettre %� jour les informations du package','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6139,'fr','package_has_been_inserted_successfully','Le package a %#t%# ins%#r%# avec succ%�s','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6140,'fr','refund_request','Demande de remboursement','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6141,'fr','reason','Raison','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6142,'fr','label','%�tiquette','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6143,'fr','select_label','S%#lectionnez l\'%#tiquette','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6144,'fr','multiple_select_label','%�tiquette de s%#lection multiple','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6145,'fr','radio_label','%�tiquette radio','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6146,'fr','pickup_point_orders','Commandes au point de ramassage','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6147,'fr','view','Vue','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6148,'fr','order_','Ordre #','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6149,'fr','order_status','Statut de la commande','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6150,'fr','total_amount','Montant total','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6151,'fr','total','TOTAL','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6152,'fr','delivery_status_has_been_updated','Le statut de livraison a %#t%# mis %� jour','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6153,'fr','payment_status_has_been_updated','Le statut du paiement a %#t%# mis %� jour','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6154,'fr','invoice','FACTURE D\'ACHAT','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6155,'fr','set_refund_time','D%#finir l\'heure de remboursement','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6156,'fr','set_time_for_sending_refund_request','D%#finir l\'heure d\'envoi de la demande de remboursement','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6157,'fr','set_refund_sticker','D%#finir l\'autocollant de remboursement','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6158,'fr','sticker','Autocollant','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6159,'fr','refund_request_all','Demande de remboursement Tous','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6160,'fr','order_id','Num%#ro de commande','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6161,'fr','seller_approval','Approbation du vendeur','2021-02-09 07:04:52','2021-09-20 07:29:25'),(6162,'fr','admin_approval','Approbation de l\'administrateur','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6163,'fr','refund_status','Statut de remboursement','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6164,'fr','no_refund','Aucun remboursement','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6165,'fr','status_updated_successfully','Statut mis %� jour avec succ%�s','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6166,'fr','user_search_report','Rapport de recherche d\'utilisateurs','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6167,'fr','search_by','Recherch%# par','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6168,'fr','number_searches','Recherches num%#riques','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6169,'fr','sender','Exp%#diteur','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6170,'fr','receiver','Destinataire','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6171,'fr','verification_form_updated_successfully','Formulaire de v%#rification mis %� jour avec succ%�s','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6172,'fr','invalid_email_or_password','email ou mot de passe invalide','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6173,'fr','all_coupons','Tous les coupons','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6174,'fr','add_new_coupon','Ajouter un nouveau coupon','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6175,'fr','coupon_information','Informations sur le coupon','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6176,'fr','start_date','Date de d%#but','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6177,'fr','end_date','Date de fin','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6178,'fr','product_base','Base de produit','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6179,'fr','send_newsletter','Envoyer la newsletter','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6180,'fr','mobile_users','Utilisateurs mobiles','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6181,'fr','sms_subject','Objet du SMS','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6182,'fr','sms_content','Contenu SMS','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6183,'fr','all_flash_delas','Tous Flash Delas','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6184,'fr','create_new_flash_dela','Cr%#er un nouveau Flash Dela','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6185,'fr','page_link','Lien de page','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6186,'fr','flash_deal_information','Informations sur l\'offre Flash','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6187,'fr','background_color','Couleur de l\'arri%�re plan','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6188,'fr','0000ff','# 0000ff','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6189,'fr','text_color','Couleur du texte','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6190,'fr','white','blanc','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6191,'fr','dark','Fonc%#','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6192,'fr','choose_products','Choisissez des produits','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6193,'fr','discounts','R%#ductions','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6194,'fr','discount_type','Type de remise','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6195,'fr','twillo_credential','Titres d\'identit%# Twillo','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6196,'fr','twilio_sid','TWILIO SID','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6197,'fr','twilio_auth_token','JETON D\'AUTH TWILIO','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6198,'fr','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6199,'fr','valid_twillo_number','NUM%�RO DE TWILLO VALIDE','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6200,'fr','nexmo_credential','Identifiant Nexmo','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6201,'fr','nexmo_key','CL%� NEXMO','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6202,'fr','nexmo_secret','NEXMO SECRET','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6203,'fr','ssl_wireless_credential','Identifiant sans fil SSL','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6204,'fr','ssl_sms_api_token','TOKEN API SMS SSL','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6205,'fr','ssl_sms_sid','SID SMS SSL','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6206,'fr','ssl_sms_url','URL SMS SSL','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6207,'fr','fast2sms_credential','Informations d\'identification Fast2SMS','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6208,'fr','auth_key','CL%� D\'AUTHENTIFICATION','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6209,'fr','route','ROUTE','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6210,'fr','promotional_use','Utilisation promotionnelle','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6211,'fr','transactional_use','Utilisation transactionnelle','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6212,'fr','sender_id','ID de l\'exp%#diteur','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6213,'fr','nexmo_otp','Nexmo OTP','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6214,'fr','twillo_otp','Twillo OTP','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6215,'fr','ssl_wireless_otp','OTP sans fil SSL','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6216,'fr','fast2sms_otp','Fast2SMS OTP','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6217,'fr','order_placement','Placement de commande','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6218,'fr','delivery_status_changing_time','Heure de changement du statut de livraison','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6219,'fr','paid_status_changing_time','Temps de changement de statut pay%#','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6220,'fr','send_bulk_sms','Envoyer des SMS en masse','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6221,'fr','all_subscribers','Tous les abonn%#s','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6222,'fr','coupon_information_adding','Ajout d\'informations sur le coupon','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6223,'fr','coupon_type','Type de coupon','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6224,'fr','for_products','Pour les produits','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6225,'fr','for_total_orders','Pour le total des commandes','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6226,'fr','add_your_product_base_coupon','Ajouter votre coupon de base de produits','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6227,'fr','coupon_code','Code de coupon','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6228,'fr','sub_category','Sous-cat%#gorie','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6229,'fr','add_more','Ajouter plus de','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6230,'fr','add_your_cart_base_coupon','Ajouter votre coupon de base de panier','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6231,'fr','minimum_shopping','Achat minimum','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6232,'fr','maximum_discount_amount','Montant maximum de la remise','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6233,'fr','coupon_information_update','Mise %� jour des informations sur le coupon','2021-02-09 07:04:53','2021-09-20 07:29: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 07:04:53','2021-09-20 07:29:25'),(6235,'fr','configure_now','Configurer maintenant','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6236,'fr','total_published_products','Total des produits publi%#s','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6237,'fr','total_sellers_products','Total des produits vendeurs','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6238,'fr','total_admin_products','Total des produits d\'administration','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6239,'fr','manage_products','G%#rer les produits','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6240,'fr','total_product_category','Cat%#gorie de produit totale','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6241,'fr','create_category','Cr%#er une cat%#gorie','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6242,'fr','total_product_sub_sub_category','Sous-cat%#gorie totale de produits','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6243,'fr','create_sub_sub_category','Cr%#er une sous-sous-cat%#gorie','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6244,'fr','total_product_sub_category','Sous-cat%#gorie totale de produits','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6245,'fr','create_sub_category','Cr%#er une sous-cat%#gorie','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6246,'fr','total_product_brand','Marque totale du produit','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6247,'fr','create_brand','Cr%#er une marque','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6248,'fr','total_sellers','Total vendeurs','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6249,'fr','total_approved_sellers','Nombre total de vendeurs approuv%#s','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6250,'fr','total_pending_sellers','Total des vendeurs en attente','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6251,'fr','manage_sellers','G%#rer les vendeurs','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6252,'fr','category_wise_product_sale','Vente de produits par cat%#gorie','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6253,'fr','sale','Vente','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6254,'fr','category_wise_product_stock','Stock de produits par cat%#gorie','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6255,'fr','category_name','Nom de cat%#gorie','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6256,'fr','stock','Stock','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6257,'fr','frontend','L\'extr%#mit%# avant','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6258,'fr','home_page','Page d\'accueil','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6259,'fr','setting','r%#glage','2021-02-09 07:04:53','2021-02-09 07:04:53'),(6260,'fr','policy_page','Page de politique','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6261,'fr','general','G%#n%#ral','2021-02-09 07:04:53','2021-09-20 07:29:25'),(6262,'fr','click_here','Cliquez ici','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6263,'fr','useful_link','Lien utile','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6264,'fr','activation','Activation','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6265,'fr','smtp','SMTP','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6266,'fr','payment_method','Mode de paiement','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6267,'fr','social_media','Des m%#dias sociaux','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6268,'fr','business','Entreprise','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6269,'fr','seller_verification','V%#rification du vendeur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6270,'fr','form_setting','param%�tre de formulaire','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6271,'fr','language','Langue','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6272,'fr','dashboard','Tableau de bord','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6273,'fr','pos_system','Syst%�me de point de vente','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6274,'fr','pos_manager','Gestionnaire de point de vente','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6275,'fr','pos_configuration','Configuration du point de vente','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6276,'fr','products','Des produits','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6277,'fr','add_new_product','Ajouter un nouveau produit','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6278,'fr','all_products','Tous les produits','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6279,'fr','in_house_products','Produits maison','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6280,'fr','seller_products','Produits du vendeur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6281,'fr','digital_products','Produits num%#riques','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6282,'fr','bulk_import','Importation en masse','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6283,'fr','bulk_export','Exportation en masse','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6284,'fr','category','Cat%#gorie','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6285,'fr','subcategory','Sous-cat%#gorie','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6286,'fr','sub_subcategory','Sous sous-cat%#gorie','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6287,'fr','brand','Marque','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6288,'fr','attribute','Attribut','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6289,'fr','product_reviews','Avis sur les produits','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6290,'fr','sales','Ventes','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6291,'fr','all_orders','Tous les ordres','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6292,'fr','inhouse_orders','Commandes internes','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6293,'fr','seller_orders','Commandes du vendeur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6294,'fr','pickup_point_order','Commande au point de ramassage','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6295,'fr','refunds','Remboursements','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6296,'fr','refund_requests','Demandes de remboursement','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6297,'fr','approved_refund','Remboursement approuv%#','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6298,'fr','refund_configuration','Configuration du remboursement','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6299,'fr','customers','Les clients','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6300,'fr','customer_list','Liste de clients','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6301,'fr','classified_products','Produits class%#s','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6302,'fr','classified_packages','Forfaits classifi%#s','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6303,'fr','sellers','Les vendeurs','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6304,'fr','all_seller','Tous les vendeurs','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6305,'fr','payouts','Paiements','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6306,'fr','payout_requests','Demandes de paiement','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6307,'fr','seller_commission','Commission du vendeur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6308,'fr','seller_packages','Packages du vendeur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6309,'fr','seller_verification_form','Formulaire de v%#rification du vendeur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6310,'fr','reports','Rapports','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6311,'fr','in_house_product_sale','Vente de produits en interne','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6312,'fr','seller_products_sale','Vente de produits du vendeur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6313,'fr','products_stock','Stock de produits','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6314,'fr','products_wishlist','Liste de souhaits de produits','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6315,'fr','user_searches','Recherches d\'utilisateurs','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6316,'fr','marketing','Commercialisation','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6317,'fr','flash_deals','Offres Flash','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6318,'fr','newsletters','Bulletins','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6319,'fr','bulk_sms','SMS en masse','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6320,'fr','subscribers','Les abonn%#s','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6321,'fr','coupon','Coupon','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6322,'fr','support','Soutien','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6323,'fr','ticket','Billet','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6324,'fr','product_queries','Requ%�tes sur les produits','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6325,'fr','website_setup','Configuration du site Web','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6326,'fr','header','Ent%�te','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6327,'fr','footer','Bas de page','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6328,'fr','pages','Des pages','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6329,'fr','appearance','Apparence','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6330,'fr','setup__configurations','Installation et configurations','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6331,'fr','general_settings','r%#glages g%#n%#raux','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6332,'fr','features_activation','Activation des fonctionnalit%#s','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6333,'fr','languages','Langues','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6334,'fr','currency','Devise','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6335,'fr','pickup_point','Point de ramassage','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6336,'fr','smtp_settings','Param%�tres SMTP','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6337,'fr','payment_methods','m%#thodes de payement','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6338,'fr','file_system_configuration','Configuration du syst%�me de fichiers','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6339,'fr','social_media_logins','Connexions aux r%#seaux sociaux','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6340,'fr','analytics_tools','Outils d\'analyse','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6341,'fr','facebook_chat','Chat Facebook','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6342,'fr','google_recaptcha','Google reCAPTCHA','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6343,'fr','shipping_configuration','Configuration d\'exp%#dition','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6344,'fr','shipping_countries','Pays d\'exp%#dition','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6345,'fr','affiliate_system','Syst%�me d\'affiliation','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6346,'fr','affiliate_registration_form','Formulaire d\'inscription d\'affili%#','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6347,'fr','affiliate_configurations','Configurations d\'affiliation','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6348,'fr','affiliate_users','Utilisateurs affili%#s','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6349,'fr','referral_users','Utilisateurs r%#f%#rents','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6350,'fr','affiliate_withdraw_requests','Demandes de retrait des affili%#s','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6351,'fr','offline_payment_system','Syst%�me de paiement hors ligne','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6352,'fr','manual_payment_methods','Modes de paiement manuels','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6353,'fr','offline_wallet_recharge','Recharge de portefeuille hors ligne','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6354,'fr','offline_customer_package_payments','Paiements de forfait client hors ligne','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6355,'fr','offline_seller_package_payments','Paiements hors ligne du package du vendeur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6356,'fr','paytm_payment_gateway','Passerelle de paiement Paytm','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6357,'fr','set_paytm_credentials','D%#finir les informations d\'identification Paytm','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6358,'fr','club_point_system','Syst%�me de points Club','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6359,'fr','club_point_configurations','Configurations des points Club','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6360,'fr','set_product_point','D%#finir le point de produit','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6361,'fr','user_points','Points utilisateur','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6362,'fr','otp_system','Syst%�me OTP','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6363,'fr','otp_configurations','Configurations OTP','2021-02-09 07:04:54','2021-09-20 07:29:25'),(6364,'fr','set_otp_credentials','D%#finir les informations d\'identification OTP','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6365,'fr','staffs','Personnel','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6366,'fr','all_staffs','Tous les %#tats-majors','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6367,'fr','staff_permissions','Autorisations du personnel','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6368,'fr','addon_manager','Gestionnaire de modules compl%#mentaires','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6369,'fr','browse_website','Parcourir le site Web','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6370,'fr','pos','POS','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6371,'fr','notifications','Notifications','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6372,'fr','new_orders','nouvelles commandes','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6373,'fr','userimage','image-utilisateur','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6374,'fr','profile','Profil','2021-02-09 07:04:55','2021-09-20 07:29:25'),(6375,'fr','logout','Se d%#connecter','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6376,'fr','page_not_found','Page non trouv%#e!','2021-02-09 07:05:23','2021-09-20 07:29: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 07:05:23','2021-09-20 07:29:26'),(6378,'fr','registration','enregistrement','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6379,'fr','i_am_shopping_for','Je fais des achats pour...','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6380,'fr','compare','Comparer','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6381,'fr','wishlist','Liste de souhaits','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6382,'fr','cart','Chariot','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6383,'fr','your_cart_is_empty','Votre panier est vide','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6384,'fr','categories','Cat%#gories','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6385,'fr','see_all','Voir tout','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6386,'fr','seller_policy','Politique du vendeur','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6387,'fr','return_policy','Politique de retour','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6388,'fr','support_policy','Politique d\'assistance','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6389,'fr','privacy_policy','Politique de confidentialit%#','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6390,'fr','your_email_address','Votre adresse email','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6391,'fr','subscribe','Souscrire','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6392,'fr','contact_info','Informations de contact','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6393,'fr','address','Adresse','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6394,'fr','phone','T%#l%#phone','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6395,'fr','email','Email','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6396,'fr','login','S\'identifier','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6397,'fr','my_account','Mon compte','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6398,'fr','order_history','Historique des commandes','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6399,'fr','my_wishlist','Ma liste d\'envies','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6400,'fr','track_order','Suivi de commande','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6401,'fr','be_an_affiliate_partner','Soyez un partenaire affili%#','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6402,'fr','be_a_seller','Soyez vendeur','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6403,'fr','apply_now','Appliquer maintenant','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6404,'fr','confirmation','Confirmation','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6405,'fr','delete_confirmation_message','Supprimer le message de confirmation','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6406,'fr','cancel','Annuler','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6407,'fr','delete','Effacer','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6408,'fr','item_has_been_added_to_compare_list','L\'article a %#t%# ajout%# %� la liste de comparaison','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6409,'fr','please_login_first','S\'il vous plait Connectez-vous d\'abord','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6410,'fr','total_earnings_from','Total des revenus de','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6411,'fr','client_subscription','Abonnement client','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6412,'fr','product_category','Cat%#gorie de produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6413,'fr','product_sub_sub_category','Sous-cat%#gorie de produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6414,'fr','product_sub_category','Sous-cat%#gorie de produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6415,'fr','product_brand','Marque de produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6416,'fr','top_client_packages','Meilleurs packages clients','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6417,'fr','top_freelancer_packages','Meilleurs forfaits Freelancer','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6418,'fr','number_of_sale','Num%#ro de vente','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6419,'fr','number_of_stock','Nombre de stock','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6420,'fr','top_10_products','Top 10 des produits','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6421,'fr','top_12_products','Top 12 des produits','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6422,'fr','admin_can_not_be_a_seller','L\'administrateur ne peut pas %�tre un vendeur','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6423,'fr','filter_by_rating','Filtrer par note','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6424,'fr','published_reviews_updated_successfully','Avis publi%#s mis %� jour avec succ%�s','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6425,'fr','refund_sticker_has_been_updated_successfully','L\'autocollant de remboursement a %#t%# mis %� jour avec succ%�s','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6426,'fr','edit_product','Modifier le produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6427,'fr','meta_images','Images m%#ta','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6428,'fr','update_product','Mettre %� jour le produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6429,'fr','product_has_been_deleted_successfully','Le produit a %#t%# supprim%# avec succ%�s','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6430,'fr','your_profile_has_been_updated_successfully','Votre profil a %#t%# mis %� jour avec succ%#s!','2021-02-09 07:05:23','2021-09-20 07:29: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 07:05:23','2021-09-20 07:29:26'),(6432,'fr','add_your_product','Ajoutez votre produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6433,'fr','select_a_category','choisissez une cat%#gorie','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6434,'fr','select_a_brand','S%#lectionnez une marque','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6435,'fr','product_unit','Unit%# de produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6436,'fr','minimum_qty','Qt%# minimum.','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6437,'fr','product_tag','%�tiquette de produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6438,'fr','type__hit_enter','Tapez et appuyez sur Entr%#e','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6439,'fr','videos','Vid%#os','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6440,'fr','video_from','Vid%#o de','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6441,'fr','video_url','URL de la vid%#o','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6442,'fr','customer_choice','Choix du client','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6443,'fr','pdf','PDF','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6444,'fr','choose_pdf','Choisissez PDF','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6445,'fr','select_category','Choisir une cat%#gorie','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6446,'fr','target_category','Cat%#gorie cible','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6447,'fr','subsubcategory','sous-sous-cat%#gorie','2021-02-09 07:05:23','2021-02-09 07:05:23'),(6448,'fr','search_category','Rechercher une cat%#gorie','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6449,'fr','search_subcategory','Rechercher une sous-cat%#gorie','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6450,'fr','search_subsubcategory','Rechercher une sous-sous-cat%#gorie','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6451,'fr','update_your_product','Mettez %� jour votre produit','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6452,'fr','product_has_been_updated_successfully','Le produit a %#t%# mis %� jour avec succ%�s','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6453,'fr','add_your_digital_product','Ajoutez votre produit num%#rique','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6454,'fr','active_ecommerce_cms_update_process','Processus de mise %� jour du CMS de commerce %#lectronique actif','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6455,'fr','codecanyon_purchase_code','Code d\'achat Codecanyon','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6456,'fr','database_name','Nom de la base de donn%#es','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6457,'fr','database_username','Nom d\'utilisateur de la base de donn%#es','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6458,'fr','database_password','Mot de passe de la base de donn%#es','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6459,'fr','database_hostname','Nom d\'h%$%te de la base de donn%#es','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6460,'fr','update_now','Mettez %� jour maintenant','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6461,'fr','congratulations','Toutes nos f%#licitations','2021-02-09 07:05:23','2021-09-20 07:29: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 07:05:23','2021-09-20 07:29:26'),(6463,'fr','go_to_home','Aller %� la maison','2021-02-09 07:05:23','2021-09-20 07:29:26'),(6464,'fr','login_to_admin_panel','Connectez-vous au panneau d\'administration','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6465,'fr','s3_file_system_credentials','Informations d\'identification du syst%�me de fichiers S3','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6466,'fr','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6467,'fr','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6468,'fr','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6469,'fr','aws_bucket','AWS_BUCKET','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6470,'fr','aws_url','AWS_URL','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6471,'fr','s3_file_system_activation','Activation du syst%�me de fichiers S3','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6472,'fr','your_phone_number','Votre num%#ro de t%#l%#phone','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6473,'fr','zip_file','Fichier zip','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6474,'fr','install','Installer','2021-02-09 07:05:24','2021-09-20 07:29: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 07:05:24','2021-09-20 07:29:26'),(6476,'fr','search_in_menu','Rechercher dans le menu','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6477,'fr','uploaded_files','Fichiers t%#l%#charg%#s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6478,'fr','shipping_cities','Villes d\'exp%#dition','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6479,'fr','system','Syst%�me','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6480,'fr','server_status','%�tat du serveur','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6481,'fr','nothing_found','rien n\'a %#t%# trouv%#','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6482,'fr','parent_category','Cat%#gorie Parentale','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6483,'fr','level','Niveau','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6484,'fr','category_information','Information sur la cat%#gorie','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6485,'fr','translatable','Traduisible','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6486,'fr','no_parent','Aucun parent','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6487,'fr','physical','Physique','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6488,'fr','digital','Num%#rique','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6489,'fr','200x200','200 x 200','2021-02-09 07:05:24','2021-02-09 07:05:24'),(6490,'fr','32x32','32 x 32','2021-02-09 07:05:24','2021-02-09 07:05:24'),(6491,'fr','search_your_files','Recherchez vos fichiers','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6492,'fr','category_has_been_updated_successfully','La cat%#gorie a %#t%# mise %� jour avec succ%�s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6493,'fr','all_uploaded_files','Tous les fichiers t%#l%#charg%#s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6494,'fr','upload_new_file','T%#l%#charger un nouveau fichier','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6495,'fr','all_files','Tous les fichiers','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6496,'fr','search','Chercher','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6497,'fr','details_info','D%#tails Info','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6498,'fr','copy_link','Copier le lien','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6499,'fr','are_you_sure_to_delete_this_file','%�tes-vous s%W%r de vouloir supprimer ce fichier?','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6500,'fr','file_info','Informations sur le fichier','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6501,'fr','link_copied_to_clipboard','Lien copi%# dans le presse-papiers','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6502,'fr','oops_unable_to_copy','Oups, impossible de copier','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6503,'fr','file_deleted_successfully','Fichier supprim%# avec succ%�s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6504,'fr','add_new_brand','Ajouter une nouvelle marque','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6505,'fr','120x80','120 x 80','2021-02-09 07:05:24','2021-02-09 07:05:24'),(6506,'fr','brand_information','Information sur la marque','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6507,'fr','brand_has_been_updated_successfully','La marque a %#t%# mise %� jour avec succ%�s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6508,'fr','brand_has_been_deleted_successfully','La marque a %#t%# supprim%#e avec succ%�s','2021-02-09 07:05:24','2021-09-20 07:29: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 07:05:24','2021-09-20 07:29: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 07:05:24','2021-09-20 07:29: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%W% recadrer certains bords dans diff%#rents appareils pour le rendre r%#actif.','2021-02-09 07:05:24','2021-09-20 07:29: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 07:05:24','2021-09-20 07:29:26'),(6513,'fr','save_product','Enregistrer le produit','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6514,'fr','product_has_been_inserted_successfully','Le produit a %#t%# ins%#r%# avec succ%�s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6515,'fr','something_went_wrong','Un probl%�me est survenu!','2021-02-09 07:05:24','2021-09-20 07:29: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 07:05:24','2021-09-20 07:29:26'),(6517,'fr','error_code','Code d\'erreur','2021-02-09 07:05:24','2021-09-20 07:29: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 07:05:24','2021-09-20 07:29:26'),(6519,'fr','order','Ordre','2021-02-09 07:05:24','2021-09-20 07:29: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%W% 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 07:05:24','2021-09-20 07:29:26'),(6521,'fr','home_banner_3_max_3','Banni%�re d\'accueil 3 (Max 3)','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6522,'fr','add_new_seller','Ajouter un nouveau vendeur','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6523,'fr','filter_by_approval','Filtrer par approbation','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6524,'fr','nonapproved','Non approuv%#','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6525,'fr','type_name_or_email__enter','Tapez le nom ou l\'e-mail et entrez','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6526,'fr','due_to_seller','D%W% au vendeur','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6527,'fr','log_in_as_this_seller','Connectez-vous en tant que vendeur','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6528,'fr','go_to_payment','Aller au paiement','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6529,'fr','ban_this_seller','Interdire ce vendeur','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6530,'fr','do_you_really_want_to_ban_this_seller','Voulez-vous vraiment interdire ce vendeur?','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6531,'fr','proceed','Proc%#der!','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6532,'fr','approved_sellers_updated_successfully','Vendeurs approuv%#s mis %� jour avec succ%�s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6533,'fr','seller_has_been_deleted_successfully','Le vendeur a %#t%# supprim%# avec succ%�s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6534,'fr','seller_information','Information du vendeur','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6535,'fr','seller_has_been_inserted_successfully','Le vendeur a %#t%# ins%#r%# avec succ%�s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6536,'fr','email_already_exists','L\'email existe d%#j%�!','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6537,'fr','verify_your_email_address','V%#rifiez votre adresse e-mail','2021-02-09 07:05:24','2021-09-20 07:29: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 07:05:24','2021-09-20 07:29:26'),(6539,'fr','if_you_did_not_receive_the_email','Si vous n\'avez pas re%�u l\'e-mail.','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6540,'fr','click_here_to_request_another','Cliquez ici pour en demander un autre','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6541,'fr','email_verification','v%#rification de l\'E-mail','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6542,'fr','email_verification__','V%#rification de l\'E-mail -','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6543,'fr','https_activation','Activation HTTPS','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6544,'fr','maintenance_mode','Maintenance Mode','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6545,'fr','maintenance_mode_activation','Activation du mode de maintenance','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6546,'fr','classified_product_activate','Activation du produit classifi%#','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6547,'fr','classified_product','Produit class%#','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6548,'fr','business_related','Li%# aux affaires','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6549,'fr','vendor_system_activation','Activation du syst%�me du fournisseur','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6550,'fr','wallet_system_activation','Activation du syst%�me de portefeuille','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6551,'fr','coupon_system_activation','Activation du syst%�me de coupons','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6552,'fr','pickup_point_activation','Activation du point de ramassage','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6553,'fr','conversation_activation','Activation de la conversation','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6554,'fr','guest_checkout_activation','Activation de la v%#rification des invit%#s','2021-02-09 07:05:24','2021-09-20 07:29:26'),(6555,'fr','categorybased_commission','Commission par cat%#gorie','2021-02-09 07:05:24','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6557,'fr','set_commisssion_now','D%#finir la commission maintenant','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6558,'fr','payment_related','Li%# au paiement','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6559,'fr','paypal_payment_activation','Activation du paiement Paypal','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6561,'fr','stripe_payment_activation','Activation du paiement Stripe','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6562,'fr','sslcommerz_activation','Activation de SSlCommerz','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6563,'fr','instamojo_payment_activation','Activation du paiement Instamojo','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6565,'fr','razor_pay_activation','Activation de Razor Pay','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6567,'fr','paystack_activation','Activation PayStack','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6569,'fr','voguepay_activation','Activation de VoguePay','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6571,'fr','payhere_activation','Activation Payhere','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6572,'fr','ngenius_activation','Activation de Ngenius','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6574,'fr','iyzico_activation','Activation d\'Iyzico','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6576,'fr','bkash_activation','Activation Bkash','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6578,'fr','nagad_activation','Activation de Nagad','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6580,'fr','cash_payment_activation','Activation du paiement en esp%�ces','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6581,'fr','social_media_login','Connexion aux m%#dias sociaux','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6582,'fr','facebook_login','Identifiant Facebook','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6584,'fr','google_login','Connexion Google','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6586,'fr','twitter_login','Connexion Twitter','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6588,'fr','shop_logo','Logo de la boutique','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6589,'fr','shop_address','Adresse de la boutique','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6590,'fr','banner_settings','Param%�tres de la banni%�re','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6591,'fr','banners','Banni%�res','2021-02-09 07:05:25','2021-09-20 07:29: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%W% 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 07:05:25','2021-09-20 07:29:26'),(6593,'fr','insert_link_with_https_','Ins%#rer un lien avec https','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6594,'fr','your_shop_has_been_updated_successfully','Votre boutique a %#t%# mise %� jour avec succ%�s!','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6595,'fr','search_result_for_','R%#sultat de la recherche pour','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6596,'fr','brand_has_been_inserted_successfully','La marque a %#t%# ins%#r%#e avec succ%�s','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6597,'fr','about','%� propos de','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6598,'fr','payout_info','Informations de paiement','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6599,'fr','bank_acc_name','Nom de la banque','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6600,'fr','bank_acc_number','Num%#ro d\'acc%�s bancaire','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6601,'fr','total_products','Total produits','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6602,'fr','total_sold_amount','Montant total vendu','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6603,'fr','wallet_balance','Solde Google Wallet','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6604,'fr','cookies_agreement','Accord de cookies','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6605,'fr','cookies_agreement_text','Texte de l\'accord sur les cookies','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6606,'fr','show_cookies_agreement','Afficher l\'accord de cookies?','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6607,'fr','custom_script','Script personnalis%#','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6608,'fr','header_custom_script__before_head','Script personnalis%# d\'en-t%�te - avant </head>','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6609,'fr','write_script_with_script_tag','Ecrire un script avec la balise <script>','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6610,'fr','footer_custom_script__before_body','Script personnalis%# de pied de page - avant </body>','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6611,'fr','category_has_been_inserted_successfully','La cat%#gorie a %#t%# ins%#r%#e avec succ%�s','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6612,'fr','all_flash_deals','Toutes les offres Flash','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6613,'fr','create_new_flash_deal','Cr%#er une nouvelle offre Flash','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6614,'fr','ffffff','#FFFFFF','2021-02-09 07:05:25','2021-09-20 07:29: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 07:05:25','2021-09-20 07:29:26'),(6616,'fr','flash_deal_has_been_inserted_successfully','L\'offre Flash a %#t%# ins%#r%#e avec succ%�s','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6617,'fr','flash_deal_status_updated_successfully','%�tat de l\'accord Flash mis %� jour avec succ%�s','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6618,'fr','flash_deal_has_been_updated_successfully','L\'offre Flash a %#t%# mise %� jour avec succ%�s','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6619,'fr','update_language_info','mettre %� jour les informations sur la langue','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6620,'fr','language_has_been_updated_successfully','La langue a %#t%# mise %� jour avec succ%�s','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6621,'fr','type_key__enter','Tapez la cl%# et entrez','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6622,'fr','translations_updated_for_','Traductions mises %� jour pour','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6623,'fr','language_has_been_inserted_successfully','La langue a %#t%# ins%#r%#e avec succ%�s','2021-02-09 07:05:25','2021-09-20 07:29:26'),(6624,'in','all_category','��U%������ ��b%������%���������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6625,'in','all','��U%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6626,'in','flash_sale','�����������]% �����%���������%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6627,'in','view_more','������% ������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6628,'in','add_to_wishlist','��������������[% ��U%��������� ��������� �����������]%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6629,'in','add_to_compare','���������%�����[% ������%������ ������ ���%��%��� �����������]%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6630,'in','add_to_cart','�����[%���%������ ��������� �����������]%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6631,'in','club_point','���������%��� ��������a%��[%���������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6632,'in','classified_ads','��a%���%������������������ ��a%��%��������� ��[%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6633,'in','used','��������������� �����%�����[% ��������[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6634,'in','top_10_categories','��b%������%�����V% 10 ��b%������%��������%�����[%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6635,'in','view_all_categories','��U%������ ��b%������%��������%�����[%��� ���������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6636,'in','top_10_brands','��b%������%�����V% 10 ���������%��[%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6637,'in','view_all_brands','��U%������ ���������%��[%������ ���������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6638,'in','terms__conditions','�����%������ �����a%��� ��b%���%������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6639,'in','best_selling','��U%���%�����a%��b%������%�����V%������ �����%���������%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6640,'in','top_20','��b%������%�����V% 20','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6641,'in','featured_products','��a%��%��b%�����V% ���%������ ��U%��� ���������%������%�����b%��%��� ���������%�����������������U%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6642,'in','best_sellers','��U%���%�����a%��[%�����%��� �����%�����[%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6643,'in','visit_store','��U%������������% ������% �����[%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6644,'in','popular_suggestions','���%���������������%��%��� ��U%��������[%��a%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6645,'in','category_suggestions','��b%������%��������� ��U%��������[%��a%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6646,'in','automobile__motorcycle','��������������������[%������% ������% ������������%��U%��[%��������%���%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6647,'in','price_range','���������%������ ��U%��������[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6648,'in','filter_by_color','���%������ ��U%��� �����[%��� ���%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6649,'in','home','������%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6650,'in','newest','��U%�����U%��� ��������[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6651,'in','oldest','��U%�����U%��� ���������%��[%�����[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6652,'in','price_low_to_high','������������������ �����[% ��������[%���% - ��������]%��[%��a%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6653,'in','price_high_to_low','������������ ������������ ��U%��� ������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6654,'in','brands','���������%��[%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6655,'in','all_brands','��U%������ ���������%��[%������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6656,'in','all_sellers','��U%������ ��a%��%���������%��������[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6657,'in','inhouse_product','��������c%��[%�����U% ��������������[%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6658,'in','message_seller','��U%�����������b% ��a%��%���������%��������[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6659,'in','price','������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6660,'in','discount_price','�����%��U%��������[%��������� ������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6661,'in','color','���%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6662,'in','quantity','�����[%���������%��[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6663,'in','available','���������%���������','2021-02-09 07:07:17','2021-02-09 07:07:17'),(6664,'in','total_price','���������% ������������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6665,'in','out_of_stock','��U%������������ �����]%���������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6666,'in','refund','��a%��[%�����U%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6667,'in','share','��U%��[%�����[% ������%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6668,'in','sold_by','��������a%��[%���%��[% �����������[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6669,'in','customer_reviews','���������%��[%��c%��� ��U%��������������V%��[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6670,'in','top_selling_products','��b%������%�����V% ��������������[% ��������������[%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6671,'in','description','��a%��%��a%���%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6672,'in','video','��a%��������%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6673,'in','reviews','��U%��������������V%��[%','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6674,'in','download','�����[%���������%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6675,'in','there_have_been_no_reviews_for_this_product_yet','�����U% ��������������[%��� ������ ���%��%��� ��������� ������ ��������� ��U%��������������V%��[% �����c%������ ��c%������ ��c%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6676,'in','related_products','��U%��������������%��� ��������������[%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6677,'in','any_query_about_this_product','�����U% ��������������[%��� ������ �����[%���%��� ��������� ��������� ������ ���������%��b%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6678,'in','product_name','���������%��������������� �����[% �����[%���','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6679,'in','your_question','�����������[% ���������%��b%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6680,'in','send','��������� ������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6681,'in','use_country_code_before_number','��U%��������������[% ��U%��� �����c%���%��� ��������b% ��������� �����[% ��������������� ������%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6682,'in','remember_me','������������ �����[%��� ���%���������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6683,'in','dont_have_an_account','�����[%�����[% �����c%������ ��c%���?','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6684,'in','register_now','��������� ������������������%��� ������%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6685,'in','or_login_with','�����[% ���%��������%��� ������%������','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6686,'in','oops','��������]% ..','2021-02-09 07:07:17','2021-09-20 07:29:26'),(6687,'in','this_item_is_out_of_stock','�����c% ������������ ��U%������������ ��������� �����c%������ ��c%���!','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6688,'in','back_to_shopping','��a%��[%�����U% ������%��������[%���%��� ������ ���%��%���','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6689,'in','login_to_your_account','������������ ��������[%��������� ��������� ���%������ ������ ������%���������','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6690,'in','purchase_history','������%������ ��������%��c%��[%��U%','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6691,'in','new','��������[%','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6692,'in','downloads','�����[%���������%������','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6693,'in','sent_refund_request','�����������[% ��������[% ���%��%��������� ������������%������','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6694,'in','product_bulk_upload','��������������[%��� ��������� ���������%������','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6695,'in','orders','�����������b%','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6696,'in','recieved_refund_request','���%��%�����]%������ �����[% ������������%������','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6697,'in','shop_setting','�����������[%��� ������ ��U%��������[%��������[%','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6698,'in','payment_history','��������������[%��� ��������%��c%��[%��U%','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6699,'in','money_withdraw','��������U%��� ������ �����%�����[%��U%���','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6700,'in','conversations','�����[%��� �����%���','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6701,'in','my_wallet','���������%��[% ������������','2021-02-09 07:07:18','2021-09-20 07:29:26'),(6702,'in','earning_points','��������[%��� ������ ���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6703,'in','support_ticket','��U%������%��������� �����%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6704,'in','manage_profile','���������%��������]%��[%������% ���������%�����������%��� ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6705,'in','sold_amount','������������ ������ ���%��[%��b%��%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6706,'in','your_sold_amount_current_month','������������ ������������ ������ ���%��[%��b%��% (�����[%���%��� �����[%��c%)','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6707,'in','total_sold','���������% �����%��� ��������[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6708,'in','last_month_sold','�����%������%��� �����c%��������� ��������� �����%�����[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6709,'in','total_sale','���������% �����%���������%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6710,'in','total_earnings','���������% ������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6711,'in','successful_orders','��U%������% �����������b%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6712,'in','total_orders','���������% �����������b%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6713,'in','pending_orders','���%��������%��� ������%���������%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6714,'in','cancelled_orders','���%��������� �����%��� ������ �����������b%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6715,'in','product','��������������[%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6716,'in','purchased_package','������%��������[% ��c%������ ���������������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6717,'in','package_not_found','��������������� �����c%������ �����%���%��[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6718,'in','upgrade_package','���������������%������ ���������������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6719,'in','shop','�����������[%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6720,'in','manage__organize_your_shop','������������ �����������[%��� ������ ���������%�����������%��� ������% ��a%��������a%��U%��������%��� ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6721,'in','go_to_setting','��U%��������%������ ������% �����[%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6722,'in','payment','��������������[%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6723,'in','configure_your_payment_method','������������ ��������������[%��� ��a%��%�����% �����������������]%��%������% ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6724,'in','my_panel','���������%��[% ������������%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6725,'in','item_has_been_added_to_wishlist','������������ ������ ��������������[%-��U%��������� ��������� �����������]%��[% ��������[% ��c%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6726,'in','my_points','���������%��� ���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6727,'in','_points','���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6728,'in','wallet_money','��a%������%������ ���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6729,'in','exchange_rate','��a%��%�����%������ ������%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6730,'in','point_earning_history','�����%��������� ��������[%��� �����[% ��������%��c%��[%��U%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6731,'in','date','�����[%���%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6732,'in','points','���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6733,'in','converted','���%��������[%���������%��%��� �����%�����[% ��c%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6734,'in','action','���������%��%�����[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6735,'in','no_history_found','��������� ��������%��c%��[%��U% �����c%������ �����%���%��[%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6736,'in','convert_has_been_done_successfully_check_your_wallets','��������a%���%������ �����%�����[% ��������[% ��c%��� ��U%������%�����[%���������%�����a%��� ������������ ��a%������%������ ������ �����[%������ ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6737,'in','something_went_wrong','��������� ������%��� ��c%��� ��������[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6738,'in','remaining_uploads','��b%�����V% ���������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6739,'in','no_package_found','��������� ��������������� �����c%������ �����%���%��[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6740,'in','search_product','��������� ��������������[%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6741,'in','name','�����[%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6742,'in','current_qty','��a%���%�����������[%��� �����[%���������%��[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6743,'in','base_price','��������[%���% ���������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6744,'in','published','���������%�����[%��b%��%��� �����%�����[% ��������[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6745,'in','featured','��a%��%��b%�����V% ���%������ ��U%��� ���������%������%�����b%��%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6746,'in','options','��a%��%������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6747,'in','edit','��U%��������[%�����%��� ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6748,'in','duplicate','���������������%��%���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6749,'in','1_download_the_skeleton_file_and_fill_it_with_data','1. �����������[%���% �����]%��[%������% �����[%���������%������ ������%������ ������% �����U%��� �����������[% ������ ��U%��[%��� ������%���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6750,'in','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2. �����������[% ������ ��������U%��� ������%�����[% �����[%��c%��%���, �����c% ��U%������������ ������ ���%��%��� ������ ��������[%��c%���%��� �����]%��[%������% �����[%���������%������ ������% ��U%��������� ��c%���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6751,'in','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3. ������ �����[%���% ������ ������ �����������[%���% �����]%��[%������% ������ �����[%���������%������ ������% ������% ���%������, ������ ������������ �����%��� ������ ���������%������ ��������� ���������%������ ������%������ ������% ��U%��������%��� ������%���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6752,'in','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4. ��������������[%��������� ������ ���������%������ ������%������ ������ �����[%��� ������������ �����������c%������ ��U%��������[%�����%��� ������%������ ������% ��������������[%��������� ������ �����a%��%��������� ������% ��a%��%������%������������ ������ ��U%������ ������%������ ������ �����a%��b%��������������[% ��c%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6753,'in','download_csv','CSV �����[%���������%������ ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6754,'in','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1. ��b%������%���������, ������ ��b%������%���������, ������ ������ ��b%������%��������� ������% ���������%��[%������ ��U%��������������[%������������ ������������ ��������� ��c%��������� �����[%��c%��%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6755,'in','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. ������ ��b%������%���������, ������ ��b%������%���������, ������ ������ ��b%������%��������� ������% ���������%��[%������ ������������ ���������%��[%��������� ������%������ ������ ���%��%��� ������������������ �����[%���������%������ ������% ��U%��������� ��c%���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6756,'in','download_category','�����[%���������%������ ��b%������%���������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6757,'in','download_sub_category','������ ��b%������%��������� �����[%���������%������ ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6758,'in','download_sub_sub_category','������ ��U%��� ������������������%��� �����[%���������%������ ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6759,'in','download_brand','���������%��[%������ �����[%���������%������ ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6760,'in','upload_csv_file','CSV �����]%��[%������% ���������%������ ������%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6761,'in','csv','��U%��������U%��a%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6762,'in','choose_csv_file','CSV �����]%��[%������% ���������������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6763,'in','upload','�����[%���%�����[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6764,'in','add_new_digital_product','��������[% �����%�����%������% ��������������[%��� �����������]%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6765,'in','available_status','���������%��������� ��U%��������%�����%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6766,'in','admin_status','��a%��������a%��U%��������[%������ ������ ��U%��������%�����%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6767,'in','pending_balance','��������[%�����[% ���%��[%��b%��%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6768,'in','send_withdraw_request','��a%��%������������%��� ���%��%��������a%�����U%������ ���������������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6769,'in','withdraw_request_history','��������%��c%��[%��U% ��a%��[%�����U% ���%��������[%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6770,'in','amount','���%������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6771,'in','status','��U%��������%�����%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6772,'in','message','��U%�����������b%','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6773,'in','send_a_withdraw_request','������ �����%�����[%��U%��� ������������%������ ���������������','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6774,'in','basic_info','�����������%�����[%������ �����[%��������[%���%���','2021-02-09 07:07:18','2021-09-20 07:29:27'),(6775,'in','your_phone','������������ ��������� ������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6776,'in','photo','�����U%�����a%������%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6777,'in','browse','���������%��[%��������]% ������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6778,'in','your_password','�����������[% �����[%��U%��a%���%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6779,'in','new_password','��������[% �����[%��U%��a%���%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6780,'in','confirm_password','�����[%��U%��a%���%������ ������ ��������V%��������% �����������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6781,'in','add_new_address','��������[% ��������[% �����������]%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6782,'in','payment_setting','��������������[%��� ��U%��������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6783,'in','cash_payment','��������� ��������������[%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6784,'in','bank_payment','������������ ��������������[%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6785,'in','bank_name','������������ �����[% �����[%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6786,'in','bank_account_name','������������ �����[%������ �����[% �����[%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6787,'in','bank_account_number','������������ �����[%�����[% ��U%��������������[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6788,'in','bank_routing_number','��������%��������V% ���������%��� ��U%��������������[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6789,'in','update_profile','���������%��������]%��[%������% ��������������� ������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6790,'in','change_your_email','�����������[% ������������% ���������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6791,'in','your_email','�����������[% ������������%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6792,'in','sending_email','������������% ��������� ���%��c%��[% ��c%������...','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6793,'in','verify','��U%�����������[%�����%��� ������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6794,'in','update_email','������������% ��������������� ������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6795,'in','new_address','��������[% ��������[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6796,'in','your_address','��������������c%��[%���%��[% ��������[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6797,'in','country','��������b%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6798,'in','select_your_country','������������ ��������b% �����[% ��������� ������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6799,'in','city','Faridabad','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6800,'in','your_city','������������ ��b%��c%���%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6801,'in','your_postal_code','�����������[% �����[%��� �����%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6802,'in','880','+880','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6803,'in','save','��U%��c%������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6804,'in','received_refund_request','���%��%�����]%������ ���%��%��������a%�����U%������ �����%���%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6805,'in','delete_confirmation','��������V%��������%������%��� ��c%�����[%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6806,'in','are_you_sure_to_delete_this','�����������[% ������ �����U%��� ��c%�����[%�����[% ��U%��������%��b%��������%��� ������% ���%��c%��� ��c%������?','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6807,'in','premium_packages_for_sellers','��a%��%���������%��������[%������ ������ ���%��%��� ���������%��������%������ ���������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6808,'in','product_upload','��������������[%��� ���������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6809,'in','digital_product_upload','�����%�����%������% ��������������[%��� ���������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6810,'in','purchase_package','������%������ ���������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6811,'in','select_payment_type','��������������[%��� ���������%�����[%���% ���������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6812,'in','payment_type','��������������[%��� ���������%�����[%���%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6813,'in','select_one','������ ������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6814,'in','online_payment','���������%��[%������ ��������������[%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6815,'in','offline_payment','��������]%���%��[%������ ��������������[%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6816,'in','purchase_your_package','�����������[% ��������������� ������%������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6817,'in','paypal','���������������%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6818,'in','stripe','�����[%���%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6819,'in','sslcommerz','sslcommerz','2021-02-09 07:07:19','2021-02-09 07:07:19'),(6820,'in','confirm','��������V%��������% ������%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6821,'in','offline_package_payment','���������%��[%������ ��������������� ��������������[%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6822,'in','transaction_id','���%��������������� ������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6823,'in','choose_image','�����a%��% ���������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6824,'in','code','���������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6825,'in','delivery_status','��a%��%������%��� ������ ��U%��������%�����%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6826,'in','payment_status','��������������[%��� ������ ��U%��������%�����%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6827,'in','paid','��������������[%��� �����%�����[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6828,'in','order_details','������%���������% �����[% ��a%��%��a%���%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6829,'in','download_invoice','��������a%��[%�����U% ������ �����[%���������%������ ������%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6830,'in','unpaid','�����a%�����������%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6831,'in','order_placed','�����������b% ���%�����[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6832,'in','confirmed','������ ��������V%��������% ������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6833,'in','on_delivery','�����%���%�����a%���%��� ������%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6834,'in','delivered','�����c%�����������[% �����%�����[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6835,'in','order_summary','�����������b% ��U%��[%���%��[%�����b%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6836,'in','order_code','�����������b% ���������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6837,'in','customer','���������%��[%��c%���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6838,'in','total_order_amount','���������% �����������b% ���%��[%��b%��%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6839,'in','shipping_metdod','��b%��%�����%������ ������������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6840,'in','flat_shipping_rate','���������%������ ��������a%��c%��� ������%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6841,'in','payment_metdod','��������������[%��� ���������������������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6842,'in','variation','�����%��������������[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6843,'in','delivery_type','��a%��%������%��� ������ ���������%�����[%���%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6844,'in','home_delivery','������% �����c%�����������[%�����[%','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6845,'in','order_ammount','�����������b% ��������[%���������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6846,'in','subtotal','������-���������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6847,'in','shipping','��b%��%�����%������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6848,'in','coupon_discount','������������ ���������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6849,'in','na','������ / ���','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6850,'in','in_stock','��U%������������ ���������','2021-02-09 07:07:19','2021-09-20 07:29:27'),(6851,'in','buy_now','��������� ������%������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6852,'in','item_added_to_your_cart','������������ ������ ������������ �����[%���%������ ��������� ��b%��[%�����%���% �����%�����[% ��������[%!','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6853,'in','proceed_to_checkout','��������� ��������� ������%������ ������ ���%��%��� ��������� ��������]%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6854,'in','cart_items','�����[%���%������ ������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6855,'in','1_my_cart','1. ���������%��� �����[%�����]%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6856,'in','view_cart','�����[%������ ���������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6857,'in','2_shipping_info','2. ��b%��%�����%������ �����[%��������[%���%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6858,'in','checkout','��������� ���������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6859,'in','3_delivery_info','3. �����%���%�����a%���%��� ������ �����[%��������[%���%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6860,'in','4_payment','4. ��������������[%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6861,'in','5_confirmation','5. ��������V%��������%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6862,'in','remove','��c%�����[%�����[%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6863,'in','return_to_shop','������%��������[%���%��� ������%������ ������ ���%��%��� ��a%��[%�����U% ���%������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6864,'in','continue_to_shipping','��b%��%�����%������ ������ ���%��%��� �����[%���%��� ���%���������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6865,'in','or','�����[%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6866,'in','guest_checkout','��������%�����% ������ ��c%���������% �����������]%������ �����[% ��U%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6867,'in','continue_to_delivery_info','�����%���%�����a%���%��� ������ �����[%��������[%���%��� �����[%���%��� ���%���������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6868,'in','postal_code','�����[%��� ���������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6869,'in','choose_delivery_type','��a%��%������%��� ���������%�����[%���% ���������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6870,'in','local_pickup','��������� �����[%������% ���%��� ��������[%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6871,'in','select_your_nearest_pickup_point','������������ �����%������������ �����%��������� �����%��������� �����[% ��������� ������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6872,'in','continue_to_payment','��������������[%��� �����[%���%��� ���%���������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6873,'in','select_a_payment_option','������ ��������������[%��� ��a%��%������%������ ���������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6874,'in','razorpay','���%���������������%��������[%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6875,'in','paystack','��������������a%��[%��c%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6876,'in','voguepay','��a%�����������[%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6877,'in','payhere','�����c%��[%��� ��������������[%��� ������%������','2021-02-09 07:07:20','2021-02-09 07:07:20'),(6878,'in','ngenius','�����������������[%���','2021-02-09 07:07:20','2021-02-09 07:07:20'),(6879,'in','paytm','������������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6880,'in','cash_on_delivery','�����%���%��a%���%��� ������% ������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6881,'in','your_wallet_balance_','�����������[% ������������ ��U%������������%���:','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6882,'in','insufficient_balance','���������%��������[%��������� ��b%�����V%���%��[%��b%��%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6883,'in','i_agree_to_the','��������� ������%������ ������ ���%��%��� ��U%��c%������ ��c%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6884,'in','complete_order','�����������b% ���������%��[%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6885,'in','summary','��U%��[%���%��[%�����b%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6886,'in','items','������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6887,'in','total_club_point','���������% ���������%��� �����%���������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6888,'in','total_shipping','���������% ��b%��%�����%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6889,'in','have_coupon_code_enter_here','������������ ��������� ��c%���? �����c%��[%��� ��U%��� ���������%��a%�����b% ������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6890,'in','apply','���%��[%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6891,'in','you_need_to_agree_with_our_policies','������������ ��c%�����[%���%��� �����������%��������� ��U%��� ��U%��c%������ ��c%��������� ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6892,'in','forgot_password','�����[%��U%��a%���%������ ���������% ������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6893,'in','seo_setting','�����U%������ ��U%��������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6894,'in','system_update','��U%��%��U%��������� ������������������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6895,'in','add_new_payment_method','������ ��������������[%��� ��a%��%�����% �����������]%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6896,'in','manual_payment_method','������������������% ��������������[%��� ��a%��%�����%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6897,'in','heading','��c%��������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6898,'in','logo','���������%��������� �����%��������c%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6899,'in','manual_payment_information','������������������% ��������������[%��� �����[%��������[%���%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6900,'in','type','���������%�����[%���%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6901,'in','custom_payment','�����U%��������� ��������������[%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6902,'in','check_payment','��������������[%��� ������ �����[%������ ������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6903,'in','checkout_thumbnail','������������������ ������������������%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6904,'in','payment_instruction','��������������[%��� �����������������b%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6905,'in','bank_information','������������ ��U%��������������� �����[%��������[%���%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6906,'in','select_file','�����]%��[%������% �����[% ��������� ������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6907,'in','upload_new','��������[% ���������%������ ������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6908,'in','sort_by_newest','������ ��������a%��[%���%��[% ���������%��������������� ������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6909,'in','sort_by_oldest','��U%�����U%��� ���������%��[%������ ��������a%��[%���%��[% ���������%��������������� ������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6910,'in','sort_by_smallest','��U%�����U%��� ������������ ��������a%��[%���%��[% ���������%��������������� ������%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6911,'in','sort_by_largest','��U%�����U%��� ��������]%��[% �����[%������������%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6912,'in','selected_only','��������a%���% �����������%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6913,'in','no_files_found','��������� �����[%������% �����c%������ �����%���%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6914,'in','0_file_selected','0 �����]%��[%������% �����������%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6915,'in','clear','��U%��������V%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6916,'in','prev','���������%�����a%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6917,'in','next','���������%��[%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6918,'in','add_files','�����[%������%������ �����������]%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6919,'in','method_has_been_inserted_successfully','��a%��%�����% ��U%������%�����[%���������%�����a%��� �����[%���%��� ������ ��c%���','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6920,'in','order_date','�����������b% ������ �����[%���%������','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6921,'in','bill_to','�����%���% ���������%��[%���������������%��������[%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6922,'in','sub_total','������ ���������%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6923,'in','total_tax','���������% ������%','2021-02-09 07:07:20','2021-09-20 07:29:27'),(6924,'in','grand_total','���������% ���������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6925,'in','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','�����������[% �����������b% ��U%������%�����[%���������%�����a%��� ���%�����[% ��������[% ��c%������ ��������������[% ������%������ ��������%��c%��[%��U% ��U%��� ��������������[%��� �����[%��������[%���%��� ��U%��������%��� ������%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6926,'in','thank_you_for_your_order','������������ ���������%��� �����������b% ������ ���%��%��� ��������������a%��[%���!','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6927,'in','order_code','�����������b% ���������:','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6928,'in','a_copy_or_your_order_summary_has_been_sent_to','������ ���������%�����%���%��%�����% �����[% �����������[% �����������b% ��U%��[%���%��[%�����b% �����������[% ��������[% ��c%���','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6929,'in','make_payment','��������������[%��� ������%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6930,'in','payment_screenshot','��������������[%��� ��U%������������%��������b%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6931,'in','paypal_credential','���������������% ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6932,'in','paypal_client_id','���������������% ���������%��[%��c%��� ������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6933,'in','paypal_client_secret','���������������% ���������%��[%��c%��� ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6934,'in','paypal_sandbox_mode','���������������% ��U%�����������������������U% ���������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6935,'in','sslcommerz_credential','Sslcommerz ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6936,'in','sslcz_store_id','Sslcz Store Id','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6937,'in','sslcz_store_password','Sslcz ��U%������������% �����[%��U%��a%���%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6938,'in','sslcommerz_sandbox_mode','Sslcommerz Sandbox ���������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6939,'in','stripe_credential','�����[%���%��� ��U%��[%���','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6940,'in','stripe_key','��U%������������%��%��� ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6941,'in','stripe_secret','��U%������������%��%��� ��U%��%���������%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6942,'in','razorpay_credential','���%�����]%������%������ ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6943,'in','razor_key','���%���������% ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6944,'in','razor_secret','RAZOR SECRET','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6945,'in','instamojo_credential','Instamojo ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6946,'in','api_key','��������������� ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6947,'in','im_api_key','������������ ��������������� ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6948,'in','auth_token','��������� ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6949,'in','im_auth_token','������������ ��������� ������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6950,'in','instamojo_sandbox_mode','Instamojo Sandbox ���������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6951,'in','paystack_credential','PayStack ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6952,'in','public_key','��U%��[%���%�����a%��������%��� ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6953,'in','secret_key','��������������� ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6954,'in','merchant_email','������%��������������� ������������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6955,'in','voguepay_credential','VoguePay ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6956,'in','merchant_id','��a%��������[%�����[%���%��� ������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6957,'in','sandbox_mode','��U%�����������������������U% ���������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6958,'in','payhere_credential','��b%������%������ �����������[%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6959,'in','payhere_merchant_id','PAYHERE MERCHANT ID','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6960,'in','payhere_secret','PAYHERE SECRET','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6961,'in','payhere_currency','PAYHERE CURRENCY','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6962,'in','payhere_sandbox_mode','��U%�����������������������U% ��������� �����[% ��������������[%��� ������%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6963,'in','ngenius_credential','Ngenius ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6964,'in','ngenius_outlet_id','NGENIUS OUTLET ID','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6965,'in','ngenius_api_key','NGENIUS API ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6966,'in','ngenius_currency','NGENIUS CURRENCY','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6967,'in','mpesa_credential','Mpesa ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6968,'in','mpesa_consumer_key','MPESA �����������������������[% ���������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6969,'in','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6970,'in','mpesa_consumer_secret','MPESA �����������������������[% SECRET','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6971,'in','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6972,'in','mpesa_short_code','MPESA SHORT CODE','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6973,'in','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6974,'in','mpesa_sandbox_activation','MPESA SANDBOX ��������%��a%��%�����%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6975,'in','flutterwave_credential','���������%������%��a%������ ���������%��������������b%��%������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6976,'in','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6977,'in','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6978,'in','rave_title','RAVE_TITLE','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6979,'in','stagin_activation','��U%��������%���% ��������%��a%��%�����%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6980,'in','all_product','��U%������ ��������������[%���','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6981,'in','sort_by','�����U%������ �����������U%��[%���% ���������%��������������� ������%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6982,'in','rating_high__low','���%��������%������ (������������> �����%���������)','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6983,'in','rating_low__high','���%��������%������ (�����%���������> ������������)','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6984,'in','num_of_sale_high__low','�����%���������%��� ������ ��U%��������������[% (������������> ������)','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6985,'in','num_of_sale_low__high','�����%���������%��� ������ ��U%��������������[% (������> ������������)','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6986,'in','base_price_high__low','��������[%���% ���������%������ (������������> ������)','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6987,'in','base_price_low__high','��������[%���% ���������%������ (������> ������������)','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6988,'in','type__enter','�����[%������ ������%������ ������% ������������% ������%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6989,'in','added_by','��������a%��[%���%��[% �����������]%��[%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6990,'in','num_of_sale','�����%���������%��� ������ ��U%��������������[%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6991,'in','total_stock','���������% ��U%������������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6992,'in','todays_deal','��������������U% ���������%','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6993,'in','rating','���%��������%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6994,'in','times','��U%������','2021-02-09 07:07:21','2021-02-09 07:07:21'),(6995,'in','add_nerw_product','Nerw ��������������[%��� �����������]%������','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6996,'in','product_information','��������������[%��� ������ �����[%��������[%���%���','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6997,'in','unit','��������[%���','2021-02-09 07:07:21','2021-09-20 07:29:27'),(6998,'in','unit_eg_kg_pc_etc','��������[%��� (��������[%��c%���%��� ������������, ��������U%��� ��������%)','2021-02-09 07:07:22','2021-09-20 07:29:27'),(6999,'in','minimum_qty','��������������������� �����[%���������%��[%','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7000,'in','tags','���������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7001,'in','type_and_hit_enter_to_add_a_tag','��������� �����������]%������ ������ ���%��%��� �����[%������ ������% ��c%��%��� ������%������ ������%������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7002,'in','barcode','�����[%���%���������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7003,'in','refundable','��a%��[%�����U%��� ���������������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7004,'in','product_images','��������������[%��� �����a%��%�����[%���','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7005,'in','gallery_images','���������%���%��� �����a%��%�����[%���','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7006,'in','todays_deal_updated_successfully','��������������U% ���������% ��U%������%�����[%���������%�����a%��� ��������������� ������ ������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7007,'in','published_products_updated_successfully','���������%�����[%��b%��%��� ��������������[%��� ��U%������%�����[%���������%�����a%��� ��������������� �����%��� ������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7008,'in','thumbnail_image','������������������% �����a%��%','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7009,'in','featured_products_updated_successfully','��a%��%��b%�����V% ���%������ ��U%��� ���������%������%�����b%��%��� ��������������[%��� ��U%������%�����[%���������%�����a%��� ��������������� �����%��� ������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7010,'in','product_videos','��������������[%��� ��a%��������%������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7011,'in','video_provider','��a%��������%������ ���������%�����[%�����[%','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7012,'in','youtube','���������������������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7013,'in','dailymotion','���������%�����������b%���','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7014,'in','vimeo','Vimeo','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7015,'in','video_link','��a%��������%������ ���%��%������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7016,'in','product_variation','��������������[%��� ��a%��%��a%��%��������[%','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7017,'in','colors','���%������ ������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7018,'in','attributes','��a%��%��b%�����V%�����[%������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7019,'in','choose_attributes','��a%��%��b%�����V%�����[%������ ���������������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7020,'in','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','�����U% ��������������[%��� ������ ��a%��%��b%�����V%�����[%������ ������ ��������������� ������% �����%���% ���������%��������������� ��a%��%��b%�����V%�����[% ������ ��������������� �����[%��������� ������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7021,'in','product_price__stock','��������������[%��� ������ ������������ + ��U%������������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7022,'in','unit_price','�����������%��� ���������%������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7023,'in','purchase_price','������%������ ���������%������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7024,'in','flat','��U%���������%','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7025,'in','percent','���������%�����%��b%��� ��c%���','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7026,'in','discount','���������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7027,'in','product_description','��������������[%��� ��a%���%���������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7028,'in','product_shipping_cost','��������������[%��� ��b%��%�����%������ ���%��[%������','2021-02-09 07:07:22','2021-09-20 07:29:27'),(7029,'in','free_shipping','�����������]%������ ��b%��%�����%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7030,'in','flat_rate','���������%������ ���%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7031,'in','shipping_cost','��b%��%�����%������ ���%��[%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7032,'in','pdf_specification','������������������ ��a%��%��b%��%��V%�����������[%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7033,'in','seo_meta_tags','�����U%������ �����������[% ���������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7034,'in','meta_title','�����������[% ��b%������%�����V%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7035,'in','meta_image','�����������[% ������������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7036,'in','choice_title','�����U%������ �����[% ��b%������%�����V%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7037,'in','enter_choice_values','�����U%������ �����[%��� ������%������ ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7038,'in','all_categories','��U%��� ��a%���%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7039,'in','add_new_category','������ ��b%������%��������� �����������]%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7040,'in','type_name__enter','�����[%��� �����[%������ ������%������ ������% ������%������ ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7041,'in','banner','������������%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7042,'in','commission','������������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7043,'in','icon','������������','2021-02-09 07:07:22','2021-02-09 07:07:22'),(7044,'in','featured_categories_updated_successfully','��a%��%��b%�����V% ���%������ ��U%��� ��������������� ������ ������ ��b%������%��������%�����[%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7045,'in','hot','������%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7046,'in','filter_by_payment_status','��������������[%��� ��U%��������%�����% ��������a%��[%���%��[% �����]%��%���%���������% ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7047,'in','unpaid','������-���������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7048,'in','filter_by_deliver_status','���������%�����a%���% ��U%��������%�����% ������ �����������U%��[%���% �����]%��%���%���������% ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7049,'in','pending','���%��������%��� ��c%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7050,'in','type_order_code__hit_enter','������%���������% ��������� �����[%������ ������%������ ������% ������������% ��������[%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7051,'in','num_of_products','������������ ��������������[%��������� ������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7052,'in','walk_in_customer','���������%��[%��c%��� ��������� ������%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7053,'in','qty','�����[%���������%��[%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7054,'in','without_shipping_charge','�����%�����[% ��b%��%�����%������ �����[%���%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7055,'in','with_shipping_charge','��b%��%�����%������ �����[%���%������ ������ ��U%��[%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7056,'in','pay_with_cash','��������� ������ ��U%��[%��� ��������������[%��� ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7057,'in','shipping_address','��b%��%�����%������ ��������[%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7058,'in','close','��������� ������%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7059,'in','select_country','��������b% ���������������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7060,'in','order_confirmation','�����������b% ������ ��������V%��������%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7061,'in','are_you_sure_to_confirm_this_order','�����������[% ������ �����U% �����������b% ������ ��������V%��������% ������%�����[% ��U%��������%��b%��������%��� ������%������ ��c%������?','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7062,'in','comfirm_order','Comfirm �����������b%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7063,'in','personal_info','��a%�����������������%������ �����[%��������[%���%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7064,'in','repeat_password','�����[%��U%��a%���%������ ��������c%���%��[%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7065,'in','shop_name','�����������[%��� �����[% �����[%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7066,'in','register_your_shop','������������ �����������[%��� ��������������������� ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7067,'in','affiliate_informations','��U%��������������� �����[%��������[%���%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7068,'in','affiliate','��U%��������������� ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7069,'in','user_info','���������������������%��������[% �����[%��������[%���%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7070,'in','installed_addon','������������ ��U%��������[%�����%��� �����%�����[%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7071,'in','available_addon','���������%��������� ������������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7072,'in','install_new_addon','��������[% Addon ��U%��������[%�����%��� ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7073,'in','version','��U%�����U%���������%���','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7074,'in','activated','��U%���������%��%��� �����%�����[% ��c%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7075,'in','deactivated','�����%��V%������������%��%��� ������% �����%�����[%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7076,'in','activate_otp','OTP ������ ��U%���������%��%��� ������%������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7077,'in','otp_will_be_used_for','OTP �����[% ��������������� �����%�����[% �����[%��������[%','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7078,'in','settings_updated_successfully','��U%��������%�����������U% ��U%������%�����[%���������%�����a%��� ��������������� ������ ���������','2021-02-09 07:07:22','2021-09-20 07:29:28'),(7079,'in','product_owner','��������������[%��� ��U%�����a%��[%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7080,'in','point','�����%���������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7081,'in','set_point_for_product_within_a_range','������ ��U%��������[% ������ ������������% ��������������[%��� ������ ���%��%��� �����%��������� �����%���%��������[%���%��%��� ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7082,'in','set_point_for_multiple_products','������ ��������������[%��������� ������ ���%��%��� ��������a%��[%��������� ��U%������ ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7083,'in','min_price','��������������������� ���������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7084,'in','max_price','��������%��������� ���������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7085,'in','set_point_for_all_products','��U%������ ��������������[%��������� ������ ���%��%��� �����%��������� �����%���%��������[%���%��%��� ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7086,'in','set_point_for_','������ ���%��%��� �����%��������� �����%���%��������[%���%��%��� ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7087,'in','convert_status','��U%��������%�����% ���������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7088,'in','earned_at','������% ������%��������%��� �����%�����[%','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7089,'in','seller_based_selling_report','��a%��%���������%��������[% ��������[%���%��%��� ��a%��%���������%��� ���%��%���������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7090,'in','sort_by_verificarion_status','���������%�����[%��������U%��[%���% ��U%��������%�����% ������ �����������U%��[%���% ���������%��������������� ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7091,'in','approved','���������������% ������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7092,'in','non_approved','���������% ��������������������%���','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7093,'in','filter','�����]%��%���%���������% ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7094,'in','seller_name','��a%��%���������%��������[% �����[% �����[%���','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7095,'in','number_of_product_sale','��������������[%��� �����%���������%��� ������ ��U%��������������[%','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7096,'in','order_amount','������%���������% ������%������ ������ ���%��[%��b%��%','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7097,'in','facebook_chat_setting','��������U%��������� ��������� ��U%��������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7098,'in','facebook_page_id','��������U%��������� ��������� ������������','2021-02-09 07:07:23','2021-09-20 07:29: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','��������������[% ��U%��[%��a%�����[%��� ���%��c%������ ������ ������ ��������U%��������� ��������� ������ �����������������]%��%������% ������% ���%��c%��� ��c%��������� ������%��� �����������������]%��%������%�����b%��� ������ ���%��%��� ������������ ������������ �����������]%���%-��������� ��U%��[%������ ������% ��������U%������������% ������������ �����c%������ �����%���%��������[%���','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7100,'in','login_into_your_facebook_page','������������ ��������U%��������� ��������� ��������� ���%��������%��� ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7101,'in','find_the_about_option_of_your_facebook_page','������������ ��������U%��������� ��������� ������ �����[%���%��� ��������� ��a%��%������%������ ���������������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7102,'in','at_the_very_bottom_you_can_find_the_facebook_page_id','��U%�����U%��� ������������, ������ \\ \"��������U%��������� ��������� ������������ \\\" �����[% ��U%��������� ��c%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7103,'in','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','������������ ��������V%������ ������ ��U%��������%������ ��������� �����[%������ ������% \\ \"��������a%��[%�����U% ��������U%��������%������ \\\" �����[% ��a%��%������%������ ���������������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7104,'in','scroll_down_that_page_and_you_will_get_white_listed_domain','�����U% ��������V%������ ������ ������������ ��U%������������%������% ������%������ ������% ������������ \"��U%��������� ��U%��������������������� ���������������\" �����%���% �����[%��������[%','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7105,'in','set_your_website_domain_name','�����������[% ��a%��������U%��[%������ ��������������� �����[%��� ��U%������ ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7106,'in','google_recaptcha_setting','Google reCAPTCHA ��U%��������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7107,'in','site_key','�����[%���%��������U%���������% ������ ���������������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7108,'in','select_shipping_method','������%�����[%���������%��[% �����������������% �����[% ��������� ������%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7109,'in','product_wise_shipping_cost','��������������[%��� ��a%��[%���% ��b%��%�����%������ ���%��[%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7110,'in','flat_rate_shipping_cost','���������%������ ������% ��b%��%�����%������ ���%��[%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7111,'in','seller_wise_flat_shipping_cost','��a%��%���������%��������[% �����������������%�����[%��� ���������%������ ��b%��%�����%������ ���%��[%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7112,'in','note','�����������[%��� ���������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7113,'in','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','��������������[%��� ��a%��[%���% ��b%��%�����%������ ���%��[%������ ������ �����������[%: ��b%��%�����%������ ���%��[%������ ������ �����������[% ���������%��������������� ��������������[%��� ��b%��%�����%������ ���%��[%������ ������ ������%��[%��a%��[% ������ �����[%������ ��c%���','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7114,'in','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','�����]%������%������ ���%������ ��b%��%�����%������ ��������U%������ ���������%������������%�����b%���: ���������%��[%��c%��� ��������a%��[%���%��[% �����%��������� ��������������[%��������� ������ ������%������, ��������� ������%������ �����c%������ ��������]%�����[%��� ��b%��%�����%������ ���%��[%������ ������ ��c%���','2021-02-09 07:07:23','2021-09-20 07:29: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','��a%��%���������%��������[% ��a%��[%���% ���������%������ ��b%��%�����%������ ���%��[%������ ������ ��U%�����[%�����������%: ���������%��������������� ��a%��%���������%��������[% ������ ���%��%��� �����%��b%��������%��� ������%��� ��������% ��������� ���������%��[%��c%��� ������ ��a%��%���������%��������[% ��b%��%�����%������ ���%��[%������ ��U%��� 2 ��������������[%��� ������%�����������[% ��c%���, ������ ���������%��������������� ��a%��%���������%��������[% ���������%������ ��b%��%�����%������ ���%��[%������ ������ �����������]%������% �����������[% ������ �����[%������ ��c%���','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7116,'in','flat_rate_cost','���������%������ ������% ���%��[%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7117,'in','shipping_cost_for_admin_products','��a%��������a%��U%��������[%������ ��������������[%��������� ������ ���%��%��� ��b%��%�����%������ ���%��[%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7118,'in','countries','��������b%','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7119,'in','showhide','�����%�����[%��� �����������[%���','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7120,'in','country_status_updated_successfully','��������b% ������ ��U%��������%�����% ��U%������%�����[%���������%�����a%��� ��������������� ������ ������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7121,'in','all_subcategories','��U%������ ��������b%������%��������%�����[%���','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7122,'in','add_new_subcategory','������ ��������b%������%��������� �����������]%������','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7123,'in','subcategories','������-��b%������%��������%�����[%���','2021-02-09 07:07:23','2021-09-20 07:29:28'),(7124,'in','sub_category_information','������ ��b%������%��������� �����[%��������[%���%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7125,'in','slug','��U%������%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7126,'in','all_sub_subcategories','��U%������ ������ ��������b%������%��������%�����[%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7127,'in','add_new_sub_subcategory','������ ������ ��������b%������%��������� �����������]%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7128,'in','subsubcategories','������-������-��b%������%��������%�����[%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7129,'in','make_this_default','�����U%��� �����%�����]%������%������ ��������[%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7130,'in','shops','�����������[%���������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7131,'in','women_clothing__fashion','�����c%��%���%��[% ��a%��U%������������% ������% ��������b%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7132,'in','cellphones__tabs','��U%������%��������� ������% ���������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7133,'in','welcome_to','��������� ��U%�����a%��[%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7134,'in','create_a_new_account','������ ��������[% �����[%�����[% ��������[%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7135,'in','full_name','���������%��[% �����[%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7136,'in','password','�����[%���%��� ��b%���������','2021-02-09 07:08:11','2021-02-09 07:08:11'),(7137,'in','confrim_password','�����[%��U%��a%���%������ ������ ��������V%��������% ������%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7138,'in','i_agree_with_the','��������� �����U%��U%��� ��U%��c%������ ��c%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7139,'in','terms_and_conditions','�����%������ ������% ��b%���%������������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7140,'in','register','���%�����%��U%���������% ������%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7141,'in','already_have_an_account','�����������[% ������������ �����[%��U% �����c%���%��� ��U%��� ������ �����[%�����[% ��������������� ��c%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7142,'in','sign_up_with','�����U%������ ��U%��[%��� ��U%��[%������ ������ ������%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7143,'in','i_agree_with_the_terms_and_conditions','��������� �����%������ ������% ��b%���%������������ ��U%��� ��U%��c%������ ��c%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7144,'in','all_role','��U%������ �����������%�����[%','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7145,'in','add_new_role','������ �����������%�����[% �����������]%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7146,'in','roles','���%������%�����U%','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7147,'in','add_new_staffs','������ ������%�����������[%���%��� �����������]%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7148,'in','role','�����������%�����[%','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7149,'in','frontend_website_name','���������%��������������� ��a%��������U%��[%������ �����[% �����[%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7150,'in','website_name','��a%��������U%��[%������ �����[% �����[%���','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7151,'in','site_motto','��U%��[%������ �����[% ���������%�����b% ��a%��[%���������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7152,'in','best_ecommerce_website','��U%���%�����a%��b%������%�����V%������ ��������[%������%�����U% ��a%��������U%��[%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7153,'in','site_icon','��U%��[%������ ������������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7154,'in','website_favicon_32x32_png','��a%��������U%��[%������ favicon��� 32x32 .png','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7155,'in','website_base_color','��a%��������U%��[%������ �����[% ��������[%���% ���%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7156,'in','hex_color_code','��c%�����������U% ���%������ ���������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7157,'in','website_base_hover_color','��a%��������U%��[%������ ��������U% ��c%�����a%���% ������%���%','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7158,'in','update','��������������� ������%������','2021-02-09 07:08:11','2021-09-20 07:29:28'),(7159,'in','global_seo','���������%���������% �����U%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7160,'in','meta_description','�����������[% ��a%��%��a%���%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7161,'in','keywords','��������a%���%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7162,'in','separate_with_coma','�����������[% ��U%��� ������%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7163,'in','website_pages','��a%��������U%��[%������ ������ ���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7164,'in','all_pages','��U%������ ���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7165,'in','add_new_page','��������[% ��������� �����������]%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7166,'in','url','URL','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7167,'in','actions','���������%��%�����[%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7168,'in','edit_page_information','��������V%������ �����[%��������[%���%��� ��U%��������[%�����%��� ������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7169,'in','page_content','��������V%������ ��U%��[%������������%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7170,'in','title','��b%������%�����V%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7171,'in','link','��U%���������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7172,'in','use_character_number_hypen_only','������%��%���������%, ��U%��������������[%, ��U%��������������c%��� �����[% ��c%��� ��������������� ������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7173,'in','add_content','��U%��[%������������%��� �����������]%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7174,'in','seo_fields','�����U%������ ���������%�����������U%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7175,'in','update_page','������������������ ��������V%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7176,'in','default_language','�����%�����]%������%������ �����[%��V%��[%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7177,'in','add_new_language','������ �����[%��V%��[% �����������]%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7178,'in','rtl','������%������������%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7179,'in','translation','�����������a%��[%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7180,'in','language_information','�����[%��V%��[% ������ �����[%��������[%���%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7181,'in','save_page','��������� ��U%������%��������V%��%��� ������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7182,'in','home_page_settings','��������� ��������V%������ ��U%��������%�����������U%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7183,'in','home_slider','��c%������ ��U%������%��[%���������%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7184,'in','photos__links','�����U%�����a%������%������ ������% ���%��%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7185,'in','add_new','��������[% �����������]%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7186,'in','home_categories','������% ��b%������%��������%�����[%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7187,'in','home_banner_1_max_3','��c%������ ������������% 1 (��������%��������� 3)','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7188,'in','banner__links','������������% ������% ���%��%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7189,'in','home_banner_2_max_3','��c%������ ������������% 2 (��������%��������� 3)','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7190,'in','top_10','��U%���%�����a%��������������� 10','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7191,'in','top_categories_max_10','��b%������%�����V% ��b%������%��������%�����[%��� (��������%��������� 10)','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7192,'in','top_brands_max_10','��b%������%�����V% ���������%��[%������ (��������%��������� 10)','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7193,'in','system_name','��U%��%��U%��������� �����[% �����[%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7194,'in','system_logo__white','��U%��%��U%��������� ���%��������� - ��U%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7195,'in','choose_files','�����]%��[%������%������ �����[% ��������� ������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7196,'in','will_be_used_in_admin_panel_side_menu','��a%��������a%��U%��������[%������ ������������% ��U%��[%������ ������������ ��������� ��������������� �����%�����[% �����[%��������[%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7197,'in','system_logo__black','��U%��%��U%��������� ���%��������� - �����[%���%��[%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7198,'in','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','�����������[%������% + ��a%��������a%��U%��������[%������ ���%��������%��� ��������V%������ ��������� ��a%��������a%��U%��������[%������ ������������% ��������������[%���% ��������� ��������������� �����%�����[% �����[%��������[%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7199,'in','system_timezone','��U%��%��U%��������� �����[%�����������]%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7200,'in','admin_login_page_background','��a%��������a%��U%��������[%������ ���%��������%��� ��������V%������ ������ ��������V%�����������������%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7201,'in','website_header','��a%��������U%��[%������ ��c%���������%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7202,'in','header_setting','��c%���������% ��U%��������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7203,'in','header_logo','��b%������%�����V%���%������ �����[% ���%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7204,'in','show_language_switcher','�����[%��V%��[% ��U%�����a%��%������% �����%�����[%������?','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7205,'in','show_currency_switcher','������%��������U%��� ��U%�����a%��%������% �����%�����[%���?','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7206,'in','enable_stikcy_header','��U%��������%�����U%��� ��c%���������% ��U%��������V%��� ������%������?','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7207,'in','website_footer','��a%��������U%��[%������ �����[%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7208,'in','footer_widget','�����[%��� ��a%��%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7209,'in','about_widget','��a%��%��������� ������ �����[%���%��� ���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7210,'in','footer_logo','�����[%��� ���%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7211,'in','about_description','��a%��%��a%���%��� ������ �����[%���%��� ���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7212,'in','contact_info_widget','��U%���������%������ �����[%��������[%���%��� ��a%��%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7213,'in','footer_contact_address','�����[%��� ��U%���������%������ ��U%���������%������ ��������[%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7214,'in','footer_contact_phone','�����[%��� ��U%���������%������ ���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7215,'in','footer_contact_email','�����[%��� ��U%���������%������ ������������%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7216,'in','link_widget_one','���%��%������ ��a%��%��������� ������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7217,'in','links','���%��%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7218,'in','footer_bottom','�����[%��� ������������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7219,'in','copyright_widget_','���������������%��[%������ ��a%��%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7220,'in','copyright_text','���������������%��[%������ �����[%���','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7221,'in','social_link_widget_','��U%��[%�����[%�����%��� ���%��%������ ��a%��%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7222,'in','show_social_links','��U%��[%�����[%�����%��� ���%��%������ �����%�����[%������?','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7223,'in','social_links','��U%��[%�����[%�����%��� ���%��%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7224,'in','payment_methods_widget_','��������������[%��� ������ ������%��������� ��a%��%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7225,'in','rtl_status_updated_successfully','RTL ��U%��������%�����% ��U%������%�����[%���������%�����a%��� ��������������� ������ ������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7226,'in','language_changed_to_','�����[%��V%��[% ���������% ������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7227,'in','inhouse_product_sale_report','��������c%��[%�����U% ��������������[%��� �����%���������%��� ���%��%���������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7228,'in','sort_by_category','��b%������%��������� ������ ��������[%���% ������% �����[%������������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7229,'in','product_wise_stock_report','��������������[%��� ��a%��[%���% ��U%������������ ���%��%���������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7230,'in','currency_changed_to_','���������������%��[% ��������� ���������% ��������[%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7231,'in','avatar','�����a%�����[%���%','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7232,'in','copy','������������ ������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7233,'in','variant','��a%������%��%���������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7234,'in','variant_price','�����%��������� ���������%������','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7235,'in','sku','SKU','2021-02-09 07:08:12','2021-09-20 07:29:28'),(7236,'in','key','�����[%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7237,'in','value','�����[%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7238,'in','copy_translations','�����������a%��[%��� ������ ���������%�����%���%��%�����% ��������[%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7239,'in','all_pickup_points','��U%������ �����%���-������ ���������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7240,'in','add_new_pickup_point','��������[% �����%���-������ ��������������� �����������]%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7241,'in','manager','���������%������������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7242,'in','location','��U%��������[%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7243,'in','pickup_station_contact','�����%��������� ��U%�����������b%��� ��U%���������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7244,'in','open','���������%��[% ��c%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7245,'in','pos_activation_for_seller','��a%��%���������%��������[% ������ ���%��%��� POS ��U%���������%��%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7246,'in','order_completed_successfully','�����������b% ��U%������%�����[%���������%�����a%��� ���������%��[% ��c%���������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7247,'in','text_input','�����[%��� ���������������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7248,'in','select','��������������� ��c%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7249,'in','multiple_select','��������[%�����%��� ��������� ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7250,'in','radio','���%��������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7251,'in','file','�����]%��[%������%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7252,'in','email_address','������������% ��������[%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7253,'in','verification_info','��U%�����������[%������ ������ �����[%��������[%���%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7254,'in','approval','���������������������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7255,'in','due_amount','��������[%�����[% ���%��[%��b%��%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7256,'in','show','���������%������%�����b%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7257,'in','pay_now','������ ��������������[%��� ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7258,'in','affiliate_user_verification','��U%��������������� ���������������������%��������[% ��U%�����������[%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7259,'in','reject','�����U%�����a%��������[%���%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7260,'in','accept','��U%�����a%��������[%���% ������%�����[%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7261,'in','beauty_health__hair','��U%������������%������, ��U%�����a%��[%��U%������������ ������% �����[%���%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7262,'in','comparison','���������%�����[%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7263,'in','reset_compare_list','���%�����U%������ ��U%��������� ������ ���������%�����[% ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7264,'in','your_comparison_list_is_empty','������������ ���������%�����[% ��U%��������� �����[%���%��� ��c%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7265,'in','convert_point_to_wallet','Convert Point to Wallet','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7266,'in','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','���������: ������������ ���������%��� ��������������� ������������ �����[% ��������������� ������%������ ��U%��� �����c%���%��� �����c%���%��� ��a%������%������ ��a%��%������%������ ������ ��U%���������%��%��� ������%�����[% ��c%��������[%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7267,'in','create_an_account','�����[%�����[% ��������[%���������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7268,'in','use_email_instead','�����U%������ ��������[%��� ������������% �����[% ��������������� ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7269,'in','by_signing_up_you_agree_to_our_terms_and_conditions','��U%��[%������ ������ ������%������ ������ ��c%�����[%���%��� �����%������������ ������% ��b%���%������������ ��U%��� ��U%��c%������ ��c%���������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7270,'in','create_account','�����[%�����[% ��������[%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7271,'in','or_join_with','�����[% ������ ��U%��[%��� �����������]%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7272,'in','already_have_an_account','�����������[% ������������ �����[%��U% �����c%���%��� ��U%��� ������ �����[%�����[% ��������������� ��c%���?','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7273,'in','log_in','���%������ ������ ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7274,'in','computer__accessories','������������������������% ������ ��U%��c%��[%������ ������������%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7275,'in','products','��������������[%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7276,'in','in_your_cart','������������ �����[%�����]%��� ���������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7277,'in','in_your_wishlist','������������ ��������������[% ��U%��������� ���������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7278,'in','you_ordered','������������ ������%���������% �����%�����[%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7279,'in','default_shipping_address','��U%��[%�����[%��� ��������������� ������ ���%��%��� ���������% ��������[%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7280,'in','sports__outdoor','���������% ������% ������������������%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7281,'in','copied','���������% ������ ������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7282,'in','copy_the_promote_link','���������%�����[%���% ���%��%������ ������ ���������%�����%���%��%�����% ��������[%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7283,'in','write_a_review','������ ��U%��������������V%��[% ���%��%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7284,'in','your_name','��������������c%��[%���%��[% �����[%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7285,'in','comment','�����%���������������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7286,'in','your_review','������������ ��U%��������������V%��[%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7287,'in','submit_review','��U%��������������V%��[% ��������[% ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7288,'in','claire_willis','���������%���������% ��a%��%���%��%��U%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7289,'in','germaine_greene','������%������������ ���������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7290,'in','product_file','��������������[%��� �����]%��[%������%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7291,'in','choose_file','�����]%��[%������% �����[% ���������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7292,'in','type_to_add_a_tag','������ ��������� �����������]%������ ������ ���%��%��� �����[%������ ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7293,'in','images','��������������%��U%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7294,'in','main_images','��������������� �����%���������%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7295,'in','meta_tags','�����������[% ���������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7296,'in','digital_product_has_been_inserted_successfully','�����%�����%������% ��������������[%��� ��U%������%�����[%���������%�����a%��� �����[%���%��[% ��������[% ��c%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7297,'in','edit_digital_product','�����%�����%������% ��������������[%��� ��U%��������[%�����%��� ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7298,'in','select_an_option','��������� ��a%��%������%������ ���������������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7299,'in','tax','������%','2021-02-09 07:08:13','2021-02-09 07:08:13'),(7300,'in','any_question_about_this_product','�����U% ��������������[%��� ������ �����[%���%��� ��������� ��������� ���������%��b%������?','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7301,'in','sign_in','��U%��[%������ ������ ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7302,'in','login_with_google','Google ������ ��U%��[%��� ���%��������%��� ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7303,'in','login_with_facebook','��������U%��������� ��������� �����[%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7304,'in','login_with_twitter','��������a%��%������% ��U%��� ���%��������%��� ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7305,'in','click_to_show_phone_number','�����]%������ ������������% �����%�����[%������ ������ ���%��%��� ���������%��%��� ������%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7306,'in','other_ads_of','������ ������������ ��a%��%��������� ��[%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7307,'in','store_home','�����������[%���% ������%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7308,'in','top_selling','��b%������%�����V% ��a%��%���������%���','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7309,'in','shop_settings','�����������[%��� ��U%��������%�����������U%','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7310,'in','visit_shop','�����������[%��� ������% �����[%������','2021-02-09 07:08:13','2021-09-20 07:29:28'),(7311,'in','pickup_points','�����%��������� ���������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7312,'in','select_pickup_point','�����%��������� ��������a%��[%��������� �����[% ��������� ������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7313,'in','slider_settings','��U%������%��[%���������% ��U%��������%�����������U%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7314,'in','social_media_link','��U%�����b%���% �����������%�����[% ���%��%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7315,'in','facebook','��������U%���������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7316,'in','twitter','��������a%��%������%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7317,'in','google','������������%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7318,'in','new_arrival_products','������ ������������ ��������������[%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7319,'in','check_your_order_status','������������ ������%���������% ������ ��U%��������%�����% �����[%������������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7320,'in','shipping_method','��b%��%�����%������ �����[% ������%��������[%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7321,'in','shipped_by','��������a%��[%���%��[% �����������[% ��������[%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7322,'in','image','�����a%��%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7323,'in','sub_sub_category','������ ������ ��b%������%���������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7324,'in','inhouse_products','��������c%��[%�����U% ��������������[%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7325,'in','forgot_password','�����[%��U%��a%���%������ ���������% ������?','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7326,'in','enter_your_email_address_to_recover_your_password','�����������[% �����[%��U%��a%���%������ ������������%������������%��[%��������� ������%������ ������ ���%��%��� �����������[% ������������% ��������[% ������%������ ������%���������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7327,'in','email_or_phone','������������% �����[% ���������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7328,'in','send_password_reset_link','�����[%��U%��a%���%������ ���%�����U%������ ���%��%������ ���������������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7329,'in','back_to_login','���%��������%��� ������% ��a%��[%�����U% �����[%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7330,'in','index','��U%�����������[%������','2021-02-09 07:08:14','2021-02-09 07:08:14'),(7331,'in','download_your_product','������������ ��������������[%��� ������ �����[%���������%������ ������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7332,'in','option','��a%��%������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7333,'in','applied_refund_request','������������%��[%������ ���%��%��������� ������������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7334,'in','item_has_been_renoved_from_wishlist','������������ ������ ��a%��%��b%���%��%��U%������ ��U%��� ���������% �����%�����[% ��������[% ��c%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7335,'in','bulk_products_upload','��������� ��������������[%��� ���������%������ ������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7336,'in','upload_csv','CSV ���������%������ ������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7337,'in','create_a_ticket','������ �����%������ ��������[%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7338,'in','tickets','�����%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7339,'in','ticket_id','�����%������ ������������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7340,'in','sending_date','��������������� ������ �����%�����%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7341,'in','subject','��a%��%��V%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7342,'in','view_details','��a%��%��a%���%��� ���������������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7343,'in','provide_a_detailed_description','��a%��%��U%������������ ��a%��%��a%���%��� ���������%�����[%��� ������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7344,'in','type_your_reply','�����������[% ���������������% ���%��%���������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7345,'in','send_ticket','�����%������ ���������������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7346,'in','load_more','������% ���%������ ������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7347,'in','jewelry__watches','�����c%������ ������% ��������]%��%�����[%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7348,'in','filters','�����%���%���������% ������%�����[% ��c%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7349,'in','contact_address','��U%���������%������ ��������[%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7350,'in','contact_phone','��U%���������%������ �����]%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7351,'in','contact_email','��� - ���������% ��U%��� ��U%���������%������ ������%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7352,'in','filter_by','������ ��������a%��[%���%��[% ��������%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7353,'in','condition','��U%��������%�����%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7354,'in','all_type','��c%���% ������%��c% ������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7355,'in','pay_with_wallet','������������ ������ ��U%��[%��� ��������������[%��� ������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7356,'in','select_variation','�����%��������������[% �����[% ��������� ������%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7357,'in','no_product_added','��������� ��������������[%��� �����c%������ �����������]%��[% ��������[%','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7358,'in','status_has_been_updated_successfully','��U%��������%�����% ��U%������%�����[%���������%�����a%��� ��������������� ������% ������ ������ ��c%���','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7359,'in','all_seller_packages','��U%������ ��a%��%���������%��������[% ���������������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7360,'in','add_new_package','��������[% ��������������� �����������]%������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7361,'in','package_logo','��������������� ���%���������','2021-02-09 07:08:14','2021-09-20 07:29:28'),(7362,'in','days','�����%���','2021-02-09 07:08:14','2021-02-09 07:08:14'),(7363,'in','create_new_seller_package','��������[% ��a%��%���������%��������[% ��������������� ��������[%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7364,'in','package_name','��������������� �����[% �����[%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7365,'in','duration','�����a%�����%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7366,'in','validity_in_number_of_days','�����%��������� ������ ��U%��������������[% ��������� ��a%�����������[%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7367,'in','update_package_information','������������������ ��������������� �����[%��������[%���%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7368,'in','package_has_been_inserted_successfully','��������������� ��U%������%�����[%���������%�����a%��� �����[%���%��[% ��������[% ��c%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7369,'in','refund_request','������ ��a%��[%�����U% ������%������ �����[% ������������%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7370,'in','reason','�����[%���%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7371,'in','label','���%���������%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7372,'in','select_label','���%���������% �����[% ��������� ������%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7373,'in','multiple_select_label','��������[%�����%��� ��������� ���%���������%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7374,'in','radio_label','���%��������%������ ���%���������%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7375,'in','pickup_point_orders','�����%��������� ��������a%��[%��������� �����������b%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7376,'in','view','���%��[%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7377,'in','order_','������ #','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7378,'in','order_status','�����������b% ������ ��U%��������%�����%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7379,'in','total_amount','���������% ���%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7380,'in','total','���������%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7381,'in','delivery_status_has_been_updated','��a%��%������%��� ������ ��U%��������%�����% ��������������� ������% ������ ������ ��c%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7382,'in','payment_status_has_been_updated','��������������[%��� ������ ��U%��������%�����% ��������������� ������% ������ ������ ��c%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7383,'in','invoice','�����[%���%��[%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7384,'in','set_refund_time','���%��%��������� ��U%������ �����%���%��������[%���%��%��� ������%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7385,'in','set_time_for_sending_refund_request','��������a%��[%�����U%��� ������������%������ ��������������� �����[% ��U%������ �����%���%��������[%���%��%��� ������%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7386,'in','set_refund_sticker','���%��%�����]%������ ��U%��������%������% ��U%������ ������%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7387,'in','sticker','��U%��������%������%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7388,'in','refund_request_all','��a%��[%�����U%��� �����[% ������������%������ ��U%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7389,'in','order_id','�����������b% ID','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7390,'in','seller_approval','��a%��%���������%��������[% ���������������������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7391,'in','admin_approval','��a%��������a%��U%��������[%������ ���������������������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7392,'in','refund_status','��a%��[%�����U%��� ������ ��U%��������%�����%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7393,'in','no_refund','��������� ���������%�����%�����[%��� �����c%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7394,'in','status_updated_successfully','��U%��������%�����% ��U%������%�����[%���������%�����a%��� ��������������� ������ ������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7395,'in','user_search_report','���������������������%��������[% ��������� ���%��%���������%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7396,'in','search_by','��������a%��[%���%��[% ���������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7397,'in','number_searches','������������% ��������������[% ��c%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7398,'in','sender','���������%�����V%���','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7399,'in','receiver','���������%��[%��������� ������%������ ��a%��[%���%��[%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7400,'in','verification_form_updated_successfully','��U%�����������[%������ �����]%������%������ ��U%������%�����[%���������%�����a%��� ��������������� �����%�����[% ��������[%','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7401,'in','invalid_email_or_password','��������[%��������� ������������% �����[% �����[%��U%��a%���%������','2021-02-09 07:08:14','2021-09-20 07:29:29'),(7402,'in','all_coupons','��U%������ ������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7403,'in','add_new_coupon','��������[% ������������ �����������]%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7404,'in','coupon_information','������������ �����[%��������[%���%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7405,'in','start_date','������%������ ������%������ ������ �����%�����%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7406,'in','end_date','��U%�����[%�����������% �����%�����%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7407,'in','product_base','��������������[%��� �����[% ��������[%���%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7408,'in','send_newsletter','�����������������]%���%���������% ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7409,'in','mobile_users','�����������[%������% ���������������������%��������[%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7410,'in','sms_subject','�����U%�����������U% ��a%��%��V%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7411,'in','sms_content','�����U%�����������U% ��U%��[%������������%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7412,'in','all_flash_delas','��U%������ ���������%�����b% ���������%�����U%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7413,'in','create_new_flash_dela','������ ���������%�����b% Dela ��������[%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7414,'in','page_link','��������� ���%��%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7415,'in','flash_deal_information','���������%�����b% ���������% ������ �����[%��������[%���%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7416,'in','background_color','������������ �����[% ���%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7417,'in','0000ff','# 0000ff','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7418,'in','text_color','���%��%�����[%��a%��� �����[% ���%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7419,'in','white','��U%���������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7420,'in','dark','���������������%��[%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7421,'in','choose_products','��������������[%��� ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7422,'in','discounts','��������� �����������[% ��c%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7423,'in','discount_type','�����%��U%��������[%��������� ���������%�����[%���%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7424,'in','twillo_credential','��������a%��%���%������%��� ���������%��������������b%��%������%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7425,'in','twilio_sid','TWILIO SID','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7426,'in','twilio_auth_token','TWILIO ��������� ������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7427,'in','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7428,'in','valid_twillo_number','��a%������ ������ ������������%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7429,'in','nexmo_credential','��������������U%������ ���������%��������������b%��%������%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7430,'in','nexmo_key','NEXMO ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7431,'in','nexmo_secret','NEXMO SECRET','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7432,'in','ssl_wireless_credential','�����U%�����U%������% ��a%��[%������%���%�����U% ���������%��������������b%��%������%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7433,'in','ssl_sms_api_token','�����U%�����U%������% �����U%�����������U% ��������������� ������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7434,'in','ssl_sms_sid','�����U%�����U%������% �����U%�����������U% �����U%������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7435,'in','ssl_sms_url','�����U%�����U%������% �����U%�����������U% ������������%������%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7436,'in','fast2sms_credential','Fast2SMS ���������%��������������b%��%������%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7437,'in','auth_key','���������%�����[%������ ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7438,'in','route','�����[%���%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7439,'in','promotional_use','���������%�����[%���%��� ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7440,'in','transactional_use','���%������-��������� �����[% ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7441,'in','sender_id','���������%�����V%��� ������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7442,'in','nexmo_otp','��������������U%������ ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7443,'in','twillo_otp','��������a%��%���%��� ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7444,'in','ssl_wireless_otp','�����U%�����U%������% ��a%��[%������%���%�����U% ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7445,'in','fast2sms_otp','Fast2SMS OTP','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7446,'in','order_placement','������%���������% �����������[%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7447,'in','delivery_status_changing_time','�����%���%�����a%���%��� ������ ��U%��������%�����% ���������%������ �����[% ��U%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7448,'in','paid_status_changing_time','��������� ��U%��������������U% ��������������%������ �����[%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7449,'in','send_bulk_sms','��������� �����U%�����������U% ���������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7450,'in','all_subscribers','��U%������ ��U%�����U%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7451,'in','coupon_information_adding','������������ �����[%��������[%���%��� �����������]%�����[%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7452,'in','coupon_type','������������ ���������%�����[%���%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7453,'in','for_products','��������������[%��������� ������ ���%��%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7454,'in','for_total_orders','���������% �����������b%������ ������ ���%��%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7455,'in','add_your_product_base_coupon','�����������[% ��������������[%��� ��������[%���% ������������ �����������]%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7456,'in','coupon_code','������������ ���������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7457,'in','sub_category','������ ��b%������%���������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7458,'in','add_more','��������%��� �����������]%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7459,'in','add_your_cart_base_coupon','������������ �����[%�����]%��� �����[% ��������[%���% ������������ �����������]%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7460,'in','minimum_shopping','��������������������� ������%��������[%���%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7461,'in','maximum_discount_amount','��������%��������� ��������� ���%��[%��b%��%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7462,'in','coupon_information_update','������������ ��U%�����������[% ������������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7463,'in','please_configure_smtp_setting_to_work_all_email_sending_funtionality','��������������[% ��U%������ ������������% ��������������� ������ ���%��%��� SMTP ��U%��������%������ �����������������]%��%������% ������%������, ������ �����]%�����������b%������%��%������ ��������� ���%��c%��� ��c%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7464,'in','configure_now','������ �����������������]%��%������% ������%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7465,'in','total_published_products','���������% ���������%�����[%��b%��%��� ��������������[%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7466,'in','total_sellers_products','���������% ��a%��%���������%��������[% ��������������[%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7467,'in','total_admin_products','���������% ��a%��������a%��U%��������[%������ ��������������[%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7468,'in','manage_products','��������������[%��� ���������%�����������%��� ������%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7469,'in','total_product_category','���������% ��������������[%��� ��b%������%���������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7470,'in','create_category','��b%������%��������� ��������[%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7471,'in','total_product_sub_sub_category','���������% ��������������[%��� ������ ������ ��b%������%���������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7472,'in','create_sub_sub_category','������ ��U%��� ������������������%��� ��������[%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7473,'in','total_product_sub_category','���������% ��������������[%��� ������ ��b%������%���������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7474,'in','create_sub_category','������ ��b%������%��������� ��������[%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7475,'in','total_product_brand','���������% ��������������[%��� ���������%��[%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7476,'in','create_brand','���������%��[%������ ��������[%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7477,'in','total_sellers','���������% ��a%��%���������%��������[%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7478,'in','total_approved_sellers','���������% ��������������������%��� ��a%��%���������%��������[%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7479,'in','total_pending_sellers','���������% ���%��������%��� ��a%��%���������%��������[%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7480,'in','manage_sellers','��a%��%���������%��������[%������ ������ ���������%�����������%��� ������%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7481,'in','category_wise_product_sale','��b%������%��������� ��a%��[%���% ��������������[%��� �����%���������%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7482,'in','sale','�����%���������%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7483,'in','category_wise_product_stock','��b%������%��������� ��a%��[%���% ��������������[%��� ��U%������������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7484,'in','category_name','��b%������%��������� �����[%���','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7485,'in','stock','��������������[%���%','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7486,'in','frontend','�����]%������%������ ���������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7487,'in','home_page','��������� ��������V%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7488,'in','setting','��U%��������[%��������[%','2021-02-09 07:08:15','2021-02-09 07:08:15'),(7489,'in','policy_page','�����������% ��������V%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7490,'in','general','��U%��[%�����[%���������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7491,'in','click_here','�����c%��[%��� ���������%��%��� ������%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7492,'in','useful_link','������������������ ���%��%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7493,'in','activation','��U%���������%��%������','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7494,'in','smtp','SMTP','2021-02-09 07:08:15','2021-09-20 07:29:29'),(7495,'in','payment_method','��������������[%��� ��a%��%�����%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7496,'in','social_media','��U%��[%�����[%�����%��� �����������%�����[%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7497,'in','business','��a%��������[%�����[%���%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7498,'in','seller_verification','��a%��%���������%��������[% ��U%�����������[%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7499,'in','form_setting','�����[%���%������ ��U%��������%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7500,'in','language','�����[%��V%��[%: ��c%��%������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7501,'in','dashboard','��������b%���������%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7502,'in','pos_system','��������������U% ��U%��%��U%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7503,'in','pos_manager','��������������U% ������������������%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7504,'in','pos_configuration','��������������U% �����������������]%��%������%�����b%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7505,'in','products','��������������[%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7506,'in','add_new_product','��������[% ��������������[%��� �����������]%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7507,'in','all_products','��U%������ ���������%���������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7508,'in','in_house_products','��c%��[%�����U% ���������%��������������������U% ���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7509,'in','seller_products','��a%��%���������%��������[% ��������������[%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7510,'in','digital_products','�����%�����%������% ��������������[%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7511,'in','bulk_import','��������� ��������[%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7512,'in','bulk_export','��������� �����%���%��������[%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7513,'in','category','��a%���%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7514,'in','subcategory','��������b%������%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7515,'in','sub_subcategory','������ ��������b%������%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7516,'in','brand','���������%��[%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7517,'in','attribute','��a%��%��b%�����V%�����[%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7518,'in','product_reviews','��������������[%��� ������ ��U%��������������V%��[%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7519,'in','sales','�����%���������%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7520,'in','all_orders','��U%������ �����������b%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7521,'in','inhouse_orders','��������c%��[%�����U% �����������b%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7522,'in','seller_orders','��a%��%���������%��������[% �����������b%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7523,'in','pickup_point_order','�����%���-������ ��������������� ������%���������%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7524,'in','refunds','������ ��a%��[%�����U%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7525,'in','refund_requests','��a%��[%�����U%��� �����[% ������������%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7526,'in','approved_refund','��U%�����a%������������ ������ ��a%��[%�����U%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7527,'in','refund_configuration','���%��%��������� �����������������]%��%������%�����b%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7528,'in','customers','���������%��[%��c%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7529,'in','customer_list','���������%��[%��c%������ ��U%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7530,'in','classified_products','��a%���%������������������ ��������������[%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7531,'in','classified_packages','��a%���%������������������ ���������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7532,'in','sellers','��������������� ��a%��[%���%��[%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7533,'in','all_seller','��U%������ ��a%��%���������%��������[%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7534,'in','payouts','��������������[%��� ������%�����[% ��c%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7535,'in','payout_requests','��������������[%��� ������������%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7536,'in','seller_commission','��a%��%���������%��������[% ������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7537,'in','seller_packages','��a%��%���������%��������[% ��U%������������%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7538,'in','seller_verification_form','��a%��%���������%��������[% ��U%�����������[%������ ���������%������������%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7539,'in','reports','���%��%���������%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7540,'in','in_house_product_sale','��c%��[%�����U% ���������%��������������� ��U%������% ���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7541,'in','seller_products_sale','��a%��%���������%��������[% ��������������[%��� �����%���������%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7542,'in','products_stock','��������������[%��� ��U%������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7543,'in','products_wishlist','��������������[%��� ��������������[% ��U%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7544,'in','user_searches','���������������������%��������[% ���������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7545,'in','marketing','��a%��%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7546,'in','flash_deals','���������%�����b% ��U%������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7547,'in','newsletters','��U%�����[%�����[%���%������������%��%�����[%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7548,'in','bulk_sms','��������]%��� ��U%��������������[% ��������� �����U%�����������U%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7549,'in','subscribers','��U%�����U%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7550,'in','coupon','������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7551,'in','support','��U%��c%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7552,'in','ticket','�����%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7553,'in','product_queries','��������������[%��� ��������a%������%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7554,'in','website_setup','��a%��������U%��[%������ ��U%������������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7555,'in','header','��c%���������%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7556,'in','footer','������������%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7557,'in','pages','���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7558,'in','appearance','���%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7559,'in','setup__configurations','��U%������������ ������% �����������������]%��%������%�����b%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7560,'in','general_settings','��U%��[%�����[%��������� ��U%��������%�����������U%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7561,'in','features_activation','��U%���������%��%������ ��U%�����a%��%�����[%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7562,'in','languages','�����[%��V%��[%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7563,'in','currency','���������������%��[%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7564,'in','pickup_point','�����%��� ������ �����%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7565,'in','smtp_settings','SMTP ��U%��������%�����������U%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7566,'in','payment_methods','��������������[%��� ������ ��a%��%�����%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7567,'in','file_system_configuration','�����]%��[%������% ��U%��%��U%��������� �����������������]%��%������%�����b%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7568,'in','social_media_logins','��U%�����b%���% �����������%�����[% ���%��������%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7569,'in','analytics_tools','��a%��%��b%������%�����V%��%������ ������������%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7570,'in','facebook_chat','��������U%��������� ���%��%��������%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7571,'in','google_recaptcha','Google reCAPTCHA','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7572,'in','shipping_configuration','��b%��%�����%������ �����������������]%��%������%�����b%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7573,'in','shipping_countries','��������a%��c%��� ��������b%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7574,'in','affiliate_system','��U%��������������� ���������%�����[%���%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7575,'in','affiliate_registration_form','��U%��������������� ������������������%��� ���������%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7576,'in','affiliate_configurations','��U%��������������� �����������������]%��%������%�����b%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7577,'in','affiliate_users','��U%��������������� ���������������������%��������[%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7578,'in','referral_users','���%���������%���% ���������������������%��������[%','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7579,'in','affiliate_withdraw_requests','��U%��������������� �����%�����[%��U%��� ������������%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7580,'in','offline_payment_system','���������%��[%������ ��������������[%��� ���������%�����[%���%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7581,'in','manual_payment_methods','������������������% ��������������[%��� ������ ������%���������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7582,'in','offline_wallet_recharge','���������%��[%������ ��a%������%������ ���%��%�����[%���%������','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7583,'in','offline_customer_package_payments','���������%��[%������ ���������%��[%��c%��� ��������������� ��������������[%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7584,'in','offline_seller_package_payments','���������%��[%������ ��a%��%���������%��������[% ��������������� ��������������[%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7585,'in','paytm_payment_gateway','������������������ ������������������ �����������a%���','2021-02-09 07:08:16','2021-09-20 07:29:29'),(7586,'in','set_paytm_credentials','������������������ ���������%��������������b%��%������% ��U%������ ������%������','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7587,'in','club_point_system','���������%��� ��������a%��[%��������� ��U%��%��U%���������','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7588,'in','club_point_configurations','���������%��� ��������a%��[%��������� �����������������]%��%������%�����b%���','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7589,'in','set_product_point','��������������[%��� �����%��������� ��U%������ ������%������','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7590,'in','user_points','���������������������%��������[% ���������','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7591,'in','otp_system','��������������� ��U%��%��U%���������','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7592,'in','otp_configurations','OTP �����������������]%��%������%�����b%���','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7593,'in','set_otp_credentials','OTP ���������%��������������b%��%������% ��U%������ ������%������','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7594,'in','staffs','������%�����������[%���%���','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7595,'in','all_staffs','��U%������ ������%�����������[%���%���','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7596,'in','staff_permissions','��U%��������[%��� ������ �����������������%','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7597,'in','addon_manager','������������ ������������������%','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7598,'in','browse_website','��a%��������U%��[%������ ���������%��[%��������]% ������%������','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7599,'in','pos','��������������U%','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7600,'in','notifications','��U%�����������[%������','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7601,'in','new_orders','������ �����������b%','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7602,'in','userimage','���������������������%��������[%-�����a%��%','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7603,'in','profile','���������%��������[%������%','2021-02-09 07:08:17','2021-09-20 07:29:29'),(7604,'in','logout','���%������ ���������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7605,'in','page_not_found','��������V%������ �����c%������ �����%���%��[%!','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7606,'in','the_page_you_are_looking_for_has_not_been_found_on_our_server','������ ��������V%������ ������ ��������� ���%��c%��� ��c%������, ��a%��c% ��c%�����[%���%��� ��U%���%�����a%���% ������% �����c%������ �����%���%��[% ��c%������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7607,'in','registration','������������������%���','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7608,'in','i_am_shopping_for','���������%��� ������%��������[%���%��� ��c%��� �����%��U%���%��%���...','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7609,'in','compare','���������%�����[% �����������%���','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7610,'in','wishlist','��a%��%��b%���%��%��U%������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7611,'in','cart','�����[%�����]%���','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7612,'in','your_cart_is_empty','������������ �����[%�����]%��� �����[%���%��� ��c%���','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7613,'in','categories','��b%������%��������%�����[%���','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7614,'in','see_all','��U%������ ���������������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7615,'in','seller_policy','��a%��%���������%��������[% �����������%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7616,'in','return_policy','��a%��[%�����U%��� �����������%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7617,'in','support_policy','��U%������%��������� �����������%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7618,'in','privacy_policy','�����������������������[% �����������%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7619,'in','your_email_address','�����������[% ������������% ��������[%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7620,'in','subscribe','��U%�����U%�����������[% ���%������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7621,'in','contact_info','��U%���������%������ ��U%�����������[%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7622,'in','address','��������[%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7623,'in','phone','�����]%������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7624,'in','email','������������%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7625,'in','login','���%������ ������ ������%������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7626,'in','my_account','���������%��[% �����[%�����[%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7627,'in','order_history','�����������b% ��������%��c%��[%��U%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7628,'in','my_wishlist','���������%��� ��������������[% ��U%���������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7629,'in','track_order','������%���������% ������% ��������]%���% ���%��������[%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7630,'in','be_an_affiliate_partner','��U%��c%������������ ���������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7631,'in','be_a_seller','������ ��a%��%���������%��������[% ���������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7632,'in','apply_now','��������� ������������%��[%��� ������%������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7633,'in','confirmation','��������V%��������%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7634,'in','delete_confirmation_message','��������V%��������%������%��� ��U%�����������b% ��c%�����[%������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7635,'in','cancel','���%��������� ������%�����[%','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7636,'in','delete','��c%�����[% ���������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7637,'in','item_has_been_added_to_compare_list','��U%��������� ������ ���������%�����[% ������%������ ������ ���%��%��� ������������ �����������]%��[% ��������[% ��c%���','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7638,'in','please_login_first','�����c%���%��� ���������%��a%�����b% ������%������','2021-02-09 07:08:44','2021-09-20 07:29:29'),(7639,'in','total_earnings_from','��U%��� ���������% ��������[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7640,'in','client_subscription','���������%��[%��c%��� ��U%�����U%�����������[%','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7641,'in','product_category','��������������[%��� ��b%������%���������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7642,'in','product_sub_sub_category','��������������[%��� ������ ������ ��b%������%���������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7643,'in','product_sub_category','��������������[%��� ������ ��b%������%���������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7644,'in','product_brand','��������������[%��� �����[% ���������%��[%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7645,'in','top_client_packages','��b%������%�����V% ���������%��[%��c%��� ���������������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7646,'in','top_freelancer_packages','��b%������%�����V% ���������%������%��[%�����U%���% ���������������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7647,'in','number_of_sale','�����%���������%��� ������ ��U%��������������[%','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7648,'in','number_of_stock','��U%������������ ������ ��U%��������������[%','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7649,'in','top_10_products','��b%������%�����V% 10 ��������������[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7650,'in','top_12_products','��b%������%�����V% 12 ��������������[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7651,'in','admin_can_not_be_a_seller','��a%��������a%��U%��������[%������ ��a%��%���������%��������[% �����c%������ ��c%��� ��U%��������[%','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7652,'in','filter_by_rating','�����]%��%���%���������% ���%��������%������ ��������a%��[%���%��[%','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7653,'in','published_reviews_updated_successfully','���������%�����[%��b%��%��� ��U%��������������V%��[%������ ��U%������%�����[%���������%�����a%��� ��������������� ������ ���������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7654,'in','refund_sticker_has_been_updated_successfully','���%��%��������� ��U%��������%������% ������ ��U%������%�����[%���������%�����a%��� ��������������� �����%�����[% ��������[% ��c%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7655,'in','edit_product','��������������[%��� ��U%��������[%�����%��� ������%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7656,'in','meta_images','�����������[% �����a%��%�����[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7657,'in','update_product','������������������ ��������������[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7658,'in','product_has_been_deleted_successfully','��������������[%��� ��U%������%�����[%���������%�����a%��� ��c%�����[% �����%�����[% ��������[% ��c%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7659,'in','your_profile_has_been_updated_successfully','������������ ���������%��������]%��[%������% ��U%������%�����[%���������%�����a%��� ������������������ �����%�����[% ��������[% ��c%���!','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7660,'in','upload_limit_has_been_reached_please_upgrade_your_package','���������%������ ��U%��������[% ��U%�����[%��������� ��c%��� ������ ��c%������ ��������������[% �����������[% ��������������� ���������������%������ ������%���������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7661,'in','add_your_product','������������ ��������������[%��� �����������]%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7662,'in','select_a_category','������ ��b%������%��������� ���������������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7663,'in','select_a_brand','������ ���������%��[%������ �����[% ��������� ������%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7664,'in','product_unit','��������������[%��� ��������[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7665,'in','minimum_qty','��������������������� �����[%���������%��[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7666,'in','product_tag','��������������[%��� ���������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7667,'in','type__hit_enter','�����[%������ ������%������ ������% ������������% ������%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7668,'in','videos','��a%��������%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7669,'in','video_from','��a%��������%������ ��U%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7670,'in','video_url','��a%��������%������ ������������%������%','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7671,'in','customer_choice','���������%��[%��c%��� ������ �����U%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7672,'in','pdf','������������������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7673,'in','choose_pdf','������������������ ���������������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7674,'in','select_category','��b%������%��������� ��������������[%','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7675,'in','target_category','���%��������V%������ ��b%������%���������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7676,'in','subsubcategory','������-��a%���%������','2021-02-09 07:08:45','2021-02-09 07:08:45'),(7677,'in','search_category','��b%������%��������� ���������������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7678,'in','search_subcategory','��������b%������%��������� ���������������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7679,'in','search_subsubcategory','SubSubCategory ���������������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7680,'in','update_your_product','������������ ��������������[%��� ������ ��������������� ������%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7681,'in','product_has_been_updated_successfully','��������������[%��� ��U%������%�����[%���������%�����a%��� ��������������� �����%�����[% ��������[% ��c%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7682,'in','add_your_digital_product','������������ �����%�����%������% ��������������[%��� �����������]%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7683,'in','active_ecommerce_cms_update_process','��U%���������%��%��� ��������[%������%�����U% ��U%��������������U% ��������������� ���������%���������%��%�����[%','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7684,'in','codecanyon_purchase_code','������������������������ ������%������ ���������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7685,'in','database_name','�����������[%��������U% �����[% �����[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7686,'in','database_username','�����������[%��������U% ���������������������%��������[% �����[%���','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7687,'in','database_password','�����������[%��������U% �����[%��U%��a%���%������','2021-02-09 07:08:45','2021-09-20 07:29:29'),(7688,'in','database_hostname','�����������[%��������U% ��c%�����U%�����������[%���','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7689,'in','update_now','��������� ������������������ ������%������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7690,'in','congratulations','��������[%��� ��c%���','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7691,'in','you_have_successfully_completed_the_updating_process_please_login_to_continue','������������ ������������������ ���������%���������%��%�����[% ��U%������%�����[%���������%�����a%��� ���������%��� ������% ���%��� ��c%������ �����[%���%��� ���%��������� ������ ���%��%��� ���%������ ������ ������%������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7692,'in','go_to_home','������% �����[%���','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7693,'in','login_to_admin_panel','��a%��������a%��U%��������[%������ ������������% ��������� ���%��������%��� ������%������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7694,'in','s3_file_system_credentials','S3 �����]%��[%������% ��U%��%��U%��������� ���������%��������������b%��%������%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7695,'in','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7696,'in','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7697,'in','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7698,'in','aws_bucket','AWS_BUCKET','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7699,'in','aws_url','AWS_URL','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7700,'in','s3_file_system_activation','S3 �����]%��[%������% ��U%��%��U%��������� ��U%���������%��%������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7701,'in','your_phone_number','�����������[% ��������� ������������%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7702,'in','zip_file','�����]%��%��� �����]%��[%������%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7703,'in','install','��������U%������������%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7704,'in','this_version_is_not_capable_of_installing_addons_please_update','�����c% ��U%�����U%���������%��� Addons ��U%��������[%�����%��� ������%������ ��������� ��U%��������V%��� �����c%������ ��c%���, ��������������[% ��������������� ������%���������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7705,'in','search_in_menu','������������ ��������� ���������������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7706,'in','uploaded_files','���������%������ ������ ������ �����[%������%������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7707,'in','shipping_cities','��b%��%�����%������ ��b%��c%���%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7708,'in','system','���������%�����[%���%���','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7709,'in','server_status','��U%���%�����a%���% ������ ��U%��������%�����%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7710,'in','nothing_found','��������� �����c%������ �����%���%��[%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7711,'in','parent_category','��������%�����[%��a%��� ��b%������%���������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7712,'in','level','��U%���������%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7713,'in','category_information','��b%������%��������� ������ �����[%��������[%���%���','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7714,'in','translatable','�����������a%��[%��� ������%������ ���������������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7715,'in','no_parent','��������� ��������� �����c%������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7716,'in','physical','��b%��[%���%������%��%���','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7717,'in','digital','�����%�����%������%','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7718,'in','200x200','200x200','2021-02-09 07:08:45','2021-02-09 07:08:45'),(7719,'in','32x32','32x32','2021-02-09 07:08:45','2021-02-09 07:08:45'),(7720,'in','search_your_files','������������ �����]%��[%������%������ ���������������','2021-02-09 07:08:45','2021-09-20 07:29:30'),(7721,'in','category_has_been_updated_successfully','��b%������%��������� ������ ��U%������%�����[%���������%�����a%��� ��������������� ������% �����%�����[% ��������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7722,'in','all_uploaded_files','��U%������ ���������%������ ������ ������ �����]%��[%������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7723,'in','upload_new_file','������ �����]%��[%������% ���������%������ ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7724,'in','all_files','��U%��[%���%��� �����U%��������[%��a%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7725,'in','search','���������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7726,'in','details_info','��a%��%��a%���%��� �����[%��������[%���%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7727,'in','copy_link','���%��%������ ������ ���������%�����%���%��%�����% ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7728,'in','are_you_sure_to_delete_this_file','�����������[% ������ �����U% �����]%��[%������% ������ ��c%�����[%�����[% ��U%��������%��b%��������%��� ������% ���%��c%��� ��c%������?','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7729,'in','file_info','�����[%������% ������ �����[%���%��� ���������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7730,'in','link_copied_to_clipboard','���%��%������ ������ ���������%��%������������%������ ������% ������������ �����%�����[% ��������[%','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7731,'in','oops_unable_to_copy','�����c%, ������������ ������%������ ��������� �����U%������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7732,'in','file_deleted_successfully','�����]%��[%������% ��U%������%�����[%���������%�����a%��� ��c%�����[% ������ ������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7733,'in','add_new_brand','��������[% ���������%��[%������ �����������]%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7734,'in','120x80','120x80','2021-02-09 07:08:46','2021-02-09 07:08:46'),(7735,'in','brand_information','���������%��[%������ �����[%��������[%���%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7736,'in','brand_has_been_updated_successfully','���������%��[%������ ������ ��U%������%�����[%���������%�����a%��� ��������������� ������% �����%�����[% ��������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7737,'in','brand_has_been_deleted_successfully','���������%��[%������ ������ ��U%������%�����[%���������%�����a%��� ��c%�����[% �����%�����[% ��������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7738,'in','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','�����c% ��������� ������ ���%��%��� ��������������� �����%�����[% �����[%�����[% ��c%������ ������ ��b%��������������� ������ ��������������� ������%������ �����%��������� ��������a%��[%���%��[% ���������% �����U% ��������������[%��� ������ �����[% ��U%��������� ��c%���������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7739,'in','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','������ �����%���������% ��������������[%��� ��a%��%��a%���%��� ��������V%������ ���������%���%��� ��������� �����%�����[%��� ������������ ��c%��������� 600x600 ��������[%���%������ ������ �����a%��%��������� �����[% ��������������� ������%���������','2021-02-09 07:08:46','2021-09-20 07:29: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','�����c% �����a%��% ��U%������ ��������������[%��� ��������������U% ��������� �����%�����[%��� ������������ ��c%������ 300x300 ��������[%���% ������ �����a%��% �����[% ��������������� ������%��������� ������������ �����a%��% ������ ��������������� ������������������������ ������ �����[%���%������ ������% ��������� �����[%���%��� ��������c% ���%��������� ��������������������% ��c%��������� �����U%��� ���������������%�����[%������ ��������[%������ ������ ���%��%��� ��a%��%�����%��������� ������������%��������� ��������� ��������� �����%�����[%���%��� ���%�����[%������ ���������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7741,'in','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','��������%���%��%��������� ���������%��[%������������% ������ �����%�����[% ��������%��� ���%��%������ �����[% ��������������� ������%��������� ��b%������%������ ��b%���������% ���%��%������ / ��������������������� iframe ��������� �����[% ��������������� ��� ������%���������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7742,'in','save_product','��������������[%��� ��U%��c%������������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7743,'in','product_has_been_inserted_successfully','��������������[%��� ��U%������%�����[%���������%�����a%��� �����[%���%��[% ��������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7744,'in','something_went_wrong','��������� ������%��� ��c%��� ��������[%!','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7745,'in','sorry_for_the_inconvenience_but_were_working_on_it','�����U%�����a%��%�����[% ������ ���%��%��� ��������� ��c%���, ���%��������%��� ��c%��� �����U% ������% �����[%��� ������% ���%��c%��� ��c%���������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7746,'in','error_code','������%���% ���������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7747,'in','please_configure_smtp_setting_to_work_all_email_sending_functionality','��������������[% �����[%���%��������������V%��������[% ��������������� ��a%��[%���%��� ��U%������ ������������% ������ �����[%��� ������%������ ������ ���%��%��� SMTP ��U%��������%������ �����������������]%��%������% ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7748,'in','order','������','2021-02-09 07:08:46','2021-09-20 07:29: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 ������ ��������[%��� ���%��������� ������ ���%��%��� ��c%�����[%���%��� �����[%��U% ��U%��������%��� ������������% �����������[%��� ��c%������ ��c%��������� ������%���-������%��� ������������%��������� ������ ���%��%��� �����U%��� ��U%�����a%�����������b%������% ��������[%������ ������ ���%��%��� �����[%������ ������% �����[%������ ������% ��U%��� �����]%��U%���% ������%������ ��������� ������������% �����%�����[%������ ������%������ ��U%��� �����c%���%��� ������ �����%��������������� ������ �����������[%��� ��������� ���%������������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7750,'in','home_banner_3_max_3','��c%������ ������������% 3 (��������%��������� 3)','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7751,'in','add_new_seller','��������[% ��a%��%���������%��������[% �����������]%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7752,'in','filter_by_approval','��U%�����a%��������������% ��������a%��[%���%��[% �����]%��%���%���������% ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7753,'in','nonapproved','���������%-��U%�����a%������������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7754,'in','type_name_or_email__enter','�����[%��� �����[% ������������% ���%��%��������� ������% ������%������ ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7755,'in','due_to_seller','��a%��%���������%��������[% ������ �����[%���%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7756,'in','log_in_as_this_seller','�����U% ��a%��%���������%��������[% ������ ���%������ ��������� ���%������ ������ ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7757,'in','go_to_payment','������������������ ������% �����[%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7758,'in','ban_this_seller','�����U% ��a%��%���������%��������[% ������ ���������%�����%�����������%��� ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7759,'in','do_you_really_want_to_ban_this_seller','�����������[% ������ ��a%��[%��U%��������a% ��������� �����U% ��a%��%���������%��������[% ������ ���������%�����%�����������%��� ������%�����[% �����[%��c%������ ��c%������?','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7760,'in','proceed','��������� ��������]%������!','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7761,'in','approved_sellers_updated_successfully','��U%�����a%������������ ��a%��%���������%��������[% ��U%������%�����[%���������%�����a%��� ��������������� �����%��� ������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7762,'in','seller_has_been_deleted_successfully','��a%��%���������%��������[% ������ ��U%������%�����[%���������%�����a%��� ��c%�����[% �����%�����[% ��������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7763,'in','seller_information','��a%��%���������%��������[% �����[%��������[%���%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7764,'in','seller_has_been_inserted_successfully','��a%��%���������%��������[% ������ ��U%������%�����[%���������%�����a%��� �����[%���%��[% ��������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7765,'in','email_already_exists','������������% �����c%���%��� ��U%��� ��c%��� ��������������� ��c%���!','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7766,'in','verify_your_email_address','������������ ������������% ��������� ������ ��������V%��������% ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7767,'in','before_proceeding_please_check_your_email_for_a_verification_link','��������� ��������]%������ ��U%��� �����c%���%���, ��U%�����������[%������ ���%��%������ ������ ���%��%��� ��������������[% �����������[% ������������% ������������������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7768,'in','if_you_did_not_receive_the_email','��������% ������������ ������������% ���������%��[%��������� �����c%������ ��c%������ ��c%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7769,'in','click_here_to_request_another','��������U%���%��[% ������������%������ ������%������ ������ ���%��%��� �����c%��[%��� ���������%��%��� ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7770,'in','email_verification','��� - ���������% ��U%�����������[%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7771,'in','email_verification__','��� - ���������% ��U%�����������[%������ -','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7772,'in','https_activation','HTTPS ��������������%��a%�����b%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7773,'in','maintenance_mode','���%������%�����[%��a% ���������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7774,'in','maintenance_mode_activation','���%������%�����[%��a% ��������� ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7775,'in','classified_product_activate','��a%���%������������������ ��������������[%��� ��U%���������%��%��� ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7776,'in','classified_product','��a%���%������������������ ��������������[%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7777,'in','business_related','�����[%���%��������[%���% ��U%��� �����������]%��[% ��c%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7778,'in','vendor_system_activation','��a%��%���������%��������[% ���������%�����[%���%��� ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7779,'in','wallet_system_activation','��a%������%������ ��U%��%��U%��������� ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7780,'in','coupon_system_activation','������������ ���������%�����[%���%��� ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7781,'in','pickup_point_activation','�����%��������� ��������a%��[%��������� ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7782,'in','conversation_activation','��a%��[%���%��������[%���%��[%��� ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7783,'in','guest_checkout_activation','��������%�����% ������������������ ��U%���������%��%���������%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7784,'in','categorybased_commission','��b%������%���������-��������[%���%��%��� ������������','2021-02-09 07:08:46','2021-09-20 07:29: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','�����U% ��a%��%������%������ ������ ��U%���������%��%��� ������%������ ������ �����[%��� ��U%������%���% ��������%��b%��� �����%��U%���������% ��c%��� �����[%��������[% ������% ������������ ���������%��������������� ��b%������%��������� ������% �����������b%��� ��U%������ ������%�����[% ��c%��������[% �����������������[% �����������%��� ������ ��������� ������ ��������%��b%��� �����c%������ �����%���%��������[%','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7786,'in','set_commisssion_now','������ ��������%��b%��� ��U%������ ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7787,'in','payment_related','��������������[%��� ��U%���������������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7788,'in','paypal_payment_activation','���������������% ��������������[%��� ��U%���������%��%���������%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7789,'in','you_need_to_configure_paypal_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ ���������������% ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7790,'in','stripe_payment_activation','�����[%���%��� ��������������[%��� ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7791,'in','sslcommerz_activation','SSlCommerz ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7792,'in','instamojo_payment_activation','Instamojo Payment ��������������%��a%�����b%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7793,'in','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ Instamojo Payment ������ ��U%��c%��� ������%��������� ��U%��� �����������������]%��%������% ������%�����[% ��c%��������[%','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7794,'in','razor_pay_activation','���%���������% ������ ��������������%��a%�����b%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7795,'in','you_need_to_configure_razor_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ ���%���������% ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7796,'in','paystack_activation','PayStack ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7797,'in','you_need_to_configure_paystack_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ PayStack ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7798,'in','voguepay_activation','VoguePay ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7799,'in','you_need_to_configure_voguepay_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ VoguePay ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7800,'in','payhere_activation','��U%���������%��%��������[% �����[% ��������������[%��� ������%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7801,'in','ngenius_activation','Ngenius ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7802,'in','you_need_to_configure_ngenius_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ Ngenius ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7803,'in','iyzico_activation','��������]%��%������ ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7804,'in','you_need_to_configure_iyzico_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ iyzico ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7805,'in','bkash_activation','Bkash ��U%���������%��%������','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7806,'in','you_need_to_configure_bkash_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ bkash ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7807,'in','nagad_activation','�����[%������ ��U%���������%��%��������[%','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7808,'in','you_need_to_configure_nagad_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ ��U%��c%��� ��������� ��U%��� ��������[%��� ������ �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:46','2021-09-20 07:29:30'),(7809,'in','cash_payment_activation','��������� ��������������[%��� ��U%���������%��%���������%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7810,'in','social_media_login','��U%�����b%���% �����������%�����[% ���%��������%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7811,'in','facebook_login','��������U%��������� ���%������ ������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7812,'in','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ ��������U%��������� ���������%��[%��������� ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7813,'in','google_login','Google ���%��������%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7814,'in','you_need_to_configure_google_client_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ Google ���������%��[%��������� ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7815,'in','twitter_login','��������a%��%������% ���%��������%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7816,'in','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','�����U% ��U%�����a%��%�����[% ������ ��U%��������V%��� ������%������ ������ ���%��%��� ������������ ��������a%��%������% ���������%��[%��������� ������ ��U%��c%��� ��������� ��U%��� �����������������]%��%������% ������%������ ������ �����a%��b%��������������[% ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7817,'in','shop_logo','�����������[%��� �����[% ���%���������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7818,'in','shop_address','�����������[%��� �����[% ��������[%','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7819,'in','banner_settings','������������% ��U%��������%�����������U%','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7820,'in','banners','������������%','2021-02-09 07:08:47','2021-09-20 07:29: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','��c%��������� ��������������� ��U%��������%���%�����[% ��U%��� �����������[%��� ������ ��U%��������%��� ������%�����[% �����[%��� ��������� �����%��a%��[%�����U% ��������� ������������% ������ ��������������� ������%��� �����������[%��� ��U%��������[% ������ ���%��%��� �����U%���%��� ��c%��� ��U%��������� ��c%������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7822,'in','insert_link_with_https_','Https ������ ��U%��[%��� ���%��%������ �����[%���%������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7823,'in','your_shop_has_been_updated_successfully','������������ �����������[%��� ��U%������%�����[%���������%�����a%��� ��������������� ��c%��� ������ ��c%���!','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7824,'in','search_result_for_','������ ���%��%��� ��������� ������%��%�����[%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7825,'in','brand_has_been_inserted_successfully','���������%��[%������ ������ ��U%������%�����[%���������%�����a%��� �����[%���%��[% ��������[% ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7826,'in','about','������ �����[%���%��� ���������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7827,'in','payout_info','��������������� �����[%��������[%���%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7828,'in','bank_acc_name','������������ Acc �����[%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7829,'in','bank_acc_number','������������ Acc ������������%','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7830,'in','total_products','���������% ��������������[%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7831,'in','total_sold_amount','���������% ������������ ������ ���%��[%��b%��%','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7832,'in','wallet_balance','������������ ��U%������������%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7833,'in','cookies_agreement','�����������������]% ��U%��������������[%','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7834,'in','cookies_agreement_text','�����������������]% ��U%��������������[% �����[%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7835,'in','show_cookies_agreement','�����������������]% ��U%��������������[% �����%�����[%������?','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7836,'in','custom_script','�����U%��������� ��U%������������%��%���������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7837,'in','header_custom_script__before_head','��c%���������% �����U%��������� ��U%������������%��%��������� - </ head> ��U%��� �����c%���%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7838,'in','write_script_with_script_tag','<Script> ��������� ������ ��U%��[%��� ��U%������������%��%��������� ���%��%���������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7839,'in','footer_custom_script__before_body','�����[%��� �����U%��������� ��U%������������%��%��������� - </ body> ��U%��� �����c%���%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7840,'in','category_has_been_inserted_successfully','��b%������%��������� ������ ��U%������%�����[%���������%�����a%��� �����[%���%��[% ��������[% ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7841,'in','all_flash_deals','��U%������ ���������%�����b% ���������%','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7842,'in','create_new_flash_deal','������ ���������%�����b% ���������% ��������[%������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7843,'in','ffffff','# �����[%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7844,'in','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','�����c% �����%���������% ���������%�����b% ���������% ��a%��%��a%���%��� ��������V%������ ��������� �����a%���% ������������% ������ ���%������ ��������� �����%�����[%�����[% ��������[% ��c%������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7845,'in','flash_deal_has_been_inserted_successfully','���������%�����b% ���������% ��U%������%�����[%���������%�����a%��� �����[%���%��� ������ ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7846,'in','flash_deal_status_updated_successfully','�����]%������%�����b% ��U%��������[% ��U%��������%�����% ��U%������%�����[%���������%�����a%��� ��������������� ������ ������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7847,'in','flash_deal_has_been_updated_successfully','���������%�����b% ���������% ������ ��U%������%�����[%���������%�����a%��� ��������������� �����%�����[% ��������[% ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7848,'in','update_language_info','������������������ �����[%��V%��[% ������ �����[%��������[%���%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7849,'in','language_has_been_updated_successfully','�����[%��V%��[% ������ ��U%������%�����[%���������%�����a%��� ��������������� ������% �����%�����[% ��������[% ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7850,'in','type_key__enter','��������������� �����[%������ ������%������ ������% ������%������ ������%������','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7851,'in','translations_updated_for_','�����������a%��[%��� ������ ���%��%��� ������������������ �����%�����[% ��������[%','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7852,'in','language_has_been_inserted_successfully','�����[%��V%��[% ������ ��U%������%�����[%���������%�����a%��� �����[%���%��[% ��������[% ��c%���','2021-02-09 07:08:47','2021-09-20 07:29:30'),(7853,'nl','all_category','Alle categorie%�n','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7854,'nl','all','Alle','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7855,'nl','flash_sale','Flash-verkoop','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7856,'nl','view_more','Bekijk meer','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7857,'nl','add_to_wishlist','Toevoegen aan verlanglijst','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7858,'nl','add_to_compare','Voeg toe om te vergelijken','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7859,'nl','add_to_cart','Voeg toe aan winkelkar','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7860,'nl','club_point','Club punt','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7861,'nl','classified_ads','Rubrieksadvertenties','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7862,'nl','used','Gebruikt','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7863,'nl','top_10_categories','Top 10 categorie%�n','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7864,'nl','view_all_categories','Bekijk alle categorie%�n','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7865,'nl','top_10_brands','Top 10 merken','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7866,'nl','view_all_brands','Bekijk alle merken','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7867,'nl','terms__conditions','Algemene voorwaarden','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7868,'nl','best_selling','Best verkopende','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7869,'nl','top_20','Top 20','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7870,'nl','featured_products','Uitgelichte producten','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7871,'nl','best_sellers','Beste verkopers','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7872,'nl','visit_store','Winkel bezoeken','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7873,'nl','popular_suggestions','Populaire suggesties','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7874,'nl','category_suggestions','Categorie Suggesties','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7875,'nl','automobile__motorcycle','Auto\'s en motorfietsen','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7876,'nl','price_range','Prijsbereik','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7877,'nl','filter_by_color','Filter op kleur','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7878,'nl','home','Huis','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7879,'nl','newest','Nieuwste','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7880,'nl','oldest','Oudste','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7881,'nl','price_low_to_high','Prijs laag naar hoog','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7882,'nl','price_high_to_low','Prijs van hoog naar laag','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7883,'nl','brands','Merken','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7884,'nl','all_brands','Alle merken','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7885,'nl','all_sellers','Alle verkopers','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7886,'nl','inhouse_product','Eigen product','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7887,'nl','message_seller','Stuur een bericht naar de verkoper','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7888,'nl','price','Prijs','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7889,'nl','discount_price','Kortingsprijs','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7890,'nl','color','Kleur','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7891,'nl','quantity','Hoeveelheid','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7892,'nl','available','beschikbaar','2021-02-09 07:11:58','2021-02-09 07:11:58'),(7893,'nl','total_price','Totale prijs','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7894,'nl','out_of_stock','Niet op voorraad','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7895,'nl','refund','Terugbetaling','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7896,'nl','share','Delen','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7897,'nl','sold_by','Verkocht door','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7898,'nl','customer_reviews','klanten-reviews','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7899,'nl','top_selling_products','Best verkopende producten','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7900,'nl','description','Omschrijving','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7901,'nl','video','Video','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7902,'nl','reviews','Beoordelingen','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7903,'nl','download','Downloaden','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7904,'nl','there_have_been_no_reviews_for_this_product_yet','Er zijn nog geen recensies voor dit product.','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7905,'nl','related_products','Gerelateerde producten','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7906,'nl','any_query_about_this_product','Elke vraag over dit product','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7907,'nl','product_name','productnaam','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7908,'nl','your_question','Uw vraag','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7909,'nl','send','Sturen','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7910,'nl','use_country_code_before_number','Gebruik landcode voor nummer','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7911,'nl','remember_me','Onthoud me','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7912,'nl','dont_have_an_account','Nog geen account?','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7913,'nl','register_now','Registreer nu','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7914,'nl','or_login_with','Of log in met','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7915,'nl','oops','oeps ..','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7916,'nl','this_item_is_out_of_stock','Dit product is niet meer op voorraad!','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7917,'nl','back_to_shopping','Terug naar winkelen','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7918,'nl','login_to_your_account','Log in op jouw account.','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7919,'nl','purchase_history','Aankoop geschiedenis','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7920,'nl','new','Nieuw','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7921,'nl','downloads','Downloads','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7922,'nl','sent_refund_request','Verzonden restitutieverzoek','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7923,'nl','product_bulk_upload','Bulkupload van producten','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7924,'nl','orders','Bestellingen','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7925,'nl','recieved_refund_request','Terugbetalingsverzoek ontvangen','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7926,'nl','shop_setting','Winkel instelling','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7927,'nl','payment_history','Betaalgeschiedenis','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7928,'nl','money_withdraw','Geld opnemen','2021-02-09 07:11:58','2021-09-20 07:29:30'),(7929,'nl','conversations','Gesprekken','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7930,'nl','my_wallet','Mijn portemonnee','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7931,'nl','earning_points','Punten verdienen','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7932,'nl','support_ticket','Ondersteuningsticket','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7933,'nl','manage_profile','Beheer profiel','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7934,'nl','sold_amount','Verkocht bedrag','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7935,'nl','your_sold_amount_current_month','Uw verkochte bedrag (huidige maand)','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7936,'nl','total_sold','Totaal verkocht','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7937,'nl','last_month_sold','Afgelopen maand verkocht','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7938,'nl','total_sale','Totale verkoop','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7939,'nl','total_earnings','Totale winst','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7940,'nl','successful_orders','Succesvolle bestellingen','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7941,'nl','total_orders','Totaal aantal bestellingen','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7942,'nl','pending_orders','Openstaande bestellingen','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7943,'nl','cancelled_orders','Geannuleerde bestellingen','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7944,'nl','product','Product','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7945,'nl','purchased_package','Gekocht pakket','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7946,'nl','package_not_found','Pakket niet gevonden','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7947,'nl','upgrade_package','Upgrade-pakket','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7948,'nl','shop','Winkel','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7949,'nl','manage__organize_your_shop','Beheer en organiseer uw winkel','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7950,'nl','go_to_setting','Ga naar instelling','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7951,'nl','payment','Betaling','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7952,'nl','configure_your_payment_method','Configureer uw betalingsmethode','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7953,'nl','my_panel','Mijn paneel','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7954,'nl','item_has_been_added_to_wishlist','Artikel is toegevoegd aan de verlanglijst','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7955,'nl','my_points','Mijn punten','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7956,'nl','_points','Punten','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7957,'nl','wallet_money','Portemonnee geld','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7958,'nl','exchange_rate','Wisselkoers','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7959,'nl','point_earning_history','Punt verdienen geschiedenis','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7960,'nl','date','Datum','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7961,'nl','points','Punten','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7962,'nl','converted','Geconverteerd','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7963,'nl','action','Actie','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7964,'nl','no_history_found','Geen geschiedenis gevonden.','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7965,'nl','convert_has_been_done_successfully_check_your_wallets','Het omzetten is met succes voltooid Controleer uw portemonnee','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7966,'nl','something_went_wrong','Er is iets fout gegaan','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7967,'nl','remaining_uploads','Resterende uploads','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7968,'nl','no_package_found','Geen pakket gevonden','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7969,'nl','search_product','Zoek product','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7970,'nl','name','Naam','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7971,'nl','current_qty','Huidig ������aantal','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7972,'nl','base_price','Basisprijs','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7973,'nl','published','Gepubliceerd','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7974,'nl','featured','Uitgelicht','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7975,'nl','options','Opties','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7976,'nl','edit','Bewerk','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7977,'nl','duplicate','Duplicaat','2021-02-09 07:11:59','2021-09-20 07:29: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 07:11:59','2021-09-20 07:29: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 07:11:59','2021-09-20 07:29: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 07:11:59','2021-09-20 07:29: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 07:11:59','2021-09-20 07:29:30'),(7982,'nl','download_csv','Download CSV','2021-02-09 07:11:59','2021-09-20 07:29: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 07:11:59','2021-09-20 07:29: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 07:11:59','2021-09-20 07:29:30'),(7985,'nl','download_category','Download categorie','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7986,'nl','download_sub_category','Download subcategorie','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7987,'nl','download_sub_sub_category','Download de subsubcategorie','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7988,'nl','download_brand','Download merk','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7989,'nl','upload_csv_file','Upload CSV-bestand','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7990,'nl','csv','CSV','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7991,'nl','choose_csv_file','Kies CSV-bestand','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7992,'nl','upload','Uploaden','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7993,'nl','add_new_digital_product','Voeg een nieuw digitaal product toe','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7994,'nl','available_status','Beschikbare status','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7995,'nl','admin_status','Beheerdersstatus','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7996,'nl','pending_balance','In afwachting van saldo','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7997,'nl','send_withdraw_request','Verzend een intrekkingsverzoek','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7998,'nl','withdraw_request_history','Verzoekhistorie intrekken','2021-02-09 07:11:59','2021-09-20 07:29:30'),(7999,'nl','amount','Bedrag','2021-02-09 07:11:59','2021-09-20 07:29:30'),(8000,'nl','status','Toestand','2021-02-09 07:11:59','2021-09-20 07:29:30'),(8001,'nl','message','Bericht','2021-02-09 07:11:59','2021-09-20 07:29:30'),(8002,'nl','send_a_withdraw_request','Stuur een uitbetalingsverzoek','2021-02-09 07:11:59','2021-09-20 07:29:30'),(8003,'nl','basic_info','Basis informatie','2021-02-09 07:11:59','2021-09-20 07:29:30'),(8004,'nl','your_phone','Jouw telefoon','2021-02-09 07:11:59','2021-09-20 07:29:30'),(8005,'nl','photo','Foto','2021-02-09 07:11:59','2021-09-20 07:29:30'),(8006,'nl','browse','Bladeren','2021-02-09 07:11:59','2021-09-20 07:29:30'),(8007,'nl','your_password','Je wachtwoord','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8008,'nl','new_password','nieuw paswoord','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8009,'nl','confirm_password','bevestig wachtwoord','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8010,'nl','add_new_address','Nieuw adres toevoegen','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8011,'nl','payment_setting','Betalingsinstelling','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8012,'nl','cash_payment','Contante betaling','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8013,'nl','bank_payment','Bankbetaling','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8014,'nl','bank_name','Banknaam','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8015,'nl','bank_account_name','Bank Account naam','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8016,'nl','bank_account_number','Bankrekeningnummer','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8017,'nl','bank_routing_number','Banknummer','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8018,'nl','update_profile','Profiel bijwerken','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8019,'nl','change_your_email','Wijzig uw e-mailadres','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8020,'nl','your_email','Jouw email','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8021,'nl','sending_email','Email verzenden...','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8022,'nl','verify','Verifi%�ren','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8023,'nl','update_email','E-mail bijwerken','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8024,'nl','new_address','Nieuw adres','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8025,'nl','your_address','Jouw adres','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8026,'nl','country','Land','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8027,'nl','select_your_country','Kies je land','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8028,'nl','city','stad','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8029,'nl','your_city','Jouw stad','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8030,'nl','your_postal_code','Je post code','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8031,'nl','880','+880','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8032,'nl','save','Sparen','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8033,'nl','received_refund_request','Restitutieverzoek ontvangen','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8034,'nl','delete_confirmation','Bevestiging verwijderen','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8035,'nl','are_you_sure_to_delete_this','Weet u zeker dat u dit wilt verwijderen?','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8036,'nl','premium_packages_for_sellers','Premium-pakketten voor verkopers','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8037,'nl','product_upload','Product uploaden','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8038,'nl','digital_product_upload','Digitale productupload','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8039,'nl','purchase_package','Aankooppakket','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8040,'nl','select_payment_type','Selecteer betalingstype','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8041,'nl','payment_type','Betalingswijze','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8042,'nl','select_one','Kies een','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8043,'nl','online_payment','Online betaling','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8044,'nl','offline_payment','Offline betaling','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8045,'nl','purchase_your_package','Koop uw pakket','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8046,'nl','paypal','Paypal','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8047,'nl','stripe','Streep','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8048,'nl','sslcommerz','sslcommerz','2021-02-09 07:12:00','2021-02-09 07:12:00'),(8049,'nl','confirm','Bevestigen','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8050,'nl','offline_package_payment','Offline pakketbetaling','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8051,'nl','transaction_id','Transactie ID','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8052,'nl','choose_image','Kies afbeelding','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8053,'nl','code','Code','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8054,'nl','delivery_status','Aflever status','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8055,'nl','payment_status','Betalingsstatus','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8056,'nl','paid','Betaald','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8057,'nl','order_details','Bestel Details','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8058,'nl','download_invoice','Factuur downloaden','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8059,'nl','unpaid','Onbetaald','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8060,'nl','order_placed','Bestelling geplaatst','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8061,'nl','confirmed','Bevestigd','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8062,'nl','on_delivery','Bij aflevering','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8063,'nl','delivered','Geleverd','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8064,'nl','order_summary','overzicht van de bestelling','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8065,'nl','order_code','Bestelcode','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8066,'nl','customer','Klant','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8067,'nl','total_order_amount','Totaal orderbedrag','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8068,'nl','shipping_metdod','Verzending metdod','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8069,'nl','flat_shipping_rate','Vaste vervoerskosten','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8070,'nl','payment_metdod','Betaling metdod','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8071,'nl','variation','Variatie','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8072,'nl','delivery_type','Soort levering','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8073,'nl','home_delivery','Levering aan huis','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8074,'nl','order_ammount','Bestelbedrag','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8075,'nl','subtotal','Subtotaal','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8076,'nl','shipping','Verzenden','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8077,'nl','coupon_discount','Kortingsbon','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8078,'nl','na','Nvt','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8079,'nl','in_stock','Op voorraad','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8080,'nl','buy_now','Nu kopen','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8081,'nl','item_added_to_your_cart','Artikel toegevoegd aan uw winkelwagen!','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8082,'nl','proceed_to_checkout','Ga naar de kassa','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8083,'nl','cart_items','Winkelwagen Artikelen','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8084,'nl','1_my_cart','1. Mijn winkelwagen','2021-02-09 07:12:00','2021-09-20 07:29:31'),(8085,'nl','view_cart','Bekijk winkelwagen','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8086,'nl','2_shipping_info','2. Verzendinformatie','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8087,'nl','checkout','Uitchecken','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8088,'nl','3_delivery_info','3. Afleverinformatie','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8089,'nl','4_payment','4. Betaling','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8090,'nl','5_confirmation','5. Bevestiging','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8091,'nl','remove','Verwijderen','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8092,'nl','return_to_shop','Ga terug naar de winkel','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8093,'nl','continue_to_shipping','Ga verder naar Verzenden','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8094,'nl','or','Of','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8095,'nl','guest_checkout','Afrekenen als gast','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8096,'nl','continue_to_delivery_info','Ga verder naar Afleverinformatie','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8097,'nl','postal_code','Postcode','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8098,'nl','choose_delivery_type','Kies Leveringstype','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8099,'nl','local_pickup','Lokale ophaalservice','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8100,'nl','select_your_nearest_pickup_point','Selecteer je dichtstbijzijnde ophaalpunt','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8101,'nl','continue_to_payment','Ga verder met betalen','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8102,'nl','select_a_payment_option','Selecteer een betalingsoptie','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8103,'nl','razorpay','Razorpay','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8104,'nl','paystack','Paystack','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8105,'nl','voguepay','VoguePay','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8106,'nl','payhere','betaal hier','2021-02-09 07:12:01','2021-02-09 07:12:01'),(8107,'nl','ngenius','ngenius','2021-02-09 07:12:01','2021-02-09 07:12:01'),(8108,'nl','paytm','Paytm','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8109,'nl','cash_on_delivery','Onder rembours','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8110,'nl','your_wallet_balance_','Uw portemonnee-saldo:','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8111,'nl','insufficient_balance','Onvoldoende balans','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8112,'nl','i_agree_to_the','Ik ga akkoord met de','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8113,'nl','complete_order','Maak bestelling af','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8114,'nl','summary','Samenvatting','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8115,'nl','items','Artikelen','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8116,'nl','total_club_point','Totaal clubpunt','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8117,'nl','total_shipping','Totale verzending','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8118,'nl','have_coupon_code_enter_here','Heeft u een kortingscode? Kom hier binnen','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8119,'nl','apply','Van toepassing zijn','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8120,'nl','you_need_to_agree_with_our_policies','U moet akkoord gaan met ons beleid','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8121,'nl','forgot_password','Wachtwoord vergeten','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8122,'nl','seo_setting','SEO-instelling','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8123,'nl','system_update','Systeem update','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8124,'nl','add_new_payment_method','Voeg een nieuwe betaalmethode toe','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8125,'nl','manual_payment_method','Handmatige betalingsmethode','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8126,'nl','heading','Rubriek','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8127,'nl','logo','Logo','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8128,'nl','manual_payment_information','Handmatige betalingsinformatie','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8129,'nl','type','Type','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8130,'nl','custom_payment','Aangepaste betaling','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8131,'nl','check_payment','Controleer de betaling','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8132,'nl','checkout_thumbnail','Afrekenen Thumbnail','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8133,'nl','payment_instruction','Betalings instructie','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8134,'nl','bank_information','Bank informatie','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8135,'nl','select_file','Selecteer bestand','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8136,'nl','upload_new','Nieuw uploaden','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8137,'nl','sort_by_newest','Sorteer op nieuwste','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8138,'nl','sort_by_oldest','Sorteer op oudste','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8139,'nl','sort_by_smallest','Sorteer op kleinste','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8140,'nl','sort_by_largest','Sorteer op grootste','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8141,'nl','selected_only','Alleen geselecteerd','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8142,'nl','no_files_found','Geen bestanden gevonden','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8143,'nl','0_file_selected','0 Bestand geselecteerd','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8144,'nl','clear','Doorzichtig','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8145,'nl','prev','Vorige','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8146,'nl','next','De volgende','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8147,'nl','add_files','Bestanden toevoegen','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8148,'nl','method_has_been_inserted_successfully','De methode is met succes ingevoegd','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8149,'nl','order_date','Besteldatum','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8150,'nl','bill_to','Rekening naar','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8151,'nl','sub_total','Subtotaal','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8152,'nl','total_tax','Totale belasting','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8153,'nl','grand_total','Eindtotaal','2021-02-09 07:12:01','2021-09-20 07:29: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 07:12:01','2021-09-20 07:29:31'),(8155,'nl','thank_you_for_your_order','Bedankt voor je bestelling!','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8156,'nl','order_code','Bestelcode:','2021-02-09 07:12:01','2021-09-20 07:29: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 07:12:01','2021-09-20 07:29:31'),(8158,'nl','make_payment','Betaling maken','2021-02-09 07:12:01','2021-09-20 07:29:31'),(8159,'nl','payment_screenshot','Schermafbeelding van betaling','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8160,'nl','paypal_credential','Paypal-inloggegevens','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8161,'nl','paypal_client_id','Paypal Client-ID','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8162,'nl','paypal_client_secret','Paypal Client Geheim','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8163,'nl','paypal_sandbox_mode','Paypal Sandbox-modus','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8164,'nl','sslcommerz_credential','Sslcommerz-inloggegevens','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8165,'nl','sslcz_store_id','Sslcz-winkel-id','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8166,'nl','sslcz_store_password','Sslcz Store-wachtwoord','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8167,'nl','sslcommerz_sandbox_mode','Sslcommerz Sandbox-modus','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8168,'nl','stripe_credential','Stripe-legitimatie','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8169,'nl','stripe_key','STREEP SLEUTEL','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8170,'nl','stripe_secret','STREEP GEHEIM','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8171,'nl','razorpay_credential','RazorPay-inloggegevens','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8172,'nl','razor_key','RAZOR SLEUTEL','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8173,'nl','razor_secret','SCHEERGEHEIM','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8174,'nl','instamojo_credential','Instamojo-legitimatie','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8175,'nl','api_key','API SLEUTEL','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8176,'nl','im_api_key','IM API-SLEUTEL','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8177,'nl','auth_token','AUTH TOKEN','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8178,'nl','im_auth_token','IM AUTH TOKEN','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8179,'nl','instamojo_sandbox_mode','Instamojo Sandbox-modus','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8180,'nl','paystack_credential','PayStack-inloggegevens','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8181,'nl','public_key','PUBLIEKE SLEUTEL','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8182,'nl','secret_key','GEHEIME SLEUTEL','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8183,'nl','merchant_email','E-MAIL VAN DE HANDELAAR','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8184,'nl','voguepay_credential','VoguePay-inloggegevens','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8185,'nl','merchant_id','HANDELAAR ID','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8186,'nl','sandbox_mode','Sandbox-modus','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8187,'nl','payhere_credential','Payhere-inloggegevens','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8188,'nl','payhere_merchant_id','PAYHERE MERCHANT ID','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8189,'nl','payhere_secret','PAYHERE SECRET','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8190,'nl','payhere_currency','PAYHERE VALUTA','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8191,'nl','payhere_sandbox_mode','Payhere Sandbox-modus','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8192,'nl','ngenius_credential','Ngenius Credential','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8193,'nl','ngenius_outlet_id','NGENIUS OUTLET ID','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8194,'nl','ngenius_api_key','NGENIUS API-SLEUTEL','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8195,'nl','ngenius_currency','NGENIUS VALUTA','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8196,'nl','mpesa_credential','Mpesa-referentie','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8197,'nl','mpesa_consumer_key','MPESA CONSUMENTENSLEUTEL','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8198,'nl','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8199,'nl','mpesa_consumer_secret','MPESA CONSUMENT SECRET','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8200,'nl','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8201,'nl','mpesa_short_code','MPESA KORTE CODE','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8202,'nl','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8203,'nl','mpesa_sandbox_activation','MPESA-ZANDBAK ACTIVERING','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8204,'nl','flutterwave_credential','Flutterwave-referentie','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8205,'nl','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8206,'nl','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8207,'nl','rave_title','RAVE_TITLE','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8208,'nl','stagin_activation','STAGIN-ACTIVERING','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8209,'nl','all_product','Alle producten','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8210,'nl','sort_by','Sorteer op','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8211,'nl','rating_high__low','Beoordeling (hoog> laag)','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8212,'nl','rating_low__high','Beoordeling (laag> hoog)','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8213,'nl','num_of_sale_high__low','Aantal verkoop (hoog> laag)','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8214,'nl','num_of_sale_low__high','Aantal verkoop (laag> hoog)','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8215,'nl','base_price_high__low','Basisprijs (hoog> laag)','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8216,'nl','base_price_low__high','Basisprijs (laag> hoog)','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8217,'nl','type__enter','Typ & Enter','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8218,'nl','added_by','Toegevoegd door','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8219,'nl','num_of_sale','Aantal verkoop','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8220,'nl','total_stock','Totale voorraad','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8221,'nl','todays_deal','De deal van vandaag','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8222,'nl','rating','Beoordeling','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8223,'nl','times','keer','2021-02-09 07:12:02','2021-02-09 07:12:02'),(8224,'nl','add_nerw_product','Voeg Nerw-product toe','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8225,'nl','product_information','Productinformatie','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8226,'nl','unit','Eenheid','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8227,'nl','unit_eg_kg_pc_etc','Eenheid (bijv. KG, Pc enz.)','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8228,'nl','minimum_qty','Minimum aantal','2021-02-09 07:12:02','2021-09-20 07:29:31'),(8229,'nl','tags','Tags','2021-02-09 07:12:02','2021-09-20 07:29: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 07:12:02','2021-09-20 07:29:31'),(8231,'nl','barcode','Streepjescode','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8232,'nl','refundable','Restitutie mogelijk','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8233,'nl','product_images','Productafbeeldingen','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8234,'nl','gallery_images','Galerij afbeeldingen','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8235,'nl','todays_deal_updated_successfully','De deal van vandaag is succesvol bijgewerkt','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8236,'nl','published_products_updated_successfully','Gepubliceerde producten zijn bijgewerkt','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8237,'nl','thumbnail_image','Miniatuurafbeelding','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8238,'nl','featured_products_updated_successfully','Uitgelichte producten zijn bijgewerkt','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8239,'nl','product_videos','Productvideo\'s','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8240,'nl','video_provider','Videoprovider','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8241,'nl','youtube','Youtube','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8242,'nl','dailymotion','Dailymotion','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8243,'nl','vimeo','Vimeo','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8244,'nl','video_link','Video link','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8245,'nl','product_variation','Productvariatie','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8246,'nl','colors','Kleuren','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8247,'nl','attributes','Attributen','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8248,'nl','choose_attributes','Kies kenmerken','2021-02-09 07:12:03','2021-09-20 07:29: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 07:12:03','2021-09-20 07:29:31'),(8250,'nl','product_price__stock','Productprijs + voorraad','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8251,'nl','unit_price','Eenheid prijs','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8252,'nl','purchase_price','Aankoopprijs','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8253,'nl','flat','Vlak','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8254,'nl','percent','Procent','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8255,'nl','discount','Korting','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8256,'nl','product_description','Productomschrijving','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8257,'nl','product_shipping_cost','Product verzendkosten','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8258,'nl','free_shipping','Gratis verzending','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8259,'nl','flat_rate','Vast bedrag','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8260,'nl','shipping_cost','Transportkosten','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8261,'nl','pdf_specification','PDF-specificatie','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8262,'nl','seo_meta_tags','SEO-metatags','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8263,'nl','meta_title','Metatitel','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8264,'nl','meta_image','Meta afbeelding','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8265,'nl','choice_title','Keuze titel','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8266,'nl','enter_choice_values','Voer keuzewaarden in','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8267,'nl','all_categories','Alle categorie%�n','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8268,'nl','add_new_category','Voeg een nieuwe categorie toe','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8269,'nl','type_name__enter','Typ naam en voer in','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8270,'nl','banner','Banner','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8271,'nl','commission','Commissie','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8272,'nl','icon','icoon','2021-02-09 07:12:03','2021-02-09 07:12:03'),(8273,'nl','featured_categories_updated_successfully','Uitgelichte categorie%�n zijn bijgewerkt','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8274,'nl','hot','Heet','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8275,'nl','filter_by_payment_status','Filter op betalingsstatus','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8276,'nl','unpaid','Onbetaald','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8277,'nl','filter_by_deliver_status','Filteren op bezorgstatus','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8278,'nl','pending','In afwachting','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8279,'nl','type_order_code__hit_enter','Typ Bestelcode en druk op Enter','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8280,'nl','num_of_products','Num. van producten','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8281,'nl','walk_in_customer','Loop in klant','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8282,'nl','qty','AANTAL','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8283,'nl','without_shipping_charge','Zonder verzendkosten','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8284,'nl','with_shipping_charge','Met verzendkosten','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8285,'nl','pay_with_cash','Betaal contant','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8286,'nl','shipping_address','afleveradres','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8287,'nl','close','Dichtbij','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8288,'nl','select_country','Selecteer land','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8289,'nl','order_confirmation','Order bevestiging','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8290,'nl','are_you_sure_to_confirm_this_order','Weet u zeker dat u deze bestelling bevestigt?','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8291,'nl','comfirm_order','Bevestig bestelling','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8292,'nl','personal_info','Persoonlijke informatie','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8293,'nl','repeat_password','Herhaal wachtwoord','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8294,'nl','shop_name','Winkel naam','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8295,'nl','register_your_shop','Registreer uw winkel','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8296,'nl','affiliate_informations','Aangesloten informatie','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8297,'nl','affiliate','Aangesloten','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8298,'nl','user_info','gebruikers informatie','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8299,'nl','installed_addon','Ge%�nstalleerde add-on','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8300,'nl','available_addon','Beschikbare add-on','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8301,'nl','install_new_addon','Installeer een nieuwe add-on','2021-02-09 07:12:03','2021-09-20 07:29:31'),(8302,'nl','version','Versie','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8303,'nl','activated','Geactiveerd','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8304,'nl','deactivated','Gedeactiveerd','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8305,'nl','activate_otp','Activeer OTP','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8306,'nl','otp_will_be_used_for','OTP wordt gebruikt voor','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8307,'nl','settings_updated_successfully','Instellingen zijn bijgewerkt','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8308,'nl','product_owner','Product eigenaar','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8309,'nl','point','Punt','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8310,'nl','set_point_for_product_within_a_range','Instelpunt voor product binnen een bereik','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8311,'nl','set_point_for_multiple_products','Instelpunt voor meerdere producten','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8312,'nl','min_price','Min. Prijs','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8313,'nl','max_price','Max prijs','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8314,'nl','set_point_for_all_products','Instelpunt voor alle producten','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8315,'nl','set_point_for_','Instelpunt voor','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8316,'nl','convert_status','Converteren Status','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8317,'nl','earned_at','Verdiend bij','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8318,'nl','seller_based_selling_report','Verkopers gebaseerd verkooprapport','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8319,'nl','sort_by_verificarion_status','Sorteer op verificarion status','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8320,'nl','approved','Goedgekeurd','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8321,'nl','non_approved','Niet goedgekeurd','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8322,'nl','filter','Filter','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8323,'nl','seller_name','Naam van de verkoper','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8324,'nl','number_of_product_sale','Aantal verkochte producten','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8325,'nl','order_amount','Bestelbedrag','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8326,'nl','facebook_chat_setting','Facebook Chat-instelling','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8327,'nl','facebook_page_id','Facebook-pagina-ID','2021-02-09 07:12:04','2021-09-20 07:29: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 07:12:04','2021-09-20 07:29:31'),(8329,'nl','login_into_your_facebook_page','Log in op uw Facebook-pagina','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8330,'nl','find_the_about_option_of_your_facebook_page','Zoek de Over-optie van uw Facebook-pagina','2021-02-09 07:12:04','2021-09-20 07:29: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 07:12:04','2021-09-20 07:29: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 07:12:04','2021-09-20 07:29: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 07:12:04','2021-09-20 07:29:31'),(8334,'nl','set_your_website_domain_name','Stel de domeinnaam van uw website in','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8335,'nl','google_recaptcha_setting','Google reCAPTCHA-instelling','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8336,'nl','site_key','Site KEY','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8337,'nl','select_shipping_method','selecteer verzendmethode','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8338,'nl','product_wise_shipping_cost','Product verstandige verzendkosten','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8339,'nl','flat_rate_shipping_cost','Forfaitaire verzendkosten','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8340,'nl','seller_wise_flat_shipping_cost','Verkoper verstandige platte verzendkosten','2021-02-09 07:12:04','2021-09-20 07:29:31'),(8341,'nl','note','Opmerking','2021-02-09 07:12:04','2021-09-20 07:29: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 07:12:04','2021-09-20 07:29: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 07:12:04','2021-09-20 07:29: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 07:12:04','2021-09-20 07:29:32'),(8345,'nl','flat_rate_cost','Forfaitaire kosten','2021-02-09 07:12:04','2021-09-20 07:29:32'),(8346,'nl','shipping_cost_for_admin_products','Verzendkosten voor beheerproducten','2021-02-09 07:12:04','2021-09-20 07:29:32'),(8347,'nl','countries','Landen','2021-02-09 07:12:04','2021-09-20 07:29:32'),(8348,'nl','showhide','Laten zien verbergen','2021-02-09 07:12:04','2021-09-20 07:29:32'),(8349,'nl','country_status_updated_successfully','Landstatus is succesvol bijgewerkt','2021-02-09 07:12:04','2021-09-20 07:29:32'),(8350,'nl','all_subcategories','Alle subcategorie%�n','2021-02-09 07:12:04','2021-09-20 07:29:32'),(8351,'nl','add_new_subcategory','Nieuwe subcategorie toevoegen','2021-02-09 07:12:04','2021-09-20 07:29:32'),(8352,'nl','subcategories','Subcategorie%�n','2021-02-09 07:12:04','2021-09-20 07:29:32'),(8353,'nl','sub_category_information','Subcategorie-informatie','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8354,'nl','slug','Naaktslak','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8355,'nl','all_sub_subcategories','Alle subsubcategorie%�n','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8356,'nl','add_new_sub_subcategory','Nieuwe subsubcategorie toevoegen','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8357,'nl','subsubcategories','Sub-subcategorie%�n','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8358,'nl','make_this_default','Maak dit standaard','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8359,'nl','shops','Winkels','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8360,'nl','women_clothing__fashion','Dameskleding en mode','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8361,'nl','cellphones__tabs','Mobiele telefoons en tabbladen','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8362,'nl','welcome_to','Welkom bij','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8363,'nl','create_a_new_account','Maak een nieuw account aan','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8364,'nl','full_name','Voor-en achternaam','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8365,'nl','password','wachtwoord','2021-02-09 07:12:35','2021-02-09 07:12:35'),(8366,'nl','confrim_password','Wachtwoord bevestigen','2021-02-09 07:12:35','2021-09-20 07:29:32'),(8367,'nl','i_agree_with_the','Ik ben het eens met de','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8368,'nl','terms_and_conditions','Voorwaarden','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8369,'nl','register','Registreren','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8370,'nl','already_have_an_account','U heeft al een account','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8371,'nl','sign_up_with','Meld je aan met','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8372,'nl','i_agree_with_the_terms_and_conditions','Ik ga akkoord met de algemene voorwaarden','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8373,'nl','all_role','Alle rollen','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8374,'nl','add_new_role','Nieuwe rol toevoegen','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8375,'nl','roles','Rollen','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8376,'nl','add_new_staffs','Voeg nieuwe staven toe','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8377,'nl','role','Rol','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8378,'nl','frontend_website_name','Frontend website naam','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8379,'nl','website_name','website naam','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8380,'nl','site_motto','Motto van de site','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8381,'nl','best_ecommerce_website','Beste eCommerce-website','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8382,'nl','site_icon','Site Icoon','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8383,'nl','website_favicon_32x32_png','Website favicon. 32x32 .png','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8384,'nl','website_base_color','Website Basiskleur','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8385,'nl','hex_color_code','Hex kleurcode','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8386,'nl','website_base_hover_color','Website Base Hover Color','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8387,'nl','update','Bijwerken','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8388,'nl','global_seo','Wereldwijde SEO','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8389,'nl','meta_description','Meta omschrijving','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8390,'nl','keywords','Sleutelwoorden','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8391,'nl','separate_with_coma','Scheid met coma','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8392,'nl','website_pages','Website-pagina\'s','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8393,'nl','all_pages','Alle pagina\'s','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8394,'nl','add_new_page','Nieuwe pagina toevoegen','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8395,'nl','url','URL','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8396,'nl','actions','Acties','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8397,'nl','edit_page_information','Pagina-informatie bewerken','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8398,'nl','page_content','Pagina inhoud','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8399,'nl','title','Titel','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8400,'nl','link','Koppeling','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8401,'nl','use_character_number_hypen_only','Gebruik alleen tekens, cijfers en koppeltekens','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8402,'nl','add_content','Content toevoegen','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8403,'nl','seo_fields','SEO-velden','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8404,'nl','update_page','Update pagina','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8405,'nl','default_language','Standaard taal','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8406,'nl','add_new_language','Nieuwe taal toevoegen','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8407,'nl','rtl','RTL','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8408,'nl','translation','Vertaling','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8409,'nl','language_information','Taalinformatie','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8410,'nl','save_page','Sla pagina op','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8411,'nl','home_page_settings','Startpagina-instellingen','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8412,'nl','home_slider','Home-schuifregelaar','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8413,'nl','photos__links','Foto\'s en links','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8414,'nl','add_new','Nieuw toevoegen','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8415,'nl','home_categories','Home Categorie%�n','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8416,'nl','home_banner_1_max_3','Home Banner 1 (Max 3)','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8417,'nl','banner__links','Banner en links','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8418,'nl','home_banner_2_max_3','Home Banner 2 (Max 3)','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8419,'nl','top_10','Top 10','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8420,'nl','top_categories_max_10','Topcategorie%�n (max. 10)','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8421,'nl','top_brands_max_10','Topmerken (max 10)','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8422,'nl','system_name','Systeemnaam','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8423,'nl','system_logo__white','Systeemlogo - Wit','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8424,'nl','choose_files','Kies documenten','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8425,'nl','will_be_used_in_admin_panel_side_menu','Wordt gebruikt in het zijmenu van het admin-paneel','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8426,'nl','system_logo__black','Systeemlogo - Zwart','2021-02-09 07:12:36','2021-09-20 07:29: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 07:12:36','2021-09-20 07:29:32'),(8428,'nl','system_timezone','Systeemtijdzone','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8429,'nl','admin_login_page_background','Admin login pagina achtergrond','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8430,'nl','website_header','Website Header','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8431,'nl','header_setting','Header-instelling','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8432,'nl','header_logo','Header logo','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8433,'nl','show_language_switcher','Taalwisselaar weergeven?','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8434,'nl','show_currency_switcher','Valutawisselaar weergeven?','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8435,'nl','enable_stikcy_header','Stikcy-koptekst inschakelen?','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8436,'nl','website_footer','Voettekst website','2021-02-09 07:12:36','2021-09-20 07:29:32'),(8437,'nl','footer_widget','Voettekst Widget','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8438,'nl','about_widget','Over Widget','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8439,'nl','footer_logo','Voettekst Logo','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8440,'nl','about_description','Over beschrijving','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8441,'nl','contact_info_widget','Contactinformatie Widget','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8442,'nl','footer_contact_address','Voettekst contactadres','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8443,'nl','footer_contact_phone','Voettekst telefoonnummer','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8444,'nl','footer_contact_email','Voettekst contact e-mailadres','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8445,'nl','link_widget_one','Link Widget One','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8446,'nl','links','Links','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8447,'nl','footer_bottom','Voettekst onderaan','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8448,'nl','copyright_widget_','Widget voor auteursrechten','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8449,'nl','copyright_text','Copyright-tekst','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8450,'nl','social_link_widget_','Widget voor sociale links','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8451,'nl','show_social_links','Sociale links weergeven?','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8452,'nl','social_links','Sociale links','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8453,'nl','payment_methods_widget_','Widget voor betalingsmethoden','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8454,'nl','rtl_status_updated_successfully','RTL-status succesvol bijgewerkt','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8455,'nl','language_changed_to_','Taal veranderd in','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8456,'nl','inhouse_product_sale_report','Verkooprapport voor eigen producten','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8457,'nl','sort_by_category','Sorteer op categorie','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8458,'nl','product_wise_stock_report','Productgewijs voorraadrapport','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8459,'nl','currency_changed_to_','Valuta gewijzigd in','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8460,'nl','avatar','Avatar','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8461,'nl','copy','Kopi%�ren','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8462,'nl','variant','Variant','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8463,'nl','variant_price','Variantprijs','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8464,'nl','sku','SKU','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8465,'nl','key','Sleutel','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8466,'nl','value','Waarde','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8467,'nl','copy_translations','Kopieer vertalingen','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8468,'nl','all_pickup_points','Alle ophaalpunten','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8469,'nl','add_new_pickup_point','Nieuw afhaalpunt toevoegen','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8470,'nl','manager','Manager','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8471,'nl','location','Plaats','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8472,'nl','pickup_station_contact','Ophaalstation Contact','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8473,'nl','open','Open','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8474,'nl','pos_activation_for_seller','POS-activering voor verkoper','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8475,'nl','order_completed_successfully','Bestelling met succes voltooid.','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8476,'nl','text_input','Tekst invoer','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8477,'nl','select','Selecteer','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8478,'nl','multiple_select','Meerdere selecteren','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8479,'nl','radio','Radio','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8480,'nl','file','het dossier','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8481,'nl','email_address','E-mailadres','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8482,'nl','verification_info','Verificatie-informatie','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8483,'nl','approval','Goedkeuring','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8484,'nl','due_amount','Te betalen bedrag','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8485,'nl','show','Tonen','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8486,'nl','pay_now','Nu betalen','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8487,'nl','affiliate_user_verification','Verificatie van aangesloten gebruikers','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8488,'nl','reject','Weigeren','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8489,'nl','accept','Aanvaarden','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8490,'nl','beauty_health__hair','Schoonheid, gezondheid en haar','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8491,'nl','comparison','Vergelijking','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8492,'nl','reset_compare_list','Reset vergelijkingslijst','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8493,'nl','your_comparison_list_is_empty','Uw vergelijkingslijst is leeg','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8494,'nl','convert_point_to_wallet','Converteer punt naar portemonnee','2021-02-09 07:12:37','2021-09-20 07:29: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 07:12:37','2021-09-20 07:29:32'),(8496,'nl','create_an_account','Account aanmaken.','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8497,'nl','use_email_instead','Gebruik in plaats daarvan e-mail','2021-02-09 07:12:37','2021-09-20 07:29: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 07:12:37','2021-09-20 07:29:32'),(8499,'nl','create_account','Account aanmaken','2021-02-09 07:12:37','2021-09-20 07:29:32'),(8500,'nl','or_join_with','Of doe mee met','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8501,'nl','already_have_an_account','Heb je al een account?','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8502,'nl','log_in','Log in','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8503,'nl','computer__accessories','Computer accessoires','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8504,'nl','products','Product (en)','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8505,'nl','in_your_cart','in uw winkelwagen','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8506,'nl','in_your_wishlist','in je verlanglijst','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8507,'nl','you_ordered','u bestelde','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8508,'nl','default_shipping_address','Standaard verzendadres','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8509,'nl','sports__outdoor','Sport en buiten','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8510,'nl','copied','Gekopieerd','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8511,'nl','copy_the_promote_link','Kopieer de bevorderingslink','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8512,'nl','write_a_review','Schrijf een recensie','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8513,'nl','your_name','Uw naam','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8514,'nl','comment','Commentaar','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8515,'nl','your_review','Je recensie','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8516,'nl','submit_review','Review versturen','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8517,'nl','claire_willis','Claire Willis','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8518,'nl','germaine_greene','Germaine Greene','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8519,'nl','product_file','Productbestand','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8520,'nl','choose_file','Kies bestand','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8521,'nl','type_to_add_a_tag','Typ om een ������tag toe te voegen','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8522,'nl','images','Afbeeldingen','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8523,'nl','main_images','Belangrijkste afbeeldingen','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8524,'nl','meta_tags','Meta-tags','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8525,'nl','digital_product_has_been_inserted_successfully','Digitaal product is met succes geplaatst','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8526,'nl','edit_digital_product','Bewerk digitaal product','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8527,'nl','select_an_option','Kies een optie','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8528,'nl','tax','belasting','2021-02-09 07:12:38','2021-02-09 07:12:38'),(8529,'nl','any_question_about_this_product','Heeft u een vraag over dit product?','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8530,'nl','sign_in','Aanmelden','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8531,'nl','login_with_google','Log in met Google','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8532,'nl','login_with_facebook','Inloggen met Facebook','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8533,'nl','login_with_twitter','Log in met Twitter','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8534,'nl','click_to_show_phone_number','Klik om het telefoonnummer weer te geven','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8535,'nl','other_ads_of','Andere advertenties van','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8536,'nl','store_home','Winkel huis','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8537,'nl','top_selling','Best verkopende','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8538,'nl','shop_settings','Winkelinstellingen','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8539,'nl','visit_shop','Bezoek Shop','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8540,'nl','pickup_points','Ophaalpunten','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8541,'nl','select_pickup_point','Selecteer Afhaalpunt','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8542,'nl','slider_settings','Schuifregelaarinstellingen','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8543,'nl','social_media_link','Link naar sociale media','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8544,'nl','facebook','Facebook','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8545,'nl','twitter','Twitter','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8546,'nl','google','Google','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8547,'nl','new_arrival_products','Nieuwe aankomstproducten','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8548,'nl','check_your_order_status','Controleer uw bestelstatus','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8549,'nl','shipping_method','Verzendwijze','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8550,'nl','shipped_by','Verscheept door','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8551,'nl','image','Beeld','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8552,'nl','sub_sub_category','Sub subcategorie','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8553,'nl','inhouse_products','Eigen producten','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8554,'nl','forgot_password','Wachtwoord vergeten?','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8555,'nl','enter_your_email_address_to_recover_your_password','Voer uw e-mailadres in om uw wachtwoord te herstellen.','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8556,'nl','email_or_phone','Email of telefoon','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8557,'nl','send_password_reset_link','Stuur wachtwoord reset link','2021-02-09 07:12:38','2021-09-20 07:29:32'),(8558,'nl','back_to_login','Terug naar Inloggen','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8559,'nl','index','inhoudsopgave','2021-02-09 07:12:39','2021-02-09 07:12:39'),(8560,'nl','download_your_product','Download uw product','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8561,'nl','option','Keuze','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8562,'nl','applied_refund_request','Toegepast restitutieverzoek','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8563,'nl','item_has_been_renoved_from_wishlist','Item is gerenoveerd vanaf de verlanglijst','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8564,'nl','bulk_products_upload','Bulkproducten uploaden','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8565,'nl','upload_csv','Upload CSV','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8566,'nl','create_a_ticket','Maak een ticket','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8567,'nl','tickets','Kaartjes','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8568,'nl','ticket_id','Ticket ID','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8569,'nl','sending_date','Verzenddatum','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8570,'nl','subject','Onderwerpen','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8571,'nl','view_details','Details bekijken','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8572,'nl','provide_a_detailed_description','Geef een gedetailleerde beschrijving','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8573,'nl','type_your_reply','Typ uw antwoord','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8574,'nl','send_ticket','Ticket verzenden','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8575,'nl','load_more','Meer laden','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8576,'nl','jewelry__watches','sieraden','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8577,'nl','filters','Filters','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8578,'nl','contact_address','Contact adres','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8579,'nl','contact_phone','Contact telefoon','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8580,'nl','contact_email','Contact email','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8581,'nl','filter_by','Filteren op','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8582,'nl','condition','Staat','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8583,'nl','all_type','Alle soorten','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8584,'nl','pay_with_wallet','Betaal met portemonnee','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8585,'nl','select_variation','Selecteer variatie','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8586,'nl','no_product_added','Geen product toegevoegd','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8587,'nl','status_has_been_updated_successfully','Status is succesvol bijgewerkt','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8588,'nl','all_seller_packages','Alle pakketten van de verkoper','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8589,'nl','add_new_package','Nieuw pakket toevoegen','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8590,'nl','package_logo','Pakket Logo','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8591,'nl','days','dagen','2021-02-09 07:12:39','2021-02-09 07:12:39'),(8592,'nl','create_new_seller_package','Maak een nieuw verkoperspakket aan','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8593,'nl','package_name','Verpakkingsnaam','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8594,'nl','duration','Looptijd','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8595,'nl','validity_in_number_of_days','Geldigheid in aantal dagen','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8596,'nl','update_package_information','Update pakketinformatie','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8597,'nl','package_has_been_inserted_successfully','Pakket is succesvol geplaatst','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8598,'nl','refund_request','Verzoek om teruggave','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8599,'nl','reason','Reden','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8600,'nl','label','Label','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8601,'nl','select_label','Selecteer Label','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8602,'nl','multiple_select_label','Meerdere labels selecteren','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8603,'nl','radio_label','Radio-etiket','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8604,'nl','pickup_point_orders','Afhaalpunt bestellingen','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8605,'nl','view','Visie','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8606,'nl','order_','Bestellen #','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8607,'nl','order_status','Bestelstatus','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8608,'nl','total_amount','Totale hoeveelheid','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8609,'nl','total','TOTAAL','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8610,'nl','delivery_status_has_been_updated','Bezorgstatus is bijgewerkt','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8611,'nl','payment_status_has_been_updated','De betalingsstatus is bijgewerkt','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8612,'nl','invoice','FACTUUR','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8613,'nl','set_refund_time','Stel de terugbetalingstijd in','2021-02-09 07:12:39','2021-09-20 07:29:32'),(8614,'nl','set_time_for_sending_refund_request','Tijd instellen voor het verzenden van een restitutieverzoek','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8615,'nl','set_refund_sticker','Set restitutie sticker','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8616,'nl','sticker','Sticker','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8617,'nl','refund_request_all','Verzoek om terugbetaling allemaal','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8618,'nl','order_id','Order ID','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8619,'nl','seller_approval','Goedkeuring van de verkoper','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8620,'nl','admin_approval','Goedkeuring door de beheerder','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8621,'nl','refund_status','Restitutiestatus','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8622,'nl','no_refund','Geen terugbetaling','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8623,'nl','status_updated_successfully','Status succesvol bijgewerkt','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8624,'nl','user_search_report','User Search Report','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8625,'nl','search_by','Zoek met','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8626,'nl','number_searches','Aantal zoekopdrachten','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8627,'nl','sender','Afzender','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8628,'nl','receiver','Ontvanger','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8629,'nl','verification_form_updated_successfully','Verificatieformulier succesvol bijgewerkt','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8630,'nl','invalid_email_or_password','Ongeldig e-mailadres of wachtwoord','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8631,'nl','all_coupons','Alle kortingsbonnen','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8632,'nl','add_new_coupon','Nieuwe coupon toevoegen','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8633,'nl','coupon_information','Coupon-informatie','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8634,'nl','start_date','Begin datum','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8635,'nl','end_date','Einddatum','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8636,'nl','product_base','Productbasis','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8637,'nl','send_newsletter','Nieuwsbrief versturen','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8638,'nl','mobile_users','Mobiele gebruikers','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8639,'nl','sms_subject','SMS-onderwerp','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8640,'nl','sms_content','SMS-inhoud','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8641,'nl','all_flash_delas','Alle Flash Delas','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8642,'nl','create_new_flash_dela','Maak een nieuwe Flash Dela','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8643,'nl','page_link','pagina link','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8644,'nl','flash_deal_information','Flash Deal-informatie','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8645,'nl','background_color','Achtergrond kleur','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8646,'nl','0000ff','# 0000ff','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8647,'nl','text_color','Tekst kleur','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8648,'nl','white','Wit','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8649,'nl','dark','Donker','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8650,'nl','choose_products','Kies Producten','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8651,'nl','discounts','Kortingen','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8652,'nl','discount_type','Type korting','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8653,'nl','twillo_credential','Twillo-legitimatie','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8654,'nl','twilio_sid','TWILIO SID','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8655,'nl','twilio_auth_token','TWILIO AUTH TOKEN','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8656,'nl','twilio_verify_sid','TWILIO CONTROLEER SID','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8657,'nl','valid_twillo_number','GELDIG TWILLO AANTAL','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8658,'nl','nexmo_credential','Nexmo-referentie','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8659,'nl','nexmo_key','NEXMO SLEUTEL','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8660,'nl','nexmo_secret','NEXMO SECRET','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8661,'nl','ssl_wireless_credential','SSL Wireless-referentie','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8662,'nl','ssl_sms_api_token','SSL SMS API TOKEN','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8663,'nl','ssl_sms_sid','SSL SMS SID','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8664,'nl','ssl_sms_url','SSL-sms-URL','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8665,'nl','fast2sms_credential','Fast2SMS-legitimatie','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8666,'nl','auth_key','INLOGCODE','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8667,'nl','route','ROUTE','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8668,'nl','promotional_use','Promotiegebruik','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8669,'nl','transactional_use','Transactioneel gebruik','2021-02-09 07:12:40','2021-09-20 07:29:32'),(8670,'nl','sender_id','ZENDER ID','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8671,'nl','nexmo_otp','Nexmo OTP','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8672,'nl','twillo_otp','Twillo OTP','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8673,'nl','ssl_wireless_otp','SSL draadloze OTP','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8674,'nl','fast2sms_otp','Fast2SMS OTP','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8675,'nl','order_placement','Bestelling plaatsen','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8676,'nl','delivery_status_changing_time','Bezorgstatus Veranderende tijd','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8677,'nl','paid_status_changing_time','Betaalde statuswijzigingstijd','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8678,'nl','send_bulk_sms','Verzend bulk-sms','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8679,'nl','all_subscribers','Alle abonnees','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8680,'nl','coupon_information_adding','Couponinformatie toevoegen','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8681,'nl','coupon_type','Coupontype','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8682,'nl','for_products','Voor producten','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8683,'nl','for_total_orders','Voor totale bestellingen','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8684,'nl','add_your_product_base_coupon','Voeg uw productbasisbon toe','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8685,'nl','coupon_code','Coupon code','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8686,'nl','sub_category','Subcategorie','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8687,'nl','add_more','Voeg meer toe','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8688,'nl','add_your_cart_base_coupon','Voeg uw winkelwagen basiscoupon toe','2021-02-09 07:12:40','2021-09-20 07:29:33'),(8689,'nl','minimum_shopping','Minimaal winkelen','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8690,'nl','maximum_discount_amount','Maximaal kortingsbedrag','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8691,'nl','coupon_information_update','Update couponinformatie','2021-02-09 07:12:41','2021-09-20 07:29: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 07:12:41','2021-09-20 07:29:33'),(8693,'nl','configure_now','Nu configureren','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8694,'nl','total_published_products','Totaal aantal gepubliceerde producten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8695,'nl','total_sellers_products','Totaal aantal verkopersproducten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8696,'nl','total_admin_products','Totaal aantal beheerproducten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8697,'nl','manage_products','Beheer producten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8698,'nl','total_product_category','Totale productcategorie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8699,'nl','create_category','Categorie aanmaken','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8700,'nl','total_product_sub_sub_category','Totale productsubcategorie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8701,'nl','create_sub_sub_category','Maak een subsubcategorie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8702,'nl','total_product_sub_category','Totale productsubcategorie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8703,'nl','create_sub_category','Maak een subcategorie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8704,'nl','total_product_brand','Totaal productmerk','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8705,'nl','create_brand','Merk cre%�ren','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8706,'nl','total_sellers','Totaal aantal verkopers','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8707,'nl','total_approved_sellers','Totaal aantal goedgekeurde verkopers','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8708,'nl','total_pending_sellers','Totaal aantal openstaande verkopers','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8709,'nl','manage_sellers','Beheer verkopers','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8710,'nl','category_wise_product_sale','Categorie verstandige productverkoop','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8711,'nl','sale','Uitverkoop','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8712,'nl','category_wise_product_stock','Categorie verstandige productvoorraad','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8713,'nl','category_name','categorie naam','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8714,'nl','stock','Voorraad','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8715,'nl','frontend','Voorkant','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8716,'nl','home_page','Startpagina','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8717,'nl','setting','instelling','2021-02-09 07:12:41','2021-02-09 07:12:41'),(8718,'nl','policy_page','Beleidspagina','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8719,'nl','general','Algemeen','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8720,'nl','click_here','Klik hier','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8721,'nl','useful_link','Handige link','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8722,'nl','activation','Activering','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8723,'nl','smtp','SMTP','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8724,'nl','payment_method','Betalingswijze','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8725,'nl','social_media','Sociale media','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8726,'nl','business','Bedrijf','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8727,'nl','seller_verification','Verkopersverificatie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8728,'nl','form_setting','vorm instelling','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8729,'nl','language','Taal','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8730,'nl','dashboard','Dashboard','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8731,'nl','pos_system','POS-systeem','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8732,'nl','pos_manager','POS-manager','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8733,'nl','pos_configuration','POS-configuratie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8734,'nl','products','Producten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8735,'nl','add_new_product','Nieuw product toevoegen','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8736,'nl','all_products','Alle producten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8737,'nl','in_house_products','In-house producten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8738,'nl','seller_products','Producten van de verkoper','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8739,'nl','digital_products','Digitale producten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8740,'nl','bulk_import','Bulk importeren','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8741,'nl','bulk_export','Bulk exporteren','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8742,'nl','category','Categorie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8743,'nl','subcategory','Subcategorie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8744,'nl','sub_subcategory','Sub subcategorie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8745,'nl','brand','Merk','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8746,'nl','attribute','Attribuut','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8747,'nl','product_reviews','Product beoordelingen','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8748,'nl','sales','verkoop','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8749,'nl','all_orders','Alle bestellingen','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8750,'nl','inhouse_orders','Inhouse bestellingen','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8751,'nl','seller_orders','Verkoper bestellingen','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8752,'nl','pickup_point_order','Bestelling afhaalpunt','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8753,'nl','refunds','Restituties','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8754,'nl','refund_requests','Verzoeken om terugbetaling','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8755,'nl','approved_refund','Goedgekeurde terugbetaling','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8756,'nl','refund_configuration','Restitutieconfiguratie','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8757,'nl','customers','Klanten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8758,'nl','customer_list','Klantenlijst','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8759,'nl','classified_products','Geclassificeerde producten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8760,'nl','classified_packages','Geclassificeerde pakketten','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8761,'nl','sellers','Verkopers','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8762,'nl','all_seller','Alle verkoper','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8763,'nl','payouts','Uitbetalingen','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8764,'nl','payout_requests','Uitbetalingsverzoeken','2021-02-09 07:12:41','2021-09-20 07:29:33'),(8765,'nl','seller_commission','Verkoperscommissie','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8766,'nl','seller_packages','Verkoperspakketten','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8767,'nl','seller_verification_form','Verkopersverificatieformulier','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8768,'nl','reports','Rapporten','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8769,'nl','in_house_product_sale','Verkoop van eigen producten','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8770,'nl','seller_products_sale','Verkoop van verkoperproducten','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8771,'nl','products_stock','Producten Voorraad','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8772,'nl','products_wishlist','Producten verlanglijst','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8773,'nl','user_searches','Gebruikerszoekopdrachten','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8774,'nl','marketing','Marketing','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8775,'nl','flash_deals','Flash-deals','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8776,'nl','newsletters','Nieuwsbrieven','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8777,'nl','bulk_sms','Bulk SMS','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8778,'nl','subscribers','Abonnees','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8779,'nl','coupon','Coupon','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8780,'nl','support','Ondersteuning','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8781,'nl','ticket','Ticket','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8782,'nl','product_queries','Productvragen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8783,'nl','website_setup','Website instellen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8784,'nl','header','Header','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8785,'nl','footer','Voettekst','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8786,'nl','pages','Pagina\'s','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8787,'nl','appearance','Verschijning','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8788,'nl','setup__configurations','Installatie en configuraties','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8789,'nl','general_settings','Algemene instellingen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8790,'nl','features_activation','Functies activering','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8791,'nl','languages','Talen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8792,'nl','currency','Valuta','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8793,'nl','pickup_point','Ophaalpunt','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8794,'nl','smtp_settings','SMTP-instellingen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8795,'nl','payment_methods','Betaalmethodes','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8796,'nl','file_system_configuration','Bestandssysteemconfiguratie','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8797,'nl','social_media_logins','Aanmeldingen op sociale media','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8798,'nl','analytics_tools','Analytics-tools','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8799,'nl','facebook_chat','Facebook chat','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8800,'nl','google_recaptcha','Google reCAPTCHA','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8801,'nl','shipping_configuration','Verzendconfiguratie','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8802,'nl','shipping_countries','Verzendlanden','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8803,'nl','affiliate_system','Aangesloten systeem','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8804,'nl','affiliate_registration_form','Affiliate registratieformulier','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8805,'nl','affiliate_configurations','Affiliate configuraties','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8806,'nl','affiliate_users','Aangesloten gebruikers','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8807,'nl','referral_users','Verwijzende gebruikers','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8808,'nl','affiliate_withdraw_requests','Verzoeken om intrekking door een partner','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8809,'nl','offline_payment_system','Offline betalingssysteem','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8810,'nl','manual_payment_methods','Handmatige betalingsmethoden','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8811,'nl','offline_wallet_recharge','Offline portemonnee opladen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8812,'nl','offline_customer_package_payments','Offline klantpakketbetalingen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8813,'nl','offline_seller_package_payments','Offline verkoper pakketbetalingen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8814,'nl','paytm_payment_gateway','Paytm-betalingsgateway','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8815,'nl','set_paytm_credentials','Stel Paytm-inloggegevens in','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8816,'nl','club_point_system','Club Point-systeem','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8817,'nl','club_point_configurations','Club Point-configuraties','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8818,'nl','set_product_point','Productpunt instellen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8819,'nl','user_points','Gebruikerspunten','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8820,'nl','otp_system','OTP-systeem','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8821,'nl','otp_configurations','OTP-configuraties','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8822,'nl','set_otp_credentials','Stel OTP-inloggegevens in','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8823,'nl','staffs','Personeel','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8824,'nl','all_staffs','Alle medewerkers','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8825,'nl','staff_permissions','Machtigingen van het personeel','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8826,'nl','addon_manager','Addon Manager','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8827,'nl','browse_website','Bladeren door website','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8828,'nl','pos','POS','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8829,'nl','notifications','Meldingen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8830,'nl','new_orders','Nieuwe bevelen','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8831,'nl','userimage','gebruikersafbeelding','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8832,'nl','profile','Profiel','2021-02-09 07:12:42','2021-09-20 07:29:33'),(8833,'nl','logout','Uitloggen','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8834,'nl','page_not_found','Pagina niet gevonden!','2021-02-09 07:13:15','2021-09-20 07:29: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 07:13:15','2021-09-20 07:29:33'),(8836,'nl','registration','Registratie','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8837,'nl','i_am_shopping_for','Ik ben aan het winkelen voor ...','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8838,'nl','compare','Vergelijken','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8839,'nl','wishlist','Verlanglijst','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8840,'nl','cart','Winkelwagen','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8841,'nl','your_cart_is_empty','Uw winkelwagen is leeg','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8842,'nl','categories','Categorie%�n','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8843,'nl','see_all','Alles zien','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8844,'nl','seller_policy','Verkopersbeleid','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8845,'nl','return_policy','TERUGSTUURBELEID','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8846,'nl','support_policy','Ondersteuningsbeleid','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8847,'nl','privacy_policy','Privacybeleid','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8848,'nl','your_email_address','Jouw e-mailadres','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8849,'nl','subscribe','Abonneren','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8850,'nl','contact_info','Contact Info','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8851,'nl','address','Adres','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8852,'nl','phone','Telefoon','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8853,'nl','email','E-mail','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8854,'nl','login','Log in','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8855,'nl','my_account','Mijn rekening','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8856,'nl','order_history','Bestelgeschiedenis','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8857,'nl','my_wishlist','mijn wenslijst','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8858,'nl','track_order','Order volgen','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8859,'nl','be_an_affiliate_partner','Wees een aangesloten partner','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8860,'nl','be_a_seller','Wees een verkoper','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8861,'nl','apply_now','Nu toepassen','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8862,'nl','confirmation','Bevestiging','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8863,'nl','delete_confirmation_message','Bevestigingsbericht verwijderen','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8864,'nl','cancel','annuleren','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8865,'nl','delete','Verwijderen','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8866,'nl','item_has_been_added_to_compare_list','Artikel is toegevoegd aan de vergelijkingslijst','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8867,'nl','please_login_first','Log alstublieft eerst in','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8868,'nl','total_earnings_from','Totale inkomsten van','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8869,'nl','client_subscription','Klantabonnement','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8870,'nl','product_category','Product categorie','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8871,'nl','product_sub_sub_category','Product subsubcategorie','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8872,'nl','product_sub_category','Product subcategorie','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8873,'nl','product_brand','Product merk','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8874,'nl','top_client_packages','Top Client-pakketten','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8875,'nl','top_freelancer_packages','Top Freelancer-pakketten','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8876,'nl','number_of_sale','Aantal verkopen','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8877,'nl','number_of_stock','Aantal voorraad','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8878,'nl','top_10_products','Top 10 producten','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8879,'nl','top_12_products','Top 12 producten','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8880,'nl','admin_can_not_be_a_seller','Admin kan geen verkoper zijn','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8881,'nl','filter_by_rating','Filteren op beoordeling','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8882,'nl','published_reviews_updated_successfully','Gepubliceerde beoordelingen zijn bijgewerkt','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8883,'nl','refund_sticker_has_been_updated_successfully','Restitutiesticker is succesvol bijgewerkt','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8884,'nl','edit_product','Product bewerken','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8885,'nl','meta_images','Meta-afbeeldingen','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8886,'nl','update_product','Product bijwerken','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8887,'nl','product_has_been_deleted_successfully','Product is succesvol verwijderd','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8888,'nl','your_profile_has_been_updated_successfully','Uw profiel is succesvol bijgewerkt!','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8889,'nl','upload_limit_has_been_reached_please_upgrade_your_package','Uploadlimiet is bereikt. Upgrade uw pakket.','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8890,'nl','add_your_product','Voeg uw product toe','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8891,'nl','select_a_category','Selecteer een categorie','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8892,'nl','select_a_brand','Kies een merk','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8893,'nl','product_unit','Producteenheid','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8894,'nl','minimum_qty','Minimum aantal.','2021-02-09 07:13:15','2021-09-20 07:29:33'),(8895,'nl','product_tag','Productlabel','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8896,'nl','type__hit_enter','Typ en druk op enter','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8897,'nl','videos','Videos','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8898,'nl','video_from','Video van','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8899,'nl','video_url','Video URL','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8900,'nl','customer_choice','Keuze van de klant','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8901,'nl','pdf','Pdf','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8902,'nl','choose_pdf','Kies PDF','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8903,'nl','select_category','selecteer categorie','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8904,'nl','target_category','Doelcategorie','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8905,'nl','subsubcategory','subsubcategorie','2021-02-09 07:13:16','2021-02-09 07:13:16'),(8906,'nl','search_category','Zoek categorie','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8907,'nl','search_subcategory','Zoek in subcategorie','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8908,'nl','search_subsubcategory','Zoek in SubSubCategory','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8909,'nl','update_your_product','Update uw product','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8910,'nl','product_has_been_updated_successfully','Product is succesvol bijgewerkt','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8911,'nl','add_your_digital_product','Voeg uw digitale product toe','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8912,'nl','active_ecommerce_cms_update_process','Actief eCommerce CMS-updateproces','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8913,'nl','codecanyon_purchase_code','Codecanyon-aankoopcode','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8914,'nl','database_name','Database naam','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8915,'nl','database_username','Database gebruikersnaam','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8916,'nl','database_password','Database wachtwoord','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8917,'nl','database_hostname','Hostnaam van database','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8918,'nl','update_now','Update nu','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8919,'nl','congratulations','Gefeliciteerd','2021-02-09 07:13:16','2021-09-20 07:29: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 07:13:16','2021-09-20 07:29:33'),(8921,'nl','go_to_home','Ga naar huis','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8922,'nl','login_to_admin_panel','Log in op het beheerderspaneel','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8923,'nl','s3_file_system_credentials','S3 Bestandssysteemreferenties','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8924,'nl','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8925,'nl','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8926,'nl','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8927,'nl','aws_bucket','AWS_BUCKET','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8928,'nl','aws_url','AWS_URL','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8929,'nl','s3_file_system_activation','S3 Bestandssysteemactivering','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8930,'nl','your_phone_number','Jouw telefoon nummer','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8931,'nl','zip_file','Zip bestand','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8932,'nl','install','Installeren','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8933,'nl','this_version_is_not_capable_of_installing_addons_please_update','Deze versie kan geen add-ons installeren. Update.','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8934,'nl','search_in_menu','Zoeken in menu','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8935,'nl','uploaded_files','Ge%]%ploade bestanden','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8936,'nl','shipping_cities','Verzendsteden','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8937,'nl','system','Systeem','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8938,'nl','server_status','Server Status','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8939,'nl','nothing_found','niets gevonden','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8940,'nl','parent_category','Bovenliggende categorie','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8941,'nl','level','Niveau','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8942,'nl','category_information','Categorie-informatie','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8943,'nl','translatable','Vertaalbaar','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8944,'nl','no_parent','Geen ouder','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8945,'nl','physical','Fysiek','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8946,'nl','digital','Digitaal','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8947,'nl','200x200','200x200','2021-02-09 07:13:16','2021-02-09 07:13:16'),(8948,'nl','32x32','32x32','2021-02-09 07:13:16','2021-02-09 07:13:16'),(8949,'nl','search_your_files','Zoek uw bestanden','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8950,'nl','category_has_been_updated_successfully','Categorie is succesvol bijgewerkt','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8951,'nl','all_uploaded_files','Alle ge%]%ploade bestanden','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8952,'nl','upload_new_file','Upload een nieuw bestand','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8953,'nl','all_files','Alle bestanden','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8954,'nl','search','Zoeken','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8955,'nl','details_info','Details Info','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8956,'nl','copy_link','Kopieer link','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8957,'nl','are_you_sure_to_delete_this_file','Weet u zeker dat u dit bestand wilt verwijderen?','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8958,'nl','file_info','Bestandsinformatie','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8959,'nl','link_copied_to_clipboard','Link gekopieerd naar klembord','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8960,'nl','oops_unable_to_copy','Oeps, kan niet kopi%�ren','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8961,'nl','file_deleted_successfully','Bestand succesvol verwijderd','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8962,'nl','add_new_brand','Nieuw merk toevoegen','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8963,'nl','120x80','120 x 80','2021-02-09 07:13:16','2021-02-09 07:13:16'),(8964,'nl','brand_information','Merkinformatie','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8965,'nl','brand_has_been_updated_successfully','Merk is succesvol bijgewerkt','2021-02-09 07:13:16','2021-09-20 07:29:33'),(8966,'nl','brand_has_been_deleted_successfully','Merk is succesvol verwijderd','2021-02-09 07:13:16','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:33'),(8971,'nl','save_product','Product opslaan','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8972,'nl','product_has_been_inserted_successfully','Het product is succesvol geplaatst','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8973,'nl','something_went_wrong','Er is iets fout gegaan!','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8974,'nl','sorry_for_the_inconvenience_but_were_working_on_it','Excuses voor het ongemak, maar we werken eraan.','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8975,'nl','error_code','Foutcode','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:33'),(8977,'nl','order','Bestellen','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:33'),(8979,'nl','home_banner_3_max_3','Home Banner 3 (max. 3)','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8980,'nl','add_new_seller','Nieuwe verkoper toevoegen','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8981,'nl','filter_by_approval','Filteren op goedkeuring','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8982,'nl','nonapproved','Niet goedgekeurd','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8983,'nl','type_name_or_email__enter','Typ naam of e-mailadres en voer in','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8984,'nl','due_to_seller','Vanwege verkoper','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8985,'nl','log_in_as_this_seller','Log in als deze verkoper','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8986,'nl','go_to_payment','Ga naar Betalen','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8987,'nl','ban_this_seller','Verbied deze verkoper','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8988,'nl','do_you_really_want_to_ban_this_seller','Wil je deze verkoper echt verbannen?','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8989,'nl','proceed','Doorgaan!','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8990,'nl','approved_sellers_updated_successfully','Goedgekeurde verkopers zijn bijgewerkt','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8991,'nl','seller_has_been_deleted_successfully','De verkoper is succesvol verwijderd','2021-02-09 07:13:17','2021-09-20 07:29:33'),(8992,'nl','seller_information','Verkopersinformatie','2021-02-09 07:13:17','2021-09-20 07:29:34'),(8993,'nl','seller_has_been_inserted_successfully','De verkoper is met succes geplaatst','2021-02-09 07:13:17','2021-09-20 07:29:34'),(8994,'nl','email_already_exists','E-mailadres bestaat al!','2021-02-09 07:13:17','2021-09-20 07:29:34'),(8995,'nl','verify_your_email_address','Verifieer je e-mailadres','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(8997,'nl','if_you_did_not_receive_the_email','Als u de e-mail niet heeft ontvangen.','2021-02-09 07:13:17','2021-09-20 07:29:34'),(8998,'nl','click_here_to_request_another','Klik hier om een ������nieuwe aan te vragen','2021-02-09 07:13:17','2021-09-20 07:29:34'),(8999,'nl','email_verification','email verificatie','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9000,'nl','email_verification__','Email verificatie -','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9001,'nl','https_activation','HTTPS-activering','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9002,'nl','maintenance_mode','onderhoudsstand','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9003,'nl','maintenance_mode_activation','Activering onderhoudsmodus','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9004,'nl','classified_product_activate','Geclassificeerd product activeren','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9005,'nl','classified_product','Geclassificeerd product','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9006,'nl','business_related','Zakelijk gerelateerd','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9007,'nl','vendor_system_activation','Vendor System Activation','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9008,'nl','wallet_system_activation','Wallet-systeemactivering','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9009,'nl','coupon_system_activation','Activering couponsysteem','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9010,'nl','pickup_point_activation','Activering afhaalpunt','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9011,'nl','conversation_activation','Conversatie-activering','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9012,'nl','guest_checkout_activation','Activering van het uitchecken als gast','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9013,'nl','categorybased_commission','Categorie-gebaseerde commissie','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9015,'nl','set_commisssion_now','Stel nu de Commissie in','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9016,'nl','payment_related','Betaling gerelateerd','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9017,'nl','paypal_payment_activation','Paypal-betalingsactivering','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9019,'nl','stripe_payment_activation','Activering van Stripe-betaling','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9020,'nl','sslcommerz_activation','SSlCommerz-activering','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9021,'nl','instamojo_payment_activation','Activering van Instamojo-betalingen','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9023,'nl','razor_pay_activation','Razor Pay-activering','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9025,'nl','paystack_activation','PayStack-activering','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9027,'nl','voguepay_activation','VoguePay-activering','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9029,'nl','payhere_activation','Payhere-activering','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9030,'nl','ngenius_activation','Ngenius-activering','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9032,'nl','iyzico_activation','Iyzico-activering','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9034,'nl','bkash_activation','Bkash-activering','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9036,'nl','nagad_activation','Nagad-activering','2021-02-09 07:13:17','2021-09-20 07:29: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 07:13:17','2021-09-20 07:29:34'),(9038,'nl','cash_payment_activation','Activering van contante betaling','2021-02-09 07:13:17','2021-09-20 07:29:34'),(9039,'nl','social_media_login','Inloggen op sociale media','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9040,'nl','facebook_login','Facebook login','2021-02-09 07:13:18','2021-09-20 07:29: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 07:13:18','2021-09-20 07:29:34'),(9042,'nl','google_login','Google-login','2021-02-09 07:13:18','2021-09-20 07:29: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 07:13:18','2021-09-20 07:29:34'),(9044,'nl','twitter_login','Twitter login','2021-02-09 07:13:18','2021-09-20 07:29: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 07:13:18','2021-09-20 07:29:34'),(9046,'nl','shop_logo','Winkel Logo','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9047,'nl','shop_address','Winkel adres','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9048,'nl','banner_settings','Banner-instellingen','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9049,'nl','banners','Banners','2021-02-09 07:13:18','2021-09-20 07:29: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 07:13:18','2021-09-20 07:29:34'),(9051,'nl','insert_link_with_https_','Voeg een link in met https','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9052,'nl','your_shop_has_been_updated_successfully','Uw winkel is succesvol bijgewerkt!','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9053,'nl','search_result_for_','Zoekresultaat voor','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9054,'nl','brand_has_been_inserted_successfully','Merk is succesvol ingevoegd','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9055,'nl','about','Over','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9056,'nl','payout_info','Uitbetalingsinformatie','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9057,'nl','bank_acc_name','Bank Acc Naam','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9058,'nl','bank_acc_number','Bankrekeningnummer','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9059,'nl','total_products','Totaal producten','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9060,'nl','total_sold_amount','Totaal verkocht bedrag','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9061,'nl','wallet_balance','Wallet-saldo','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9062,'nl','cookies_agreement','Cookies-overeenkomst','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9063,'nl','cookies_agreement_text','Tekst van cookiesovereenkomst','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9064,'nl','show_cookies_agreement','Cookies-overeenkomst weergeven?','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9065,'nl','custom_script','Aangepast script','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9066,'nl','header_custom_script__before_head','Header aangepast script - v%%%%r </head>','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9067,'nl','write_script_with_script_tag','Schrijf script met <script> -tag','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9068,'nl','footer_custom_script__before_body','Footer custom script - voor </body>','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9069,'nl','category_has_been_inserted_successfully','Categorie is succesvol ingevoegd','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9070,'nl','all_flash_deals','Alle Flash-deals','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9071,'nl','create_new_flash_deal','Maak een nieuwe Flash-deal','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9072,'nl','ffffff','#FFFFFF','2021-02-09 07:13:18','2021-09-20 07:29: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 07:13:18','2021-09-20 07:29:34'),(9074,'nl','flash_deal_has_been_inserted_successfully','Flash Deal is succesvol ingevoegd','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9075,'nl','flash_deal_status_updated_successfully','Status van Flash-deal is bijgewerkt','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9076,'nl','flash_deal_has_been_updated_successfully','Flash Deal is succesvol bijgewerkt','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9077,'nl','update_language_info','update taalinfo','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9078,'nl','language_has_been_updated_successfully','Taal is succesvol bijgewerkt','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9079,'nl','type_key__enter','Typ key & Enter','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9080,'nl','translations_updated_for_','Vertalingen bijgewerkt voor','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9081,'nl','language_has_been_inserted_successfully','De taal is met succes ingevoerd','2021-02-09 07:13:18','2021-09-20 07:29:34'),(9082,'af','all_category','%]%%�%�%� %#%]% %�%�j%�%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9083,'af','all','%]%%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9084,'af','flash_sale','%�%�j%$% %[%%�%�j%�%','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9085,'af','view_more','%�%�j%�% %� %�%�j%�%%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9086,'af','add_to_wishlist','%[%%� %�%�%�%� %� %#�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9087,'af','add_to_compare','%[%j%�%j%�%�%� %#%�%�%� %#�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9088,'af','add_to_cart',' %#j%�j%�%%]% j%�%� �%��%� j%�j%b%j%�%�%� %# %�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9089,'af','club_point','j%� %#%�j%� %�j%��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9090,'af','classified_ads','%�j%�j%�%%� j%�j%c%%�j%�%�%�%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9091,'af','used',' %#j%�j%�%%�%� j%$%%��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9092,'af','top_10_categories','j%Q%%�j%�%%� 10 %#%]% %�%�j%�%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9093,'af','view_all_categories','%]%%�%��%� %#%]% %�%�j%�%�%� %� %�%�j%�%j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9094,'af','top_10_brands','j%Q%%�j%�%%� 10 %� %��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9095,'af','view_all_brands','%]%%�%��%� %� %��%� %� %�%�j%�%j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9096,'af','terms__conditions','j%$%j%�%j%��%�j%V% j%�%� %�%�j%�%j%�%j%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9097,'af','best_selling','j%Q%%�j%�%%� %[%%�%�j%�%','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9098,'af','top_20','j%Q%%�j%�%%� 20','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9099,'af','featured_products','j%� Feat%� j%$%%�%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9100,'af','best_sellers','j%Q%%�j%�%%� %[%%�%�j%�%%�%� %#%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9101,'af','visit_store','%[%%�%�j%�%%� %�%� j%�%� %�j%�% %�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9102,'af','popular_suggestions','%�j%$%%�%�j%�% %� %�j%�%�j%��%�j%�%%�%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9103,'af','category_suggestions',' %#%]% %�%�j%�%�%� %� %�j%�%�j%��%�j%�%%�%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9104,'af','automobile__motorcycle','%�%�%]%j%�% j%�%� %�%�%]%j%�%j%%j%��%� %#%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9105,'af','price_range','j%� %�j%�%j%� j%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9106,'af','filter_by_color','j%� j%�%%� %� %[%%� %�j%�j%%j%V%%� %�j%�ter %# %�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9107,'af','home',' %#%�j%�%','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9108,'af','newest','%�%��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9109,'af','oldest','j%�%%� %�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9110,'af','price_low_to_high','%�j%�%j%� %]%�%�%]% j%�%� %�%� %�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9111,'af','price_high_to_low','%�j%�%j%� %�%� %]%�%�%]%�%� %# %��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9112,'af','brands','%� %��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9113,'af','all_brands','%]%%�%��%� %� %��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9114,'af','all_sellers','%]%%�%� %[%%�%�j%�%%�%� %#%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9115,'af','inhouse_product','j%� %#%�j%�% j%�%�%�%� %�j%�j%a%%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9116,'af','message_seller','j%� %[%�%�j%Q%j%�%� %[%%�%�j%�%%�%� %#�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9117,'af','price','%��%�%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9118,'af','discount_price','j%�j%�%��%�%� %��%�%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9119,'af','color','j%�%%� %�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9120,'af','quantity','%�%�j%�j%�j%�%','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9121,'af','available','j%$%j%�%�%� %�j%�%%�','2021-02-09 07:16:49','2021-02-09 07:16:49'),(9122,'af','total_price','%]%%�%� %��%�%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9123,'af','out_of_stock','%[%%�%�j%�%%� j%$%%�%� j%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9124,'af','refund','j%��%�j%�%j%�%� %�j%�% %#%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9125,'af','share','j%$%j%�%�%� %# %# %�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9126,'af','sold_by','%�j%�%�j%� %�%[%%�%�j%�%%� j%$%%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9127,'af','customer_reviews','j%� %[%�%�j%�%%�j%�%�%� %#%� j%��%�j%� %#j%�%��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9128,'af','top_selling_products','j%� %[%%�%�j%�% j%Q%%�j%�%%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9129,'af','description','j%�%�j%b%%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9130,'af','video','%��%� %��%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9131,'af','reviews','j%��%�j%� %#j%�%��%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9132,'af','download',' %�j%�%�%�%�%� %�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9133,'af','there_have_been_no_reviews_for_this_product_yet','j%�j%�% j%��%� j%�%�%� j%� j%��%� %�j%�j%a%%�%� %�%[%j%�j%�%%� %��%� %� j%��%�j%� %#j%�%�%� %�%� j%�%� j%$%%��%�.','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9134,'af','related_products','j%� %�%�%�j%� j%�%�%�%�j%�j%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9135,'af','any_query_about_this_product','j%� j%��%� %�j%�j%a%%�%� %[%%� j%� %�%� %#%�%�%� %[%%� %�j%�%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9136,'af','product_name','j%� %�j%�j%a%%�%� %�%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9137,'af','your_question','j%%j%�j%� %[%%� %�j%�%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9138,'af','send','%�%��%� %�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9139,'af','use_country_code_before_number','j%� %�%�j%�j%�% j%�%�j%�%� j%� %��%�%�j%�j%� %#%� %� %� %#j%�j%�%%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9140,'af','remember_me','%�j%� %[%%� �%�j%�j%� %�%�j%�%%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9141,'af','dont_have_an_account','j%� %#j%�%�%�%]% %�%� %�j%�%�%�j%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9142,'af','register_now','j%�%�j%% �%� j%�j%�j%� %# %�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9143,'af','or_login_with','�%�j%� j%%j%�%%� %�%�%�j%�%�','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9144,'af','oops','j%�%�%� ..','2021-02-09 07:16:49','2021-09-20 07:29:34'),(9145,'af','this_item_is_out_of_stock','j%�j%� j%�%� %#�%� j%�%�j%�% j%��%�!','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9146,'af','back_to_shopping','j%��%�j%�%j%�%� j%$%j%�%[%�%�%� %� j%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9147,'af','login_to_your_account','j%�%[%%� j%�j%%j%�j%� j%�%� %�%�%�j%�%�.','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9148,'af','purchase_history','j%� %[%�%�j%�%%�j%� j%�j%�j%�%�%�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9149,'af','new','%�%��%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9150,'af','downloads',' %# %�j%�%� %#%�%�%��%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9151,'af','sent_refund_request','j%� %��%� %�%� j%$%%�%� j%��%�j%�%j%�%� j%%j%�%�%�%�%� j%Q%%� %�j%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9152,'af','product_bulk_upload','j%� %�j%�j%a%%�%� j%�%� %# j%�%[%%�%� %�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9153,'af','orders','j%�%�j%�%%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9154,'af','recieved_refund_request','j%� j%��%�j%�%j%�%� j%%j%�%��%�j%�%� j%Q%%� %�j%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9155,'af','shop_setting','j%� %[%%�%�j%�%%� %�%� j%�%�j%U%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9156,'af','payment_history','j%� j%�j%�j%��%��%� j%�j%�j%�%�%�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9157,'af','money_withdraw','j%� %[%�%�j%%%� j%��%�j%�%j%�%� j%�j%��%�j%%j%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9158,'af','conversations','j%�j%�j%�%�%� j%�j%�j%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9159,'af','my_wallet','j%�%%�j%� j%�%]%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9160,'af','earning_points','j%� j%c%j%��%�j%� %]% %#%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9161,'af','support_ticket','j%� %�%�j%�j%� %� %]%�%� %#%]%','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9162,'af','manage_profile','%[%j%�%%�%�j%��%�%� j%%%�j%�j%�%� %# %�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9163,'af','sold_amount','%�%[%%�%�j%�%%� j%$%%��%� %[%�%�j%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9164,'af','your_sold_amount_current_month','j%%j%�j%�j%%%� j%� %[%%�%�j%�% %�%�j%�j%�j%�% (j%�%%�j%�%�%� %��%�j%�j%$%j%�)','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9165,'af','total_sold','%]%%�%� %�%[%%�%�j%�%%� j%$%%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9166,'af','last_month_sold','j%��%�j%�%%� %��%�j%�j%$%j%� %�%[%%�%�j%�%%� j%$%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9167,'af','total_sale','%]%%�%� %[%%�%�j%�%','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9168,'af','total_earnings','%]%%�%�%� j%c%j%��%�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9169,'af','successful_orders','j%�j%�%�%�j%�%�%� j%�%�j%�%%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9170,'af','total_orders','%]%%�%� j%�%�j%�%%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9171,'af','pending_orders','%�%�j%�j%U%j%�% %[%j%�j%��%� %#�%�j%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9172,'af','cancelled_orders','%�j%Q%%�%� j%$%%�%� j%� %#%�%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9173,'af','product','%�j%�j%a%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9174,'af','purchased_package','%[%�%�j%�%%�j%�%� j%$%%��%� %��%� %��%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9175,'af','package_not_found','j%�%� %�%� %�%�%� %�%�%�j%�%� j%$%%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9176,'af','upgrade_package','j%�%� %�%� %�%� %�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9177,'af','shop','%[%%�%�j%�%%� %��%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9178,'af','manage__organize_your_shop','j%�%[%%� j%�%� %#j%�%� j%�j%�j%�j%�%%� j%�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9179,'af','go_to_setting','j%�%�j%U%�%�%� %#%�%�%� j%�%� %�j%� %� j%$%%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9180,'af','payment','j%�j%�j%��%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9181,'af','configure_your_payment_method','j%%j%�j%�j%%%� j%� j%�j%�j%��%��%� %��%�j%�%�j%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9182,'af','my_panel','j%�%%�j%� %[%�%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9183,'af','item_has_been_added_to_wishlist','j%�%� %#�%� %[%%� %��%�j%%j%� %#�%� j%$%j%�%�%� j%$%%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9184,'af','my_points','j%�%%�j%� %� %��%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9185,'af','_points','%]% %#%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9186,'af','wallet_money','j%� %�j%�%�%]% %[%�%�j%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9187,'af','exchange_rate','j%� j%�j%�j%�j%�%��%� %�j%�%j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9188,'af','point_earning_history','%]% %#�%� j%� j%�j%�j%%j%�%�%� j%�j%�j%�%�%�j%� %�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9189,'af','date','%��%�%]%%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9190,'af','points','%]% %#%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9191,'af','converted','j%�j%�%� j%$%%��%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9192,'af','action','j%c%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9193,'af','no_history_found','%��%� %� j%�j%�j%�%�%�j%� %�%�%� %�%�%�j%�%� j%$%%�.','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9194,'af','convert_has_been_done_successfully_check_your_wallets','j%�j%�%�%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�%j%%j%�%%� j%$%%�%� j%�%[%%� j%�%c%%��%� %��%� %# %# %�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9195,'af','something_went_wrong',' %#%�%�%� j%��%�j%�%%�j%�%�%� %�j%$%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9196,'af','remaining_uploads','%[%j%�j%��%� j%�%[%%�%� %�%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9197,'af','no_package_found','%��%� %� j%�j%%j%�%� %�%�%� %�%�%�j%�%� j%$%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9198,'af','search_product','j%� %�j%�j%a%%�%� %�%]%%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9199,'af','name','%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9200,'af','current_qty','j%�%�j%%%��%� %�%�j%�j%�j%�%','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9201,'af','base_price','j%�j%%j%�j%% %��%�%�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9202,'af','published','j%�%[%%�j%�% j%$%%��%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9203,'af','featured','j%� .%� j%$%%��%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9204,'af','options','j%Q%%�j%�%j%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9205,'af','edit','j%%%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9206,'af','duplicate','%�%�%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9207,'af','1_download_the_skeleton_file_and_fill_it_with_data','1. j%� j%% %#%��%�%]%%�%� %�j%��%�%� %�j%�%�%�%�%� %� %# %�j%� j%�%� j%� %�j%c%%�%�%�j%�j%�%� j%%j%�%%� �%��%� %� %# %# %�j%�.','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9208,'af','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2. j%�j%�j%%%� %#%�%��%� j%$%j%� j%� %�j%�j%�%� %�j%��%�%� %�j%�%�%�%�%� %� %# %�j%� j%�j%�% %�%� %[%%�%� j%$%j%� %��%� %�j%�%]%j%� j%�j%��%�j%� %�%� %�%� %� %#%� j%$%%�.','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9209,'af','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3. �%�%� %�%� %��%� j%�j%�j%%%� j%� j%% %#%��%�%]%%�%� %�j%��%�%� %�j%�%�%�%�%� %� j%�%� %� %# %# %�j%� j%� j%�j%� %�j%�%�j%��%� %�j%�j%�%%� %#�%� j%�%[%%�%� %� %# %�j%� j%�%� %�j%%%[%j%�j%�%j%�.','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9210,'af','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4. j%� %�j%�j%a%%�%�j%�j%�%� j%�%[%%�%� %� %#%�%�%� %�j%�%%�j%%j%�%� j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%�%��%� j%�%�j%U%�%�%� %# %�j%� j%�%� j%� %�j%�j%a%%�%�j%�j%�%� j%c% %#j%%%�%�%� j%�%� j%�%�j%�j%�j%�j%�%�%�%� j%�%�j%U%�%�%� %# %�j%�.','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9211,'af','download_csv','CSV %�j%�%�%�%�%� %� %# %�j%�','2021-02-09 07:16:50','2021-09-20 07:29:34'),(9212,'af','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1. %#%]% %�%�j%�%�%� j%� %�j%�%j%c%%� %#%]% %�%�j%�%�%� j%� %�j%�%j%c%%� %�j%�% %#%]% %�%�j%�%�%� j%�%� j%�j%�%j%�%� %� j%�j%��%�j%� %[%%� j%$%%��%�j%�%%� j%��%� %�%�%�%� %#�%� %�%�.','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9213,'af','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. j%�j%�j%%%� %#%�%��%� j%$%j%� j%� %#%]% %�%�j%�%�%� j%� %�j%�%j%c%%� %#%]% %�%�j%�%�%� j%� %�j%�%j%c%%� %�j%�% %#%]% %�%�j%�%�%� j%�%� j%�j%�%j%�%� %� ID j%�j%�%%�j%�j%%%� %#%�%�%� %�%[%j%�j%�%%� pdf %�j%�%�%�%�%� %� %# %�j%�.','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9214,'af','download_category',' %�j%�%�%�%�%� %� %#%]% %�%�j%�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9215,'af','download_sub_category',' %�j%�%�%�%�%� %� %�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9216,'af','download_sub_sub_category','j%� %�j%�%j%c%%� %�j%�% %#%]% %�%�j%�%�%� %�j%�%�%�%�%� %� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9217,'af','download_brand',' %�j%�%�%�%�%� %�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9218,'af','upload_csv_file','j%� CSV %�j%��%�%� j%�%[%%�%� %� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9219,'af','csv','CSV','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9220,'af','choose_csv_file','j%� CSV %�j%��%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9221,'af','upload','j%�%[%%�%� %�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9222,'af','add_new_digital_product','%�%��%� %��%�j%��%�%]%%� %�j%�j%a%%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9223,'af','available_status','%�%�j%�%�j%� j%�j%�%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9224,'af','admin_status','j%� j%�j%�j%�j%�%�%� j%�j%�%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9225,'af','pending_balance','j%�%�j%�j%�%%� %[%j%�j%��%� j%��%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9226,'af','send_withdraw_request','j%� j%��%�j%�%j%�%� j%%j%�%��%�j%�%� j%Q%%� %�j%�%�%� %�%��%� %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9227,'af','withdraw_request_history','j%� j%�j%�%j%�%�j%�j%%j%� j%�j%�j%�%�%�j%� j%��%�j%�%j%�%� j%�%j%� %�j%�% %�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9228,'af','amount','%�%�j%�j%�j%�%','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9229,'af','status','j%�j%�%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9230,'af','message','%[%�%�j%Q%j%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9231,'af','send_a_withdraw_request','j%� j%��%�j%�%j%�%� j%%j%�%��%�j%�%� j%Q%%� %�j%�%�%� %�%��%� %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9232,'af','basic_info','%�%�%� %�%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9233,'af','your_phone','j%%j%�j%�j%%%� j%�%��%�%�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9234,'af','photo','j%c% %#j%%','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9235,'af','browse','%�%]%%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9236,'af','your_password','j%%j%�j%�j%%%� j%�%%�j%�%','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9237,'af','new_password','%�%�j%� %[%%]% %�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9238,'af','confirm_password','%[%j%�j%%%�j%�% %� j%�j%��%��%�j%� %# %�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9239,'af','add_new_address','%�%��%� %[%j%�%� j%�j%b%j%�%�%� %# %�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9240,'af','payment_setting','j%� j%�j%�j%��%��%� j%�%�j%U%�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9241,'af','cash_payment','%�j%Q%j%�%� j%�j%�j%��%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9242,'af','bank_payment','j%� j%�j%�%� %# j%�j%�j%��%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9243,'af','bank_name','j%� j%�j%�%� %# %�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9244,'af','bank_account_name','j%� j%�j%�%� %#%� j%�j%%j%�j%� %�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9245,'af','bank_account_number','j%� j%�j%�%� %#%� j%�j%%j%�j%� j%$%%��%�j%�%%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9246,'af','bank_routing_number','j%� j%�j%�%� %# j%� j%�%j%�%�j%�%�%� j%$%%��%�j%�%%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9247,'af','update_profile','j%�j%�j%�%%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9248,'af','change_your_email','j%�%[%%� j%�j%�%�%� %�%�j%�%��%� %# j%�j%�%� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9249,'af','your_email','j%%j%�j%� j%�j%�%�%� %�%�j%�%��%� %#','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9250,'af','sending_email','j%� j%�j%�%�%� %�%�j%�%��%� %# %��%� %�%� ...','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9251,'af','verify','j%�j%a%j%��%�%� %#%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9252,'af','update_email','j%�j%�j%�%%� j%�j%�%�%� %�%�j%�%��%� %#','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9253,'af','new_address','%�%��%� %[%j%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9254,'af','your_address','j%%j%�j%�j%%%� %[%j%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9255,'af','country','%��%�%�j%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9256,'af','select_your_country','j%�%[%%� %��%�%�j%�j%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9257,'af','city',' %�j%�j%�%','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9258,'af','your_city','j%%j%�j%�j%%%� %�j%�j%�%','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9259,'af','your_postal_code','j%%j%�j%�j%%%� j%� %[%%�j%%j%�%� %#%� %�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9260,'af','880','+880','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9261,'af','save','j%�%�%�j%�%� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9262,'af','received_refund_request','j%� j%��%�j%�%j%�%� j%%j%�%��%�j%�%� j%Q%%� %�j%�%�%� j%�j%�%%�j%�j%%%� j%$%%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9263,'af','delete_confirmation','j%�j%�%�j%�%%� %�%� %�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9264,'af','are_you_sure_to_delete_this','j%��%�j%� j%�%� j%�j%�%�j%�%%� �%��%� %��%� j%�j%� %�%� %�%�%� j%Q%%�j%� %��%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9265,'af','premium_packages_for_sellers','j%� %[%%�%�j%�%%�%� %#%� %�%[%j%�j%�%%� %[%j%�%�%�%��%�%� %# %�%� %��%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9266,'af','product_upload','j%� %�j%�j%a%%�%� %[%%�j%�%j%�%� %#%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9267,'af','digital_product_upload','j%� %��%�j%��%�%]%%� %�j%�j%a%%�%� j%�%[%%�%� %�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9268,'af','purchase_package','j%� %[%�%�j%�%%�j%� j%�%� %�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9269,'af','select_payment_type','j%� j%�j%�j%��%��%� %�%�%� %�%]%j%� %#j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9270,'af','payment_type','j%� %[%�%�j%%%� %�%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9271,'af','select_one','�%�%� �%��%� %�%]%j%� %#j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9272,'af','online_payment','j%�%�%�j%��%�%� j%�j%�j%��%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9273,'af','offline_payment','j%�%�%�j%��%�%� j%�j%�j%��%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9274,'af','purchase_your_package','j%�%[%%� %# %�%� %�%� %�j%�j%�%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9275,'af','paypal','j%�j%�j%��%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9276,'af','stripe','%[%%]%%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9277,'af','sslcommerz','sslcommerz','2021-02-09 07:16:51','2021-02-09 07:16:51'),(9278,'af','confirm','j%�j%a%j%��%�%� �%��%� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9279,'af','offline_package_payment','j%� %[%�%�j%%%� j%�%�%�j%��%�%� j%�j%�j%��%�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9280,'af','transaction_id','j%� j%�%j%� %# %��%� %�j%�% %# %��%� %[%�%� %�%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9281,'af','choose_image','j%�%� %�%�j%�% j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9282,'af','code',' %#%� %�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9283,'af','delivery_status','j%�j%�%��%�%�%� j%�j%�%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9284,'af','payment_status','j%� j%�j%�j%��%��%� %�j%b%j%c%�%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9285,'af','paid','j%�j%�j%��%�%� j%$%%��%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9286,'af','order_details','j%� j%%%[%j%�j%�%%��%� j%�%�j%b%�%�j%�j%�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9287,'af','download_invoice','j%�%�%�j%�j%�j%% %�j%�%�%�%�%� %� %# %�j%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9288,'af','unpaid','j%��%� j%�j%�j%��%�%� j%$%%��%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9289,'af','order_placed','j%�j%�% %�j%�% %�j%�% %# %�%� j%$%%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9290,'af','confirmed','j%�j%a%j%��%�%� j%$%%��%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9291,'af','on_delivery','%[%%� j%�j%�%��%�%� %#�%�','2021-02-09 07:16:51','2021-09-20 07:29:34'),(9292,'af','delivered','%�j%�% %# %�%� j%$%%��%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9293,'af','order_summary','j%� %�%� %��%�j%�% %�%� %��%�j%�%','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9294,'af','order_code','j%� j%�%�j%�% %#%� %�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9295,'af','customer','%[%�%�j%�%%�j%�%�%� %#�%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9296,'af','total_order_amount','j%� j%�%�j%�% %�j%�%�%�j%c%%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9297,'af','shipping_metdod','j%�j%�j%�% %� %�%�%� %��%�%]% %�%� %�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9298,'af','flat_shipping_rate','j%� %�%��%�%]% j%�j%�j%�% %� %�%�%� %�j%�%j%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9299,'af','payment_metdod','j%� j%�j%�j%��%��%� %��%�%]%%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9300,'af','variation','j%�j%Q%�%�j%�%','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9301,'af','delivery_type','j%�j%�%��%�%� %�%�%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9302,'af','home_delivery',' %#%�j%�% %� %�j%�%�j%��%� %#%�%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9303,'af','order_ammount','j%� j%�%�j%�% %�%�j%�j%�j%�%','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9304,'af','subtotal','%]%%�%�%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9305,'af','shipping','%��%� %�j%�%�%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9306,'af','coupon_discount','j%� %#%�%[%%� j%�j%�%��%�%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9307,'af','na','N / A','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9308,'af','in_stock','%[%%� %�j%�j%�%� %# %�%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9309,'af','buy_now','%�%�j%�j%� j%�%�j%% %[%�%�j%�%%�','2021-02-09 07:16:52','2021-09-20 07:29:34'),(9310,'af','item_added_to_your_cart','j%�%� %#%� j%%j%�j%�j%%%� %[%%� %�%�%]%j%�% %#�%� j%�j%b%j%�%�%� %# %�%�!','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9311,'af','proceed_to_checkout',' %��%� %# j%�%�%]% j%�%� %�j%� %�j%$%j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9312,'af','cart_items','j%� %#j%�j%�%%]% j%�%� %#%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9313,'af','1_my_cart','1. j%�%%�j%� %�%�%]%j%�%','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9314,'af','view_cart',' %�j%� %��%� %� %�%�j%�%j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9315,'af','2_shipping_info','2. j%� %��%� %�%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9316,'af','checkout','j%�j%$%%[% %� �%� %� %�%�j%�%%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9317,'af','3_delivery_info','j%� j%�j%�%��%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9318,'af','4_payment','4. j%�j%�j%��%�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9319,'af','5_confirmation','5. j%�j%��%��%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9320,'af','remove','%�j%�%�%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9321,'af','return_to_shop','%[%%�%�j%�%%� %�%� j%�%� j%�%j%�j%%j%�%�%� j%$%%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9322,'af','continue_to_shipping','j%�j%�j%�% %� %�%�%� j%�%� j%�%�j%�%� %�j%�% %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9323,'af','or','�%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9324,'af','guest_checkout','%��%�%�%�%� %��%� %#','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9325,'af','continue_to_delivery_info','j%�j%�%��%�%�%� %�j%c%%�%�%�j%�j%�%� j%�%� j%�j%�j%�%�%� %�j%�% %# %�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9326,'af','postal_code','j%� %�j%� %� %#%� %�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9327,'af','choose_delivery_type','j%� j%%%[%j%�j%�%%��%� %�%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9328,'af','local_pickup',' %�j%��%�%� j%�j%��%�j%%j%�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9329,'af','select_your_nearest_pickup_point','j%�%[%%� j%� %��%�%�%�%� %� %�j%��%� %�j%��%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9330,'af','continue_to_payment','j%�j%�j%��%��%� j%�%� j%�j%�j%�%�%� %�j%�% %# %�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9331,'af','select_a_payment_option','j%� j%�j%�j%��%��%� j%�%�j%�j%�j%�j%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9332,'af','razorpay','j%�j%%j%�j%�%j%��%��%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9333,'af','paystack','j%�j%�j%��%�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9334,'af','voguepay','VoguePay','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9335,'af','payhere','j%�%�j%�%� j%�j%�j%��%�%� %� %# %�j%�','2021-02-09 07:16:52','2021-02-09 07:16:52'),(9336,'af','ngenius','%� %��%�%��%�','2021-02-09 07:16:52','2021-02-09 07:16:52'),(9337,'af','paytm','%[%�%�%]%%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9338,'af','cash_on_delivery','j%� j%�j%�%��%�%��%� %[%j%�% %�%�j%�%� %�j%Q%j%�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9339,'af','your_wallet_balance_','j%%j%�j%�j%%%� j%� j%� %#j%% j%�%�j%�j%�%%�:','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9340,'af','insufficient_balance','%�j%� %#j%�%�%� j%�%�j%�j%�%%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9341,'af','i_agree_to_the','j%�%%� j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9342,'af','complete_order','j%�j%$%%[% %� j%�%�j%�%','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9343,'af','summary','%�%� %��%�j%�%','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9344,'af','items','j%�%� %#%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9345,'af','total_club_point','j%� %#%�j%� %]% %#�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9346,'af','total_shipping','%]%%�%�%� j%�j%�j%�% %� %�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9347,'af','have_coupon_code_enter_here','j%� %#%�%[%%� %#%� %� %�j%�%�%�j%� j%�%�j%�%� j%�%�%�%� j%$%%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9348,'af','apply','j%Q%%� %�j%�%�%� %� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9349,'af','you_need_to_agree_with_our_policies','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%�%%�%� %� %�%� %[%j%�%��%�j%%�%�%� j%%j%�%%� %�%�j%�%�%� j%$%j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9350,'af','forgot_password','j%�%[%%� %[%%]% %�%�%� j%�j%�% %�j%�%� %��%�j%�% j%��%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9351,'af','seo_setting','j%� SEO j%�%�j%U%�%�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9352,'af','system_update','j%%�%�j%%%]%%� j%�%�j%%%�%�j%�%�%�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9353,'af','add_new_payment_method','j%� j%�j%�j%��%��%� %�%�%� %��%�j%�%�j%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9354,'af','manual_payment_method','j%� %[%�%�j%%%� j%� %�j%�% %# %��%� %�j%�j%�% %�%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9355,'af','heading','j%%j%�%%��%� %#','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9356,'af','logo','%�%� %�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9357,'af','manual_payment_information','%�j%�j%%%� j%�j%�j%��%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9358,'af','type',' %�%�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9359,'af','custom_payment',' %�%�j%�% %#%� j%�j%�j%��%�j%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9360,'af','check_payment','j%�j%�j%��%�%� %� %�%�j%�%%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9361,'af','checkout_thumbnail','j%�%�j%��%�%�%� %��%� %# %��%� %#','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9362,'af','payment_instruction','j%� %[%�%�j%%%� %�j%�j%�% %�%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9363,'af','bank_information','j%� j%�j%�%� %# %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9364,'af','select_file','%�j%��%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9365,'af','upload_new','%�%��%� %[%%�j%�%j%�%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9366,'af','sort_by_newest','%[%%� %�%�%� j%�ort%� j%�j%�%j%�j%�j%�%%�%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9367,'af','sort_by_oldest','j%� j%�%j%� %�%� %�j%�%�j%� j%�j%�%j%��%�j%� j%$%%��%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9368,'af','sort_by_smallest','%[%%� %� %�%� %# %�%� j%�j%�%j%��%�j%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9369,'af','sort_by_largest','%[%%� %�%��%�%� %# %�%� j%�j%�%j%��%�j%� %# %�j%�','2021-02-09 07:16:52','2021-09-20 07:29:35'),(9370,'af','selected_only','�%�%�j%�j%�%�%� %]%j%� %#%� j%$%%��%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9371,'af','no_files_found','%��%� %� %�j%��%�%� %�%�%� %�%�%�j%�%� j%$%%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9372,'af','0_file_selected','0 %�j%��%�%� j%Q%%�j%�%%� j%$%%��%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9373,'af','clear','%[%j%� %#','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9374,'af','prev','j%��%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9375,'af','next','j%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9376,'af','add_files','%�j%��%�%�%�%�%� j%�%�%�j%�j%� %# %�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9377,'af','method_has_been_inserted_successfully','%��%�j%�%�j%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�%�%�%� j%$%%��%� j%��%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9378,'af','order_date','j%� j%%%[%j%�j%�%%��%� %��%�%]%%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9379,'af','bill_to','%[%%� %�%�%� %��%� j%�%� %��%� %#%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9380,'af','sub_total','%]%%�%� %]%j%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9381,'af','total_tax','%]%%�%� %]%�%� %#j%%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9382,'af','grand_total','j%%j%�j%�%%� %�j%�%�%�j%c%%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9383,'af','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','j%%j%�j%�j%%%� j%�j%�% %�j%�% %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�j%�% %# %�%� j%$%%��%� j%��%� %�%�j%�%j%�j%�%�%� %� %# %�j%� j%� %[%�%�j%�%%�j%� j%�j%�j%�%�%�j%� %�j%�%� j%� j%�j%�j%��%�j%�j%�%� %�j%c%%�%�%�j%�j%� %�j%%%[%j%�j%�%j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9384,'af','thank_you_for_your_order','j%%j%�j%�j%%%� %�%� j%�%�j%�% %�j%�%� %�%�%�%�!','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9385,'af','order_code','j%� j%�%�j%�% %#%� %�:','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9386,'af','a_copy_or_your_order_summary_has_been_sent_to','�%�%�%� %#j%�%[%%� �%�j%� j%%j%�j%�j%%%� j%� j%Q%%� %�j%�%��%� %�%� %��%�j%�% j%�j%%j%�%�%� j%$%%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9387,'af','make_payment','%[%�%�j%%�%� %�j%�% %# %�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9388,'af','payment_screenshot','j%� j%�j%�j%��%��%� j%% %#j%�%�%�%� j%$%j%�%]%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9389,'af','paypal_credential','j%� j%�j%�j%��%��%� j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9390,'af','paypal_client_id','j%� j%�j%�j%��%��%� %[%�%�j%�%%�j%�%�%� %#%� %[%�%� %�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9391,'af','paypal_client_secret','j%� j%�j%�j%��%��%� %[%�%�j%�%%�j%�%�%� %#%� j%�%j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9392,'af','paypal_sandbox_mode','j%� j%�j%�j%��%��%� j%%j%�%� %�j%�j%� %# j%�j%�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9393,'af','sslcommerz_credential','j%� Sslcommerz j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9394,'af','sslcz_store_id','j%� Sslcz Store Store','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9395,'af','sslcz_store_password','j%� Sslcz %[%%�%�j%�%%� %��%� j%�%%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9396,'af','sslcommerz_sandbox_mode','j%� Sslcommerz Sandbox j%�j%�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9397,'af','stripe_credential','%[%%]%%� j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9398,'af','stripe_key','j%%%]%j%�%[% %#%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9399,'af','stripe_secret','j%%%]%j%�%j%�%]%�%�%]% j%%�%� %#%]%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9400,'af','razorpay_credential','j%� j%�%�%�j%�%j%�%%[%j%��%� j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9401,'af','razor_key','RAZOR KEY','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9402,'af','razor_secret','j%� j%�%j%�j%�% j%�%j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9403,'af','instamojo_credential','j%� j%�%�j%%%]%j%��%�%�%� j%%%�j%�%�%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9404,'af','api_key','j%� API KEY','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9405,'af','im_api_key','j%� IM API KEY','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9406,'af','auth_token','j%� j%�%� %#�%�%� %]%%� %#','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9407,'af','im_auth_token','j%� IM j%�%� %#�%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9408,'af','instamojo_sandbox_mode','j%� j%�%�j%%%]%j%��%�%�%�j%� j%%�%�%� %� j%�j%� %#j%% j%�j%�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9409,'af','paystack_credential','j%� j%�j%�j%��%�%� %#%�%�%� j%%%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9410,'af','public_key','j%c%j%�%�%� %#%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9411,'af','secret_key',' %#%�%�j%�%� %#%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9412,'af','merchant_email','j%�j%�j%�j%a%j%�j%a%%� j%�j%�%�%� %�%�j%�%��%� %#','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9413,'af','voguepay_credential','j%� VoguePay j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9414,'af','merchant_id','j%�%�j%�j%$%%�%� %[%�%� %�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9415,'af','sandbox_mode','j%� j%%j%�%� %�j%�j%� %# j%�j%�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9416,'af','payhere_credential','j%� j%�j%�j%��%�j%�j%�%� j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9417,'af','payhere_merchant_id','j%� j%�j%�j%��%�%� j%%%�j%�j%� %�j%�%�%�j%�%%� %[%�%� %�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9418,'af','payhere_secret','j%� %[%%]%%�j%��%�j%� %�j%�j%�%%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9419,'af','payhere_currency','j%� j%�j%�j%��%�j%�j%�%� %�j%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9420,'af','payhere_sandbox_mode','j%�%�j%�%� j%� j%%j%�%� %� j%�j%� %#j%% j%�j%�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9421,'af','ngenius_credential','j%� %� %��%�%��%�j%�%�%� j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9422,'af','ngenius_outlet_id','j%� j%Q%�%�j%�% %�j%U%j%�%�%� %[%j%� ID�%� %[%�%� %�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9423,'af','ngenius_api_key','j%� NGENIUS API %#%��%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9424,'af','ngenius_currency','j%� %�j%�%�j%%%� j%�%�j%%%�%� j%�j%�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9425,'af','mpesa_credential','j%� %��%�%[%j%%j%� j%%%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9426,'af','mpesa_consumer_key','j%� MPESA CONSUMER KEY','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9427,'af','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9428,'af','mpesa_consumer_secret','j%� MPESA j%b%%��%�%�%� %�j%�j%�%%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9429,'af','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9430,'af','mpesa_short_code','j%� MPESA %�%� %� %#%� %�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9431,'af','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9432,'af','mpesa_sandbox_activation','j%� MPESA SANDBOX %�j%c%j%�%��%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9433,'af','flutterwave_credential','j%� %�%�%�%]% %��%�%� j%%%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9434,'af','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9435,'af','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9436,'af','rave_title','RAVE_TITLE','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9437,'af','stagin_activation','j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9438,'af','all_product','%]%%�%� %�j%�j%a%%�%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9439,'af','sort_by','j%�j%�%j%��%�j%� �%��%� %# %�%� %[%%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9440,'af','rating_high__low',' %# %�%�%� %� (%�%� %�> %]%�%�%]%)','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9441,'af','rating_low__high',' %# %��%� (%]%�%�%]%> %�%� %�)','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9442,'af','num_of_sale_high__low','j%� %[%%�%�j%�% j%$%%��%�j%�% (%�%� %�> %]%�%�%]%)','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9443,'af','num_of_sale_low__high','j%� %[%%�%�j%�% j%$%%��%�j%�%%� (%]%�%�%]%> %�%� %�)','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9444,'af','base_price_high__low','j%�j%%j%�j%% %��%�%�j%� (%�%� %�> %]%�%�%]%)','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9445,'af','base_price_low__high','j%�j%%j%�j%% %��%�%�j%� (%]%�%�%]%> %�%� %�)','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9446,'af','type__enter','%�%��%� %#j%� j%�%� %�%��%� %#j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9447,'af','added_by','j%�j%b%j%�%�%� j%$%%��%� %�%� j%�%�j%�','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9448,'af','num_of_sale','j%� %[%%�%�j%�% j%$%%��%�j%�%','2021-02-09 07:16:53','2021-09-20 07:29:35'),(9449,'af','total_stock','%]%%�%�%� j%%%]%j%� %#','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9450,'af','todays_deal','j%� %�%� %�j%�% %��%� %�j%c%j%�%�%��%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9451,'af','rating','j%�j%�%j%�%� %�j%�% %#%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9452,'af','times','%�j%�j%�%�%�%�','2021-02-09 07:16:54','2021-02-09 07:16:54'),(9453,'af','add_nerw_product','j%� j%�j%c%j%a%j%�j%� %�j%�j%a%%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9454,'af','product_information','j%� %�j%�j%a%%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9455,'af','unit','%�j%�j%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9456,'af','unit_eg_kg_pc_etc','%�j%�j%�j%� (j%� %�j%�j%�%� %[%%� j%�%� %�%� KG j%� Pc %�%�j%�%)','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9457,'af','minimum_qty','%� %�j%�j%�%%� %�%� %�%�j%�j%�j%�%','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9458,'af','tags','%]%j%� %�j%�%%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9459,'af','type_and_hit_enter_to_add_a_tag','j%� %]%�%� %� j%�j%b%j%�%�%� %#%�%�%� %�%[%j%�j%�%%� j%�%�%�%� j%�%� %]%j%��%�%[% %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9460,'af','barcode','j%�j%�j%�% %#%� %�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9461,'af','refundable','j%� j%��%�j%�%j%�%� j%%j%�%��%�j%�%� %� %�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9462,'af','product_images','j%� %�j%�j%a%%�%� j%c% %#j%%%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9463,'af','gallery_images','j%� %�j%�%�j%�%%� j%c% %#j%%%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9464,'af','todays_deal_updated_successfully','j%� %�%� %�j%�% %��%� %�j%c%j%�%�%��%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9465,'af','published_products_updated_successfully','j%�%[%j%�j%�%%� j%$%%�%� %�j%�j%a%%�%�j%�j%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9466,'af','thumbnail_image','j%�umb%� j%�%� %�%�j%�%','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9467,'af','featured_products_updated_successfully','j%� products%� j%$%%�%� %�j%�j%a%%�%�j%�j%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�%�%� j%$%%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9468,'af','product_videos','j%� %�j%�j%a%%�%� %��%� %��%�%� %�j%�%��%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9469,'af','video_provider','%��%� %��%�%� %�%�j%�%� %#%�%� %#�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9470,'af','youtube','�%�%�%]%�%�%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9471,'af','dailymotion','%�j%�% %�%��%� j%�%[%j%�%%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9472,'af','vimeo','Vimeo','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9473,'af','video_link','%��%� %��%�%� %��%�%� %#','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9474,'af','product_variation','j%� %�j%�j%a%%�%� j%�%�%[%�%�j%�%','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9475,'af','colors','j%�%%� %�%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9476,'af','attributes','j%a%%�j%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9477,'af','choose_attributes','j%a%%�j%�j%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9478,'af','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','j%� j%��%� %�j%�j%a%%�%� j%�j%a%%�j%a%%�j%�j%� %�%]%j%� %#j%� j%�%� j%��%�j%� j%� %�j%�%�%� j%�j%�j%a%�%�j%� %�%�%�j%�%�%� j%�j%�%j%�% %�j%�%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9479,'af','product_price__stock','j%� %�j%�j%a%%�%� %�j%�%j%� + j%%%]%j%� %#','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9480,'af','unit_price','j%� %�j%�j%�j%� %��%�%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9481,'af','purchase_price','j%� %[%�%�j%�%%�j%�%�%� j%��%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9482,'af','flat','%�%��%�%]%','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9483,'af','percent','j%%%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9484,'af','discount','j%�j%�%��%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9485,'af','product_description','j%� j%�%�%��%�j%� %�j%�%� %� %�j%��%�j%�%��%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9486,'af','product_shipping_cost','j%� %�j%�j%a%%�%� %��%� %�j%� %� %� %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9487,'af','free_shipping','%� %��%�j%� j%�j%�j%�% %� %�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9488,'af','flat_rate','j%� %�%��%�%]% %�j%�%j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9489,'af','shipping_cost','j%� %��%� %�j%� %#j%�%j%��%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9490,'af','pdf_specification','j%� %[%�%� %�%� j%��%�%� j%�%�j%b%�%�j%�j%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9491,'af','seo_meta_tags','j%� SEO %��%�%]%j%� %]%j%� %�%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9492,'af','meta_title','j%� %��%�%]%j%� j%%j%�%%��%� %#','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9493,'af','meta_image','j%� %��%�%]%j%� j%c% %#j%%','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9494,'af','choice_title','j%� j%�%�j%�j%�j%�j%� j%%j%�%%��%� %#','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9495,'af','enter_choice_values','j%� j%�%�j%�j%�j%�j%� j%�j%�%j%�% %�j%�%�%�%� j%�%�%�%� %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9496,'af','all_categories','%]%%�%��%� %#%]% %�%�j%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9497,'af','add_new_category','%�%��%� %#%]% %�%�j%�%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9498,'af','type_name__enter','%�%�%� j%�%� j%�%�%�%� %]%j%��%�%[% %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9499,'af','banner','j%��%�%�j%�%','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9500,'af','commission',' %#%��%�j%%�%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9501,'af','icon','%� %�%�','2021-02-09 07:16:54','2021-02-09 07:16:54'),(9502,'af','featured_categories_updated_successfully','j%� categories%� j%$%%��%� %#%]% %�%�j%�%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�%�%� j%$%%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9503,'af','hot',' %�j%�%%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9504,'af','filter_by_payment_status','j%� j%�j%�j%��%��%� %�j%b%j%c%�%�j%� %�j%�%�j%� %�%�%]%j%�% %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9505,'af','unpaid','j%��%� j%�j%�j%��%�%� j%$%%��%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9506,'af','filter_by_deliver_status','j%� j%�j%�%��%�%�%�%� %#%� j%�j%�%�j%� %�j%�%�j%� %�%�%]%j%�%','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9507,'af','pending','%[%j%�j%��%� %#%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9508,'af','type_order_code__hit_enter','j%� j%�%�j%�% %#%� %� %�%��%� %#j%� j%�%� %[%%� %� %�%� �%��%� %]% %# %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9509,'af','num_of_products','j%$%%��%�j%�% j%� %�j%�j%a%%�%�j%�j%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9510,'af','walk_in_customer','%[%%� %[%�%�j%�%%�j%�%�%� %#%� %#�%� %�%�j%� %� j%$%%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9511,'af','qty','QTY','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9512,'af','without_shipping_charge','%[%j%�%j%�%� j%� j%�j%�j%�% %� %�%�%� %� %� %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9513,'af','with_shipping_charge','j%� j%�j%�j%�% %� %�%�%� %� %� %�j%� j%%j%�%%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9514,'af','pay_with_cash','j%� %�j%Q%j%�%� j%%j%�%%� j%�j%�j%��%�%� %� %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9515,'af','shipping_address','j%� %� %�%�%� j%�%� j%�%j%�%� %�%�%� %[%j%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9516,'af','close','j%�%�j%�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9517,'af','select_country','%��%�%�j%�j%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9518,'af','order_confirmation','j%� j%�%�j%�% j%�j%��%��%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9519,'af','are_you_sure_to_confirm_this_order','j%��%�j%� j%�j%�j%%%� j%�j%�%�j%�%%� �%�j%�j%%j%� %��%� j%�j%� j%%%[%j%�j%�% %�j%�%�%� j%�j%��%��%�j%� %# %�j%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9520,'af','comfirm_order','j%� j%�%�j%�% j%�j%a%j%��%�%� %#%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9521,'af','personal_info','j%$%j%�j%a%%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9522,'af','repeat_password','j%� %#j%�%j%�j%�% j%� %#j%�%j%�j%�% %# %�j%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9523,'af','shop_name','j%� %[%%�%�j%�%%� %�%� %�%�%�','2021-02-09 07:16:54','2021-09-20 07:29:35'),(9524,'af','register_your_shop','j%�%[%%�%� %�%]%�%� j%�j%�j%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9525,'af','affiliate_informations','%�j%�j%�j%%j%�%� j%�j%�j%�%j%��%�j%�%��%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9526,'af','affiliate','%�j%�j%�j%%j%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9527,'af','user_info',' %#j%�j%�%%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9528,'af','installed_addon','%� %�%�%� j%$%%��%� j%� %�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9529,'af','available_addon','%�%�j%�%�j%� j%� %�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9530,'af','install_new_addon','%�%��%� j%� %�%�%� %�%� %�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9531,'af','version','%�j%%j%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9532,'af','activated','%�j%c%j%�%� j%$%%��%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9533,'af','deactivated','j%Q%�%�j%�% %�j%c%j%�%� j%$%%��%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9534,'af','activate_otp','OTP %�j%c%j%�%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9535,'af','otp_will_be_used_for','OTP j%�%� j%� j%��%� %�%[%j%�j%�%%� %� %#j%�j%�%%�%� j%$%%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9536,'af','settings_updated_successfully','j%�%�j%%j%�%��%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9537,'af','product_owner','j%� %�j%�j%a%%�%� %�j%�%� %#','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9538,'af','point','%]% %#�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9539,'af','set_point_for_product_within_a_range','j%� j%�j%�%�j%� j%�%�%�%� j%� %�j%�j%a%%�%� %�%[%j%�j%�%%� %�%�j%V%%� j%�j%�%j%��%�j%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9540,'af','set_point_for_multiple_products','j%� %��%�j%�%�%� %�j%�j%a%%�%�j%�j%�%� %�%[%j%�j%�%%� %�%�j%V%%� j%�j%�%j%��%�j%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9541,'af','min_price','%� %� %� %� %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9542,'af','max_price','j%�j%c%j%U%%�%� %�%�%�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9543,'af','set_point_for_all_products','j%� %]%%�%�%� %�j%�j%a%%�%�j%�j%�%� %�%[%j%�j%�%%� %�%�j%V%%� j%�j%�%j%��%�j%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9544,'af','set_point_for_','%�%[%j%�j%�%%� %]% %#�%� %�%]%j%� %#j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9545,'af','convert_status','j%� j%�j%�%�j%� j%�j%�%�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9546,'af','earned_at','j%�j%�%%�j%�j%%%� j%$%%��%� %[%%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9547,'af','seller_based_selling_report','j%� %[%%�%�j%�% %[%j%�% j%�j%%j%�j%% j%� %[%%�%�j%�% j%�%j%�%[%%�j%�%','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9548,'af','sort_by_verificarion_status','j%� j%�j%�j%��%�j%� %�j%b%j%c%�%�j%� j%%j%�%%� j%�j%�%j%�j%�j%�%%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9549,'af','approved','%�%�j%U%%�j%�% j%$%%��%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9550,'af','non_approved','j%Q%�%�j%�% %�%�%� j%$%%��%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9551,'af','filter',' %�j%�.','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9552,'af','seller_name','j%� %[%%�%�j%�%%�%� %#%� %�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9553,'af','number_of_product_sale','j%� %�j%�j%a%%�%� j%� %[%%�%�j%�% j%$%%��%�j%�%%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9554,'af','order_amount','j%� %�%�j%�j%�j%�% %�%�j%�j%�j%�%','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9555,'af','facebook_chat_setting','j%� %��%�j%%j%�%� %# %�%]% j%�%�j%U%�%�%� %#%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9556,'af','facebook_page_id','j%� %��%�j%%j%�%� %# %[%j%� ID�%� %[%�%� %�%�j%�','2021-02-09 07:16:55','2021-09-20 07:29: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','%�%�j%�%j%�j%�%�%� %� %# %�j%� %[%%� %[%j%�%� %#�%� %�%��%�j%%j%� %#%�%� %��%� j%�j%�j%%%� j%� %��%�j%%j%�%� %# %�j%� j%�%�j%U%�%�%� %#%�j%�. j%� j%Q%%�j%V% j%�j%�%j%��%�j%� %�%[%j%�j%�%%� j%�%� j%�j%�j%%%� j%� j%�%[%%� %#j%�j%�%%�-%[%j%��%� j%%j%��%�%]% %#�%� %��%�j%%%�j%�j%�% j%c% %#j%% %�%�%� j%�j%�%%�j%�j%%%� %#%�j%�.','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9558,'af','login_into_your_facebook_page','j%�%[%%� %��%�j%%j%�%� %# %[%j%� into�%� j%�%� %�%�%�j%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9559,'af','find_the_about_option_of_your_facebook_page','j%� j%�%[%%� %��%�j%%j%�%� %# %[%j%� of�%� %[%%� j%� %�%� j%�j%�j%��%�j%�j%�% %�%�%�%�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9560,'af','at_the_very_bottom_you_can_find_the_facebook_page_id','%[%%� j%�%�j%�%j%� %]%�%�%]% %#�%� j%� j%�j%�j%%%� %#%�%��%� j%$%j%� j%� Facebook \"%��%�j%%j%�%� %# %[%j%� ID�%� ID \\\" %�%�%�%�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9561,'af','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','j%� j%�%[%%��%� %[%j%� of�%� j%�%�j%U%�%�%�j%�j%�%� j%�%� %�j%� %� j%$%j%� j%�%� j%� Advance \"%[%j%�%%�j%�j%�%�%�%� %[%�%�j%Q%j%�%� j%�%j%%%�%��%� \\\" j%�j%�j%��%�j%�j%�% %�%�%�%�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9562,'af','scroll_down_that_page_and_you_will_get_white_listed_domain','%�j%Q%%� %[%j%� down%� %� %#j%�%� %# %�j%� j%�%� j%�j%�j%%%� j%�%� white \"j%%%[%�%�%� %��%�j%%j%� %�%�%��%�%� \\\" j%�j%�%%�j%�j%%%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9563,'af','set_your_website_domain_name','j%%j%�j%�j%%%� j%� %��%�j%� %[%j%� domain�%� %�%�%��%�%� %�%�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9564,'af','google_recaptcha_setting','j%� %�%� %�%� j%�%�%� %#j%�%]%j%� j%�%�j%U%�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9565,'af','site_key','j%%j%��%�%]% %#�%��%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9566,'af','select_shipping_method','j%� j%�j%�j%�% %� %�%�%� %��%�j%�%�j%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9567,'af','product_wise_shipping_cost','j%� %�j%�j%a%%�%� %�%� %�j%��%� j%� j%�j%�j%�% %� %�%�%� %� %� %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9568,'af','flat_rate_shipping_cost','j%� %�%��%�%]% %�j%�%j%� j%� %��%� %�j%� %� %� %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9569,'af','seller_wise_flat_shipping_cost','j%� %[%%�%�j%�% %�j%V%j%�j%�%� %�j%�j%�% j%� j%�j%�j%�% %� %�%�%� %� %� %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9570,'af','note','�%�j%�j%�%�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9571,'af','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','j%� %�j%�j%a%%�%� %�%� %�j%��%� j%� j%�j%�j%�% %� %�%�%� %� %� %�j%� j%�j%%j%�j%�: j%� j%�j%�j%�% %� %�%�%� %� %� %�j%� j%� %�j%�% %�j%�j%a%%�%� j%�j%�j%�% %� %�%�%� %� %� %�j%� j%%j%�%j%��%�j%�%%� %�j%�j%�j%%j%�%� %#�%� %�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9572,'af','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','j%� %�%��%�%]% %�j%�%j%� j%� %��%� %�j%� %� %� %�j%� j%�j%%j%�j%�: %�%�%�j%�%%� %[%�%�j%�%%�j%�%�%� %#%� %[%�%�j%�%%�j%�%�%� %#%� %[%�%�j%�%%�j%� %#%�%� j%� j%�%�%��%�j%� %�%�j%�%%�. j%� j%�j%�j%�% %� %�%�%� %� %� %�j%� %]%j%� %#%� j%$%%��%� j%��%�','2021-02-09 07:16:55','2021-09-20 07:29: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','j%� %[%%�%�j%�% %�j%�j%�% %�j%�j%�% %�%��%�%]% j%�j%�j%�% %� %�%�%� %� %� %�j%� j%�j%%j%�j%�: j%� %�j%�% %[%%�%�j%�%%�%� %#%� %�%[%j%�j%�%%� %]%j%� %#%� j%$%%��%� %�j%�%j%�. %#%� %��%�j%�%�%� %[%�%�j%�%%�j%�%�%� %#�%� j%� j%�%�%� %[%%�%�j%�%%�%� %#%� j%�j%�j%�% %� %�%�%� %� %� %�j%� %�j%�%� 2 %�j%�j%a%%�%� %�j%�j%�%�%� %�%� j%� %�j%�% %[%%�%�j%�%%�%� %#%� j%� %�%��%�%]% j%�j%�j%�% %� %�%�%� %� %� %�j%� j%�j%b%j%�%�%� %#%�%�%� j%%j%�%%� %�j%�j%�j%%j%�%� %#�%� %�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9574,'af','flat_rate_cost','j%� %�%��%�%]% %�j%�%j%� %��%�%�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9575,'af','shipping_cost_for_admin_products','j%� j%� %�%��%�%� %�j%�j%a%%�%�j%�j%�%� %�%[%j%�j%�%%� j%� j%�j%�j%�% %� %�%�%� %� %� %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9576,'af','countries','%��%�%�j%�j%�%�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9577,'af','showhide',' %�%�j%�%� / %[%%]% %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9578,'af','country_status_updated_successfully','j%� %��%�%�j%�j%� j%�j%�%�j%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9579,'af','all_subcategories','%]%%�%��%� %�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9580,'af','add_new_subcategory','%�%��%� %�j%�%j%c%%� %#j%� %�%�j%�%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9581,'af','subcategories','%�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:16:55','2021-09-20 07:29:35'),(9582,'af','sub_category_information','j%� %�j%�%j%c%%� %#%]% %�%�j%�%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:17:37','2021-09-20 07:29:35'),(9583,'af','slug','j%%%� %�','2021-02-09 07:17:37','2021-09-20 07:29:35'),(9584,'af','all_sub_subcategories','%]%%�%��%� %�j%�%j%c%%� %��%�j%$%%�%�j%�%�%�','2021-02-09 07:17:37','2021-09-20 07:29:35'),(9585,'af','add_new_sub_subcategory','%�%��%� %�j%�%j%c%%� %�j%�%j%c%%� %#j%� %�%�j%�%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:37','2021-09-20 07:29:35'),(9586,'af','subsubcategories','%�j%�%j%c%%� %�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:17:37','2021-09-20 07:29:35'),(9587,'af','make_this_default','j%�j%� %��%�%�j%�%�%]% %# %�j%�','2021-02-09 07:17:37','2021-09-20 07:29:35'),(9588,'af','shops','j%�%� %#j%�%�','2021-02-09 07:17:37','2021-09-20 07:29:35'),(9589,'af','women_clothing__fashion','j%� %� %�%� %#j%�%�%� j%�%� %��%�j%$%%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9590,'af','cellphones__tabs',' %�j%�% %�%�j%�%� %]%%��%�%�%�%�%�%�%� j%�%� %]%j%�%�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9591,'af','welcome_to',' %�%� j%�%j%�j%Q%%�j%�j%%j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9592,'af','create_a_new_account','%�%��%� j%�j%%j%�j%� j%�%� %� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9593,'af','full_name','j%�j%$%%[% %� %�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9594,'af','password','j%�%%�j%�%','2021-02-09 07:17:38','2021-02-09 07:17:38'),(9595,'af','confrim_password','%[%%]%%�%�%� j%�j%�%�%�j%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9596,'af','i_agree_with_the','j%�%%� j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9597,'af','terms_and_conditions','j%$%j%�%j%��%�j%V% j%�%� %�%�j%�%j%�%j%�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9598,'af','register','j%�j%�j%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9599,'af','already_have_an_account','j%�%�j%�%� j%�j%%j%�j%� %�j%�%%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9600,'af','sign_up_with','j%%j%�%%� %�%�%�j%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9601,'af','i_agree_with_the_terms_and_conditions','j%�%%� j%� j%$%j%�%j%��%�j%V%%� j%�%� j%$%j%�%j%��%�j%V%%� j%%j%�%%� %�%�j%�%�%� �%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9602,'af','all_role','%]%%�%� j%�%%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9603,'af','add_new_role','%�%��%� j%�%%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9604,'af','roles','j%�%%�%�%�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9605,'af','add_new_staffs','%�%�%� %#j%�j%�%%�%�j%�j%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9606,'af','role','j%�%%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9607,'af','frontend_website_name','j%� %�j%�%%�%]% %�j%��%� %� %�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9608,'af','website_name','j%� %��%�j%� %[%j%� Name�%� %�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9609,'af','site_motto','j%%j%��%�%]% %�%�%]%%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9610,'af','best_ecommerce_website','j%� j%��%� %#j%�%�j%�%j%% j%Q%%�j%�%%� %��%�j%� %[%j%� .%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9611,'af','site_icon',' %�%�j%�%j%� %[%j%� .%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9612,'af','website_favicon_32x32_png','%��%�j%� %[%j%� fav%�. 32x32 .png','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9613,'af','website_base_color','j%� %��%�j%� %[%j%� Base�%� j%�j%%j%�j%% j%�%%� %�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9614,'af','hex_color_code','j%� Hex j%�%%� %� %#%� %�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9615,'af','website_base_hover_color','j%� %��%�j%� %[%j%� Base�%� j%�j%%j%�j%% %�%�j%�% j%�%%� %�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9616,'af','update','j%�j%�j%�%%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9617,'af','global_seo','%� %��%�%�j%�%� SEO','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9618,'af','meta_description','j%� %��%�%]%j%� j%�%�j%b%�%�j%�j%�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9619,'af','keywords',' %#%��%�j%�%� %]% %#%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9620,'af','separate_with_coma','j%� %#%�%�j%� j%%j%�%%� j%�%�j%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9621,'af','website_pages','j%� %��%�j%� %[%j%� Pages�%� %[%j%� .�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9622,'af','all_pages','%]%%�%��%� %[%j%� .�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9623,'af','add_new_page','%�%��%� %[%j%� Add%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9624,'af','url','�%�%� j%�j%�% j%��%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9625,'af','actions',' %# %�%��%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9626,'af','edit_page_information','j%� %[%j%� Information�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9627,'af','page_content','j%� %[%j%� Content�%� %��%�%� %�%[%j%�%� %�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9628,'af','title','j%%j%�%%��%� %#','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9629,'af','link','%��%�%� %#','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9630,'af','use_character_number_hypen_only','�%�%�j%�j%�%�%� %#j%�% %#%]%j%�% j%� j%$%%��%�j%�%%� j%� %��%�%[%�%�%� %� %#j%�j%�%%�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9631,'af','add_content','%��%�%� %�%[%j%�%� %�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9632,'af','seo_fields','j%� Seo %� %�j%�%%�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9633,'af','update_page','j%�%�j%%%�%�j%�%� %[%j%� Page%�','2021-02-09 07:17:38','2021-09-20 07:29:35'),(9634,'af','default_language','j%�j%a%%�%� %�j%�%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9635,'af','add_new_language','%�%��%� %�j%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9636,'af','rtl','RTL','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9637,'af','translation',' %�j%�j%� %�%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9638,'af','language_information','j%� %�j%��%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9639,'af','save_page','%[%j%� Save%� j%�%�%�j%�%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9640,'af','home_page_settings','j%� %#%�j%�% %[%j%� Settings�%� j%�%�j%U%�%�%�j%�j%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9641,'af','home_slider',' %#%�j%�% j%%%�j%��%� %�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9642,'af','photos__links','j%c% %#j%%%�%�%� j%�%� %��%�%� %#%�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9643,'af','add_new','%�%��%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9644,'af','home_categories',' %#%�j%�% %#%]% %�%�j%�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9645,'af','home_banner_1_max_3','j%� %#%�j%�% j%��%�%�j%�% 1 (j%�j%c%j%U%%�%� 3)','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9646,'af','banner__links','j%��%�%�j%�% j%�%� %��%�%� %#%�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9647,'af','home_banner_2_max_3','j%� %#%�j%�% j%��%�%�j%�% 2 (j%�j%c%j%U%%�%� 3)','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9648,'af','top_10','j%%j%�% 10','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9649,'af','top_categories_max_10','j%Q%%�j%�%%� %#%]% %�%�j%�%�%� (j%�j%�% 10 %��%�j%�%)','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9650,'af','top_brands_max_10','j%Q%%�j%�%%� j%�j%�%j%�%� %�%�%�%� (j%�j%�% 10 %��%�j%�%)','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9651,'af','system_name','j%� j%%�%�j%%%]%%� %�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9652,'af','system_logo__white','j%� j%%�%�j%%%]%%� %�%� %�%� - j%%%[%�%�%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9653,'af','choose_files','%�j%��%�%�%�%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9654,'af','will_be_used_in_admin_panel_side_menu','j%� j%��%� %�%�%� %[%�%�%�%� j%� %�j%� %��%�%�%� %#�%� j%�%� %� %#j%�j%�%%�%� j%$%%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9655,'af','system_logo__black','j%� j%%�%�j%%%]%%� %�%� %�%� - j%�%�j%�%','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9656,'af','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','%[%%� %�j%�% %�%�j%�%� + j%� %�%��%�%� %�%�%�j%�%� %[%j%� page%� %#�%� j%�%� j%� j%��%� %�%�%� %[%�%�%�%� %]%j%�%[%j%�j%�j%�% %#�%� %� %#j%�j%�%%�%� j%$%%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9657,'af','system_timezone','j%� j%%�%�j%%j%�%� %�j%�j%� j%�%%�%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9658,'af','admin_login_page_background','j%� j%� %�%��%�%� %�%�%�j%�%� %[%j%� background%� j%$%j%�%��%�j%�','2021-02-09 07:17:38','2021-09-20 07:29:36'),(9659,'af','website_header','j%� %��%�j%� %[%j%� Head�%� j%%j%�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9660,'af','header_setting','j%%j%�%�%� j%�%�j%U%�%�%� %#%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9661,'af','header_logo','j%%j%�%�%� %�%� %�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9662,'af','show_language_switcher','j%� %�j%��%� j%%%��%� %�j%�% %� %#j%�j%�%%� %#%�%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9663,'af','show_currency_switcher','j%� j%�j%%j%c%j%�j%�%%� j%�j%�%�%�%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9664,'af','enable_stikcy_header','j%� j%%j%�j%� j%�j%�%�%� %� j%%j%�%%��%� %# %� %� %# %�j%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9665,'af','website_footer','j%� %��%�j%� %[%j%� Foot�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9666,'af','footer_widget','%�%�%]% %��%�j%�%]%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9667,'af','about_widget','j%� %��%�j%�%]% %[%%� j%� %�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9668,'af','footer_logo','%�%�%]%j%�% %�%� %�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9669,'af','about_description','j%� j%�%�j%a%�%�%� %[%%� j%� %�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9670,'af','contact_info_widget','j%� j%� %��%� %#�%� %�j%c%%�%�%�j%�j%�%� %��%�j%��%�%]%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9671,'af','footer_contact_address','j%� %�%�%]%j%�% j%� j%�%�j%�j%% %[%j%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9672,'af','footer_contact_phone','j%� %�%�%]%j%�% j%�%�j%�j%% j%�%��%�%�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9673,'af','footer_contact_email','j%� %�%�%]%j%�% j%�%�j%�j%% j%�j%�%�%� %�%�j%�%��%� %#','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9674,'af','link_widget_one','j%� %��%�%� %# %��%�j%�%]% �%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9675,'af','links','%��%�%� %#%�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9676,'af','footer_bottom','%�%�%]%j%�% %� %#j%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9677,'af','copyright_widget_','j%� %�j%�%[% j%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9678,'af','copyright_text','j%� %�j%�%[% j%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9679,'af','social_link_widget_','j%� %]%%�%�%��%�j%�% %��%�%� %# %��%�j%�%]%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9680,'af','show_social_links','%]%%�%�%��%�j%�% %��%�%� %#%�%�%� %��%��%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9681,'af','social_links','%]%%�%�%��%�j%�%�%� j%� %��%� %#�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9682,'af','payment_methods_widget_','j%� j%�j%�j%��%��%� %��%�j%�%�j%�%�%�%� %��%�j%�%]%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9683,'af','rtl_status_updated_successfully','j%� RTL j%�j%�%�j%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9684,'af','language_changed_to_',' %�j%�%� j%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9685,'af','inhouse_product_sale_report','j%� j%�j%�j%�%�%� %�j%�j%a%%�%�j%�j%�%� j%� %[%%�%�j%�% j%�%j%�%[%%�j%�%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9686,'af','sort_by_category','j%� %#%]% %�%�j%�%�%� %�j%�%�j%� j%�j%�%j%��%�j%� j%$%%��%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9687,'af','product_wise_stock_report','j%� %�j%�j%a%%�%� %�j%�j%�% %�j%�j%�% %�j%�j%�% j%�%j%�%[%%�j%�%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9688,'af','currency_changed_to_','j%�j%%j%c%j%�j%�%%� j%�%� j%�j%�%� j%$%%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9689,'af','avatar','j%�%�j%�j%�j%�%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9690,'af','copy',' %#j%�%[%%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9691,'af','variant','%�j%�j%Q%�%�j%�%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9692,'af','variant_price','%�j%�j%�%�%� %��%�%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9693,'af','sku','SKU','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9694,'af','key',' %#�%�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9695,'af','value','j%�j%�%j%�% %�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9696,'af','copy_translations',' %#j%�%[%%� %�j%�j%� %�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9697,'af','all_pickup_points','%]%%�%��%� j%� j%�%j%�%]%%�%�%� %�j%��%�%�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9698,'af','add_new_pickup_point','%�%��%� j%� %[%%�j%�%j%�%� %#%�%�%� %�%�j%V%%� j%�j%b%j%�%�%� %# %�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9699,'af','manager','%�j%��%�j%�%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9700,'af','location',' %�j%��%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9701,'af','pickup_station_contact','j%� j%Q%%�j%�%%� %#%�%�%� j%%%]%�%�j%$%%� j%� %��%� %#%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9702,'af','open','j%�%�j%�j%a%','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9703,'af','pos_activation_for_seller','j%� %[%%�%�j%�%%�%� %#%� %�%[%j%�j%�%%� POS %�j%c%j%�%��%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9704,'af','order_completed_successfully','j%�%�j%�% %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%�j%$%%[% %� j%$%%�.','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9705,'af','text_input','%�j%�%� %�j%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9706,'af','select','%�%]%j%� %#j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9707,'af','multiple_select',' %� Select %]%j%� %#%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9708,'af','radio','j%�%j%� %��%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9709,'af','file','j%�%�j%�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9710,'af','email_address','j%�j%�%�%� %�%�j%�%��%� %#','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9711,'af','verification_info','j%� j%�j%��%��%�j%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9712,'af','approval','j%�j%a%%��%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9713,'af','due_amount','%]%j%� %#%� j%$%%��%� %[%�%�j%%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9714,'af','show',' %�%�j%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9715,'af','pay_now','j%�%�j%% �%��%� %�j%�% %# %�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9716,'af','affiliate_user_verification','j%� %�j%�j%�j%%j%�%� %#j%�j%�%%� j%�j%��%��%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9717,'af','reject','j%�%j%� %# %�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9718,'af','accept','%�%�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9719,'af','beauty_health__hair',' %� %#%�j%� j%� j%�%%�j%Q%j%��%�j%� j%�%� %��%� %�j%�j%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9720,'af','comparison','%[%j%�%j%�%�%� %#%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9721,'af','reset_compare_list','j%� %[%j%�%j%�%�%� %#%�%�%� %��%�j%%j%� j%�%�j%U%�%�%�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9722,'af','your_comparison_list_is_empty','j%%j%�j%�j%%%� j%� %[%j%�%j%�%�%� %#%�%�%� %��%�j%%j%� j%�j%�%�%� j%��%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9723,'af','convert_point_to_wallet','%�j%�%]% j%�%� %]% %#�%� j%�j%�%� %# %�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9724,'af','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','�%�j%�j%�%�%�%�: j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� %�%�%� %��%� j%� %#%�j%� %[%%�j%�j%�%�%]% j%� %�%�%� %#j%�j%�%%�%�%� j%�%�j%�%� j%� %�j%�%�%]% j%�j%�j%��%�j%�j%�% %�j%c%j%�%� %# %�j%�.','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9725,'af','create_an_account',' %� %]%%�%� %[%j%�%j%�%��%�j%%j%�%�.','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9726,'af','use_email_instead','%[%j%�% %�j%��%� �%��%� j%�j%�%�%� %�%�j%�%��%� %# %� %#j%�j%�%%�j%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9727,'af','by_signing_up_you_agree_to_our_terms_and_conditions','%[%%� %�j%�j%%%��%� %# %#%�%�%� j%%j%�%%� j%�j%�j%%%� j%�%%�%� %� j%$%j%�%j%��%�j%V%%� j%�%� j%$%j%�%j%��%�j%V%%� j%%j%�%%� %�%�j%�%�%� �%�j%�j%%j%�.','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9728,'af','create_account',' %� %]%%�%� j%�%� %�%�%�','2021-02-09 07:17:39','2021-09-20 07:29:36'),(9729,'af','or_join_with','�%�j%� j%%j%�%%� %� %�%�%� %� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9730,'af','already_have_an_account','j%�%�j%�%� �%�%� j%�j%%j%�j%� %�j%�%j%�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9731,'af','log_in','j%� %�%�%� %#�%�j%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9732,'af','computer__accessories',' %#%�%[%�%�%�%]%j%�% j%�%� %�%�j%�j%�%%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9733,'af','products','%�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9734,'af','in_your_cart','j%%j%�j%�j%%%� %[%%� %�%�%]%j%�% %#�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9735,'af','in_your_wishlist','j%%j%�j%�j%%%� %[%%� %�j%%j%� %#�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9736,'af','you_ordered','j%�j%�j%%%� j%�%�j%�% %# %��%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9737,'af','default_shipping_address','j%� %��%� %�%�%� %�%�%� %�%��%� %[%j%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9738,'af','sports__outdoor','%�%�j%��%� j%�%� j%�%�j%�%','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9739,'af','copied',' %#j%�%[%%� j%$%%��%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9740,'af','copy_the_promote_link','j%� %[%j%�%%�%�%� %��%�%� %# %#j%�%[%%� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9741,'af','write_a_review','j%��%�j%� %#j%�%�%� %�%��%� %#j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9742,'af','your_name','j%%j%�j%�j%%%� %�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9743,'af','comment',' %�j%�% %�%�j%�%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9744,'af','your_review','j%%j%�j%�j%%%� j%��%�j%� %#j%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9745,'af','submit_review','j%��%�j%� %#j%�%�%� %�j%%%[%j%�j%�%j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9746,'af','claire_willis',' %#%��%�j%�% %�%��%�j%%','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9747,'af','germaine_greene',' %�j%�%%��%�%� %�j%�%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9748,'af','product_file','j%� %�j%�j%a%%�%� j%�%�j%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9749,'af','choose_file','%�j%��%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9750,'af','type_to_add_a_tag','j%� %]% %� j%�j%b%j%�%� %#%�%�%� %�%[%j%�j%�%%� %�%��%� %#j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9751,'af','images','j%�%� %�%�j%�%%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9752,'af','main_images','j%�j%a%%�%� j%�%� %�%�j%�%%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9753,'af','meta_tags','%��%�%]%j%� %]%j%� %�j%�%','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9754,'af','digital_product_has_been_inserted_successfully',' %��%�j%��%�%]%%� %�j%�j%a%%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�%�%�%� j%$%%��%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9755,'af','edit_digital_product',' %��%�j%��%�%]%%� %�j%�j%a%%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9756,'af','select_an_option','�%�%� j%�%�j%�j%�j%�j%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9757,'af','tax','%�j%�%��%�j%�j%�','2021-02-09 07:17:40','2021-02-09 07:17:40'),(9758,'af','any_question_about_this_product','j%� j%��%� %�j%�j%a%%�%� %[%%� j%� %�%� %#%�%�%� %[%%� %�j%�%�%�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9759,'af','sign_in','%�%�%�j%�%j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9760,'af','login_with_google','j%� %�%� %�%� j%%j%�%%� %�%�%�j%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9761,'af','login_with_facebook','%�%� %��%�j%%j%�%� %# j%%j%�%%� %�%�%�j%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9762,'af','login_with_twitter','%�%� %]%%��%�%]%j%�% j%%j%�%%� %�%�%�j%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9763,'af','click_to_show_phone_number','j%� j%�%��%�%�%�%� j%$%%��%�j%�%%� %�%�j%�%�%� %�%[%j%�j%�%%� %#%��%� %# %� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9764,'af','other_ads_of','j%� %�%�j%�%%� j%�j%c%%�j%�%�j%�j%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9765,'af','store_home','%[%%�%�j%�%%� %��%� %#%�j%�%','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9766,'af','top_selling','j%Q%%�j%�%%� %[%%�%�j%�%%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9767,'af','shop_settings','j%� %[%%�%�j%�% j%�%�j%%j%�%��%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9768,'af','visit_shop','%[%%�%�j%�%%� %�%� j%�%� %�j%�% %�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9769,'af','pickup_points','j%� j%Q%%�j%�%%� %#%�%�%� %�j%��%�%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9770,'af','select_pickup_point','j%� j%Q%%�j%�%%� %#%�%�%� %]% %#�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9771,'af','slider_settings','j%� j%%%�j%��%� %� j%�%�j%U%�%�%�j%�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9772,'af','social_media_link','j%� %]%%�%�%��%�j%�%%� j%�%j%%%��%�%� %��%�%� %#','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9773,'af','facebook','%��%�j%%j%�%� %#','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9774,'af','twitter','%]%%��%�%]%j%�%','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9775,'af','google','Google','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9776,'af','new_arrival_products','%�%�%� j%�%j%�j%Q%%�%� %� j%$%%�%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9777,'af','check_your_order_status','j%� j%�%[%%� j%�%�j%�% j%�j%�%�j%� %� %�%�j%�%%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9778,'af','shipping_method','j%� %��%� %�j%�%�%�%� j%V%j%�%�%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9779,'af','shipped_by','%�j%�%�j%� %��%� %�%� j%$%%��%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9780,'af','image','j%�%� %�%�j%�%','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9781,'af','sub_sub_category','%�j%�%j%c%%� %�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9782,'af','inhouse_products','j%� %#%�j%�% j%�%�%�%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9783,'af','forgot_password','j%�%[%%� %[%%]% %�%�%� j%�j%�% %�j%�%� %��%�j%�% j%��%�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9784,'af','enter_your_email_address_to_recover_your_password','j%� j%�%[%%� j%�%%�j%�% j%��%�j%�%j%�%� j%�j%�%%�j%�j%%%� %#%�%�%� %�%[%j%�j%�%%� j%�%[%%� j%�j%�%�%� %�%�j%�%��%� %# j%�j%�j%�%j%% j%�%�%�%� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9785,'af','email_or_phone','j%�j%�%�%� %�%�j%�%��%� %# �%�j%� j%�%��%�%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9786,'af','send_password_reset_link','j%� %[%j%�j%%%�j%�% %� j%�%�%�j%%�%�%]% %��%�%� %# %�j%�j%%j%�%�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9787,'af','back_to_login','j%��%�j%�%j%�%� %�%�%�j%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9788,'af','index','j%$%j%�j%�j%a%','2021-02-09 07:17:40','2021-02-09 07:17:40'),(9789,'af','download_your_product','j%�%[%%� %�j%�j%a%%�%� %�j%�%�%�%�%� %� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9790,'af','option','j%Q%%�j%�%j%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9791,'af','applied_refund_request','j%� j%�j%�%�j%�%� j%Q%%� %�j%�%�%� j%$%%��%� j%Q%%� %�j%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9792,'af','item_has_been_renoved_from_wishlist','j%�%� %#%� j%� j%Q%%� %�j%�%��%� %�%� %��%�j%%j%� %�j%�%� j%��%�j%%j%�%� j%$%%�%� j%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9793,'af','bulk_products_upload','j%� j%c%%�j%�%� %�j%�j%a%%�%�j%�j%�%� j%�%[%%�%� %�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9794,'af','upload_csv','CSV j%�%[%%�%� %� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9795,'af','create_a_ticket','%]%�%� %#%]% j%�%� %� %# %�j%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9796,'af','tickets','%]%�%� %#%]%%�%�%�','2021-02-09 07:17:40','2021-09-20 07:29:36'),(9797,'af','ticket_id','j%� %]%�%� %#%]% %[%�%� %�%�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9798,'af','sending_date','j%� %��%� %�%�%� %��%�%]%%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9799,'af','subject','%�%�j%b%%�j%c%','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9800,'af','view_details','j%�%�j%b%�%�j%�j%�j%� %� %�%�j%�%j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9801,'af','provide_a_detailed_description','�%�%� %�%�j%a%%� j%��%�j%�%� %� %�j%�%�j%��%� %# %�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9802,'af','type_your_reply','j%�%[%%� %�%�j%�j%� %�%��%� %#j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9803,'af','send_ticket','%]%�%� %#%]% %�j%�j%%j%�%�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9804,'af','load_more','%�%�j%�% %�%� %�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9805,'af','jewelry__watches',' %�j%�welry�%� j%�%� j%%j%�j%c%j%�%�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9806,'af','filters','%�%�%]%j%�%%�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9807,'af','contact_address','j%� j%� %��%� %#�%� %[%j%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9808,'af','contact_phone','j%� j%� %��%� %#�%� j%�%��%�%�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9809,'af','contact_email','j%� j%� %��%� %#�%� j%�j%�%�%� %�%�j%�%��%� %#','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9810,'af','filter_by','%�%� j%�%�j%� %�j%�ter','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9811,'af','condition','j%$%j%�%j%V%','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9812,'af','all_type','%]%%�%� %�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9813,'af','pay_with_wallet','j%� j%�%]%%�%� j%%j%�%%� j%�j%�j%��%�%� %� %# %�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9814,'af','select_variation','j%�j%Q%�%�j%�% %�%]%j%� %#j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9815,'af','no_product_added','%��%� %� %�j%�j%a%%�%� %�j%��%� j%�j%b%j%�%�%� j%$%%��%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9816,'af','status_has_been_updated_successfully','j%�j%�%�j%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%� j%��%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9817,'af','all_seller_packages','%]%%�%� %[%%�%�j%�%%�%� %#%� %# %�%� %��%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9818,'af','add_new_package','%�%��%� j%�%� %�%� j%�j%b%j%�%�%� %# %�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9819,'af','package_logo',' %# %�%� %�%� %�%� %�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9820,'af','days','%�j%�% %��%�','2021-02-09 07:17:41','2021-02-09 07:17:41'),(9821,'af','create_new_seller_package','%�%��%� %[%%�%�j%�%%�%� %#�%� %# %�%� %�%� j%�%� %�%� %# %�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9822,'af','package_name','j%� j%�%� %�%� %�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9823,'af','duration','j%�%�j%�%%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9824,'af','validity_in_number_of_days','j%� %�j%�% %�%� %[%%� j%$%%��%�j%�% %#�%� j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9825,'af','update_package_information','j%� %# %�%� %��%� %�j%c%%�%�%�j%�j%� j%�j%�j%�%%� %# %�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9826,'af','package_has_been_inserted_successfully','j%�j%%j%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�j%�% %# %�%� j%$%%��%� j%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9827,'af','refund_request','j%� j%��%�j%�%j%�%� j%%j%�%��%�j%�%� j%Q%%� %�j%�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9828,'af','reason','j%c%%�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9829,'af','label','%��%�j%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9830,'af','select_label','%��%�j%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9831,'af','multiple_select_label',' %� Select j%�%�j%�j%�j%�j%� j%Q%%�j%�%%� %� %�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9832,'af','radio_label','j%� j%�%j%� %��%�%� %��%�j%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9833,'af','pickup_point_orders','j%� %[%%�j%�%j%�%� %#%�%�%� %]% %#�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9834,'af','view','%��%�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9835,'af','order_','j%�%�j%�% #','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9836,'af','order_status','j%� %�j%U%%� j%�j%�%�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9837,'af','total_amount','j%�%�%�%� %[%�%�j%%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9838,'af','total','%]%%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9839,'af','delivery_status_has_been_updated','j%� j%�j%�%��%�%��%� j%�j%�%�j%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9840,'af','payment_status_has_been_updated','j%� j%�j%�j%��%��%� j%�j%�%�j%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9841,'af','invoice','j%�%�%�j%�j%�j%%','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9842,'af','set_refund_time','j%� j%�%j%�j%%j%�%��%�j%�%� %�j%�j%� %�%]%j%� %#j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9843,'af','set_time_for_sending_refund_request','j%� j%��%�j%�%j%�%� j%%j%�%��%�j%�%� j%Q%%� %�j%�%�%� %��%� %�%�%� %�%[%j%�j%�%%� %�j%�j%� %�%]%j%� %#j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9844,'af','set_refund_sticker','j%� j%��%�j%�%j%�%� j%%j%�%� j%%%]%�%� %#j%�% j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9845,'af','sticker','j%%%]%�%� %#j%�%','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9846,'af','refund_request_all','j%� %]%%�%�%� j%%j%�%%� j%��%�j%�%j%�%� %�j%�% %#%�%�%� j%Q%%� %�j%�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9847,'af','order_id','j%� j%�%�j%�% j%��%� %��%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9848,'af','seller_approval','j%� %[%%�%�j%�%%�%� %#%� j%�j%a%%��%�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9849,'af','admin_approval','j%� j%�j%�j%�j%�%%� j%�j%a%%��%�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9850,'af','refund_status','j%� j%�%j%�j%%j%�%��%�j%�%� j%�j%�%�j%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9851,'af','no_refund','%�%� j%�%j%�j%%j%�%��%�j%�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9852,'af','status_updated_successfully','j%�j%�%�j%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9853,'af','user_search_report','j%� %#j%�j%�%%�%� %#%� %�%]%%�%� j%�%j%�%[%%�j%�%','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9854,'af','search_by','%�j%�%�j%� %�%]%%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9855,'af','number_searches','j%� j%$%%��%�j%�% %�%]%%�%�%�%�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9856,'af','sender','%��%� %�%�%� %#�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9857,'af','receiver','j%�j%��%�j%%j%�%�%� %#�%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9858,'af','verification_form_updated_successfully','j%� j%�j%��%��%�j%� %�%�j%�%%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:17:41','2021-09-20 07:29:36'),(9859,'af','invalid_email_or_password','%�j%�j%�j%�%�j%�%%� j%�j%�%�%� %�%�j%�%��%� %# �%�j%� %[%j%�j%%%�j%�% %�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9860,'af','all_coupons','%]%%�%��%� %#%�%[%%�%�%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9861,'af','add_new_coupon','%�%��%� %#%�%[%%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9862,'af','coupon_information','j%� %#%�%[%%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9863,'af','start_date','%[%�%�%� %��%�%]%%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9864,'af','end_date','j%� %[%j%��%� %��%�%]%%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9865,'af','product_base','j%� %�j%�j%a%%�%� j%�j%%j%�j%%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9866,'af','send_newsletter','j%�j%�j%�% %[%j%� Send%� %�j%�j%%j%�%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9867,'af','mobile_users',' %�j%�% %�%�j%�%� %#j%�j%�%%�%� %#%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9868,'af','sms_subject','j%� %[%�%�j%Q%j%�%� %�%�j%b%%�j%c%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9869,'af','sms_content','j%� j%��%�j%% j%��%�%� j%��%�j%% %��%�%� %�%[%j%�%� %�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9870,'af','all_flash_delas','%]%%�%� %�%�j%$% %��%�%�j%%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9871,'af','create_new_flash_dela','%�%��%� %�%�j%$% Dela j%�%� %� %# %�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9872,'af','page_link','j%� %[%j%� Link�%� %��%�%� %#','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9873,'af','flash_deal_information','j%� %�%�j%$% %�j%c%j%�%�%��%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9874,'af','background_color','j%$%j%�%�%�j%� j%�%%� %�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9875,'af','0000ff','# 0000ff','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9876,'af','text_color','j%� %�j%�%� j%�%%� %�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9877,'af','white','j%%%[%�%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9878,'af','dark','j%�%�j%�j%�%%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9879,'af','choose_products','%�j%�j%a%%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9880,'af','discounts','j%�j%�%��%�%�%�%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9881,'af','discount_type','j%� j%�j%�%��%�%� %�%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9882,'af','twillo_credential','j%� j%�%�%� %�%�%�%� j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9883,'af','twilio_sid','j%�%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9884,'af','twilio_auth_token','j%�%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9885,'af','twilio_verify_sid','j%�%�%� %�%�%� j%� j%�j%a%j%��%�%� j%�j%a%j%��%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9886,'af','valid_twillo_number','j%� %��%�%�%� j%$%%��%�j%�%%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9887,'af','nexmo_credential','j%� Nexmo j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9888,'af','nexmo_key','NEXMO KEY','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9889,'af','nexmo_secret','j%� NEXMO j%�%j%�j%�%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9890,'af','ssl_wireless_credential','j%� j%��%�j%% j%��%�j%% j%��%�%� j%��%� j%%�%�%�%� j%%%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9891,'af','ssl_sms_api_token','j%� j%��%�j%% j%��%�j%% j%��%�%� j%��%�j%% j%��%�%� j%��%�j%% API j%�%� %#�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9892,'af','ssl_sms_sid','j%� j%��%�j%% j%��%�j%% j%��%�%� j%��%�j%% j%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9893,'af','ssl_sms_url','j%� j%��%�j%% j%��%�j%% j%��%�%� j%��%�j%% j%�j%�% j%��%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9894,'af','fast2sms_credential','j%� %�j%�j%%%]% 2SMS j%�j%c%j%�j%�j%�j%�%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9895,'af','auth_key','j%� %#%�%� %#%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9896,'af','route','j%�%%�%]%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9897,'af','promotional_use','%[%j%�%%�%�%�j%$%%�%� %#j%�j%�%%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9898,'af','transactional_use','j%� j%�%j%� %# %��%� %�j%�% %# %��%� %#j%�j%�%%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9899,'af','sender_id','j%� j%%%[%j%�j%�%%�%� %[%�%� %�%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9900,'af','nexmo_otp','j%� Nexmo OTP','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9901,'af','twillo_otp','j%�%�%�%� %�%� OTP','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9902,'af','ssl_wireless_otp','j%� j%��%�j%% j%��%�j%% j%��%�%� j%��%� j%%�%�%�%� OTP','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9903,'af','fast2sms_otp','%�j%�j%%%]% 2SMS OTP','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9904,'af','order_placement','j%� j%%%[%j%�j%�%%��%� %�j%��%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9905,'af','delivery_status_changing_time','j%� j%�j%�%��%�%�%� j%�j%�%�j%� j%�j%�%��%�j%�%� %�j%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9906,'af','paid_status_changing_time','%�j%�% %# %�%� j%$%%�%� j%�j%�%�j%� j%�j%�%�%�%�%� %�j%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9907,'af','send_bulk_sms','j%� j%�%� %# %[%�%�j%Q%j%�%� %�j%�j%%j%�%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9908,'af','all_subscribers','%]%%�%� %[%�%�j%�%%�j%�%�%� %#%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9909,'af','coupon_information_adding','j%� %#%�%[%%� %�j%c%%�%�%�j%�j%�%� j%�j%b%j%�%�%� %#%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9910,'af','coupon_type','j%� %#%�%[%%� %�%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9911,'af','for_products','j%� %�j%�j%a%%�%�j%�j%�%� %�%[%j%�j%�%%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9912,'af','for_total_orders','j%� %]%%�%� j%�%�j%�% %�%[%j%�j%�%%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9913,'af','add_your_product_base_coupon','j%�%[%%� j%� %�j%�j%a%%�%� j%�j%%j%�j%% %#%�%[%%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9914,'af','coupon_code','j%� %#%�%[%%� %#%� %�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9915,'af','sub_category','%�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9916,'af','add_more','%�%�j%�% j%�%�%�j%�j%� %# %�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9917,'af','add_your_cart_base_coupon','j%� j%�%[%%� %#j%�j%�%%]% j%��%�j%% %#%�%[%%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9918,'af','minimum_shopping','%� %�j%�j%�%%� %�%� %[%�%�j%�%%�j%�','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9919,'af','maximum_discount_amount','j%� j%�j%�%��%�%� j%�j%c%j%U%%�%� %�%�j%�j%�j%�%','2021-02-09 07:17:42','2021-09-20 07:29:36'),(9920,'af','coupon_information_update','j%� %#%�%[%%� %�j%c%%�%�%�j%�j%� j%�j%�j%�%%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9921,'af','please_configure_smtp_setting_to_work_all_email_sending_funtionality','%�%�j%�%j%�j%�%�%� %� %# %�j%� j%� j%�j%�%�%� %�%�j%�%��%� %# %��%� %�%�%� %]%%�%� j%�j%�%�%� %�%�j%�%��%� %# %#j%�j%�% %#%�%�%� %�%[%j%�j%�%%� j%� SMTP j%�j%�%j%��%�j%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9922,'af','configure_now','j%�%�j%% �%��%� j%�%�j%U%�%�%� %# %�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9923,'af','total_published_products','%]%%�%� j%�%[%j%�j%�%%� j%$%%�%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9924,'af','total_sellers_products','j%� %[%%�%�j%�%%�%� %#%� %]%%�%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9925,'af','total_admin_products','j%� j%%%�j%�j%�%� j%�j%�j%�j%�%%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9926,'af','manage_products','%�j%�j%a%%�%�j%�j%� j%�j%�j%�j%�%%� %# %�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9927,'af','total_product_category','j%� %]%%�%� %�j%�j%a%%�%� %#%]% %�%�j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9928,'af','create_category',' %#%]% %�%�j%�%�%� j%�%� %�%� %# %�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9929,'af','total_product_sub_sub_category','j%� %�j%�j%a%%�%� %]%%�%� %�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9930,'af','create_sub_sub_category','%�j%�%j%c%%� %�j%�% %#%]% %�%�j%�%%� j%�%� %�%� %# %�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9931,'af','total_product_sub_category','j%� %]%%�%� %�j%�j%a%%�%� %�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9932,'af','create_sub_category','%�j%�%j%c%%� %#%]% %�%�j%�%�%� j%�%� %�%� %# %�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9933,'af','total_product_brand','j%� j%�j%$%%[% %� %�j%�j%a%%�%� %� %�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9934,'af','create_brand','%� %�%� j%�%� %�%� %# %�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9935,'af','total_sellers','%]%%�%� %[%%�%�j%�%%�%� %#%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9936,'af','total_approved_sellers','%]%%�%� j%�j%a%%��%�j%� j%$%%�%� %[%%�%�j%�%%�%� %#%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9937,'af','total_pending_sellers','%]%%�%� %[%j%�j%��%� %[%%�%�j%�%%�%� %#%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9938,'af','manage_sellers','%[%%�%�j%�%%�%� %#%� j%�j%�j%�j%�%%� %# %�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9939,'af','category_wise_product_sale','j%� %#%]% %�%�j%�%�%� %�j%V%j%�j%�%� %�j%�j%a%%�%�j%�j%�%� %[%%�%�j%�%','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9940,'af','sale','%[%%�%�j%�%','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9941,'af','category_wise_product_stock','j%� %#%]% %�%�j%�%�%� %�j%�j%�% %�j%�j%�% %�j%�j%a%%�%� j%%%]%j%� %#','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9942,'af','category_name','j%� %#%]% %�%�j%�%�%� %�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9943,'af','stock','j%%%]%j%� %#','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9944,'af','frontend','%�j%� j%�j%�j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9945,'af','home_page',' %#%�j%�% %[%j%� .%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9946,'af','setting','j%�%�j%U%�%�%�','2021-02-09 07:17:43','2021-02-09 07:17:43'),(9947,'af','policy_page','j%� %[%j%�%��%�j%%�%� %[%j%� .%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9948,'af','general','j%c%%�%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9949,'af','click_here','j%�%�j%�%� j%�%%�j%�% %�j%�% %# %��%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9950,'af','useful_link',' %�%]%%�j%�% %��%�%� %#','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9951,'af','activation','%�j%c%j%�%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9952,'af','smtp','SMTP','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9953,'af','payment_method','j%� j%�j%�j%��%��%� %��%�j%�%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9954,'af','social_media','%]%%�%�%��%�j%�%�%� j%�%j%%%��%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9955,'af','business','j%%%�j%�j%� %�j%�%%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9956,'af','seller_verification','j%� %[%%�%�j%�%%�%� %#�%� j%�j%��%��%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9957,'af','form_setting','j%� setting%� j%�%�j%U%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9958,'af','language',' %�j%�%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9959,'af','dashboard',' %�j%$%j%�%�j%�% %�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9960,'af','pos_system','%[%%�j%%%]% j%%�%�j%%%]%%�','2021-02-09 07:17:43','2021-09-20 07:29:36'),(9961,'af','pos_manager','%[%%�j%%%]% j%%%�j%�j%�%� %�j%�%','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9962,'af','pos_configuration','j%� %[%%�j%%%]% j%$% %#%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9963,'af','products','%�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9964,'af','add_new_product','%�%��%� %�j%�j%a%%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9965,'af','all_products','%]%%�%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9966,'af','in_house_products','j%� %#%�j%�% %�j%�j%a%%�%�j%�j%�%� %#�%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9967,'af','seller_products','%[%%�%�j%�%%�%� %#%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9968,'af','digital_products',' %��%�j%��%�%]%%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9969,'af','bulk_import','j%� j%�j%�%� %�j%�j%�%j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9970,'af','bulk_export','j%� j%�j%�%� j%a%j%�j%�j%�%j%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9971,'af','category',' %#%]% %�%�j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9972,'af','subcategory','%�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9973,'af','sub_subcategory','%�j%�%j%c%�%� %�j%�%j%c%�%� %#%]% %�%�j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9974,'af','brand','%� %�%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9975,'af','attribute','j%�j%�j%a%�%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9976,'af','product_reviews','j%� %�j%�j%a%%�%� j%��%�j%� %#j%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9977,'af','sales','%[%%�%�j%�%','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9978,'af','all_orders','%]%%�%��%� j%%%[%j%�j%�%%��%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9979,'af','inhouse_orders','j%� %#%�j%�% j%� %#%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9980,'af','seller_orders','j%� %[%%�%�j%�%%�%� %#%� j%�%�j%�%%�%�%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9981,'af','pickup_point_order','j%� %[%%�j%�%j%�%� %#%�%�%� %]% %#�%� j%�j%�%j%��%�j%�','2021-02-09 07:17:43','2021-09-20 07:29:37'),(9982,'af','refunds','j%��%�j%�%j%�%� j%%j%�%��%�j%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9983,'af','refund_requests','j%� j%��%�j%�%j%�%� j%%j%�%��%�j%�%� j%Q%%� %�j%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9984,'af','approved_refund','j%�j%a%%��%�j%� j%$%%��%� %[%�%�j%%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9985,'af','refund_configuration','j%� j%�%j%�j%%j%�%�%�%�%� j%�j%�%j%��%�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9986,'af','customers','%[%�%�j%�%%�j%�%�%� %#%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9987,'af','customer_list','j%� %[%�%�j%�%%�j%�%�%� %#%� %��%�j%%j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9988,'af','classified_products','%�j%�j%�%%� j%$%%�%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9989,'af','classified_packages',' %#%]% %�%�j%�%�%� j%�j%%j%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9990,'af','sellers','%[%%�%�j%�%%�%� %#%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9991,'af','all_seller','%]%%�%� %[%%�%�j%�%%�%� %#�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9992,'af','payouts','j%�j%�j%��%�j%�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9993,'af','payout_requests','j%� j%�j%�j%��%�j%�j%�%� j%Q%%� %�j%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9994,'af','seller_commission','j%� %[%%�%�j%�% %#%��%�j%%�%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9995,'af','seller_packages','j%� %[%%�%�j%�% %# %�%� %��%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9996,'af','seller_verification_form','j%� %[%%�%�j%�%%�%� %#%� j%�j%��%��%�j%� %�%�j%�%%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9997,'af','reports','j%�%j%�%[%%�j%�%%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9998,'af','in_house_product_sale','j%� %#%�j%�% %�j%�j%a%%�%� %[%%�%�j%�% %#�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(9999,'af','seller_products_sale','j%� %[%%�%�j%�% %[%%�%�j%�% %�j%�j%a%%�%�j%�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10000,'af','products_stock','j%� %�j%�j%a%%�%�j%�j%�%� j%%%]%j%� %#','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10001,'af','products_wishlist','j%� %�j%�j%a%%�%�j%�j%�%� %��%�j%%j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10002,'af','user_searches','j%� %#j%�j%�%%�%�%� %#%� %�%]%%�%�%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10003,'af','marketing','j%�j%�j%�%j%�j%�%%�%�%�j%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10004,'af','flash_deals','j%� %�%�j%$% %�j%c%j%�%�%��%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10005,'af','newsletters','j%�j%�j%�%j%��%�j%�%��%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10006,'af','bulk_sms','%�%��%� %[%�%�j%Q%j%�%�%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10007,'af','subscribers','%[%�%�j%�%%�j%�%�%� %#%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10008,'af','coupon',' %#%�%[%%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10009,'af','support','%�%�j%�j%� %�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10010,'af','ticket','%]%�%� %#%]%','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10011,'af','product_queries','j%� %�j%�j%a%%�%� %[%%� %�j%�%��%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10012,'af','website_setup','j%� %��%�j%� %[%j%� Set�%� j%�%�j%U%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'); INSERT INTO `translations` VALUES (10013,'af','header','j%%j%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10014,'af','footer','%�%�%]%j%�%','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10015,'af','pages','%[%j%� .�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10016,'af','appearance','j%U%j%�%�j%�%%� j%� .%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10017,'af','setup__configurations','j%�%�j%U%�%�%� j%�%� j%�%� %�%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10018,'af','general_settings','j%c%%�%�%�%� j%�%�j%%j%�%��%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10019,'af','features_activation','j%� Features�%� %�j%c%j%�%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10020,'af','languages',' %�j%��%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10021,'af','currency','j%�j%%j%c%j%�j%�%%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10022,'af','pickup_point','j%� %[%%�j%�%j%�%� %#%�%�%� %]% %#�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10023,'af','smtp_settings','j%� SMTP j%�%�j%U%�%�%�j%�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10024,'af','payment_methods','j%� j%�j%�j%��%��%� %��%�j%�%�j%�%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10025,'af','file_system_configuration','j%� %�j%��%�%� j%%�%�j%%%]%%� j%$% %#%� j%�%�j%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10026,'af','social_media_logins','%]%%�%�%��%�j%�% j%�%j%%%��%� %�%�%�j%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10027,'af','analytics_tools','j%� j%�j%�%��%�%� j%�%� %#%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10028,'af','facebook_chat','j%� %��%�j%%j%�%� %# %�%]%','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10029,'af','google_recaptcha','j%� %�%� %�%� j%�%�%� %#j%� %�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10030,'af','shipping_configuration','j%� j%�j%�j%�%%�%��%� j%�j%�%j%��%�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10031,'af','shipping_countries','j%�j%�j%�% %� %�%�%� %��%�%�j%�j%�%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10032,'af','affiliate_system','%�j%�j%�j%%j%�%� j%%�%�j%%j%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10033,'af','affiliate_registration_form','j%� %�j%�j%�j%%j%�%� %�%�%� %��%� %#%��%� %�%�j%�%%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10034,'af','affiliate_configurations','%�j%�j%�j%%j%�%� j%�j%$% %#�%�%�j%�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10035,'af','affiliate_users','%�j%�j%�j%%j%�%� %#j%�j%�%%�%� %#%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10036,'af','referral_users','%�j%�%j%�j%c% %#j%�j%�%%�%� %#%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10037,'af','affiliate_withdraw_requests','j%� %�j%�j%�j%%j%�%� %�j%�%�%� j%Q%%� %�j%�%��%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10038,'af','offline_payment_system','j%� j%�%� %�j%�j%�%� j%�j%�j%��%��%� j%%�%�j%%%]%%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10039,'af','manual_payment_methods','j%� %�j%�j%�% %�%�j%� j%�j%�j%��%��%� %��%�j%�%�j%�%�%�%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10040,'af','offline_wallet_recharge','j%� j%�%� %�j%�j%�%� %�j%�%��%�%]% j%�%�%� %�j%�j%�%j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10041,'af','offline_customer_package_payments','j%� %[%�%�j%�%%�j%�%�%� %#%� %[%�%�j%�%%�j%� %# %�%� %��%� j%�j%�j%��%�j%�j%�','2021-02-09 07:17:44','2021-09-20 07:29:37'),(10042,'af','offline_seller_package_payments','j%� %[%%�%�j%�%%�%� %#%� %# %�%� %��%� j%�j%�j%��%�%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10043,'af','paytm_payment_gateway','j%� %[%�%�%]%�%�%� j%�j%�j%��%��%� j%�j%�%%�j%�j%�%%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10044,'af','set_paytm_credentials','j%� %[%�%�%]%�%�%� j%%%�j%�%�%�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10045,'af','club_point_system','j%� %#%�j%� %[%%�j%%%]% j%%�%�j%%%]%%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10046,'af','club_point_configurations','j%� %#%�j%� %[%%�j%�j%�%�%c% j%�j%$% %#�%�%�j%�j%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10047,'af','set_product_point','j%� %�j%�j%a%%�%� %]% %#�%� %�%]%j%� %#j%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10048,'af','user_points',' %#j%�j%�%%�%� %#%� %]% %#%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10049,'af','otp_system','j%� OTP j%%�%�j%%%]%%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10050,'af','otp_configurations','j%� OTP j%�j%$% %#�%�%�j%�j%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10051,'af','set_otp_credentials','j%� OTP j%%%�j%�%�%�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10052,'af','staffs',' %#j%�j%�%%�%�j%�j%�%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10053,'af','all_staffs','%]%%�%� %#j%�j%�%%�%�j%�j%�%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10054,'af','staff_permissions','j%� %#j%�j%�%%�%�j%�j%�%�%� j%�j%�j%�j%�%%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10055,'af','addon_manager','j%� j%� %�%�%�j%�% j%%%�j%�j%�%� %�j%�%','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10056,'af','browse_website','%��%�j%� %[%j%� Browse%� %�%]%%�%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10057,'af','pos','%[%%�j%%%]%','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10058,'af','notifications','j%�j%�j%�%j%��%�j%�%��%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10059,'af','new_orders','%�%�%� j%�%�j%�%%�%�%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10060,'af','userimage',' %#j%�j%�%%� j%c% %#j%%','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10061,'af','profile','%[%j%�%%�%�j%��%�%�','2021-02-09 07:17:45','2021-09-20 07:29:37'),(10062,'af','logout','%�j%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10063,'af','page_not_found','%[%j%� Found%� %�%�%� %�%�%�j%�%� j%$%%�%�!','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10064,'af','the_page_you_are_looking_for_has_not_been_found_on_our_server','%�j%Q%%� %[%j%� page%� %��%� j%�j%�j%%%� �%��%� %[%%� %�%]%%� %#�%� �%�j%�j%%j%� j%�%%�%� %� %[%%� j%%j%�%%�j%�% %#�%� %�j%�%� %�%�%�j%�%� j%$%%�%�.','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10065,'af','registration','j%�j%�j%�%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10066,'af','i_am_shopping_for','j%�%%� j%� j%��%� %�%[%j%�j%�%%� j%�j%�%�%�j%�j%�j%�%�%� %#%�%� ...','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10067,'af','compare','%[%j%�%j%�%�%� %#%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10068,'af','wishlist','%�%�%�%� %�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10069,'af','cart',' %�j%� %��%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10070,'af','your_cart_is_empty','j%%j%�j%�j%%%� %#j%�j%�%%]% j%�j%$% j%��%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10071,'af','categories',' %#%]% %�%�j%�%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10072,'af','see_all','%]%%�%� %� %�%�j%�%%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10073,'af','seller_policy','j%� %[%%�%�j%�%%��%� j%� %�%�j%�j%�%%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10074,'af','return_policy','j%� j%�%j%� %�j%�% %�%�%�%� j%$%j%�%j%�%�j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10075,'af','support_policy','j%� %�%�j%�j%� %� j%� %�%�j%�j%�%%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10076,'af','privacy_policy','j%� %[%%]%j%��%�j%� j%� %�%�j%�j%�%%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10077,'af','your_email_address','j%%j%�j%�j%%%� j%� j%�j%�%�%� %�%�j%�%��%� %# j%�j%�j%�%j%%','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10078,'af','subscribe',' %� %�%�%� %� %# %�j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10079,'af','contact_info','j%� j%� %��%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10080,'af','address','%[%j%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10081,'af','phone','j%�%��%�%�%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10082,'af','email','j%�j%�%�%� %�%�j%�%��%� %#','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10083,'af','login','j%� %�%�%� %#�%�j%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10084,'af','my_account','j%�%%�j%� j%�j%%j%�j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10085,'af','order_history','j%� j%%%[%j%�j%�%%��%� j%�j%�j%�%�%�j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10086,'af','my_wishlist','j%�%%�j%� j%� j%Q%%� %�j%�%��%� %��%�j%%j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10087,'af','track_order','j%� j%%%[%j%�j%�%%��%� j%�%�j%�%','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10088,'af','be_an_affiliate_partner','%�j%�j%�j%%j%�%� %�%� %�j%�%%� j%�%�j%%j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10089,'af','be_a_seller','%[%%�%�j%�%%�%� %#�%� j%�%�j%%j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10090,'af','apply_now','j%�%�j%% j%Q%%� %�j%�%�%� %� %# %�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10091,'af','confirmation','j%�j%a%j%��%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10092,'af','delete_confirmation_message','j%� j%�j%��%��%�j%� %[%�%�j%Q%j%�%� j%�j%�%%� %# %�j%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10093,'af','cancel','%�j%Q%%�%� %#%�%�','2021-02-09 07:18:14','2021-09-20 07:29:37'),(10094,'af','delete',' %�%� %�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10095,'af','item_has_been_added_to_compare_list','j%�%� %#%� j%� %[%j%�%j%�%�%� %#%�%�%� %��%�j%%j%� %�%[%j%�j%�%%� j%�j%b%j%�%�%� j%$%%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10096,'af','please_login_first','%�%�j%�%j%�j%�%�%� %� %# %�j%� %�%�%� %��%� %�%�%�j%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10097,'af','total_earnings_from','j%� %]%%�%�%]%j%�%� j%c%j%��%�j%� %�j%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10098,'af','client_subscription','j%� %[%�%�j%�%%�j%�%�%� %#%� %� %�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10099,'af','product_category','j%� %�j%�j%a%%�%� %#%]% %�%�j%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10100,'af','product_sub_sub_category','j%� %�j%�j%a%%�%� %�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10101,'af','product_sub_category','j%� %�j%�j%a%%�%� %�j%�%j%c%%� %#%]% %�%�j%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10102,'af','product_brand','j%� %�j%�j%a%%�%� %� %�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10103,'af','top_client_packages','j%� %[%�%�j%�%%�j%�%�%� %#%� j%Q%%�j%�%%� %# %�%� %��%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10104,'af','top_freelancer_packages','j%Q%%�j%�%%� %�j%�%�%� %�j%�%�j%% %# %�%� %��%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10105,'af','number_of_sale','j%� %[%%�%�j%�% j%$%%��%�j%�%%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10106,'af','number_of_stock','j%� j%%%]%j%� %# j%$%%��%�j%�%%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10107,'af','top_10_products','j%Q%%�j%�%%� 10 %�j%�j%a%%�%�j%�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10108,'af','top_12_products','j%Q%%�j%�%%� 12 %�j%�j%a%%�%�j%�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10109,'af','admin_can_not_be_a_seller','j%� %�%��%�%� %[%%�%�j%�%%�%� %#�%� %�j%$%%� %#�%�j%��%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10110,'af','filter_by_rating','j%� j%�j%�%j%��%� j%%j%�%%� %�%�%]%j%�% %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10111,'af','published_reviews_updated_successfully','j%�%[%j%�j%�%%� j%$%%��%� j%��%�j%� %#j%�%��%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10112,'af','refund_sticker_has_been_updated_successfully','j%� %[%�%�j%%%� j%��%�j%�%j%�%� j%%%]%�%� %#j%�% %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10113,'af','edit_product','%�j%�j%a%%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10114,'af','meta_images','j%� %��%�%]%j%� j%�%� %�%�j%�%%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10115,'af','update_product','j%� %�j%�j%a%%�%� j%�%�j%%%�%�j%�%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10116,'af','product_has_been_deleted_successfully','%�j%�j%a%%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�%� %� j%$%%��%� j%��%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10117,'af','your_profile_has_been_updated_successfully','j%%j%�j%�j%%%� %[%j%�%%�%�j%��%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�!','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10118,'af','upload_limit_has_been_reached_please_upgrade_your_package','j%� %[%%�j%�%j%�%� %#%�%�%� j%�j%� j%�%� j%�%j%%�%�j%�%��%� %�%�j%�%j%�j%�%�%� %� %# %�j%� j%�%[%%�%� %# %�%� %�%� %[%j%�%%�j%�j%�%�%��%� %# %�j%�.','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10119,'af','add_your_product','j%�%[%%� %�j%�j%a%%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10120,'af','select_a_category',' %#%]% %�%�j%�%�%� %�%]%j%� %#j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10121,'af','select_a_brand','�%�%� %� %�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10122,'af','product_unit','j%� %�j%�j%a%%�%� %�j%�j%�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10123,'af','minimum_qty','%� %�j%�j%�%%� %�%� %�%�j%�j%�j%�%.','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10124,'af','product_tag','j%� %�j%�j%a%%�%� %]%j%� %�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10125,'af','type__hit_enter','%]%j%��%�%[% j%�%� %]% %# %�j%�% %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10126,'af','videos','%��%� %��%�%� %�j%�%��%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10127,'af','video_from','%��%� %��%�%� %�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10128,'af','video_url','%��%� %��%�%� URL','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10129,'af','customer_choice','j%� %[%�%�j%�%%�j%�%�%� %#%� j%�%�j%�j%�j%�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10130,'af','pdf','j%� %[%�%� %��%� j%��%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10131,'af','choose_pdf','j%� %[%�%� %��%� j%��%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10132,'af','select_category',' %#%]% %�%�j%�%�%� j%Q%%�j%�%%� %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10133,'af','target_category','j%� %#%]% %�%�j%�%�%� %#%]% %�%�j%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10134,'af','subsubcategory','%�j%�%j%c%%� %��%�j%$%%�%�j%�%%�','2021-02-09 07:18:15','2021-02-09 07:18:15'),(10135,'af','search_category',' %#%]% %�%�j%�%�%� %[%%�%]%%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10136,'af','search_subcategory','%�j%�%j%c%%� %#%]% %�%�j%�%�%� %�%]%%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10137,'af','search_subsubcategory','j%� %�j%�%j%c%%� j%%j%��%�%]% %#%]% %�%�j%�%%� %�%�%�%�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10138,'af','update_your_product','j%�%[%%� %�j%�j%a%%�%� j%�j%�j%�%%� %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10139,'af','product_has_been_updated_successfully','%�j%�j%a%%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%� j%��%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10140,'af','add_your_digital_product','j%�%[%%� %��%�j%��%�%]%%� %�j%�j%a%%�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10141,'af','active_ecommerce_cms_update_process','j%� %�j%c%j%�%� j%��%� %#j%�%�j%�%j%% CMS j%�j%�j%�%%� %[%j%�%%�j%%%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10142,'af','codecanyon_purchase_code','j%� %#%� %��%� %#j%�%�%�%� %[%�%�j%�%%�j%� %#%� %�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10143,'af','database_name','j%� %��%�%]%j%�j%��%�j%% %�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10144,'af','database_username','j%� %��%�%]%j%�j%��%�j%% %#j%�j%�%%� %�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10145,'af','database_password','j%� %��%�%]%j%�j%��%�j%% %[%%]%%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10146,'af','database_hostname','j%� %��%�%]%j%�j%��%�j%% %#%�j%�%j%�%� %�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10147,'af','update_now','j%�%�j%% j%�j%�j%�%%� %# %�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10148,'af','congratulations','%�j%�j%�j%�% %# j%$%%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10149,'af','you_have_successfully_completed_the_updating_process_please_login_to_continue','j%�j%�j%%%� j%� j%�%�j%%%�%�j%�%�%�%�%� j%�%��%�j%�% %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%$%%[% %� %# %��%� j%��%�. %�%�j%�%j%�j%�%�%� %� %# %�j%� j%�%�j%�%� %�j%�% %# %�j%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10150,'af','go_to_home',' %#%�j%�% j%�%� j%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10151,'af','login_to_admin_panel','j%� %�%��%�%� %[%�%�%�%� j%�%� %�%�%�j%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10152,'af','s3_file_system_credentials','j%� S3 %�j%��%�%� j%%�%�j%%%]%%� j%%%�j%�%�%�%�','2021-02-09 07:18:15','2021-09-20 07:29:37'),(10153,'af','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10154,'af','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10155,'af','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10156,'af','aws_bucket','AWS_BUCKET','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10157,'af','aws_url','AWS_URL','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10158,'af','s3_file_system_activation','j%� S3 %�j%��%�%� j%%�%�j%%%]%%� %�j%c%j%�%�%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10159,'af','your_phone_number','j%%j%�j%�j%%%� j%� j%�%��%�%�%�%� j%$%%��%�j%�%%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10160,'af','zip_file','j%�%%[% %�j%��%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10161,'af','install','%�%� %�%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10162,'af','this_version_is_not_capable_of_installing_addons_please_update','j%�j%� %�j%%j%�%� j%� j%� %�%�%�%�%�%� %�j%a%j%�%�%�%� j%�%�j%�%� %�%�j%�%%� j%� %�%�j%�%j%�j%�%�%� %� %# %�j%� j%�j%�j%�%%� %# %�j%�.','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10163,'af','search_in_menu','%[%%� %��%�%�%� %#�%� %�%[%%�%]%j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10164,'af','uploaded_files','%[%%�j%�%j%�%� j%$%%��%� %�j%��%�%�%�%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10165,'af','shipping_cities','j%�j%�j%�% %� %�%�%� %�j%�j%�%%�%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10166,'af','system','j%%�%�j%%%]%%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10167,'af','server_status','j%� j%%j%�%%�j%�% j%�j%�%�j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10168,'af','nothing_found',' %�%� %[%�%�j%�j%� %�%� j%$%%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10169,'af','parent_category','j%�j%a%%�%� %#%]% %�%�j%�%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10170,'af','level',' %# %�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10171,'af','category_information',' %#%]% %�%�j%�%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10172,'af','translatable','j%� %�j%�j%� %��%� %� %�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10173,'af','no_parent','%��%� %� %�%�j%�% %�j%$%j%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10174,'af','physical','%�j%�%�%� %#%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10175,'af','digital',' %��%�j%��%�%]%%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10176,'af','200x200','200x200','2021-02-09 07:18:16','2021-02-09 07:18:16'),(10177,'af','32x32','32x32','2021-02-09 07:18:16','2021-02-09 07:18:16'),(10178,'af','search_your_files','j%�%[%%� %�j%��%�%�%�%�%� %�%[%%�%]%j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10179,'af','category_has_been_updated_successfully',' %#%]% %�%�j%�%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�%�%� j%$%%��%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10180,'af','all_uploaded_files','%]%%�%��%� %[%%�j%�%j%�%� j%$%%��%� %�j%��%�%�%�%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10181,'af','upload_new_file','%�%��%� j%�%�j%�%�%� %[%%�j%�%j%�%� %#%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10182,'af','all_files','%]%%�%��%� %�j%��%�%�%�%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10183,'af','search','%�%]%%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10184,'af','details_info','j%�%�j%b%�%�j%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10185,'af','copy_link','%��%�%� %# %#j%�%[%%� %# %�j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10186,'af','are_you_sure_to_delete_this_file','j%��%�j%� j%�%� j%�j%�%�j%�%%� �%��%� %��%� j%�j%� j%�%�j%�%�%� %�%� %�%�%� j%Q%%�j%� %��%�j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10187,'af','file_info','j%� %�j%��%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10188,'af','link_copied_to_clipboard','%��%�%� %# %#%�%�%[% j%�%�j%�% %� j%�%� %#j%�%[%%� j%$%%��%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10189,'af','oops_unable_to_copy','j%�%�%� j%� j%� %#j%�%[%%� %#%�%�%� j%�%�j%�%� %�%�j%�%%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10190,'af','file_deleted_successfully','%�j%��%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�%� %� j%$%%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10191,'af','add_new_brand','%�%��%� %� %�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10192,'af','120x80','120x80','2021-02-09 07:18:16','2021-02-09 07:18:16'),(10193,'af','brand_information','j%� %� %��%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10194,'af','brand_has_been_updated_successfully','j%�j%�%j%�%� %� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%� j%��%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10195,'af','brand_has_been_deleted_successfully','%� %�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�%� %�%� j%$%%��%� j%�%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10196,'af','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','j%�j%� j%� %�%]%%�%� %�%[%j%�j%�%%� %#j%�j%�%%�%� %#�%� %�%�. %�j%Q%%� %]% %#%� j%�j%�j%�%� %# %�j%� %��%� %[%%� %#%�%�%� j%%j%�%%� %#%]%%�%�j%�% %#%�%��%� j%$%%� j%�j%� %�j%�j%a%%�%� %�%�%�%�%�.','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10197,'af','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','j%�j%� j%c% %#j%%%�%�%� j%� %�j%�j%a%%�%� j%�%�j%b%�%�j%�%� %[%j%� page�%� %�j%�%�j%�%%� %#�%� %��%�j%�%� %#�%� %�%�. j%� 600x600 j%�%�j%�j%�j%�%�%� j%c% %#j%%%�%�%� %� %#j%�j%�%%�j%�.','2021-02-09 07:18:16','2021-09-20 07:29: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','j%�j%� j%c% %#j%% j%� %]%%�%�%� %�j%�j%a%%�%� j%� %#j%% %#�%� %�j%�% %�%�j%� j%��%�. j%� 300x300 j%�%�j%�j%�j%�%%� j%c% %#j%% %� %#j%�j%�%%�j%�. j%� j%�%[%%� j%c% %#j%% j%�j%a%%�%� j%�j%a%%�%� j%$%j%�%�j%�%�j%� j%$%j%�%�j%�%�j%� j%�j%�%�%� %�j%��%� %�j%%j%�j%�j%� %� %#%� %��%� %�%� %� j%�j%��%�j%� %[%%� j%��%�%�j%�j%��%�%�%� %�j%%�%�%�%� %#�%� %��%�%��%� %�%� %��%� %#j%�%j%� %#�%� %# %�%� j%�j%�% %�%� j%�j%� �%��%� %�%�j%�j%� %��%�%�%� %#%� %�%�.','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10199,'af','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','j%� j%�j%b%j%�%�%� %[%�%�j%�%j%�%��%�%]% %[%j%�%j%�%� %�%�j%�j%%j%� %��%�%� %# %� %#j%�j%�%%�j%�. j%� %�%� %� j%$%j%�%�%� %# %��%�%� %# / j%��%�%�j%��%� %� j%$%%�%� iframe %#%� %� %�%� %#j%�j%�%%�j%�.','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10200,'af','save_product','%�j%�j%a%%�%� j%�%�%�j%�%� %# %�j%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10201,'af','product_has_been_inserted_successfully','%�j%�j%a%%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%� j%$%%��%� j%��%�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10202,'af','something_went_wrong',' %#%�%�%� j%��%�j%�%%�j%�%�%� %�j%$%%�%�!','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10203,'af','sorry_for_the_inconvenience_but_were_working_on_it','j%� j%� %#%��%�%� %�%[%j%�j%�%%� j%�j%� %�%�%� j%Q%%�j%� %�%� j%� %� %�j%�% %�%� %� %[%j%��%� %#�%� %#j%�j%�% %#%�%�.','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10204,'af','error_code','j%�j%V%j%� %#%� %�','2021-02-09 07:18:16','2021-09-20 07:29:37'),(10205,'af','please_configure_smtp_setting_to_work_all_email_sending_functionality','%�%�j%�%j%�j%�%�%� %� %# %�j%� j%� j%�j%�%�%� %�%�j%�%��%� %# %��%� %�%�%� %]%%�%� %�j%c%j%�%��%�j%� %#j%�j%�% %#%�%�%� %�%[%j%�j%�%%� j%� SMTP j%�j%�%j%��%�j%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10206,'af','order','j%�%�j%�%','2021-02-09 07:18:17','2021-09-20 07:29: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','%�%� %� j%� UI j%%j%�j%�%�%� %�%[%j%�j%�%%� %�j%�j%�%�j%� j%��%�%�j%�% %�j%� %�j%�%%�. %�%� %� j%�j%��%�j%� j%� j%��%�%�j%�j%��%�%� %�j%%�%�%�%� %�%[%j%�j%�%%� %��%�j%� %#�%� j%� %#�%� left j%�%� %��%��%� j%� %�j%� %�j%�%� %�j%a%%� %# %�%� j%� j%�j%�% %�%� %�%�j%�j%� %��%�%�%� %#%� j%�%� %� j%$%%�. j%� j%��%�%�j%�% %��%�j%�%j%��%�%� %#%�%�%� j%�%�j%�%� j%�j%� %]% %#%� %[%%� j%�%%�%� %#�%� %�j%%j%�j%�j%�.','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10208,'af','home_banner_3_max_3','j%� %#%�j%�% j%��%�%�j%�% 3 (j%�j%c%j%U%%�%� 3)','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10209,'af','add_new_seller','%�%��%� %[%%�%�j%�%%�%� %#�%� j%�j%b%j%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10210,'af','filter_by_approval','j%� j%�j%��%��%�j%� %�j%�%�j%� %�%�%]%j%�%','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10211,'af','nonapproved','j%Q%�%�j%�% %�%�%� j%$%%��%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10212,'af','type_name_or_email__enter','%�%�%� �%�j%� j%�j%�%�%� %�%�j%�%��%� %# j%�%� %]%j%��%�%[% %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10213,'af','due_to_seller','j%� %[%%�%�j%�%%�%� %#%� %�%� j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10214,'af','log_in_as_this_seller','j%� j%��%� %[%%�%�j%�%%�%� %#%� %[%%� j%�%� %�%� %�%�%�j%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10215,'af','go_to_payment','j%�j%�j%��%��%� j%�%� %�j%� %�j%$%j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10216,'af','ban_this_seller','j%�j%� %[%%�%�j%�%%�%� %#�%� %�%�j%c% %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10217,'af','do_you_really_want_to_ban_this_seller','j%��%�j%� j%�j%�j%%%� %�j%�%�j%c%�%�j%� j%Q%%�j%� %�j%� %��%� j%�j%� %[%%�%�j%�%%�%� %#�%� j%�%�j%� %# %�j%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10218,'af','proceed','%[%j%�%%�j%� %�j%� %� j%$%%�!','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10219,'af','approved_sellers_updated_successfully','%�%�j%U%%�j%�% j%$%%�%� %[%%�%�j%�%%�%� %#%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� %�%�%� j%$%%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10220,'af','seller_has_been_deleted_successfully','%[%%�%�j%�%%�%� %#�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�%%� j%$%%��%� j%��%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10221,'af','seller_information','j%� %[%%�%�j%�%%�%� %#%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10222,'af','seller_has_been_inserted_successfully','%[%%�%�j%�%%�%� %#�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%� j%$%%��%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10223,'af','email_already_exists','j%�j%�%�%� %�%�j%�%��%� %# %�j%� j%�%�j%�%� j%$%j%�%�%� %�j%�%%�!','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10224,'af','verify_your_email_address','j%�%[%%� j%�j%�%�%� %�%�j%�%��%� %# j%�j%��%��%�j%� %# %��%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10225,'af','before_proceeding_please_check_your_email_for_a_verification_link','j%� %[%j%�%%�j%� j%�%�%�%� j%�%�j%�%� j%� %�%�j%�%j%�j%�%�%� %� %# %�j%� j%� j%�j%��%��%�j%� %��%�%� %# %�%[%j%�j%�%%� j%�%[%%� j%�j%�%�%� %�%�j%�%��%� %# %� %�%�j%�%j%�.','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10226,'af','if_you_did_not_receive_the_email',' %#%� j%�j%�j%%%� j%�j%�%�%� %�%�j%�%��%� %# j%�j%�%%�j%�j%%%� %� %# %�j%�.','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10227,'af','click_here_to_request_another','j%� j%�%� j%Q%%� %�j%�%�%� %#%�%�%� %�%[%j%�j%�%%� j%�%�j%�%� %#%��%� %# %� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10228,'af','email_verification','j%� j%�j%�%�%� %�%�j%�%��%� %# j%�j%��%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10229,'af','email_verification__','j%� j%�j%�%�%� %�%�j%�%��%� %# j%�j%��%��%�j%� -','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10230,'af','https_activation','j%� HTTPS %�j%c%j%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10231,'af','maintenance_mode','j%� j%%j%�j%�%��%� j%�j%�%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10232,'af','maintenance_mode_activation','j%� j%%j%�j%�%��%� j%�j%�%�j%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10233,'af','classified_product_activate','%�j%�j%�%%� %�j%�j%a%%�%� j%�%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10234,'af','classified_product','%�j%�j%�%%� %�j%�j%a%%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10235,'af','business_related','j%� j%%%�j%�j%� %�j%�%�%� j%� %�%�%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10236,'af','vendor_system_activation','j%� %[%%�%�j%�%%�%� %#%� j%%�%�j%%%]%%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10237,'af','wallet_system_activation','j%� %�j%�%�%]% j%%�%�j%%%]%%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10238,'af','coupon_system_activation','j%� %#%�%[%%� j%%�%�j%%%]%%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10239,'af','pickup_point_activation','j%� %[%%�j%�%j%�%� %#%�%�%� %]% %#�%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10240,'af','conversation_activation','j%� j%�j%�j%�%%� j%�j%�j%�%%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10241,'af','guest_checkout_activation','j%� %��%�%�%�%� %��%� %# %��%� %#','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10242,'af','categorybased_commission','j%� %#%]% %�%�j%�%�%� %[%j%�%j%�j%%j%�j%% %#%��%�j%%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29: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','j%� j%��%� j%�j%�j%��%�j%�j%�% %�j%c%j%�%�%�%�%� %�j%�%%�j%%j%�%� j%�%� j%� %[%%�%�j%�% %#%��%�j%%%�%� %�j%c%%�%�%� j%$%%� j%�%� j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� %[%%� %�j%�%%� %#%]% %�%�j%�%�%� %#�%� %#%��%�j%%%�%� %�%]%j%� %#j%� %#%� %�%� %�%� j%�j%�j%�j%�%%� j%�%� %��%� %� %#%��%�j%%%�%� j%�j%�%%�j%�j%%%� %� %# %�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10244,'af','set_commisssion_now','j%�%�j%% %#%��%�j%%%�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10245,'af','payment_related','j%� %�%�%�j%� j%�j%�j%��%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10246,'af','paypal_payment_activation','j%� j%�j%�j%��%��%� j%�j%�j%��%�%� %�j%c%j%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10247,'af','you_need_to_configure_paypal_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable%� %�j%c%j%�%�%�%�%� %�%[%j%�j%�%%� j%� j%�j%�j%��%��%� j%�%�j%U%�%�%� %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10248,'af','stripe_payment_activation','j%� %[%%]%�%� j%�j%�j%��%�%� %�j%c%j%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10249,'af','sslcommerz_activation','j%� j%��%�j%% j%��%�j%% j%��%�%� %#j%�%�j%�%j%% %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10250,'af','instamojo_payment_activation','j%� j%�%�j%%%]%j%� %�j%�%�%� j%�j%�j%��%�%� %�j%c%j%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10251,'af','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable%� %�j%c%j%�%�%�%�%� %�%[%j%�j%�%%� j%� j%�%�j%%%]%j%� %��%�%�%� j%�j%�j%��%�%� %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10252,'af','razor_pay_activation','j%� j%�%�%�j%�%j%�% j%�j%�j%��%�%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10253,'af','you_need_to_configure_razor_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable�%� %�j%c%j%�%�%�%�%� %�%[%j%�j%�%%� j%�%�%�j%�%j%�% %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10254,'af','paystack_activation','j%� %[%�%�j%% j%%%]%�%� %# %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10255,'af','you_need_to_configure_paystack_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable%� %�j%c%j%�%�%�%�%� %�%[%j%�j%�%%� j%� j%�j%�j%��%��%� j%%%]%�%� %# %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10256,'af','voguepay_activation','j%� VoguePay %�j%c%j%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10257,'af','you_need_to_configure_voguepay_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable�%� %� %� %#%�%�%� %�%[%j%�j%�%%� j%� %� %�%� %[%�%� %[%�%�j%%�%� %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10258,'af','payhere_activation','j%� %[%j%��%�%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10259,'af','ngenius_activation','j%� %� %�%��%�j%�%�%� %�j%c%j%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10260,'af','you_need_to_configure_ngenius_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable�%� %� %� %#%�%�%� %�%[%j%�j%�%%� j%� %� %��%�%��%�%�j%% j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10261,'af','iyzico_activation','j%� j%��%�j%�%�%� %#%� %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10262,'af','you_need_to_configure_iyzico_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable%� %�j%c%j%�%�%�%�%� %�%[%j%�j%�%%� j%��%� %��%� %#%� %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10263,'af','bkash_activation','j%� j%� %#j%$% %�j%c%j%�%�%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10264,'af','you_need_to_configure_bkash_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable�%� %� %� %#%�%�%� %�%[%j%�j%�%%� j%� bkka j%%%�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10265,'af','nagad_activation','j%� %�j%� %� %� %�j%c%j%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10266,'af','you_need_to_configure_nagad_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable%� %�j%c%j%�%�%�%�%� %�%[%j%�j%�%%� %�j%� %� %� %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10267,'af','cash_payment_activation','%�j%Q%j%�%� j%�j%�j%��%�%� %�j%c%j%�%��%�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10268,'af','social_media_login','j%� %]%%�%�%��%�j%�%%� j%�%j%%%��%�%� %�%�%�j%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10269,'af','facebook_login','j%� %��%�j%%j%�%� %# %�%�%�j%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10270,'af','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable�%� %� %� %#%�%�%� %�%[%j%�j%�%%� j%� %��%�j%%j%�%� %# %�j%�%j%�j%�j%c% %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10271,'af','google_login',' %�%� %�%� %�%�%�j%�%�','2021-02-09 07:18:17','2021-09-20 07:29:37'),(10272,'af','you_need_to_configure_google_client_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable%� %�j%c%j%�%�%�%�%� %�%[%j%�j%�%%� j%� %�%� %�%� %[%�%�j%�%%�j%�%�%� %#%� %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10273,'af','twitter_login','j%� %]%%��%�%]%j%�% %�%�%�j%�%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10274,'af','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','j%�j%�j%%%� j%� %�j%��%�j%� %�j%�%j%� j%� j%��%� j%� enable%� %�j%c%j%�%�%�%�%� %�%[%j%�j%�%%� j%� %]%%��%�%]%j%�% %[%�%�j%�%%�j%�%�%� %#%� %[%%� j%%%�%� j%�%� %�%� j%�%�j%U%�%�%� %# %�j%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10275,'af','shop_logo','j%�%� %#j%�%� %�%� %�%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10276,'af','shop_address','j%� %[%%�%�j%�%%� %�%� %[%j%�%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10277,'af','banner_settings','j%� j%��%�%�j%�% j%�%�j%U%�%�%�j%�j%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10278,'af','banners','j%��%�%�j%�%%�%�%�','2021-02-09 07:18:18','2021-09-20 07:29: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','%�%� %� j%�j%��%�j%� %�%� %�%�j%�%��%� j%� %��%�%�j%�j%%j%�j%�%�%� j%�j%%j%�j%� %#j%�%� %[%%�j%�%�%� %�j%�j%�%�j%� %# %�%�. %[%%� %��%�%�%� %�j%%�%�%�%� %#�%� %�%� %#%� j%� %�%� %�%�j%�%�%� %�j%�j%�%�j%��%�j%� %�%[%j%�j%�%%� j%� j%��%�%�j%�% j%�%�j%� %�%� j%�%�j%�%��%� %�j%a%%� j%$%%�.','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10280,'af','insert_link_with_https_','j%� https j%%j%�%%� %��%�%� %# j%�%�%�%� %# %�j%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10281,'af','your_shop_has_been_updated_successfully','j%%j%�j%�j%%%� %[%%�%�j%�%%� %��%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%� j%��%�!','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10282,'af','search_result_for_','%�%[%j%�j%�%%� j%� %�%]%%�%� %[%j%��%�%�%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10283,'af','brand_has_been_inserted_successfully','j%�j%�%j%�%� %� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%� j%$%%��%� j%��%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10284,'af','about','%[%%� j%� %�%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10285,'af','payout_info','j%� j%�j%�j%��%��%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10286,'af','bank_acc_name','j%� j%�j%�%� %# j%� %#j%�%�%�%]% %�%�%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10287,'af','bank_acc_number','j%� j%�j%�%� %#%� j%�j%%j%�j%� j%$%%��%�j%�%%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10288,'af','total_products','%]%%�%� %�j%�j%a%%�%�j%�j%�','2021-02-09 07:18:18','2021-09-20 07:29:37'),(10289,'af','total_sold_amount','j%� %[%%�%�j%�%%� j%$%%��%� %�%�j%�j%�j%�%','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10290,'af','wallet_balance','j%� %�j%�%�%]% j%��%�%�j%�%�j%%','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10291,'af','cookies_agreement','j%� %#%� %#�%�j%�% j%� %�%�%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10292,'af','cookies_agreement_text','j%� %#%� %#�%�j%�% j%� %�%�%� %�j%�%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10293,'af','show_cookies_agreement','j%� %#%� %#�%�j%�% j%� %�%�%� %� %�%�j%�j%�j%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10294,'af','custom_script','j%�%�j%��%�j%�% %�j%�%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10295,'af','header_custom_script__before_head','j%%j%�%�%� j%�%�j%��%�j%�% j%% %#j%�%�%�%[%%]% - j%�%�j%�%� </ j%%j%�%>','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10296,'af','write_script_with_script_tag','j%� <script> %]% %� j%%j%�%%� j%% %#j%�%�%�%[%%]% %�%��%� %#j%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10297,'af','footer_custom_script__before_body','j%� %�%�%]%j%�% j%�%�j%��%�j%�% j%% %#j%�%�%�%[%%]% - j%�%�j%�%� </body>','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10298,'af','category_has_been_inserted_successfully',' %#%]% %�%�j%�%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�%�%�%� j%$%%��%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10299,'af','all_flash_deals','%]%%�%��%� %�%�j%$% %�j%c%j%�%�%��%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10300,'af','create_new_flash_deal','%�%��%� %�%�j%$% %��%�%� j%�%j%�%��%�%� %�j%�%� %# %�j%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10301,'af','ffffff','#FFFFFF','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10302,'af','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','j%�j%� j%c% %#j%% j%� %�%�j%$% %�j%c%j%�%�%��%� j%�%�j%b%�%�j%�%� %[%j%� page�%� %#�%� j%� %[%%� %� j%��%�%�j%�% %[%%� j%�%� %�%� %�%�j%�%� j%$%%��%�.','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10303,'af','flash_deal_has_been_inserted_successfully','j%� %�%�j%$% %��%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�%�%�%� j%$%%��%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10304,'af','flash_deal_status_updated_successfully','j%� %�%�j%$% %�j%c%j%�%�%��%� j%�j%�%�j%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10305,'af','flash_deal_has_been_updated_successfully','j%� %�%�j%$% %��%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10306,'af','update_language_info','j%� %�j%��%� %�j%c%%�%�%�j%�j%� j%�j%�j%�%%� %# %�j%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10307,'af','language_has_been_updated_successfully',' %�j%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�j%�j%�%%� j%$%%��%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10308,'af','type_key__enter',' %#�%�%�%� %�%��%� %#j%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10309,'af','translations_updated_for_','%�%[%j%�j%�%%� %�j%�j%� %��%� j%�j%�j%�%%� j%$%%�%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10310,'af','language_has_been_inserted_successfully',' %�j%�%� %[%%� j%�j%�%�%�j%�%��%�j%�%�j%� j%%j%�%%� j%�%�%�%� j%$%%��%�','2021-02-09 07:18:18','2021-09-20 07:29:38'),(10311,'eg','all_category','%�%� j%�%�%�j%�j%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10312,'eg','all','j%�%�%�%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10313,'eg','flash_sale','j%�%�j%c% %�%�j%�j%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10314,'eg','view_more','j%c%j%�%j%b% j%�%�%�j%�%%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10315,'eg','add_to_wishlist','j%�j%b%%� j%�%�%� %�j%�j%�%�j%# j%�%�j%�%�%�%�j%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10316,'eg','add_to_compare','j%�j%b%%� %�%�%�%�j%�j%�%%�j%#','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10317,'eg','add_to_cart','j%�j%b%%� j%�%�%� j%�%�j%%%�j%#','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10318,'eg','club_point','%�%�%�j%� j%�%�%�%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10319,'eg','classified_ads','j%�%�j%�j%c%%�j%�%�j%�j%� j%�%�%�j%�%�j%�j%#','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10320,'eg','used','%�j%%j%�j%�j%�%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10321,'eg','top_10_categories','j%�j%c%%�%� 10 %�j%�j%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10322,'eg','view_all_categories','j%c%j%�%j%b% j%�%�%�j%c% j%�%�%�j%�j%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10323,'eg','top_10_brands','j%�%�j%b%%� 10 %�j%�j%�%%�j%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10324,'eg','view_all_brands','j%c%j%�%j%b% %�%� j%�%�%�j%�j%�%%�j%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10325,'eg','terms__conditions','j%�%�j%�%�%�j%� %� j%�%�j%U%j%�%%�%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10326,'eg','best_selling','j%�%�j%b%%� %�j%�%�j%c%j%�j%�','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10327,'eg','top_20','j%�%�j%b%%� 20','2021-02-09 07:20:47','2021-09-20 07:29:38'),(10328,'eg','featured_products','%�%�j%�j%�j%�j%� %�%�%�j%�%j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10329,'eg','best_sellers','j%�%�j%b%%� j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10330,'eg','visit_store','%�%� j%�j%�%%�j%�j%�%j%# j%�%�%�j%c%j%�%j%b% j%�%� j%�%�%�j%�j%�j%�%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10331,'eg','popular_suggestions','j%�%�j%�%�j%�j%�%j%�j%�j%�j%� j%�%�j%$%j%c%j%�%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10332,'eg','category_suggestions','j%�%�j%�j%�%j%�j%�j%�j%� j%�%�%�j%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10333,'eg','automobile__motorcycle','j%�%�j%%%�j%�j%�%j%�j%� %�j%�%�j%�j%�%j%�j%�j%�j%� j%�%�%�j%�j%�%%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10334,'eg','price_range','%�j%V%j%�%� j%�%�j%%j%c%j%�%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10335,'eg','filter_by_color','j%�j%a%%�%�j%# j%�j%%j%� j%�%�%�%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10336,'eg','home','j%�%�j%a%%�j%�j%# j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10337,'eg','newest','j%�%�j%�j%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10338,'eg','oldest','j%�%�j%�%�j%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10339,'eg','price_low_to_high','j%�%�j%%j%c%j%�% %�%� j%�%�j%�j%�%j%�j%a% %�%�j%�j%c%%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10340,'eg','price_high_to_low','j%�%�j%%j%c%j%�% j%�%�j%�j%c%%�%� j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10341,'eg','brands','j%�%�j%c%%�j%�%�j%�j%� j%�%�j%�j%�j%�j%�%%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10342,'eg','all_brands','j%�%�%�j%c% j%�%�j%c%%�j%�%�j%�j%� j%�%�j%�j%�j%�j%�%%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10343,'eg','all_sellers','%�%� j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10344,'eg','inhouse_product','%�%�j%�j%� j%�j%�j%�%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10345,'eg','message_seller','%�j%�%j%�j%%%�j%# j%�%�j%�j%�j%�j%c%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10346,'eg','price','j%�%�j%%j%c%j%�%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10347,'eg','discount_price','j%%j%c%j%�% j%�%�j%�j%a%%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10348,'eg','color','j%�%�%�%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10349,'eg','quantity','%�%�%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10350,'eg','available','%�j%�j%�j%�','2021-02-09 07:20:48','2021-02-09 07:20:48'),(10351,'eg','total_price','j%�%�j%%j%c%j%�% j%�%�%�%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10352,'eg','out_of_stock','j%�%�j%�%�%� %�%� j%�%�%�j%�j%�%%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10353,'eg','refund','j%�j%c%j%�j%�j%# %�j%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10354,'eg','share','j%$%j%�j%�%%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10355,'eg','sold_by','j%�%� j%�%�j%c%%�j%� %�%� %�j%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10356,'eg','customer_reviews','j%�j%�%j%�j%� j%�%�j%c%%�%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10357,'eg','top_selling_products','j%�%�%�%�j%�j%�j%�j%� j%�%�j%�%�j%�j%�% %�j%�%�j%c%%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10358,'eg','description','%�j%a%%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10359,'eg','video','%�%�j%�%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10360,'eg','reviews','j%�%�%�j%�%j%�j%�j%c%j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10361,'eg','download','j%�j%�%�%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10362,'eg','there_have_been_no_reviews_for_this_product_yet','%�%� j%�%�%� %�%�j%�%� %�j%�%j%�j%�j%c%j%�j%� %�%�j%�%j%� j%�%�%�%�j%�j%� j%�j%�%� j%�%�j%�%�.','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10363,'eg','related_products','%�%�j%�j%�j%�j%� j%�%j%�j%� j%a%%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10364,'eg','any_query_about_this_product','j%�%� j%�j%%j%�%�j%%j%�j%�% j%c%%� %�j%�%j%� j%�%�%�%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10365,'eg','product_name','j%�j%%%� j%�%�%�%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10366,'eg','your_question','j%%j%�j%�%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10367,'eg','send','j%�j%�%j%%j%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10368,'eg','use_country_code_before_number','j%�j%%j%�j%�j%�%� j%�%%�j%�% j%�%�j%�%�j%� %�j%�%� j%�%�j%�%%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10369,'eg','remember_me','j%�j%�%%�j%�%%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10370,'eg','dont_have_an_account','%�%�j%% %�j%�%�%� j%�j%%j%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10371,'eg','register_now','j%%j%�%� j%�%�j%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10372,'eg','or_login_with','j%�%� j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�j%�j%%j%�j%�j%�j%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10373,'eg','oops','%�j%�%� j%�%�%�j%�j%�j%#..','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10374,'eg','this_item_is_out_of_stock','%�j%�%j%� j%�%�j%c%%�j%a%j%�% j%Q%%�j%�% %�j%�%�%�j%�% %�%� j%�%�%�j%�j%�%%�%�!','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10375,'eg','back_to_shopping','j%�%�j%c%%�j%�j%# j%�%�%� j%�%�j%�j%%%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10376,'eg','login_to_your_account','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� j%�j%%j%�j%�%�.','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10377,'eg','purchase_history','j%�j%�j%�%%�j%� j%$%j%�%j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10378,'eg','new','j%�j%�%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10379,'eg','downloads','j%�%�j%�j%�%�%�%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10380,'eg','sent_refund_request','j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%� %�j%�%j%%%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10381,'eg','product_bulk_upload','j%�j%�%�%�%� %�j%�%�j%c% %�%�%�%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10382,'eg','orders','j%�%�j%V%%�j%� #%� s','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10383,'eg','recieved_refund_request','j%�%� j%�j%%j%�%�j%�%� j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10384,'eg','shop_setting','j%�j%c%j%�j%�j%� j%�%�%�j%�j%�j%�%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10385,'eg','payment_history','j%�j%�j%�%%�j%� j%�%�j%�%�j%c%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10386,'eg','money_withdraw','j%%j%�j%� j%�%�j%�%�%�j%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10387,'eg','conversations','j%�%�%�j%�j%�j%�j%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10388,'eg','my_wallet','%�j%�%�j%U%j%�%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10389,'eg','earning_points','%�j%%j%� j%�%�%�%�j%�j%V%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10390,'eg','support_ticket','j%�j%V%j%�%�j%# j%�%�j%�j%c%%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10391,'eg','manage_profile','j%�j%�j%�j%�%j%# j%�%�%�%�%� j%�%�j%$%j%�j%a%%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10392,'eg','sold_amount','j%�%�%�j%�%�j%Q% j%�%�%�j%�j%�j%c%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10393,'eg','your_sold_amount_current_month','j%�%�%�j%�%�j%Q% j%�%�%�j%�j%�j%c% (j%�%�j%$%%�j%�% j%�%�j%�j%�%�%�)','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10394,'eg','total_sold','j%�j%�%�j%�%�%� j%�%�%�j%�%�j%c%j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10395,'eg','last_month_sold','j%�%� j%�%�j%c% j%�%�j%$%%�j%�% j%�%�%�j%�j%b%%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10396,'eg','total_sale','j%�j%�%�j%�%�%� j%�%�j%�%�j%c%','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10397,'eg','total_earnings','j%�%�j%�j%�%j%�j%�j%� j%�%�%�%�%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10398,'eg','successful_orders','j%�%�j%V%%�j%�j%�j%� j%�%�%�j%�j%�j%�j%#','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10399,'eg','total_orders','j%�j%�%�j%�%�%� j%�%�j%V%%�j%�j%�j%�','2021-02-09 07:20:48','2021-09-20 07:29:38'),(10400,'eg','pending_orders','j%�%�j%V%%�j%�j%�j%� j%�%�%�j%c%%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10401,'eg','cancelled_orders','j%�%�j%V%%�j%�j%�j%� j%�%�%�%�j%Q%j%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10402,'eg','product','j%�%�%�%�j%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10403,'eg','purchased_package','j%�%�j%�j%�%%�j%# j%�%�%�j%$%j%�j%�%j%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10404,'eg','package_not_found','j%�%�j%�j%�%%�j%# j%Q%%�j%�% %�%�j%�%�j%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10405,'eg','upgrade_package','j%�j%�%%�j%# j%�%�j%�j%�%%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10406,'eg','shop','%�j%�j%�j%�%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10407,'eg','manage__organize_your_shop','j%�j%�j%�j%�%j%# %�j%�%�j%U%%�%� %�j%�j%�j%�%%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10408,'eg','go_to_setting','j%�j%�%%�j%� j%�%�%� j%�%�j%�j%c%j%�j%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10409,'eg','payment','j%�%�j%c%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10410,'eg','configure_your_payment_method','j%�%�%�%�%� j%V%j%�%%�%�j%# j%�%�j%�%�j%c% j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10411,'eg','my_panel','%�%�j%�j%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10412,'eg','item_has_been_added_to_wishlist','j%�%�j%� j%�j%b%j%�%�j%# j%�%�j%c%%�j%a%j%�% j%�%�%� %�j%�j%�%�j%# j%�%�j%�%j%Q%j%�j%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10413,'eg','my_points','%�%�j%�j%V%%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10414,'eg','_points','%�%�j%�j%V%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10415,'eg','wallet_money','j%�%�%�j%�%� j%�%�%�j%�%�j%U%j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10416,'eg','exchange_rate','j%%j%c%j%�% j%�%�j%a%j%�%%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10417,'eg','point_earning_history','j%%j%�%� %�j%%j%� j%�%�%�%�j%�j%V%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10418,'eg','date','j%�j%�j%�%%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10419,'eg','points','%�%�j%�j%V%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10420,'eg','converted','%�j%�%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10421,'eg','action','j%c%%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10422,'eg','no_history_found','%�%� %�j%�%� j%�%�j%c%j%�%�j%�% j%c%%�%� j%%j%�%�.','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10423,'eg','convert_has_been_done_successfully_check_your_wallets','j%�%� j%�%�j%�j%�%�%�%� j%�%�j%�j%�j%� j%�j%�%�%� %�%� %�j%�j%�%�j%U%%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10424,'eg','something_went_wrong','%�%�j%�%� j%�j%V%j%� %�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10425,'eg','remaining_uploads','j%�%�j%�j%�%�%�%�j%�j%� j%�%�%�j%�j%�%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10426,'eg','no_package_found','%�%� %�j%�%� j%�%�j%c%j%�%�j%�% j%c%%�%� j%�j%�%%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10427,'eg','search_product','j%�%�j%�j%�j%� j%c%%� j%�%�%�%�j%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10428,'eg','name','j%�j%%%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10429,'eg','current_qty','j%�%�%�%�%�j%# j%�%�j%�j%�%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10430,'eg','base_price','j%�%�j%%j%c%j%�% j%�%�j%�j%%j%�j%%%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10431,'eg','published','%�j%$%j%�%j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10432,'eg','featured','%�j%�%�%�j%�%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10433,'eg','options','j%�%�j%�j%�%j%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10434,'eg','edit','j%�j%c%j%�%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10435,'eg','duplicate','%�%�j%�%j%�%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10436,'eg','1_download_the_skeleton_file_and_fill_it_with_data','1. %�%� j%�j%�%�j%�%%�%� %�%�%� j%�%�%�%�%�%� j%�%�j%c%j%U%%�%� %�j%�%�%�j%�%� j%�j%�%�j%�%�j%�%�j%�j%�.','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10437,'eg','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2. %�%�%�%�%� j%�%�j%�%%�%� %�%�%� j%�%�%�j%�j%�%� %�%�%�%� %�%�%�%�j%# %�%�j%� j%�%�j%�%�j%�%�j%�j%�.','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10438,'eg','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3. j%�%�j%�j%�%j%� j%�%�j%�%%�%� %�%�%� j%�%�%�%�%�%� j%�%�j%c%j%U%%�%� %�j%�j%c%j%�j%�j%�%� j%� %�%� j%�j%�j%�%�%�%�%� %�%� j%�%�%�%�%�j%�%j%� j%�j%�%�j%�%� %�j%�j%�%j%%%�%�.','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10439,'eg','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4. j%�j%c%j%� j%�j%�%�%�%� j%�%�%�%�j%�j%�j%�j%� j%�j%�j%�j%�j%� j%�%�%� j%�j%c%j%�%�%�%�j%� %�j%�j%c%%�%�%� j%a%%�j%�% j%�%�%�%�j%�j%�j%�j%� %�j%�%�j%�j%�j%�%�j%�j%�%j%�j%�.','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10440,'eg','download_csv','j%�%�j%�%%�%� %�%�%� CSV','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10441,'eg','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1. %�j%�j%� j%�%� j%�%�%�%� j%�%�%�j%�j%# j%� %�j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# j%� %�j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# %�j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# %�%� %�%�%�j%�j%� j%�%%�%�%�j%#.','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10442,'eg','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. %�%�%�%�%� j%�%�j%�%%�%� %�%�%� pdf %�%�j%�j%a%%�%� j%c%%�%� j%�%�%�j%�j%# %�j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# %�j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# %�%�j%c%j%�%%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%#.','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10443,'eg','download_category','%�j%�j%# j%�%�j%�j%�%�%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10444,'eg','download_sub_category','j%�j%�%�%�%� %�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10445,'eg','download_sub_sub_category','j%�j%�%�%�%� %�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10446,'eg','download_brand','j%�j%�%�%�%� j%�%�%�j%�j%�%%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10447,'eg','upload_csv_file','j%�j%�%�%�%� %�%�%� CSV','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10448,'eg','csv','CSV','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10449,'eg','choose_csv_file','j%�j%�j%�j%�% %�%�%� CSV','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10450,'eg','upload','j%�j%�%�%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10451,'eg','add_new_digital_product','j%�j%b%j%�%�j%# %�%�j%�j%� j%�%%�%�%� j%�j%�%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10452,'eg','available_status','j%�%�j%�j%�%�j%# j%�%�%�j%�j%�j%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10453,'eg','admin_status','j%�j%�%�j%# j%�%�%�j%%j%�%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10454,'eg','pending_balance','j%�%j%a%%�j%� %�j%c%%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10455,'eg','send_withdraw_request','j%�j%�%j%%j%�%� j%V%%�j%� j%%j%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10456,'eg','withdraw_request_history','j%%j%�j%� j%�j%�j%�%%�j%� j%�%�j%V%%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10457,'eg','amount','%�%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10458,'eg','status','j%�%�j%�j%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10459,'eg','message','j%�%j%%j%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10460,'eg','send_a_withdraw_request','j%�j%�%j%%j%�%� j%V%%�j%� j%%j%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10461,'eg','basic_info','%�j%c%%�%�%�j%�j%� j%�j%%j%�j%%%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10462,'eg','your_phone','%�j%�j%�%�%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10463,'eg','photo','j%a%%�j%�%j%# %�%�j%�%�j%Q%j%�%j%�%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10464,'eg','browse','j%�j%a%%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10465,'eg','your_password','%�%�%�j%�%� j%�%�j%%j%�%%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10466,'eg','new_password','%�%�%�j%# j%�%�%�j%�%%�j%�% j%�%�j%�j%�%�j%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10467,'eg','confirm_password','j%�j%�%�%�j%� %�%�%�j%# j%�%�%�j%�%%�j%�%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10468,'eg','add_new_address','j%�j%b%%� j%c%%�%�j%�%� j%�j%�%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10469,'eg','payment_setting','j%�j%c%j%�j%�j%� j%�%�j%�%�j%c%','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10470,'eg','cash_payment','j%�%�j%c% %�%�j%�j%�','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10471,'eg','bank_payment','j%�%�j%�%�j%c% j%�%�%�j%a%j%�%%�%�j%#','2021-02-09 07:20:49','2021-09-20 07:29:38'),(10472,'eg','bank_name','j%�j%%%� j%�%�j%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10473,'eg','bank_account_name','j%�j%%%� j%�%�j%�j%%j%�j%� j%�%�%�j%a%j%�%%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10474,'eg','bank_account_number','j%�%%�%� j%�%�j%�j%%j%�j%� j%�%�%�j%a%j%�%%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10475,'eg','bank_routing_number','j%�%%�%� j%�%�j%�j%�%�%�%� j%�%�%�j%a%j%�%%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10476,'eg','update_profile','j%�j%�j%�%�j%� j%�%�%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10477,'eg','change_your_email','%�%� j%�j%�j%Q%%�%�j%�% j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10478,'eg','your_email','j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10479,'eg','sending_email','j%�j%�%j%%j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�...','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10480,'eg','verify','j%�j%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10481,'eg','update_email','j%�j%�j%�%�j%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10482,'eg','new_address','j%c%%�%�j%�%� j%�j%�%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10483,'eg','your_address','j%c%%�%�j%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10484,'eg','country','j%�%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10485,'eg','select_your_country','j%�j%�j%�j%�% j%�%�j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10486,'eg','city','%�j%�%�%�j%#','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10487,'eg','your_city','%�j%�%�%�j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10488,'eg','your_postal_code','j%�%%�j%�%%� j%�%�j%�j%�%%�j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10489,'eg','880','+880','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10490,'eg','save','j%�%�j%U%','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10491,'eg','received_refund_request','j%�%� j%�j%%j%�%�j%�%� j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10492,'eg','delete_confirmation','j%�j%�%�%�j%� j%�%�j%�j%�%%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10493,'eg','are_you_sure_to_delete_this','%�%� j%�%�j%� %�j%�j%�%�j%� %�%� j%�j%�%%� %�j%�%j%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10494,'eg','premium_packages_for_sellers','j%�j%�%%� %�j%�%�%�j%�%j%# %�%�j%�j%�j%�j%c%%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10495,'eg','product_upload','j%�j%�%�%�%� j%�%�%�%�j%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10496,'eg','digital_product_upload','j%�j%�%�%�%� j%�%�%�%�j%�j%� j%�%�j%�%%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10497,'eg','purchase_package','j%�j%�%%�j%# j%�%�j%$%j%�%j%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10498,'eg','select_payment_type','j%�j%�j%�j%�% j%V%j%�%%�%�j%# j%�%�j%�%�j%c%','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10499,'eg','payment_type','%�%�j%c% j%�%�j%�%�j%c%','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10500,'eg','select_one','j%�j%�j%� %�j%�j%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10501,'eg','online_payment','j%�%�j%�%�j%c% j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10502,'eg','offline_payment','j%�%�j%�%�j%c% j%�%�%� j%�j%�j%a%j%�%� j%�j%�%�j%�%�j%�j%�%%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10503,'eg','purchase_your_package','j%$%j%�%j%�j%� j%�j%�%�j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10504,'eg','paypal','j%�j%�%� j%�j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10505,'eg','stripe','j%$%j%�%%�j%V%','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10506,'eg','sslcommerz','sslcommerz','2021-02-09 07:20:50','2021-02-09 07:20:50'),(10507,'eg','confirm','j%�j%�%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10508,'eg','offline_package_payment','j%�%�j%c% j%�j%�%%�j%# j%�%�%� j%�j%�j%a%j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10509,'eg','transaction_id','j%�%%�%� j%�%�%�j%c%j%�%�%�j%#','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10510,'eg','choose_image','j%�j%�j%�j%�% j%a%%�j%�%j%#','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10511,'eg','code','j%�%�j%$%%�j%�%j%#','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10512,'eg','delivery_status','j%�j%�%�j%# j%�%�j%�j%%%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10513,'eg','payment_status','j%�j%�%�j%# j%�%�j%%j%�j%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10514,'eg','paid','j%�%�j%c%','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10515,'eg','order_details','j%�%�j%�j%a%%�%� j%�%�j%V%%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10516,'eg','download_invoice','j%�j%�%�%�%� %�j%�j%�%�j%�%j%#','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10517,'eg','unpaid','j%Q%%�j%�% %�j%�%�%�j%c%j%#','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10518,'eg','order_placed','j%�%� j%�%�j%V%%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10519,'eg','confirmed','j%�%� j%�j%�%�%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10520,'eg','on_delivery','j%c%%�j%� j%�%�j%�j%%%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10521,'eg','delivered','j%�%� j%�%�j%�%�j%a%%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10522,'eg','order_summary','%�%�j%�j%a% j%�%�j%V%%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10523,'eg','order_code','j%�%%�j%�% j%�%�j%V%%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10524,'eg','customer','j%�%�j%�%j%�%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10525,'eg','total_order_amount','j%�j%�%�j%�%�%� %�j%�%�j%Q% j%�%�j%V%%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10526,'eg','shipping_metdod','metdod j%�%�j%$%j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10527,'eg','flat_shipping_rate','j%%j%c%j%�% j%�%�j%$%j%�%� j%�j%�j%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10528,'eg','payment_metdod','metdod j%�%�j%�%�j%c%','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10529,'eg','variation','j%�%�j%�j%�j%�%�j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10530,'eg','delivery_type','%�%�j%c% j%�%�j%�%�j%a%%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10531,'eg','home_delivery','j%�%�j%a%%�%� %�%�j%�%%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10532,'eg','order_ammount','%�j%�%�j%Q% j%�%�j%V%%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10533,'eg','subtotal','j%�%�%�j%�%�%�j%c% j%�%�%�j%�%j%c%%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10534,'eg','shipping','j%�%�j%$%j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10535,'eg','coupon_discount','j%�j%a%%� j%�%�%�j%%%�%�j%#','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10536,'eg','na','j%Q%%�j%�% %�j%�j%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10537,'eg','in_stock','%�%� j%�%�j%�%�j%�%j%�%� j%�%�%�j%�%�%�j%#','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10538,'eg','buy_now','j%�j%$%j%�j%�%%� j%�%�j%�%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10539,'eg','item_added_to_your_cart','j%�j%b%j%�%�j%# j%�%�j%%%�j%c%j%# j%�%�%� j%%%�j%# j%�%�j%�j%%%�%� j%�%�j%�j%�j%a%j%# j%�%�!','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10540,'eg','proceed_to_checkout','j%�%�j%$%j%�%%�j%c% %�%� j%�%�j%�j%�%%�j%�','2021-02-09 07:20:50','2021-09-20 07:29:38'),(10541,'eg','cart_items','j%c%%�j%�j%a%j%�% j%c%j%�%j%�j%# j%�%�j%�j%%%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10542,'eg','1_my_cart','1. j%c%j%�%j%�j%# j%�%�j%�j%%%�%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10543,'eg','view_cart','j%c%j%�%j%b% j%c%j%�%j%�j%# j%�%�j%�j%%%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10544,'eg','2_shipping_info','2. %�j%c%%�%�%�j%�j%� j%�%�j%$%j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10545,'eg','checkout','j%�%�j%�%�j%c%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10546,'eg','3_delivery_info','3. %�j%c%%�%�%�j%�j%� j%�%�j%�j%%%�%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10547,'eg','4_payment','4. j%�%�j%�%�j%c%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10548,'eg','5_confirmation','5. j%�%�j%�j%�%�%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10549,'eg','remove','j%�j%�%j%�%�j%#','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10550,'eg','return_to_shop','j%�%�j%c%%�j%�j%# j%�%�%� j%�%�%�j%�j%�j%�%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10551,'eg','continue_to_shipping','j%�j%�j%�j%c% j%�%�%� j%�%�j%$%j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10552,'eg','or','j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10553,'eg','guest_checkout','j%b%%�%� j%�%�%�j%�j%�j%%j%�j%#','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10554,'eg','continue_to_delivery_info','j%�j%�j%�j%c% j%�%�%� %�j%c%%�%�%�j%�j%� j%�%�j%�j%%%�%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10555,'eg','postal_code','j%�%�j%�%%�j%�% j%�%�j%�j%�%%�j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10556,'eg','choose_delivery_type','j%�j%�j%�j%�% %�%�j%c% j%�%�j%�j%%%�%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10557,'eg','local_pickup','j%$%j%�j%�%�j%# %�j%�%�%�j%#','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10558,'eg','select_your_nearest_pickup_point','j%�j%�j%� j%�%�j%�%j%� %�%�j%V%j%# j%�%�j%�%�j%�j%V% %�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10559,'eg','continue_to_payment','j%�j%�j%�j%c% j%�%�%� j%�%�j%�%�j%c%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10560,'eg','select_a_payment_option','j%�j%�j%� j%�%�j%�j%�% j%�%�j%�%�j%c%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10561,'eg','razorpay','j%�%j%�j%�%%�j%�%j%�j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10562,'eg','paystack','Paystack','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10563,'eg','voguepay','VoguePay','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10564,'eg','payhere','j%�j%�%�j%c% %�%�j%�','2021-02-09 07:20:51','2021-02-09 07:20:51'),(10565,'eg','ngenius','j%c%j%�%�j%�%%�','2021-02-09 07:20:51','2021-02-09 07:20:51'),(10566,'eg','paytm','Paytm','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10567,'eg','cash_on_delivery','j%�%�j%�%�j%c% j%c%%�j%� j%�%�j%�j%%j%�%�j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10568,'eg','your_wallet_balance_','j%�%j%a%%�j%� %�j%�%�j%U%j%�%�:','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10569,'eg','insufficient_balance','j%�%j%a%%�j%� j%Q%%�j%�% %�j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10570,'eg','i_agree_to_the','j%�%�j%� j%�%�j%�%�%� j%c%%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10571,'eg','complete_order','j%�%�%�%� j%�%�j%V%%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10572,'eg','summary','%�%�j%�j%a%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10573,'eg','items','j%�%�j%c%%�j%�j%a%j%�%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10574,'eg','total_club_point','%�j%�%�%�j%c% %�%�j%�j%V% j%�%�%�j%�j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10575,'eg','total_shipping','j%�j%�%�j%�%�%� j%�%�j%$%j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10576,'eg','have_coupon_code_enter_here','%�%� %�j%�%�%� j%�%%�j%�% %�j%%%�%�j%#j%� j%�j%�j%�%� %�%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10577,'eg','apply','j%�j%V%j%�%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10578,'eg','you_need_to_agree_with_our_policies','j%�%�j%� j%�j%�j%�j%�j%# j%�%�%� j%�%�%�%�j%�%�%�j%# j%c%%�%� j%%%�j%�j%%j%�j%�%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10579,'eg','forgot_password','%�%� %�j%%%�j%� %�%�%�j%# j%�%�%�j%�%%�j%�%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10580,'eg','seo_setting','j%�j%c%j%�j%�j%� SEO','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10581,'eg','system_update','j%�j%�j%�%�j%� j%�%�%�j%U%j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10582,'eg','add_new_payment_method','j%�j%b%%� j%V%j%�%%�%�j%# j%�%�j%c% j%�j%�%�j%�j%#','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10583,'eg','manual_payment_method','j%V%j%�%%�%�j%# j%�%�j%�%�j%c% j%�%�%�j%�%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10584,'eg','heading','j%c%%�%�j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10585,'eg','logo','j%$%j%c%j%�j%�%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10586,'eg','manual_payment_information','%�j%c%%�%�%�j%�j%� j%�%�j%�%�j%c% j%�%�%�j%�%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10587,'eg','type','j%�%�j%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10588,'eg','custom_payment','j%�%�j%�%�j%c% j%�%�%�j%�j%a%j%a%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10589,'eg','check_payment','j%�%�j%�j%�%�%� %�%� j%�%�j%�%�j%c%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10590,'eg','checkout_thumbnail','j%a%%�j%�%j%# %�j%a%j%Q%j%�%j%# %�%�j%�j%�%%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10591,'eg','payment_instruction','j%�j%c%%�%�%�j%�j%� j%�%�j%�%�j%c%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10592,'eg','bank_information','j%�%�%�j%c%%�%�%�j%�j%� j%�%�%�j%a%j%�%%�%�j%#','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10593,'eg','select_file','j%�j%�j%� %�%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10594,'eg','upload_new','j%�j%�%�%�%� j%�j%�%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10595,'eg','sort_by_newest','j%�%�j%�j%�%j%�%�j%� j%�j%%j%� j%�%�j%�j%�j%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10596,'eg','sort_by_oldest','%�j%�%j%�% j%�j%%j%� j%�%�j%�%�j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10597,'eg','sort_by_smallest','%�j%�%j%�% j%�j%%j%� j%�%�j%�j%a%j%Q%j%�%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10598,'eg','sort_by_largest','%�j%�%j%�% j%�j%%j%� j%�%�j%�%�j%�j%�%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10599,'eg','selected_only','j%�%�%�j%�j%�j%� %�%�j%V%','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10600,'eg','no_files_found','%�j%� j%�%�j%�j%� %�%�%�j%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10601,'eg','0_file_selected','0 %�%�%� %�j%�j%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10602,'eg','clear','%�j%�j%b%j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10603,'eg','prev','j%�%�j%%j%�j%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10604,'eg','next','j%�%�j%�j%�%�%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10605,'eg','add_files','j%�j%b%j%�%�j%# %�%�%�j%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10606,'eg','method_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�j%V%j%�%%�%�j%# j%�%�j%�j%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10607,'eg','order_date','j%�j%�j%�%%�j%� j%�%�j%V%%�j%�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10608,'eg','bill_to','%�j%$%j%�%%�j%c% %�j%�%�%�%� %�','2021-02-09 07:20:51','2021-09-20 07:29:38'),(10609,'eg','sub_total','j%�%�%�j%�%�%�j%c% j%�%�%�j%�%j%c%%�','2021-02-09 07:20:52','2021-09-20 07:29:38'),(10610,'eg','total_tax','%�j%�%�%�j%c% j%�%�j%b%j%�%%�j%�j%#','2021-02-09 07:20:52','2021-09-20 07:29:38'),(10611,'eg','grand_total','j%�%�%�j%�%�j%Q% j%�%�j%�j%�%�j%�%�%�','2021-02-09 07:20:52','2021-09-20 07:29:38'),(10612,'eg','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','j%�%� %�j%b%j%c% j%V%%�j%�%� j%�%�j%�j%�j%�. %�j%�%j%�%� j%�%�j%�%�%� %�j%c%%�%�%�j%�j%� j%�%�j%�%�j%c% %�%� j%%j%�%� j%�%�j%$%j%�%j%�j%�','2021-02-09 07:20:52','2021-09-20 07:29:38'),(10613,'eg','thank_you_for_your_order','j%$%%�j%�%j%� %�j%V%%�j%�%�!','2021-02-09 07:20:52','2021-09-20 07:29:38'),(10614,'eg','order_code','j%�%%�j%�% j%�%�j%V%%�j%�:','2021-02-09 07:20:52','2021-09-20 07:29:38'),(10615,'eg','a_copy_or_your_order_summary_has_been_sent_to','j%�%� j%�j%�%j%%j%�%� %�j%%j%�j%# j%�%� %�%�j%�j%a% j%V%%�j%�%� j%�%�%�','2021-02-09 07:20:52','2021-09-20 07:29:38'),(10616,'eg','make_payment','%�%� j%�j%�%�j%�%�j%c%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10617,'eg','payment_screenshot','%�%�j%V%j%# j%$%j%�j%$%j%# j%�%�j%�%�j%c%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10618,'eg','paypal_credential','j%�j%c%j%�%�j%�j%� Paypal','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10619,'eg','paypal_client_id','%�j%c%j%�%%� j%c%%�%�%� Paypal','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10620,'eg','paypal_client_secret','j%%j%�% j%c%%�%�%� Paypal','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10621,'eg','paypal_sandbox_mode','%�j%b%j%c% Paypal Sandbox','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10622,'eg','sslcommerz_credential','j%�j%c%j%�%�j%�j%� Sslcommerz','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10623,'eg','sslcz_store_id','%�j%c%j%�%%� %�j%�j%�j%�% sslcz','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10624,'eg','sslcz_store_password','%�%�%�j%# %�j%�%%�j%�% %�j%�j%�j%�% sslcz','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10625,'eg','sslcommerz_sandbox_mode','%�j%b%j%c% j%�%�j%�%�j%�%�j%# Sslcommerz','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10626,'eg','stripe_credential','j%�j%c%j%�%�j%�j%� j%$%j%�%%�j%V%%�','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10627,'eg','stripe_key','%�%�j%�j%�j%� j%�%�j%$%j%�%%�j%V%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10628,'eg','stripe_secret','j%%j%�% j%�%�j%$%j%�%%�j%V%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10629,'eg','razorpay_credential','j%�j%c%j%�%�j%�j%� RazorPay','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10630,'eg','razor_key','%�%�j%�j%�j%� j%�%�j%�%�j%�%�j%#','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10631,'eg','razor_secret','j%%j%�% j%�%�j%�%�j%�%�j%#','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10632,'eg','instamojo_credential','j%�j%c%j%�%�j%�j%� Instamojo','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10633,'eg','api_key','%�%�j%�j%�j%� API','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10634,'eg','im_api_key','IM API KEY','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10635,'eg','auth_token','AUTH TOKEN','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10636,'eg','im_auth_token','j%�%%�j%�% IM AUTH','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10637,'eg','instamojo_sandbox_mode','%�j%b%j%c% Instamojo Sandbox','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10638,'eg','paystack_credential','j%�j%c%j%�%�j%�j%� PayStack','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10639,'eg','public_key','j%�%�%�%�j%�j%�j%� j%�%�j%c%%�%�%�%�','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10640,'eg','secret_key','%�%�j%�j%�j%� j%%j%�%%�','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10641,'eg','merchant_email','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� %�%�j%�j%�j%�j%�%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10642,'eg','voguepay_credential','j%�j%c%j%�%�j%�j%� VoguePay','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10643,'eg','merchant_id','%�j%c%j%�%%� j%�%�j%�j%�j%�j%�%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10644,'eg','sandbox_mode','%�j%b%j%c% j%�%�j%�%�j%�%�j%#','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10645,'eg','payhere_credential','j%�j%c%j%�%�j%�j%� Payhere','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10646,'eg','payhere_merchant_id','%�j%c%j%�%%� j%�j%�j%�j%�% j%�j%�%�%�%�j%�%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10647,'eg','payhere_secret','PAYHERE SECRET','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10648,'eg','payhere_currency','j%c%%�%�j%# j%�%�j%�%�j%c%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10649,'eg','payhere_sandbox_mode','%�j%b%j%c% Payhere Sandbox','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10650,'eg','ngenius_credential','Ngenius Credential','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10651,'eg','ngenius_outlet_id','%�j%c%j%�%%� %�%�%�j%�% NGENIUS','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10652,'eg','ngenius_api_key','NGENIUS API KEY','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10653,'eg','ngenius_currency','j%�%�j%c%%�%�j%# j%�%�j%�j%�%�j%�%�j%#','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10654,'eg','mpesa_credential','j%�j%c%j%�%�j%�j%� Mpesa','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10655,'eg','mpesa_consumer_key','%�%�j%�j%�j%� j%�%�%�j%%j%�%�%�%� MPESA','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10656,'eg','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10657,'eg','mpesa_consumer_secret','j%%j%�% j%�%�%�j%%j%�%�%�%� MPESA','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10658,'eg','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10659,'eg','mpesa_short_code','%�%�j%� MPESA j%�%�%�j%�j%�j%a%j%�%','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10660,'eg','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10661,'eg','mpesa_sandbox_activation','j%�%�j%$%%�j%V% j%%j%�%�j%�j%�%�%�j%% MPESA','2021-02-09 07:20:52','2021-09-20 07:29:39'),(10662,'eg','flutterwave_credential','j%�j%c%j%�%�j%�j%� Flutterwave','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10663,'eg','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10664,'eg','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10665,'eg','rave_title','RAVE_TITLE','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10666,'eg','stagin_activation','j%�%�j%$%%�j%V% STAGIN','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10667,'eg','all_product','%�%� j%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10668,'eg','sort_by','j%�j%�%j%�%�j%� j%�j%%j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10669,'eg','rating_high__low','j%�%�j%�j%a%%�%�%� (%�j%�%j%�%�j%c%> %�%�j%�%�j%b%)','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10670,'eg','rating_low__high','j%�%�j%�j%a%%�%�%� (%�%�j%�%�j%b%> %�j%�%j%�%�j%c%)','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10671,'eg','num_of_sale_high__low','j%c%j%�j%� j%�%�%�j%�%�j%c%j%�j%� (%�j%�%j%�%�j%c%> %�%�j%�%�j%b%)','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10672,'eg','num_of_sale_low__high','j%c%j%�j%� j%�%�%�j%�%�j%c%j%�j%� (%�%�j%�%�j%b%> %�j%�%j%�%�j%c%)','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10673,'eg','base_price_high__low','j%�%�j%%j%c%j%�% j%�%�j%�j%%j%�j%%%� (%�j%�%j%�%�j%c%> %�%�j%�%�j%b%)','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10674,'eg','base_price_low__high','j%�%�j%%j%c%j%�% j%�%�j%�j%%j%�j%%%� (%�%�j%�%�j%b%> %�j%�%j%�%�j%c%)','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10675,'eg','type__enter','j%�%�j%�j%� & j%�j%�j%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10676,'eg','added_by','j%�j%b%%�%�j%� %�%� %�j%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10677,'eg','num_of_sale','j%�%%�%� j%�%�j%�%�j%c%','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10678,'eg','total_stock','j%�j%�%�j%�%�%� j%�%�%�j%�j%�%%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10679,'eg','todays_deal','j%a%%�%�j%# j%�%�%�%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10680,'eg','rating','j%�%�%�%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10681,'eg','times','%�j%�%j%�j%�','2021-02-09 07:20:53','2021-02-09 07:20:53'),(10682,'eg','add_nerw_product','j%�j%b%%� %�%�j%�j%� %�%�j%�%%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10683,'eg','product_information','%�j%c%%�%�%�j%�j%� j%�%�%�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10684,'eg','unit','%�j%�j%�j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10685,'eg','unit_eg_kg_pc_etc','j%�%�%�j%�j%�j%# (%�j%�%� KG j%� Pc j%�%�j%�)','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10686,'eg','minimum_qty','j%�%�j%�j%� j%�%�j%�j%�%�%� %�%� j%�%�%�%�%�j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10687,'eg','tags','j%�%�j%c%%�j%�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10688,'eg','type_and_hit_enter_to_add_a_tag','j%�%�j%�j%� %�j%�j%b%j%Q%j%V% j%c%%�%� Enter %�j%�j%b%j%�%�j%# j%c%%�j%�%�j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10689,'eg','barcode','j%�%�j%�j%�j%�%%�%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10690,'eg','refundable','%�j%%j%�j%�%j%�j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10691,'eg','product_images','j%a%%�j%�% j%�%�%�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10692,'eg','gallery_images','%�j%c%j%�%j%b% j%�%�j%a%%�j%�%','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10693,'eg','todays_deal_updated_successfully','j%�%� j%�j%�j%�%�j%� j%a%%�%�j%# j%�%�%�%�%� j%�%�j%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10694,'eg','published_products_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�%�j%�j%�j%�j%� j%�%�%�%�j%$%%�j%�%j%# j%�%�j%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10695,'eg','thumbnail_image','j%a%%�j%�%j%# %�j%a%j%Q%j%�%j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10696,'eg','featured_products_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�%�j%�j%�j%�j%� j%�%�%�%�%�j%�%j%# j%�%�j%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10697,'eg','product_videos','%�%�j%�%�%� j%�%�%�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10698,'eg','video_provider','%�j%�%%�j%� j%�%�%�%�j%�%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10699,'eg','youtube','%�%�%�j%c% YouTube','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10700,'eg','dailymotion','j%�%�%�%� %�%�j%$%%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10701,'eg','vimeo','%�%�%�%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10702,'eg','video_link','j%�%j%�j%�j%V% j%�%�%�%�j%�%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10703,'eg','product_variation','j%�%�%�j%c% j%�%�%�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10704,'eg','colors','j%�%�j%�%�%�j%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10705,'eg','attributes','j%�%�j%%%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10706,'eg','choose_attributes','j%�j%�j%�j%�% j%�%�j%%%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10707,'eg','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','j%�j%�j%�j%�% j%%%�j%�j%� %�j%�%j%� j%�%�%�%�j%�j%� j%�%� %�%�%� j%�%�j%�j%�j%�j%�%� %�%�%� j%%%�j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10708,'eg','product_price__stock','j%%j%c%j%�% j%�%�%�%�j%�j%� + j%�%�j%�j%%%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10709,'eg','unit_price','j%%j%c%j%�% j%�%�%�j%�j%�j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10710,'eg','purchase_price','j%%j%c%j%�% j%�%�j%$%j%�%j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10711,'eg','flat','%�j%%j%V%j%�j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10712,'eg','percent','%�j%%j%�%� %�j%�%�%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10713,'eg','discount','j%�j%a%%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10714,'eg','product_description','%�j%a%%� j%�%�%�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10715,'eg','product_shipping_cost','j%�%�%�%�j%# j%$%j%�%� j%�%�%�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10716,'eg','free_shipping','j%�%�j%$%j%�%� %�j%�j%�%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10717,'eg','flat_rate','j%%j%c%j%�% %�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10718,'eg','shipping_cost','j%�%�%�%�j%# j%�%�j%$%j%�%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10719,'eg','pdf_specification','%�%�j%�j%a%%�j%�j%� PDF','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10720,'eg','seo_meta_tags','j%�%�j%c%%�j%�%�j%�j%� j%�%�%�j%a%%�%�j%# SEO','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10721,'eg','meta_title','j%c%%�%�j%�%� j%�%�%�%�%�%�j%#','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10722,'eg','meta_image','j%a%%�j%�%j%# %�%�j%�j%�','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10723,'eg','choice_title','j%c%%�%�j%�%� j%�%�j%�j%�j%�%�j%�j%�%','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10724,'eg','enter_choice_values','j%�j%�j%�%� %�%�%� j%�%�j%�j%�j%�%�j%�j%�%','2021-02-09 07:20:53','2021-09-20 07:29:39'),(10725,'eg','all_categories','j%�%�%�j%c% j%�%�%�j%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10726,'eg','add_new_category','j%�j%b%j%�%�j%# %�j%�j%# j%�j%�%�j%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10727,'eg','type_name__enter','j%�%�j%�j%� j%�%�j%�j%%%� %�j%�j%�j%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10728,'eg','banner','%�j%�%�j%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10729,'eg','commission','j%c%%�%�%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10730,'eg','icon','j%�%�%�%�%�j%#','2021-02-09 07:20:54','2021-02-09 07:20:54'),(10731,'eg','featured_categories_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�j%�j%�j%� j%�%�%�%�%�j%�%j%# j%�%�j%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10732,'eg','hot','j%�%�j%�j%�j%�%','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10733,'eg','filter_by_payment_status','j%�j%a%%�%�j%# j%�j%%j%� j%�j%�%�j%# j%�%�j%�%�j%c%','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10734,'eg','unpaid','j%Q%%�j%�% %�j%�%�%�j%c%j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10735,'eg','filter_by_deliver_status','j%�j%a%%�%�j%# j%�j%%j%� j%�j%%%�%�%� j%�%�j%�j%�%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10736,'eg','pending','%�%�j%� j%�%�j%�%�j%�j%U%j%�j%�%','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10737,'eg','type_order_code__hit_enter','j%�%�j%�j%� j%�%%�j%�% j%�%�j%V%%�j%� %�j%�j%b%j%Q%j%V% j%c%%�%� Enter','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10738,'eg','num_of_products','j%�%%�%�. j%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10739,'eg','walk_in_customer','j%�j%�%�%� j%�%�j%c%%�%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10740,'eg','qty','j%�%�%�%�%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10741,'eg','without_shipping_charge','j%�j%�%�%� j%�%j%%%�%� j%�%�j%$%j%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10742,'eg','with_shipping_charge','%�j%c% j%�%j%%%�%� j%�%�j%$%j%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10743,'eg','pay_with_cash','j%�%�j%�%�j%c% %�%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10744,'eg','shipping_address','j%c%%�%�j%�%� j%�%�j%$%j%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10745,'eg','close','%�j%�%%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10746,'eg','select_country','j%�j%�j%� j%�%�j%�%�%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10747,'eg','order_confirmation','j%�j%�%�%�j%� j%�%�j%V%%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10748,'eg','are_you_sure_to_confirm_this_order','%�%� j%�%�j%� %�j%�j%�%�j%� %�%� j%�j%�%�%�j%� %�j%�%j%� j%�%�j%V%%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10749,'eg','comfirm_order','j%�j%�%j%�%�j%� Comfirm','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10750,'eg','personal_info','%�j%c%%�%�%�j%�j%� j%$%j%�j%a%%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10751,'eg','repeat_password','j%�j%c%j%� %�%�%�j%# j%�%�j%%j%�%','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10752,'eg','shop_name','j%�j%%%� j%�%�%�j%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10753,'eg','register_your_shop','j%%j%�%� %�j%�j%�j%�%%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10754,'eg','affiliate_informations','j%�%�%�j%c%%�%�%�j%�j%� j%�%�j%�j%�j%�j%c%j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10755,'eg','affiliate','j%$%j%�%%�j%# j%�j%�j%�j%c%j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10756,'eg','user_info','%�j%c%%�%�%�j%�j%� j%�%�%�j%%j%�j%�j%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10757,'eg','installed_addon','j%�%�%�%�j%�%� j%�%�%�j%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10758,'eg','available_addon','j%�%�%�%�j%�%� j%�%�%�j%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10759,'eg','install_new_addon','%�%� j%�j%�j%�j%�%�j%� %�%�j%�%� j%�j%�%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10760,'eg','version','j%�%�j%�j%a%j%�j%�j%�%','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10761,'eg','activated','%�%�j%c%%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10762,'eg','deactivated','%�j%c%j%V%%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10763,'eg','activate_otp','j%�%�j%c%%�%� OTP','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10764,'eg','otp_will_be_used_for','j%%%�j%�%� j%�j%%j%�j%�j%�j%�%� OTP %�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10765,'eg','settings_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%c%j%�j%�j%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10766,'eg','product_owner','%�j%�%�%� j%�%�%�%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10767,'eg','point','%�%�j%V%j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10768,'eg','set_point_for_product_within_a_range','j%�j%c%%�%�%� %�%�j%V%j%# %�%�%�%�j%�j%� j%b%%�%� j%�%�%�j%V%j%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10769,'eg','set_point_for_multiple_products','j%�j%c%%�%�%� %�%�j%V%j%# %�%�%�j%�j%�j%�j%� %�j%�j%c%j%�j%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10770,'eg','min_price','j%%j%c%j%�% j%�%�%�%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10771,'eg','max_price','j%�%�j%a%%� j%%j%c%j%�%','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10772,'eg','set_point_for_all_products','j%�j%c%%�%�%� %�%�j%V%j%# %�j%�%�%�j%c% j%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10773,'eg','set_point_for_','j%�j%c%%�%�%� %�%�j%V%j%# %�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10774,'eg','convert_status','j%�j%�%�%�%� j%�%�j%�j%�%�j%#','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10775,'eg','earned_at','j%�j%a%%� %�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10776,'eg','seller_based_selling_report','j%�%�j%�%%�j%�% j%�%�j%�%�j%c% j%�%�%�j%�j%�%� j%c%%�%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10777,'eg','sort_by_verificarion_status','%�j%�%j%�% j%�j%%j%� j%�j%�%�j%# j%�%�j%�j%�%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10778,'eg','approved','%�j%�%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10779,'eg','non_approved','%�%�j%% %�j%a%j%�%� j%c%%�%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10780,'eg','filter','%�%�%�%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10781,'eg','seller_name','j%�%�j%�j%�j%�j%c% j%�j%%%�','2021-02-09 07:20:54','2021-09-20 07:29:39'),(10782,'eg','number_of_product_sale','j%c%j%�j%� j%�%�j%c% j%�%�%�%�j%�j%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10783,'eg','order_amount','%�%�%�j%# j%�%�j%V%%�j%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10784,'eg','facebook_chat_setting','j%�j%c%j%�j%�j%� j%�j%�%j%�j%$%j%# Facebook','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10785,'eg','facebook_page_id','%�j%c%j%�%%� j%a%%�j%�j%# j%�%�%�%�j%%j%�%�%�','2021-02-09 07:20:55','2021-09-20 07:29: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','%�j%�%j%�%� j%�%�j%�%� j%�%�j%�j%�%j%�% j%c%%�j%� j%�%�%�%�%� j%�j%�%j%�j%$%j%# Facebook. %�%�j%�%�%�%�%� j%Q%%�j%�% j%�%�j%a%j%�%�j%� j%� %�%� j%�j%�j%a%%� j%c%%�%� j%�%�%�%�%�j%# messenger j%c%%�%� %�%�%�j%c% j%�%�%�j%%j%�j%�j%�%� j%�%�j%�j%�j%a% j%�%�.','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10787,'eg','login_into_your_facebook_page','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� j%a%%�j%�j%# j%�%�%�%�j%%j%�%�%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10788,'eg','find_the_about_option_of_your_facebook_page','j%�j%�j%�j%� j%c%%� j%�%�j%�j%�% j%�%�%� j%a%%�j%�j%�%� j%c%%�%� Facebook','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10789,'eg','at_the_very_bottom_you_can_find_the_facebook_page_id','%�%� j%�%�j%�j%�%j%� j%�%�j%%%�%�%� j%� %�%�%�%�%� j%�%�j%c%j%�%�j%�% j%c%%�%� \\ \"%�j%c%j%�%%� j%a%%�j%�j%# Facebook \\\"','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10790,'eg','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','j%�%�j%�%�%� j%�%�%� j%�j%c%j%�j%�j%�j%�j%� j%a%%�j%�j%�%� %�j%�j%�j%�j%� j%c%%� j%�%�j%�j%�% \\ \"j%�%�j%�%�%� j%�%�j%�%j%%j%�j%�%� \\\"','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10791,'eg','scroll_down_that_page_and_you_will_get_white_listed_domain','%�j%�%j%�% %�j%�j%%%�%� j%�%�%� j%�%�j%a%%�j%�j%# %�j%%j%�j%�j%a%%� j%c%%�%� \\ \"j%�%�%�j%�j%�%� j%�%�%�j%�j%�%j%� %�%� j%�%�%�j%�j%�%�j%# j%�%�j%�%�j%b%j%�j%� \\\"','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10792,'eg','set_your_website_domain_name','%�%� j%�j%�j%c%%�%�%� j%�j%%%� %�j%�j%�%� %�%�%�j%c% j%�%�%�%�j%� j%�%�j%�j%�j%a% j%�%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10793,'eg','google_recaptcha_setting','j%�j%c%j%�j%�j%� Google reCAPTCHA','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10794,'eg','site_key','%�%�j%�j%�j%� j%�%�%�%�%�j%c%','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10795,'eg','select_shipping_method','j%�j%�j%�j%�% j%V%j%�%%�%�j%# j%�%�j%$%j%�%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10796,'eg','product_wise_shipping_cost','j%�%�%�%�j%# j%$%j%�%� j%�%�%�%�j%�j%� j%�%�j%�%�%�%�j%#','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10797,'eg','flat_rate_shipping_cost','j%�%�%�%�j%# j%�%�j%$%j%�%� j%�j%%j%c%j%�% %�%�j%�j%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10798,'eg','seller_wise_flat_shipping_cost','j%�%�j%�j%�j%�j%c% j%$%%�j%# j%�%�j%�%�%�j%# j%�j%�%�j%�% j%�%�j%$%j%�%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10799,'eg','note','%�%�j%�%�j%U%j%#','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10800,'eg','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','j%�j%%j%�j%� j%�%�%�%�j%# j%�%�j%$%j%�%� j%�%�j%�%�%�%�j%# %�%�%�%�j%�j%�: %�j%�%� j%�j%%j%�j%� j%�%�%�%�j%# j%�%�j%$%j%�%� j%c%%� j%V%j%�%%�%� j%�j%b%j%�%�j%# j%�%�%�%�j%# j%$%j%�%� %�%� %�%�j%�j%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10801,'eg','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','j%�j%%j%�j%� j%�%�%�%�j%# j%�%�j%$%j%�%� j%�j%�%�j%%j%c%j%�% j%�%�j%�j%�j%�j%�: %�j%� %�%�%� %�%� j%c%j%�j%� j%�%�%�%�j%�j%�j%�j%� j%�%�j%�%� %�j%$%j%�j%�%%�%�j%� j%�%�j%c%%�%�%�. j%�%�%�%�j%# j%�%�j%$%j%�%� j%�j%�j%�j%�j%#','2021-02-09 07:20:55','2021-09-20 07:29: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','j%�j%%j%�j%� j%�%�j%�j%�j%�j%c% %�j%�%�%�%�j%# j%�%�j%$%j%�%� j%�%�j%�j%�j%�j%�j%#: j%%j%c%j%�% j%�j%�j%�j%� %�%�%� j%�j%�j%�j%c%. j%�j%�%j%� %�j%�%� j%�%�j%c%%�%�%� j%�j%$%j%�%j%�j%� %�%�j%�j%�%�%� %�%� j%�j%�%�%�%� %�%� j%�%�%�%�j%# j%�%�j%$%j%�%� %�%�j%�j%�j%�j%c%%�%� j%� %�j%�%� j%�j%%j%�j%�%�j%� j%�j%�j%b%j%�%�j%# j%�%�%�%�j%# j%�%�j%$%j%�%� j%�%�j%�j%�j%�j%�j%# %�%�%� j%�j%�j%�j%c%','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10803,'eg','flat_rate_cost','j%�%�%�%�j%# j%�%�j%%j%c%j%�% j%�%�j%�j%�j%�j%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10804,'eg','shipping_cost_for_admin_products','j%�%�%�%�j%# j%�%�j%$%j%�%� %�%�%�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%�%%�j%#','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10805,'eg','countries','j%�%�j%�j%�%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10806,'eg','showhide','j%�j%U%%�j%�% j%�%�%�j%�%�%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10807,'eg','country_status_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# j%�%�j%�%�j%� j%�%�j%�j%�j%�','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10808,'eg','all_subcategories','j%�%�%�j%c% j%�%�%�j%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10809,'eg','add_new_subcategory','j%�j%b%j%�%�j%# %�j%�j%# %�j%�%j%c%%�j%# j%�j%�%�j%�j%#','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10810,'eg','subcategories','j%�%�%�j%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 07:20:55','2021-09-20 07:29:39'),(10811,'eg','sub_category_information','%�j%c%%�%�%�j%�j%� j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%#','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10812,'eg','slug','j%%j%�%�%�j%#','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10813,'eg','all_sub_subcategories','j%�%�%�j%c% j%�%�%�j%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10814,'eg','add_new_sub_subcategory','j%�j%b%j%�%�j%# j%�j%a%%�%�%� %�j%�%j%c%%� j%�j%�%�j%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10815,'eg','subsubcategories','j%�%�%�j%�j%�j%� j%�%�%�j%�%j%c%%�j%# j%�%�%�j%�%j%c%%�j%#','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10816,'eg','make_this_default','j%�j%�j%c%%� %�j%�%j%� j%�%�j%�%�j%�j%�%j%�j%b%%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10817,'eg','shops','%�j%�%�j%�j%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10818,'eg','women_clothing__fashion','%�%�j%�j%�j%% %�%�%�j%b%j%# %�j%%j%�j%�%�j%#','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10819,'eg','cellphones__tabs','j%�%�%�%�j%�j%�%� j%�%�%�j%�%�%�%�j%# %�j%c%%�j%�%�j%�j%� j%�%�j%�j%�%�%�j%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10820,'eg','welcome_to','%�j%�%j%�j%�j%� j%�%� %�%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10821,'eg','create_a_new_account','j%�%�j%$%j%�j%� j%�j%%j%�j%� j%�j%�%�j%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10822,'eg','full_name','j%�%�j%�j%%%� j%�%�%�j%�%�%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10823,'eg','password','%�%�%�%� j%�%�j%%j%�%','2021-02-09 07:21:37','2021-02-09 07:21:37'),(10824,'eg','confrim_password','j%�j%�%�%�j%� %�%�%�j%# j%�%�%�j%�%%�j%�%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10825,'eg','i_agree_with_the','%�j%�%�j%� j%�j%�%�%� %�j%c%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10826,'eg','terms_and_conditions','j%�%�j%�j%�%�j%�%� %�j%�%�j%$%j%�%%�j%V%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10827,'eg','register','j%�j%%j%�%�%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10828,'eg','already_have_an_account','%�%� %�j%�%�%� j%�j%%j%�j%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10829,'eg','sign_up_with','j%%j%�%� %�j%c%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10830,'eg','i_agree_with_the_terms_and_conditions','j%�%�%� j%�%�j%�%�%� j%c%%�%� j%�%�j%$%j%�%%�j%V% %�j%�%�j%U%j%�%%�%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10831,'eg','all_role','%�%� j%�%�j%�%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10832,'eg','add_new_role','j%�j%b%j%�%�j%# j%�%�j%�% j%�j%�%�j%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10833,'eg','roles','j%�%�j%�j%�%�j%�j%�%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10834,'eg','add_new_staffs','j%�j%b%j%�%�j%# j%V%j%�%�%� j%c%%�%� j%�j%�%�j%�','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10835,'eg','role','%�j%U%%�%�j%#','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10836,'eg','frontend_website_name','j%�j%%%� %�%�%�j%c% j%�%�%�j%�j%�%�j%# j%�%�j%�%�j%�%�%�j%#','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10837,'eg','website_name','j%�j%%%� j%�%�%�%�%�j%c%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10838,'eg','site_motto','j%$%j%c%j%�j%�% j%�%�%�%�%�j%c%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10839,'eg','best_ecommerce_website','j%�%�j%b%%� %�%�%�j%c% %�%�j%�j%�j%�j%�%j%# j%�%�j%�%�%�j%�j%�%%�%�%�j%#','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10840,'eg','site_icon','j%�%�%�%�%�j%# j%�%�%�%�%�j%c%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10841,'eg','website_favicon_32x32_png','j%�%�%�%�%�j%# %�%�%�j%c% j%�%�%�%�j%�. 32 %� 32. png','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10842,'eg','website_base_color','%�%�%� %�j%�j%c%j%�j%# j%�%�%�%�%�j%c%','2021-02-09 07:21:37','2021-09-20 07:29:39'),(10843,'eg','hex_color_code','j%�%%�j%�% j%�%�%�%�%� j%�%�j%%j%�j%�j%%%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10844,'eg','website_base_hover_color','%�%�%� %�j%�j%c%j%�j%# %�%�%�j%c% j%�%�%�%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10845,'eg','update','j%�j%�j%�%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10846,'eg','global_seo','j%�%�j%c%j%�%�%�%�j%# j%%%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10847,'eg','meta_description','%�%�j%�j%� j%�%�%�j%a%%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10848,'eg','keywords','j%�%�%�%�%�j%�j%� j%�%�j%�j%�%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10849,'eg','separate_with_coma','%�j%a%%� %�j%c% j%Q%%�j%�%�j%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10850,'eg','website_pages','j%a%%�j%�j%�j%� j%�%�%�%�%�j%c%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10851,'eg','all_pages','%�%� j%�%�j%a%%�j%�j%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10852,'eg','add_new_page','j%�j%b%%� j%a%%�j%�j%# j%�j%�%�j%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10853,'eg','url','URL','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10854,'eg','actions','j%�j%�j%�%j%�j%�j%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10855,'eg','edit_page_information','j%�j%�j%�%%�j%�% %�j%c%%�%�%�j%�j%� j%�%�j%a%%�j%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10856,'eg','page_content','%�j%�j%�%�%� j%�%�j%a%%�j%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10857,'eg','title','j%c%%�%�j%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10858,'eg','link','j%�%�%�j%# j%�%�%�j%a%%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10859,'eg','use_character_number_hypen_only','j%�j%%j%�j%�j%�%� j%�%�j%�j%�%%� j%� j%�%�j%�%%�%� j%� j%�%�%�j%�j%a%%�j%# %�%�j%V%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10860,'eg','add_content','j%�j%b%j%�%�j%# %�j%�j%�%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10861,'eg','seo_fields','j%%%�%� %�%�%�j%�j%�%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10862,'eg','update_page','j%�j%�j%�%�j%� j%�%�j%a%%�j%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10863,'eg','default_language','j%�%�%�j%Q%j%# j%�%�j%�%�j%�j%�%j%�j%b%%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10864,'eg','add_new_language','j%�j%b%%� %�j%Q%j%# j%�j%�%�j%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10865,'eg','rtl','RTL','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10866,'eg','translation','j%�j%�%j%�%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10867,'eg','language_information','%�j%c%%�%�%�j%�j%� j%�%�%�j%Q%j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10868,'eg','save_page','j%�j%�%�j%U% j%�%�j%a%%�j%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10869,'eg','home_page_settings','j%�j%c%j%�j%�j%�j%�j%� j%�%�j%a%%�j%�j%# j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10870,'eg','home_slider','j%�%�%�%�j%�%%� j%�%�%�%�j%�%%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10871,'eg','photos__links','j%�%�j%a%%�j%�% %�j%�%�j%�%%�j%�j%�j%V%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10872,'eg','add_new','j%�j%b%%� j%�j%�%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10873,'eg','home_categories','%�j%�j%�j%� j%�%�%�%�j%�%%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10874,'eg','home_banner_1_max_3','%�j%�%�j%�j%# j%�%�%�%�j%�%%� 1 (j%�%�j%�j%� j%�%�j%�%�j%a%%� 3)','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10875,'eg','banner__links','%�j%�%�j%�j%# %�j%�%%�j%�j%�j%V%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10876,'eg','home_banner_2_max_3','%�j%�%�j%�j%# j%�%�%�%�j%�%%� 2 (j%�%�j%�j%� j%�%�j%�%�j%a%%� 3)','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10877,'eg','top_10','j%�j%c%%�%� 10','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10878,'eg','top_categories_max_10','j%�%�%� j%�%�%�j%�j%�j%� (j%�j%�j%� j%�%�j%a%%� 10)','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10879,'eg','top_brands_max_10','j%�j%$%%�j%�% j%�%�%�j%�j%�%%�j%�j%� (j%�j%�j%� j%�%�j%a%%� 10)','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10880,'eg','system_name','j%�j%%%� j%�%�%�j%U%j%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10881,'eg','system_logo__white','j%$%j%c%j%�j%�% j%�%�%�j%U%j%�%� - j%�j%�%�j%b%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10882,'eg','choose_files','j%�j%�j%�j%�% j%�%�%�%�%�j%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10883,'eg','will_be_used_in_admin_panel_side_menu','j%%%�j%�%� j%�j%%j%�j%�j%�j%�%�%�j%� %�%� j%�%�%�j%�j%�%�j%# j%�%�j%�j%�%�j%�%�j%# %�%�%�j%�j%# j%�%�j%�j%�j%�j%�%j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10884,'eg','system_logo__black','j%$%j%c%j%�j%�% j%�%�%�j%U%j%�%� - j%�j%%%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10885,'eg','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','j%%%�j%�%� j%�j%%j%�j%�j%�j%�%�%�j%� %�%� j%�%�j%$%j%�%%�j%V% j%�%�j%c%%�%�%� %�%�%�j%�j%# j%�%�j%�j%�j%�j%�%j%# %�%� j%�%�j%�%�j%�%� + j%a%%�j%�j%# j%�j%%j%�%�%� j%�j%�%�%� j%�%�%�j%%j%�%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10886,'eg','system_timezone','j%�%�%�%�j%V%%�j%# j%�%�j%�%%�%�%�j%# %�%�%�j%U%j%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10887,'eg','admin_login_page_background','j%�%�%�%�j%# j%a%%�j%�j%# j%�j%%j%�%�%� j%�j%�%�%� j%�%�%�j%%j%�%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10888,'eg','website_header','j%�%j%�j%% %�%�%�j%c% j%�%�%�%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10889,'eg','header_setting','j%�j%c%j%�j%�j%� j%�%�j%�%j%�j%%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10890,'eg','header_logo','j%�%j%�j%% j%�%�j%$%j%c%j%�j%�%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10891,'eg','show_language_switcher','j%�j%U%%�j%�j%�% %�j%�%�%�%� j%�%�%�j%Q%j%#j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10892,'eg','show_currency_switcher','j%�j%U%%�j%�j%�% %�j%�%�%�%� j%�%�j%c%%�%�j%�j%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10893,'eg','enable_stikcy_header','j%�%�%�%�%� j%�%j%�j%% stikcyj%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10894,'eg','website_footer','j%�j%�%%�%�%� %�%�%�j%c% j%�%�%�%�j%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10895,'eg','footer_widget','j%�%�%�j%V%j%c%j%# j%�%�j%�j%�%%�%�%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10896,'eg','about_widget','j%�%�%� j%�%�%�j%V%j%c%j%#','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10897,'eg','footer_logo','j%�j%�%%�%�%� j%�%�j%$%j%c%j%�j%�%','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10898,'eg','about_description','j%�%�%� j%�%�%�j%a%%�','2021-02-09 07:21:38','2021-09-20 07:29:39'),(10899,'eg','contact_info_widget','j%�j%�j%�j%# %�j%c%%�%�%�j%�j%� j%�%�j%�j%�j%a%j%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10900,'eg','footer_contact_address','j%c%%�%�j%�%� j%�j%�j%a%j%�%� j%�%�j%�j%�%%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10901,'eg','footer_contact_phone','%�j%�j%�%� j%�%�j%# j%�j%�j%a%j%�%� j%�%�j%�j%�%%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10902,'eg','footer_contact_email','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� %�j%�%�j%# j%�j%�j%a%j%�%� j%�%�j%�j%�%%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10903,'eg','link_widget_one','j%�%j%�j%�j%V% j%�%�%�j%V%j%c%j%# %�j%�j%�j%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10904,'eg','links','j%�%�j%�%%�j%�j%�j%V%','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10905,'eg','footer_bottom','j%�j%%%�%� j%�%�j%�j%�%%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10906,'eg','copyright_widget_','j%�%�%�j%V%j%c%j%# j%�%�%�%� j%�%�j%V%j%�j%c% %�j%�%�%�j%$%j%�%','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10907,'eg','copyright_text','%�j%a% j%�%�%�%� j%�%�%�j%$%j%�%','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10908,'eg','social_link_widget_','j%�j%�j%�j%# j%�%�j%�j%�%j%�j%�j%�j%V% j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10909,'eg','show_social_links','j%�j%U%%�j%�j%�% j%�%�j%�%%�j%�j%�j%V% j%�%�j%�j%�j%�%�j%�j%c%%�j%#j%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10910,'eg','social_links','j%�%%�j%�j%�j%V% j%�j%�j%�%�j%�j%c%%�j%#','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10911,'eg','payment_methods_widget_','j%�j%�j%�j%# j%V%j%�%%� j%�%�j%�%�j%c%','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10912,'eg','rtl_status_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# RTL j%�%�j%�j%�j%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10913,'eg','language_changed_to_','j%�j%Q%%�j%�%j%� j%�%�%�j%Q%j%# j%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10914,'eg','inhouse_product_sale_report','j%�%�j%�%%�j%�% j%�%�j%c% j%�%�%�%�j%�j%� j%�%�j%�j%�j%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10915,'eg','sort_by_category','%�j%�%j%�% j%�j%%j%� j%�%�%�j%�j%#','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10916,'eg','product_wise_stock_report','j%�%�j%�%%�j%�% %�j%�j%�%%�%� j%�%�%�%�j%�j%� j%�%�j%�%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10917,'eg','currency_changed_to_','j%�j%Q%%�j%�%j%� j%�%�j%c%%�%�j%# j%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10918,'eg','avatar','j%�%�j%a%%�j%�%j%# j%�%�j%�%%�j%�%%�j%#','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10919,'eg','copy','%�j%%j%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10920,'eg','variant','%�j%�j%Q%%�j%�%','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10921,'eg','variant_price','j%%j%c%j%�% %�j%�j%Q%%�j%�%','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10922,'eg','sku','SKU','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10923,'eg','key','%�%�j%�j%�j%�','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10924,'eg','value','j%�%�%�%�%�j%#','2021-02-09 07:21:39','2021-09-20 07:29:39'),(10925,'eg','copy_translations','%�j%%j%� j%�%�j%�j%�%j%�%�j%�j%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10926,'eg','all_pickup_points','j%�%�%�j%c% %�%�j%�j%V% j%�%�j%�j%%j%�%�j%�%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10927,'eg','add_new_pickup_point','j%�j%b%%� %�%�j%V%j%# j%�%�j%�%�j%�j%V% j%�j%�%�j%�j%#','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10928,'eg','manager','%�j%�%�j%�%','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10929,'eg','location','%�%�%�j%c%%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10930,'eg','pickup_station_contact','j%�%�j%�j%�j%a%j%�%� j%�%�j%�j%V%j%# j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10931,'eg','open','j%�%�j%�j%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10932,'eg','pos_activation_for_seller','j%�%�j%c%%�%� %�%�j%�j%V% j%�%�j%�%�j%c% %�%�j%�j%�j%�j%c%','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10933,'eg','order_completed_successfully','j%�%�j%�%�%� j%�%�j%V%%�j%� j%�%�j%�j%�j%�.','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10934,'eg','text_input','j%�j%�j%�j%�%� j%�%�%�j%a%','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10935,'eg','select','j%�j%�j%�%�j%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10936,'eg','multiple_select','j%�j%�j%�%�j%� %�j%�j%c%j%�j%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10937,'eg','radio','%�j%�%%�j%�j%c%','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10938,'eg','file','%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10939,'eg','email_address','j%c%%�%�j%�%� j%�j%�%%�j%� j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10940,'eg','verification_info','%�j%c%%�%�%�j%�j%� j%�%�j%�j%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10941,'eg','approval','%�%�j%�%�%�j%#','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10942,'eg','due_amount','%�j%�%�j%Q% %�j%%j%�j%�%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10943,'eg','show','j%�j%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10944,'eg','pay_now','j%�j%�%�j%c% j%�%�j%�%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10945,'eg','affiliate_user_verification','j%�%�j%�j%�%�%� %�%� j%�%�%�j%%j%�j%�j%�%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10946,'eg','reject','j%�%%�j%b%','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10947,'eg','accept','%�j%�%�%�','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10948,'eg','beauty_health__hair','j%�%�j%�%�j%�%� %�j%�%�j%a%j%�j%# %�j%�%�j%$%j%c%j%�%','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10949,'eg','comparison','%�%�j%�j%�%%�j%#','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10950,'eg','reset_compare_list','j%�j%c%j%�j%�j%# j%�j%c%%�%�%� %�j%�j%�%�j%# j%�%�%�%�j%�j%�%%�j%#','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10951,'eg','your_comparison_list_is_empty','%�j%�j%�%�j%# j%�%�%�%�j%�j%�%%�j%# j%�%�j%�j%�j%a%j%# j%�%� %�j%�j%�%j%Q%j%#','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10952,'eg','convert_point_to_wallet','j%�j%�%�%�%� j%�%�%�%�j%V%j%# j%�%�%� j%�%�%�j%�%�j%U%j%#','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10953,'eg','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','%�%�j%�j%�j%U%j%#: j%�%�j%� j%�j%�j%�j%�j%# j%�%�%� j%�%�j%$%%�j%V% j%�%�j%�j%�% j%�%�%�j%�%�j%U%j%# j%�%�%�j%�%� %�j%�%� j%�j%%j%�j%�j%�j%�%� %�%�j%�%� %�%�j%V%j%# j%�%�%�j%�j%�%�.','2021-02-09 07:21:39','2021-09-20 07:29:40'),(10954,'eg','create_an_account','j%�%�j%$%j%� j%�j%%j%�j%�.','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10955,'eg','use_email_instead','j%�j%%j%�j%�j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� j%�j%�%�j%�%� %�%� j%�%%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10956,'eg','by_signing_up_you_agree_to_our_terms_and_conditions','j%�j%�%�j%�j%%j%�%�%� %�j%�%�%� j%�%�j%�%�%� j%c%%�%� j%�%�j%$%j%�%%�j%V% %�j%�%�j%�j%�%�j%�%� j%�%�j%�j%�j%a%j%# j%�%�j%�.','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10957,'eg','create_account','j%�%�j%$%j%�j%� j%�j%%j%�j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10958,'eg','or_join_with','j%�%� j%�%�j%b%%� j%�%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10959,'eg','already_have_an_account','%�%� %�j%�%�%� j%�j%%j%�j%�j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10960,'eg','log_in','j%�j%%j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10961,'eg','computer__accessories','j%�%�%�%�j%�%�%�j%�j%�% %�%�%�j%�%�j%�j%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10962,'eg','products','%�%�j%�j%�j%�j%�)','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10963,'eg','in_your_cart','%�%� j%c%j%�%j%�j%# j%�%�j%�j%%%�%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10964,'eg','in_your_wishlist','%�%� %�j%�j%�%�j%# j%�%�j%�%j%Q%j%�j%�j%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10965,'eg','you_ordered','%�%�j%� j%V%%�j%�j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10966,'eg','default_shipping_address','j%c%%�%�j%�%� j%�%�j%$%j%�%� j%�%�j%�%�j%�j%�%j%�j%b%%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10967,'eg','sports__outdoor','j%�%%�j%�j%b%j%# %�j%�j%�j%�%j%�%�j%#','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10968,'eg','copied','%�j%%j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10969,'eg','copy_the_promote_link','j%�%�j%%j%� j%�%j%�j%�j%V% j%�%�j%�j%�%%�%�j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10970,'eg','write_a_review','j%�%�j%�j%� %�j%�%j%�j%�j%c%j%#','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10971,'eg','your_name','j%�j%%%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10972,'eg','comment','j%�j%c%%�%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10973,'eg','your_review','%�j%�%j%�j%�j%c%j%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10974,'eg','submit_review','j%�j%�%j%%j%�%� j%�%�%�j%�%j%�j%�j%c%j%#','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10975,'eg','claire_willis','%�%�%�j%�% %�%�%�%�j%%','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10976,'eg','germaine_greene','j%�%�j%�%%�%�%� j%�j%�%%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10977,'eg','product_file','%�%�%� j%�%�%�%�j%�j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10978,'eg','choose_file','j%�j%�j%�j%�% %�%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10979,'eg','type_to_add_a_tag','j%�%�j%�j%� %�j%�j%b%j%�%�j%# j%c%%�j%�%�j%#','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10980,'eg','images','j%�%�j%a%%�j%�%','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10981,'eg','main_images','j%�%�j%a%%�j%�% j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10982,'eg','meta_tags','j%�%�j%c%%�j%�%�j%�j%� j%�%�%�%�%�%�j%#','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10983,'eg','digital_product_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�%�%�j%�j%� j%�%�j%�%%�%�%� j%�%�j%�j%�j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10984,'eg','edit_digital_product','j%�j%�j%�%%�j%�% j%�%�%�%�j%�j%� j%�%�j%�%%�%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10985,'eg','select_an_option','j%�j%�j%� j%�j%�j%�%�j%�j%�%j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10986,'eg','tax','j%b%j%�%%�j%�j%#','2021-02-09 07:21:40','2021-02-09 07:21:40'),(10987,'eg','any_question_about_this_product','j%�%� j%%j%�j%�%� j%�%�%� %�j%�%j%� j%�%�%�%�j%�j%�j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10988,'eg','sign_in','j%�j%%j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10989,'eg','login_with_google','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%c%j%�j%�% j%�%�j%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10990,'eg','login_with_facebook','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�j%�j%%j%�j%�j%�j%�%� j%�%�%�%�j%%j%�%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10991,'eg','login_with_twitter','j%�j%%j%�%�%� j%�%�j%�j%�%�%� %�j%c% Twitter','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10992,'eg','click_to_show_phone_number','j%�%�%�j%�% %�j%�j%U%%�j%�j%�% j%�%%�%� j%�%�%�j%�j%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10993,'eg','other_ads_of','j%�j%c%%�j%�%�j%�j%� j%�j%�j%�%%� %�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10994,'eg','store_home','%�j%�j%�%%� j%�%�%�%�j%�%%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10995,'eg','top_selling','j%�%�j%�%�j%�j%�% %�j%�%�j%c%j%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10996,'eg','shop_settings','j%�j%c%j%�j%�j%�j%�j%� j%�%�%�j%�j%�j%�%','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10997,'eg','visit_shop','%�%� j%�j%�%%�j%�j%�%j%# j%�%�%�j%�j%�j%�%','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10998,'eg','pickup_points','%�%�j%�j%V% j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 07:21:40','2021-09-20 07:29:40'),(10999,'eg','select_pickup_point','j%�j%�j%� %�%�j%V%j%# j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 07:21:40','2021-09-20 07:29:40'),(11000,'eg','slider_settings','j%�j%c%j%�j%�j%�j%�j%� j%�%�%�%�j%�%%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(11001,'eg','social_media_link','j%�%j%�j%�j%V% j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(11002,'eg','facebook','%�%�%�j%c% j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%� j%�%�%�%�j%%j%�%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(11003,'eg','twitter','j%�%�%�j%�j%�%','2021-02-09 07:21:40','2021-09-20 07:29:40'),(11004,'eg','google','j%�%�j%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(11005,'eg','new_arrival_products','%�%�j%�j%�j%�j%� %�j%a%%�%� j%�j%�%�j%�j%#','2021-02-09 07:21:40','2021-09-20 07:29:40'),(11006,'eg','check_your_order_status','j%�j%�%�%� %�%� j%�j%�%�j%# j%V%%�j%�%�','2021-02-09 07:21:40','2021-09-20 07:29:40'),(11007,'eg','shipping_method','j%V%j%�%%�%�j%# j%�%�j%$%j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11008,'eg','shipped_by','j%�%� j%�%�j%$%j%�%� j%�%�j%�j%%j%V%j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11009,'eg','image','j%a%%�j%�%j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11010,'eg','sub_sub_category','%�j%�j%# %�j%�%j%c%%�j%# %�j%�%j%c%%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11011,'eg','inhouse_products','j%�%�%�%�j%�j%�j%�j%� j%�%�j%�j%�j%�%�%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11012,'eg','forgot_password','%�%� %�j%%%�j%� %�%�%�j%# j%�%�%�j%�%%�j%�%j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11013,'eg','enter_your_email_address_to_recover_your_password','j%�j%�j%�%� j%c%%�%�j%�%� j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%� %�j%�j%%j%�j%c%j%�j%�j%# %�%�%�j%# j%�%�%�j%�%%�j%�% j%�%�j%�j%�j%a%j%# j%�%�.','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11014,'eg','email_or_phone','j%�j%�%%�j%� j%�%�%�j%�j%�%%�%�%� j%�%� %�j%�j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11015,'eg','send_password_reset_link','j%�j%�%j%%j%�%� j%�%j%�j%�j%V% j%�j%c%j%�j%�j%# j%�j%c%%�%�%� %�%�%�j%# j%�%�j%%j%�%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11016,'eg','back_to_login','j%�%�j%c%%�j%�j%# j%�%�%� j%�j%%j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11017,'eg','index','%�%�j%�%j%%','2021-02-09 07:21:41','2021-02-09 07:21:41'),(11018,'eg','download_your_product','%�%� j%�j%�%�j%�%%�%� %�%�j%�j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11019,'eg','option','j%�j%�j%�%�j%�j%�%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11020,'eg','applied_refund_request','j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%� %�j%V%j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11021,'eg','item_has_been_renoved_from_wishlist','j%�%�j%� j%�j%c%j%�j%�j%# j%�%�j%c%%�j%a%j%�% %�%� %�j%�j%�%�j%# j%�%�j%�%j%Q%j%�j%�j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11022,'eg','bulk_products_upload','j%�j%�%�%�%� j%�%�%�%�j%�j%�j%�j%� j%�j%�%�j%�%�%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11023,'eg','upload_csv','j%�j%�%�%�%� CSV','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11024,'eg','create_a_ticket','%�%� j%�j%�%�j%$%j%�j%� j%�j%�%%�j%�%j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11025,'eg','tickets','j%�j%�%j%�%�j%�%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11026,'eg','ticket_id','%�j%c%j%�%%� j%�%�j%�j%�%%�j%�%j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11027,'eg','sending_date','j%�j%�j%�%%�j%� j%�j%�%j%%j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11028,'eg','subject','%�%�j%b%%�j%c%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11029,'eg','view_details','j%c%j%�%j%b% j%�%�j%�%�j%�j%a%%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11030,'eg','provide_a_detailed_description','%�j%�%� %�j%a%%�j%�%� %�%�j%a%%�j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11031,'eg','type_your_reply','j%�%�j%�j%� j%�%j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11032,'eg','send_ticket','j%�j%�%j%%j%�%� j%�%�j%�j%�%%�j%�%j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11033,'eg','load_more','j%�j%�%�%�%� j%�%�%�j%�%%�j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11034,'eg','jewelry__watches','j%�%�%�j%�%�%�j%�%j%�j%� %�j%�%�j%%j%�j%c%j%�j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11035,'eg','filters','j%�%�%�j%�%j%$%j%�j%�j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11036,'eg','contact_address','j%c%%�%�j%�%� j%�%�j%�j%�j%a%j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11037,'eg','contact_phone','%�j%�j%�%� j%�%�j%�j%�j%a%j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11038,'eg','contact_email','j%�%�j%�j%a%%� j%�j%�%�j%�j%�%%�j%� j%�%�j%�%�j%�j%�%%�%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11039,'eg','filter_by','%�j%a%%�%� j%�%�j%�j%%j%V%j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11040,'eg','condition','j%$%j%�%j%V%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11041,'eg','all_type','%�%� j%�%�j%�%�%�j%�j%c%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11042,'eg','pay_with_wallet','j%�j%�%�j%c% j%�j%�%�%�j%�%�j%U%j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11043,'eg','select_variation','j%�j%�j%� j%�%�j%�j%�j%�%�j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11044,'eg','no_product_added','%�j%� %�%�j%�j%� %�%�j%�j%� %�j%b%j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11045,'eg','status_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%�%�j%# j%�%�j%�j%�j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11046,'eg','all_seller_packages','j%�%�%�j%c% j%�j%�%%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11047,'eg','add_new_package','j%�j%b%j%�%�j%# j%�j%�%%�j%# j%�j%�%�j%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11048,'eg','package_logo','j%�j%�%%�j%# j%�%�j%$%j%c%j%�j%�%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11049,'eg','days','j%�%�j%�%�','2021-02-09 07:21:41','2021-02-09 07:21:41'),(11050,'eg','create_new_seller_package','j%�%�j%$%j%�j%� j%�j%�%%�j%# j%�j%�j%�j%c% j%�j%�%�j%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11051,'eg','package_name','j%�j%%%� j%�%�j%�j%�%%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11052,'eg','duration','j%�%�%�j%�j%# j%�%�j%�%%�%�%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11053,'eg','validity_in_number_of_days','j%�%�j%a%%�j%�j%�%�j%# %�%� j%c%j%�j%� j%�%�j%�%�j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11054,'eg','update_package_information','j%�j%�j%�%�j%� %�j%c%%�%�%�j%�j%� j%�%�j%�j%�%%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11055,'eg','package_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�j%�j%�%%�j%# j%�%�j%�j%�j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11056,'eg','refund_request','j%V%%�j%� j%�j%�%j%�j%�j%c%','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11057,'eg','reason','j%�%�j%%j%�j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11058,'eg','label','j%b%j%c% j%�%�%�%�%�j%# j%�%�%�%�j%�j%%j%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11059,'eg','select_label','j%�j%�j%� j%�%�j%�j%%%�%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11060,'eg','multiple_select_label','%�j%�j%c%j%�j%� j%�j%�j%�%�j%� j%�%�j%�j%%%�%�j%#','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11061,'eg','radio_label','j%�j%%%�%�j%# j%�%�j%�%j%�j%�%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11062,'eg','pickup_point_orders','j%�%�j%�%�j%�% %�%�j%V%j%# j%�%�j%�j%%j%�%�j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11063,'eg','view','j%�%j%�%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11064,'eg','order_','j%V%%�j%� #','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11065,'eg','order_status','j%�j%�%�j%# j%�%�j%V%%�j%�','2021-02-09 07:21:41','2021-09-20 07:29:40'),(11066,'eg','total_amount','j%�%�%�j%�%�j%Q% j%�%�j%�j%�%�j%�%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11067,'eg','total','%�j%�%�%�j%c%','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11068,'eg','delivery_status_has_been_updated','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# j%�%�j%�j%%%�%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11069,'eg','payment_status_has_been_updated','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# j%�%�j%�%�j%c%','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11070,'eg','invoice','%�j%�j%�%�j%�%j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11071,'eg','set_refund_time','j%b%j%�j%V% %�%�j%� j%�%�j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11072,'eg','set_time_for_sending_refund_request','j%�j%c%%�%�%� j%�%�%�%�j%� %�j%�j%�%j%%j%�%� j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11073,'eg','set_refund_sticker','j%�j%c%%�%�%� %�%�j%a%%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11074,'eg','sticker','%�%�j%a%%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11075,'eg','refund_request_all','j%V%%�j%� j%�j%%j%�j%�%j%�j%�j%� j%�%�%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11076,'eg','order_id','j%�%%�%� j%�%�j%�j%c%j%�%%�%� j%�%�j%�j%�j%a% j%�j%�%�j%V%%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11077,'eg','seller_approval','%�%�j%�%�%�j%# j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11078,'eg','admin_approval','%�%�j%�%�%�j%# j%�%�%�j%%j%�%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11079,'eg','refund_status','j%�j%�%�j%# j%�%j%� j%�%�j%�%�%�j%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11080,'eg','no_refund','%�j%� j%�%j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11081,'eg','status_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%�%�j%# j%�%�j%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11082,'eg','user_search_report','j%�%�j%�%%�j%�% j%�j%�j%� j%�%�%�j%%j%�j%�j%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11083,'eg','search_by','j%�%�j%�j%�j%� j%c%%� j%V%j%�%%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11084,'eg','number_searches','j%c%j%�j%� j%c%%�%�%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11085,'eg','sender','%�j%�%j%%%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11086,'eg','receiver','j%�%�%�j%�%�%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11087,'eg','verification_form_updated_successfully','j%�%� j%�j%�j%�%�j%� %�%�%�j%�%j%� j%�%�j%�j%�%�%� j%�%�j%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11088,'eg','invalid_email_or_password','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� j%�%� %�%�%�j%# j%�%�j%%j%�% j%�j%�j%V%j%�j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11089,'eg','all_coupons','j%�%�%�j%c% j%�%�%�j%%j%�j%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11090,'eg','add_new_coupon','j%�j%b%%� %�j%%%�%�j%# j%�j%�%�j%�j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11091,'eg','coupon_information','%�j%c%%�%�%�j%�j%� j%�%�%�j%%%�%�j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11092,'eg','start_date','j%�j%�j%�%%�j%� j%�%�j%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11093,'eg','end_date','j%�j%�j%�%%�j%� j%�%�j%�%�j%�%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11094,'eg','product_base','%�j%�j%c%j%�j%# j%�%�%�%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11095,'eg','send_newsletter','j%�j%�%j%%j%�%� j%�%�%�j%$%j%�%j%# j%�%�j%�j%�j%�j%�j%�%%�j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11096,'eg','mobile_users','%�j%%j%�j%�j%�%�%� j%�%�%�j%�%�%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11097,'eg','sms_subject','%�%�j%b%%�j%c% j%�%�j%�%j%%j%�j%�%� j%�%�%�j%a%%�j%�%j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11098,'eg','sms_content','%�j%�j%�%�%� j%�%�j%�%j%%j%�j%�%� j%�%�%�j%a%%�j%�%j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11099,'eg','all_flash_delas','%�%� %�%�j%�j%$% j%�%�%�j%�j%%','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11100,'eg','create_new_flash_dela','j%�%�j%$%j%�j%� %�%�j%�j%$% j%�%�%�j%� j%�j%�%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11101,'eg','page_link','j%�%j%�j%�j%V% j%�%�j%a%%�j%�j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11102,'eg','flash_deal_information','%�j%c%%�%�%�j%�j%� j%a%%�%�j%# %�%�j%�j%$%','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11103,'eg','background_color','%�%�%� j%�%�j%�%�%�%�j%#','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11104,'eg','0000ff','# 0000ff','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11105,'eg','text_color','%�%�%� j%�%�j%�j%V%','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11106,'eg','white','j%�j%�%�j%b%','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11107,'eg','dark','j%�j%�%�%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11108,'eg','choose_products','j%�j%�j%�j%�% j%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11109,'eg','discounts','j%�%�j%�j%a%%�%�j%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11110,'eg','discount_type','%�%�j%c% j%�%�j%�j%a%%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11111,'eg','twillo_credential','j%�j%c%j%�%�j%�j%� Twillo','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11112,'eg','twilio_sid','TWILIO SID','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11113,'eg','twilio_auth_token','j%�%%�j%�% TWILIO AUTH','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11114,'eg','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11115,'eg','valid_twillo_number','j%�%%�%� j%�%�%�%�%� j%a%j%�%�j%�','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11116,'eg','nexmo_credential','j%�j%c%j%�%�j%�j%� Nexmo','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11117,'eg','nexmo_key','NEXMO KEY','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11118,'eg','nexmo_secret','NEXMO SECRET','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11119,'eg','ssl_wireless_credential','j%�j%c%j%�%�j%�j%� %�j%�j%%%�%�%� SSL','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11120,'eg','ssl_sms_api_token','SSL SMS API TOKEN','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11121,'eg','ssl_sms_sid','SSL SMS SID','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11122,'eg','ssl_sms_url','j%c%%�%�j%�%� URL %�%� SSL SMS','2021-02-09 07:21:42','2021-09-20 07:29:40'),(11123,'eg','fast2sms_credential','j%�j%c%j%�%�j%�j%� Fast2SMS','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11124,'eg','auth_key','%�%�j%�j%�j%� j%�%�%�j%a%j%�j%�%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11125,'eg','route','j%V%j%�%%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11126,'eg','promotional_use','j%�%�j%�j%%j%�j%�j%�j%�%� j%�%�j%�j%�%%�%�j%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11127,'eg','transactional_use','j%�j%%j%�j%�j%�j%�%� j%�%�%�j%c%j%�%�%�j%�j%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11128,'eg','sender_id','%�%�%�j%# j%�%�%�j%�%j%%%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11129,'eg','nexmo_otp','Nexmo OTP','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11130,'eg','twillo_otp','Twillo OTP','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11131,'eg','ssl_wireless_otp','SSL Wireless OTP','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11132,'eg','fast2sms_otp','Fast2SMS OTP','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11133,'eg','order_placement','j%�j%�%j%�%�j%� j%�%�j%�%�j%%%�j%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11134,'eg','delivery_status_changing_time','%�%�j%� j%�j%Q%%�%�j%�% j%�j%�%�j%# j%�%�j%�j%%%�%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11135,'eg','paid_status_changing_time','%�%�j%� j%�j%Q%%�%�j%�% j%�%�j%�j%�%�j%# j%�%�%�j%�%�%�j%c%j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11136,'eg','send_bulk_sms','j%�j%�%j%%j%�%� j%�%j%%j%�j%�%� %�j%a%%�j%# %�j%�%�j%c%j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11137,'eg','all_subscribers','%�%� j%�%�%�j%$%j%�j%�%%�%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11138,'eg','coupon_information_adding','j%�j%b%j%�%�j%# %�j%c%%�%�%�j%�j%� j%�%�%�j%%%�%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11139,'eg','coupon_type','%�%�j%c% j%�%�%�j%%%�%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11140,'eg','for_products','%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11141,'eg','for_total_orders','%�j%�j%�%�j%�%�%� j%�%�j%V%%�j%�j%�j%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11142,'eg','add_your_product_base_coupon','j%�j%b%%� %�j%%%�%�j%# %�j%�j%c%j%�j%# j%�%�%�%�j%�j%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11143,'eg','coupon_code','j%�%%�j%�% j%�%�%�%�j%�%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11144,'eg','sub_category','j%�j%a%%�%�%� %�j%�%j%c%%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11145,'eg','add_more','j%�j%b%%� j%�%�%�j%�%%�j%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11146,'eg','add_your_cart_base_coupon','j%�j%b%%� %�j%%%�%�j%# j%%%�j%# j%�%�j%�j%%%�%� j%�%�j%�j%�j%a%j%# j%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11147,'eg','minimum_shopping','j%�%�j%�j%� j%�%�j%�j%�%�%� %�%� j%�%�j%�j%%%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11148,'eg','maximum_discount_amount','j%�%�j%�j%� j%�%�j%�%�j%a%%� %�%�j%�%�j%Q% j%�%�j%�j%a%%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11149,'eg','coupon_information_update','j%�j%�j%�%�j%� %�j%c%%�%�%�j%�j%� j%�%�%�j%%%�%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11150,'eg','please_configure_smtp_setting_to_work_all_email_sending_funtionality','%�j%�%j%�%� j%�%�%�%�%� j%�j%c%j%�j%�j%� SMTP %�%�j%c%%�%� j%c%%�%� j%�%�%�j%c% %�j%U%j%�j%�%� j%�j%�%j%%j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11151,'eg','configure_now','j%�%�%�%�%� j%�%�j%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11152,'eg','total_published_products','j%�j%�%�j%�%�%� j%�%�%�%�j%�j%�j%�j%� j%�%�%�%�j%$%%�j%�%j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11153,'eg','total_sellers_products','j%�j%�%�j%�%�%� %�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11154,'eg','total_admin_products','j%�j%�%�j%�%�%� %�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%�%j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11155,'eg','manage_products','j%�j%�j%�j%�%j%# j%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11156,'eg','total_product_category','%�j%�j%# j%�%�%�%�j%�j%� j%�%�j%�j%�%�j%�%�%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11157,'eg','create_category','j%�%�j%$%j%�j%� %�j%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11158,'eg','total_product_sub_sub_category','j%�j%�%�j%�%�%� %�j%�j%# %�j%�%j%c%%�j%# j%�%�%�%�j%�j%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11159,'eg','create_sub_sub_category','j%�%�%�%�%� %�j%�j%# %�j%�%j%c%%�j%# %�j%�%j%c%%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11160,'eg','total_product_sub_category','j%�j%�%�j%�%�%� %�j%�j%# j%�%�%�%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11161,'eg','create_sub_category','j%�%�j%$%j%�j%� %�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11162,'eg','total_product_brand','j%�j%�%�j%�%�%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# %�%�%�%�j%�j%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11163,'eg','create_brand','j%�%�j%$%j%�j%� j%c%%�j%�%�j%# j%�j%�j%�j%�%%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11164,'eg','total_sellers','%�j%�%�%�j%c% j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11165,'eg','total_approved_sellers','j%�j%�%�j%�%�%� j%�%�j%�j%�j%�j%c%%�%� j%�%�%�j%c%j%�%�j%�%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11166,'eg','total_pending_sellers','j%�j%�%�j%�%�%� j%�%�j%�j%�j%�j%c%%�%� j%�%�%�j%c%%�%�%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11167,'eg','manage_sellers','j%�j%�j%�j%�%j%# j%�%�j%�j%�j%�j%c%%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11168,'eg','category_wise_product_sale','j%�%�j%c% j%�%�%�%�j%�j%� %�%� %�j%�j%# j%�%�j%�%�%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11169,'eg','sale','j%�j%�%�%�j%b% j%�%�j%%j%c%j%�%','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11170,'eg','category_wise_product_stock','%�j%�j%# %�j%�j%�%%�%� j%�%�%�%�j%�j%� j%�%�j%�%�%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11171,'eg','category_name','j%�j%%%� j%�%�j%�j%a%%�%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11172,'eg','stock','%�j%�j%�%%�%�','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11173,'eg','frontend','%�%�j%�%�j%# j%�%�%�%�j%�%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11174,'eg','home_page','j%�%�j%a%%�j%�j%# j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 07:21:43','2021-09-20 07:29:40'),(11175,'eg','setting','j%b%j%�j%V%','2021-02-09 07:21:43','2021-02-09 07:21:43'),(11176,'eg','policy_page','j%a%%�j%�j%# j%�%�j%%%�j%�j%%j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11177,'eg','general','j%�%�j%�%j%�%� %�%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11178,'eg','click_here','j%�%�%�j%�% %�%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11179,'eg','useful_link','j%�%j%�j%�j%V% %�%�%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11180,'eg','activation','j%�%�j%�%�j%$%%�j%V%','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11181,'eg','smtp','SMTP','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11182,'eg','payment_method','j%V%j%�%%�%�j%# j%�%�j%�%�j%c% j%�%� j%�%�j%%j%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11183,'eg','social_media','%�j%%j%�j%�%� j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11184,'eg','business','j%�j%c%%�j%�%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11185,'eg','seller_verification','j%�%�j%�j%�%�%� %�%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11186,'eg','form_setting','%�j%b%j%c% j%�%�%�%�%�j%�%j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11187,'eg','language','%�j%Q%j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11188,'eg','dashboard','%�%�j%�j%# j%�%�%�%�j%�j%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11189,'eg','pos_system','%�j%U%j%�%� %�%�j%�j%V% j%�%�j%�%�j%c%','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11190,'eg','pos_manager','%�j%�%�j%�% %�%�j%�j%V% j%�%�j%�%�j%c%','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11191,'eg','pos_configuration','j%�%�%�%�%� %�%�j%�j%V% j%�%�j%�%�j%c%','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11192,'eg','products','%�%�j%�j%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11193,'eg','add_new_product','j%�j%b%j%�%�j%# %�%�j%�j%� j%�j%�%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11194,'eg','all_products','j%�%�%�j%c% j%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11195,'eg','in_house_products','%�%�j%�j%�j%�j%� j%�%�%�%�j%�%%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11196,'eg','seller_products','%�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11197,'eg','digital_products','j%�%�%�%�j%�j%�j%�j%� j%�%�j%�%%�%�%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11198,'eg','bulk_import','j%�j%%j%�%�j%�%j%�j%� j%�j%�%�j%�%�%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11199,'eg','bulk_export','j%�j%a%j%�%�j%�% j%�j%�%�j%�%�%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11200,'eg','category','j%�%�%�j%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11201,'eg','subcategory','j%�j%a%%�%�%� %�j%�%j%c%%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11202,'eg','sub_subcategory','%�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11203,'eg','brand','j%�%�%�j%�j%�%%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11204,'eg','attribute','%�%�j%%j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11205,'eg','product_reviews','j%�j%c%%�%�%�j%�j%� j%�%�%�%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11206,'eg','sales','%�j%�%�j%c%j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11207,'eg','all_orders','j%�%�%�j%c% j%�%�j%V%%�j%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11208,'eg','inhouse_orders','j%�%�j%�%�j%�% j%�j%�j%�%�%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11209,'eg','seller_orders','j%V%%�j%�j%�j%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11210,'eg','pickup_point_order','j%V%%�j%� %�%�j%V%j%# j%�%�j%�j%%j%�%�j%�%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11211,'eg','refunds','j%�%�%�j%�j%�%�j%Q% j%�%�%�j%%j%�j%�%j%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11212,'eg','refund_requests','j%V%%�j%�j%�j%� j%�%�j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11213,'eg','approved_refund','j%�j%c%j%�j%�j%# j%�%�j%�%�%�j%�%� j%�%�%�j%c%j%�%�j%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11214,'eg','refund_configuration','j%�%�%�%�%� j%�j%%j%�j%�%j%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11215,'eg','customers','j%�%�j%c%%�%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11216,'eg','customer_list','%�j%�j%�%�j%# j%�%�j%c%%�%�j%�j%�','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11217,'eg','classified_products','j%�%�%�%�j%�j%�j%�j%� j%�%�%�j%�%�j%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11218,'eg','classified_packages','j%�%�j%�j%�%%� j%�%�%�j%a%%�%�j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11219,'eg','sellers','j%�%�j%�j%�j%c%j%#','2021-02-09 07:21:44','2021-09-20 07:29:40'),(11220,'eg','all_seller','%�%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11221,'eg','payouts','j%�%�%�j%�%�%�j%c%j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11222,'eg','payout_requests','j%V%%�j%�j%�j%� j%�%�j%�%�j%c%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11223,'eg','seller_commission','j%c%%�%�%�j%# j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11224,'eg','seller_packages','j%�j%�%%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11225,'eg','seller_verification_form','%�%�%�j%�%j%� j%�%�j%�j%�%�%� %�%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11226,'eg','reports','j%�%�j%�%�j%�j%�%%�j%�%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11227,'eg','in_house_product_sale','j%�%�j%c% j%�%�%�%�j%�j%�j%�j%� %�%� j%�%�%�%�j%�%%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11228,'eg','seller_products_sale','j%�%�j%c% %�%�j%�j%�j%�j%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11229,'eg','products_stock','%�j%�j%�%%�%� j%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11230,'eg','products_wishlist','%�j%�j%�%�j%# j%�%�%�%�j%�j%�j%�j%� j%�%�%�%�j%b%%�j%#','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11231,'eg','user_searches','j%c%%�%�%�j%�j%� j%�j%�j%� j%�%�%�j%%j%�j%�j%�%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11232,'eg','marketing','j%�j%%%�%�%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11233,'eg','flash_deals','j%a%%�%�j%�j%� %�%�j%�j%$%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11234,'eg','newsletters','j%�%�%�j%$%j%�%j%�j%� j%�%�j%�j%�j%�j%�j%�%%�j%#','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11235,'eg','bulk_sms','j%�%�j%�%j%%j%�j%�%� j%�%�%�j%a%%�j%�%j%# j%�j%�%�j%�%�%�j%#','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11236,'eg','subscribers','%�j%$%j%�j%�%%�%�%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11237,'eg','coupon','j%�%�%�j%%%�%�j%#','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11238,'eg','support','j%�%�j%�j%c%%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11239,'eg','ticket','j%�j%�%%�j%�%j%#','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11240,'eg','product_queries','j%�j%%j%�%�j%%j%�j%�%j%�j%� j%�%�%�%�j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11241,'eg','website_setup','j%�j%c%j%�j%�j%� j%�%�%�%�%�j%c%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11242,'eg','header','j%�%j%�j%%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11243,'eg','footer','j%�j%�%%�%�%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11244,'eg','pages','j%�%�j%a%%�j%�j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11245,'eg','appearance','%�j%U%%�j%�% j%�j%�j%�%j%�%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11246,'eg','setup__configurations','j%�%�j%�j%c%j%�j%�j%� %�j%�%�j%�%�%�%�%�j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11247,'eg','general_settings','j%�%�j%�j%c%j%�j%�j%�j%�j%� j%�%�j%c%j%�%�j%#','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11248,'eg','features_activation','j%�%�j%c%%�%� j%�%�%�%�j%�%j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11249,'eg','languages','j%�%�%�j%Q%j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11250,'eg','currency','j%c%%�%�j%#','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11251,'eg','pickup_point','%�%�j%V%j%# j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11252,'eg','smtp_settings','j%�j%c%j%�j%�j%�j%�j%� SMTP','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11253,'eg','payment_methods','j%V%j%�%%� j%�%�j%�%�j%c%','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11254,'eg','file_system_configuration','j%�%�%�%�%� %�j%U%j%�%� j%�%�%�%�%�j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11255,'eg','social_media_logins','j%c%%�%�%�j%�j%� j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� %�j%%j%�j%�%� j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11256,'eg','analytics_tools','j%�j%�%�j%�j%� j%�%�j%�j%�%�%�%�j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:40'),(11257,'eg','facebook_chat','j%�j%�%j%�j%$%j%# j%�%�%�%�j%%j%�%�%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11258,'eg','google_recaptcha','j%�%�j%�%� reCAPTCHA','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11259,'eg','shipping_configuration','j%�%�%�%�%� j%�%�j%$%j%�%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11260,'eg','shipping_countries','j%�%�%� j%�%�j%$%j%�%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11261,'eg','affiliate_system','%�j%U%j%�%� j%�%�j%�%�j%�j%%j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11262,'eg','affiliate_registration_form','j%�j%%j%�%�j%�j%�%j%# j%�j%%j%�%�%� j%�%�%�%�j%�j%%j%�%�%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11263,'eg','affiliate_configurations','j%�%�j%�%�%�%�%�j%�j%� j%�%�j%�j%�j%�j%c%j%#','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11264,'eg','affiliate_users','j%�%�%�j%%j%�j%�j%�%�%�%� j%�%�%�%�j%�j%%j%�%�%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11265,'eg','referral_users','j%�%�%�j%%j%�j%�j%�%�%�%� j%�%�%�j%�j%�%�%�%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11266,'eg','affiliate_withdraw_requests','j%V%%�j%�j%�j%� j%�%�j%%j%�j%� j%�%�j%�j%�j%�j%c%j%#','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11267,'eg','offline_payment_system','%�j%U%j%�%� j%�%�j%�%�j%c% j%�%�%� j%�j%�j%a%j%�%� j%�j%�%�j%�%�j%�j%�%%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11268,'eg','manual_payment_methods','j%V%j%�%%� j%�%�j%�%�j%c% j%�%�%�j%�%�%�j%#','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11269,'eg','offline_wallet_recharge','j%�j%c%j%�j%�j%# j%$%j%�%� j%�%�%�j%�%�j%U%j%# j%�%�%� j%�j%�j%a%j%�%� j%�j%�%�j%�%�j%�j%�%%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11270,'eg','offline_customer_package_payments','%�j%�%�%�j%c%j%�j%� j%�j%�%%�j%# j%�%�j%c%%�%�j%�j%� j%Q%%�j%�% j%�%�%�j%�j%a%%�%�%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11271,'eg','offline_seller_package_payments','%�j%�%�%�j%c%j%�j%� j%�j%�%%�j%# j%�%�j%�j%�j%�j%c% j%Q%%�j%�% j%�%�%�j%�j%a%%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11272,'eg','paytm_payment_gateway','j%�%�j%�j%�j%# j%�%�j%�%�j%c% Paytm','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11273,'eg','set_paytm_credentials','%�%� j%�j%�j%c%%�%�%� j%�%�j%�%�j%�j%� j%�j%c%j%�%�j%�j%� Paytm','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11274,'eg','club_point_system','%�j%U%j%�%� %�%�%�j%� j%�%�%�%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11275,'eg','club_point_configurations','j%�%�%�%�%�j%�j%� %�%�%�j%� j%�%�%�%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11276,'eg','set_product_point','j%�j%c%%�%�%� %�%�j%V%j%# j%�%�%�%�j%�j%�','2021-02-09 07:21:45','2021-09-20 07:29:41'),(11277,'eg','user_points','%�%�j%�j%V% j%�%�%�j%%j%�j%�j%�%�','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11278,'eg','otp_system','%�j%U%j%�%� OTP','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11279,'eg','otp_configurations','j%�%�%�%�%�j%�j%� OTP','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11280,'eg','set_otp_credentials','%�%� j%�j%�j%c%%�%�%� j%�%�j%�%�j%�j%� j%�j%c%j%�%�j%�j%� OTP','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11281,'eg','staffs','j%V%j%�%�%� j%�%�j%c%%�%�','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11282,'eg','all_staffs','%�%� %�j%�%%�%� j%�%�j%c%%�%�','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11283,'eg','staff_permissions','j%�j%�%%�%�j%�j%� j%�%�%�%�j%U%%�%�%�','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11284,'eg','addon_manager','%�j%�%�j%�% j%�%�%�%�j%�%�','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11285,'eg','browse_website','j%�j%a%%�j%� j%�%�%�%�%�j%c%','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11286,'eg','pos','%�%�j%�j%V% j%�%�j%�%�j%c%','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11287,'eg','notifications','j%�j%$%j%c%j%�j%�%j%�j%�','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11288,'eg','new_orders','j%V%%�j%�j%�j%� j%�j%�%�j%�j%#','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11289,'eg','userimage','j%a%%�j%�%j%# j%�%�%�j%%j%�j%�j%�%�','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11290,'eg','profile','j%�%�%�%�%� j%�%�j%$%j%�j%a%%�','2021-02-09 07:21:46','2021-09-20 07:29:41'),(11291,'eg','logout','j%�j%%j%�%�%� j%�j%�%%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11292,'eg','page_not_found','j%�%�j%a%%�j%�j%# j%Q%%�j%�% %�%�j%�%�j%�j%#!','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11293,'eg','the_page_you_are_looking_for_has_not_been_found_on_our_server','%�%� %�j%�%� j%�%�j%c%j%�%�j%�% j%c%%�%� j%�%�j%a%%�j%�j%# j%�%�j%�%� j%�j%�j%�j%� j%c%%�%�j%� j%c%%�%� j%�j%�j%�%�%�j%�.','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11294,'eg','registration','j%�%�j%�j%%j%�%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11295,'eg','i_am_shopping_for','j%�%�j%� j%�j%�j%%%�%� %�j%�j%�%�...','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11296,'eg','compare','%�j%�j%�%%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11297,'eg','wishlist','%�j%�j%�%�j%# j%�%�j%�%j%Q%j%�j%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11298,'eg','cart','j%c%j%�%j%�j%# j%�%�j%�j%%%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11299,'eg','your_cart_is_empty','j%c%j%�%j%�j%# j%�%�j%�j%%%�%� %�j%�j%�%j%Q%j%#','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11300,'eg','categories','j%�%�j%�j%a%%�%�%�j%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11301,'eg','see_all','j%�j%U%%�j%�j%�% j%�%�%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11302,'eg','seller_policy','j%%%�j%�j%%j%# j%�%�j%�j%�j%�j%c%','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11303,'eg','return_policy','j%%%�j%�j%%j%# j%�%�j%c%j%�j%�j%�j%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11304,'eg','support_policy','j%%%�j%�j%%j%# j%�%�j%�j%c%%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11305,'eg','privacy_policy','j%%%�j%�j%%j%# j%�j%�j%a%j%#','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11306,'eg','your_email_address','j%c%%�%�j%�%� j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11307,'eg','subscribe','j%�%�j%�j%$%j%�j%�%j%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11308,'eg','contact_info','%�j%c%%�%�%�j%�j%� j%�%�j%�j%�j%a%j%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11309,'eg','address','j%c%%�%�j%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11310,'eg','phone','%�j%�j%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11311,'eg','email','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11312,'eg','login','j%�j%%j%�%�%� j%�%�j%�j%�%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11313,'eg','my_account','j%�j%%j%�j%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11314,'eg','order_history','j%�j%�j%�%%�j%� j%�%�j%V%%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11315,'eg','my_wishlist','%�j%�j%�%�j%# j%�%�%�%�j%�j%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11316,'eg','track_order','j%�j%�%j%�%�j%� j%�%�%�j%%j%�j%�%','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11317,'eg','be_an_affiliate_partner','%�%� j%$%j%�%%�%�%�j%� j%�j%�j%�j%c%%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11318,'eg','be_a_seller','%�%� j%�j%�j%�j%c%j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11319,'eg','apply_now','%�j%�%� j%�%�j%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11320,'eg','confirmation','j%�%�j%�j%�%�%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11321,'eg','delete_confirmation_message','j%�j%�%%� j%�%j%%j%�%�j%# j%�%�j%�j%�%�%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11322,'eg','cancel','j%�%�j%Q%j%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11323,'eg','delete','j%�j%�%%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11324,'eg','item_has_been_added_to_compare_list','j%�%�j%� j%�j%b%j%�%�j%# j%�%�j%c%%�j%a%j%�% j%�%�%� %�j%�j%�%�j%# j%�%�%�%�j%�j%�%%�j%#','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11325,'eg','please_login_first','j%�%�j%�%j%�j%�j%� j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11326,'eg','total_earnings_from','j%�j%�%�j%�%�%� j%�%�j%�j%�%j%�j%�j%� %�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11327,'eg','client_subscription','j%�j%$%j%�j%�%j%�%� j%�%�j%c%%�%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11328,'eg','product_category','%�j%�j%# j%�%�%�%�j%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11329,'eg','product_sub_sub_category','j%�%�%�j%�j%# j%�%�%�j%�%j%c%%�j%# %�%�%�%�j%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11330,'eg','product_sub_category','%�j%�j%# j%�%�%�%�j%�j%� j%�%�%�j%�%j%c%%�j%#','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11331,'eg','product_brand','j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# j%�%�%�%�j%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11332,'eg','top_client_packages','j%�j%�%%� j%�%�j%c%%�%�%� j%�%�j%�j%c%%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11333,'eg','top_freelancer_packages','j%�%�j%b%%� j%�%�j%�j%�%%� %�j%�j%%j%�j%�%�%� j%�%�j%�j%�j%a%','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11334,'eg','number_of_sale','j%�%%�%� j%�%�j%�%�j%c%','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11335,'eg','number_of_stock','j%c%j%�j%� j%�%�j%�j%%%�%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11336,'eg','top_10_products','j%�%�j%b%%� 10 %�%�j%�j%�j%�j%�','2021-02-09 07:22:24','2021-09-20 07:29:41'),(11337,'eg','top_12_products','j%�%�j%b%%� 12 %�%�j%�j%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11338,'eg','admin_can_not_be_a_seller','%�j%� %�%�%�%� %�%�%�j%%j%�%�%� j%�%� %�%�%�%� j%�j%�j%�j%c%%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11339,'eg','filter_by_rating','j%�j%a%%�%�j%# j%�j%%j%� j%�%�j%�j%a%%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11340,'eg','published_reviews_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�j%�%j%�j%�j%c%j%�j%� j%�%�%�%�j%$%%�j%�%j%# j%�%�j%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11341,'eg','refund_sticker_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� %�%�j%a%%� j%�%j%� j%�%�j%�%�%�j%�%� j%�%�j%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11342,'eg','edit_product','j%�j%�j%�%%�j%�% j%�%�%�%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11343,'eg','meta_images','%�%�j%�j%� j%a%%�j%�%','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11344,'eg','update_product','j%�j%�j%�%�j%� j%�%�%�%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11345,'eg','product_has_been_deleted_successfully','j%�%� j%�j%�%%� j%�%�%�%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11346,'eg','your_profile_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� %�%�%�%� j%�%�j%$%j%�j%a%%� j%�%�j%�j%�j%�!','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11347,'eg','upload_limit_has_been_reached_please_upgrade_your_package','j%�%� j%�%�%�j%a%%�%� j%�%�%� j%�j%� j%�%�j%�j%�%�%�%�. j%�%�j%�%j%�j%�j%� j%�j%�%%�%�j%# j%�%�j%�j%�%%�j%# j%�%�j%�j%�j%a%j%# j%�%�.','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11348,'eg','add_your_product','j%�j%b%%� %�%�j%�j%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11349,'eg','select_a_category','j%�j%�j%�j%�% j%�j%a%%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11350,'eg','select_a_brand','j%�j%�j%�j%�% %�j%�j%�%%�j%#','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11351,'eg','product_unit','%�j%�j%�j%# j%�%�%�%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11352,'eg','minimum_qty','j%�%�j%�j%� j%�%�j%�j%�%�%� %�%� j%�%�%�%�%�j%#.','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11353,'eg','product_tag','j%c%%�j%�%�j%# j%�%�%�%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11354,'eg','type__hit_enter','j%�%�j%�j%� & j%�j%b%j%Q%j%V% j%�j%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11355,'eg','videos','j%�j%$%j%�%j%V%j%# %�%�j%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11356,'eg','video_from','%�%�j%�%�%� %�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11357,'eg','video_url','j%�%j%�j%�j%V% j%�%�%�%�j%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11358,'eg','customer_choice','j%�j%�j%�%�j%�j%�% j%�%�j%c%%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11359,'eg','pdf','j%�%� j%�%� j%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11360,'eg','choose_pdf','j%�j%�j%�j%�% PDF','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11361,'eg','select_category','j%�j%�j%�j%�% j%�%�%�j%�j%#','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11362,'eg','target_category','j%�%�%�j%�j%# j%�%�%�j%%j%�%�j%�%�j%#','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11363,'eg','subsubcategory','%�j%�j%# %�j%�%j%c%%�j%#','2021-02-09 07:22:25','2021-02-09 07:22:25'),(11364,'eg','search_category','%�j%�j%# j%�%�j%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11365,'eg','search_subcategory','j%�j%�j%� %�j%�%j%c%%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11366,'eg','search_subsubcategory','j%�j%�j%� SubSubCategory','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11367,'eg','update_your_product','%�%� j%�j%�j%�j%�%�j%� %�%�j%�j%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11368,'eg','product_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11369,'eg','add_your_digital_product','j%�j%b%%� %�%�j%�j%�%� j%�%�j%�%%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11370,'eg','active_ecommerce_cms_update_process','j%c%%�%�%�j%# j%�j%�j%�%�j%� CMS %�%�j%�j%�j%�j%�%j%# j%�%�j%�%�%�j%�j%�%%�%�%�j%# j%�%�%�j%$%j%V%j%#','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11371,'eg','codecanyon_purchase_code','%�%�j%� j%$%j%�%j%�j%� Codecanyon','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11372,'eg','database_name','j%�j%%%� %�j%�j%c%j%�j%# j%�%�j%�%�j%�%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11373,'eg','database_username','j%�j%%%� %�j%%j%�j%�j%�%� %�j%�j%c%j%�j%# j%�%�j%�%�j%�%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11374,'eg','database_password','%�%�%�j%# %�j%�%%�j%�% %�j%�j%c%j%�j%# j%�%�j%�%�j%�%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11375,'eg','database_hostname','j%�j%%%� %�j%b%%�%� %�j%�j%c%j%�j%# j%�%�j%�%�j%�%�j%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11376,'eg','update_now','j%�j%�j%�%�j%� j%�%�j%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11377,'eg','congratulations','j%�%�j%�%�%�%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11378,'eg','you_have_successfully_completed_the_updating_process_please_login_to_continue','%�%�j%� j%�%�%�%�j%� j%�%�j%�j%�j%� j%c%%�%�%�j%# j%�%�j%�j%�j%�%�j%�. j%�%�j%�%j%�j%�j%� j%�j%%j%�%�%� j%�%�j%�j%�%�%� %�%�%�j%�j%�j%�j%c%j%#','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11379,'eg','go_to_home','j%�j%�%%�j%� j%�%�%� j%�%�j%a%%�j%�j%# j%�%�j%�%j%�%�j%%%�j%#','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11380,'eg','login_to_admin_panel','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� %�%�j%�j%# j%�%�j%�j%�j%�j%�%j%#','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11381,'eg','s3_file_system_credentials','j%�%�j%�%�j%�j%� j%�j%c%j%�%�j%�j%� %�j%U%j%�%� %�%�%� S3','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11382,'eg','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11383,'eg','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11384,'eg','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11385,'eg','aws_bucket','AWS_BUCKET','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11386,'eg','aws_url','AWS_URL','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11387,'eg','s3_file_system_activation','j%�%�j%c%%�%� %�j%U%j%�%� %�%�%�j%�j%� S3','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11388,'eg','your_phone_number','j%�%%�%� j%�%�%�%�%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11389,'eg','zip_file','%�%�%� %�j%b%j%Q%%�j%V%','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11390,'eg','install','j%�j%�j%�%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11391,'eg','this_version_is_not_capable_of_installing_addons_please_update','%�j%�%j%� j%�%�j%�j%a%j%�j%�j%�% j%Q%%�j%�% %�j%�j%�j%�% j%c%%�%� j%�j%�j%�%�j%� j%�%�%�%�j%�%�j%�j%� j%� %�j%�%j%�%� j%�%�j%�j%�j%�%�j%�.','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11392,'eg','search_in_menu','j%�%�j%�j%�j%� %�%� j%�%�%�j%�j%�%�j%#','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11393,'eg','uploaded_files','j%�%�%�%�%�j%�j%� j%�%�j%�%� %�j%�%� j%�j%�%�%�%�%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11394,'eg','shipping_cities','%�j%�%� j%�%�j%$%j%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11395,'eg','system','j%�%�%�j%U%j%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11396,'eg','server_status','j%�j%�%�j%# j%�%�%�%�%�%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11397,'eg','nothing_found','%�j%� j%$%%�j%� %�%�j%�%�j%�','2021-02-09 07:22:25','2021-09-20 07:29:41'),(11398,'eg','parent_category','j%�%�%�j%%%� j%�%�j%�%j%�%�j%%%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11399,'eg','level','%�j%%j%�%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11400,'eg','category_information','%�j%c%%�%�%�j%�j%� j%�%�%�j%�j%#','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11401,'eg','translatable','%�j%�j%�%� %�%�j%�j%�%j%�%�j%#','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11402,'eg','no_parent','%�j%� %�%�j%�j%� j%�j%a%%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11403,'eg','physical','j%�j%%j%�%� - j%�j%�%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11404,'eg','digital','j%�%%�%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11405,'eg','200x200','200 %� 200','2021-02-09 07:22:26','2021-02-09 07:22:26'),(11406,'eg','32x32','32x32','2021-02-09 07:22:26','2021-02-09 07:22:26'),(11407,'eg','search_your_files','j%�j%�j%�j%� %�%� %�%�%�j%�j%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11408,'eg','category_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�j%�j%# j%�%�j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11409,'eg','all_uploaded_files','j%�%�%�j%c% j%�%�%�%�%�j%�j%� j%�%�%�j%�%%�%�j%c%j%#','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11410,'eg','upload_new_file','j%�j%�%�%�%� %�%�%� j%�j%�%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11411,'eg','all_files','%�%� j%�%�%�%�%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11412,'eg','search','j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11413,'eg','details_info','j%�%�j%�j%a%%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11414,'eg','copy_link','j%�%�j%%j%� j%�%�j%�%j%�j%�j%V%','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11415,'eg','are_you_sure_to_delete_this_file','%�%� j%�%�j%� %�j%�j%�%�j%� %�%� j%�j%�%%� %�j%�%j%� j%�%�%�%�%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11416,'eg','file_info','%�j%c%%�%�%�j%�j%� j%�%�%�%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11417,'eg','link_copied_to_clipboard','j%�%� %�j%%j%� j%�%�j%�%j%�j%�j%V% j%�%�%� j%�%�j%�j%�%�j%U%j%#','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11418,'eg','oops_unable_to_copy','j%c%%�%�%�j%� j%� j%Q%%�j%�% %�j%�j%�j%�% j%c%%�%� j%�%�%�j%%j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11419,'eg','file_deleted_successfully','j%�%� j%�j%�%%� j%�%�%�%�%� j%�%�j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11420,'eg','add_new_brand','j%�j%b%%� j%c%%�j%�%�j%# j%�j%�j%�j%�%%�j%# j%�j%�%�j%�j%#','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11421,'eg','120x80','120 %� 80','2021-02-09 07:22:26','2021-02-09 07:22:26'),(11422,'eg','brand_information','%�j%c%%�%�%�j%�j%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%#','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11423,'eg','brand_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# j%�%�j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11424,'eg','brand_has_been_deleted_successfully','j%�%� j%�j%�%%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# j%�%�j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11425,'eg','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','%�j%�%j%� %�j%%j%�j%�j%�%� %�%�j%�j%�j%�. j%�j%�j%�%� j%�%�%� j%�%�%�%�%�j%�j%� j%�%�j%�%� %�%�%�%� %�%� cutomer j%�%�j%c%j%�%�j%�% j%c%%�%� %�j%�%j%� j%�%�%�%�j%�j%� %�%� j%�%�j%�%�%�j%�.','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11426,'eg','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','%�j%�%%� j%�%�j%a%%�j%�% %�j%�%j%�%�j%# %�%� %�j%c%j%�%j%b% j%a%%�j%�j%# j%�%�j%�j%a%%�%� j%�%�%�%�j%�j%�. j%�j%%j%�j%�j%�%� j%a%%�j%�% j%�j%�j%�%� 600 %� 600.','2021-02-09 07:22:26','2021-09-20 07:29: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','%�j%�%%� j%�%�j%a%%�j%�%j%# %�j%�%j%�%�j%# %�%� %�%� j%c%%�j%�j%# j%�%�%�%�j%�j%�. j%�j%%j%�j%�j%�%� j%a%%�j%�%j%# j%�j%�j%�%� 300 %� 300. j%�j%�j%�%�j%U% j%�j%�j%c%j%b% j%�%�%�j%%j%�j%�j%# j%�%�%�j%�j%�%j%Q%j%# j%�%�%� j%�%�%�j%�j%�%� j%�%�j%�%j%�%�j%%%� %�j%a%%�j%�%j%�%� j%�%�j%� %�j%�%� j%c%%�%�%�j%� %�j%a% j%�j%c%j%b% j%�%�j%�%�j%�%� %�%� j%�j%�%�j%�%j%# %�j%�j%�%�%�j%# %�j%�j%c%%�%�j%� %�j%%j%�j%�%�j%�j%#.','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11428,'eg','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','j%�j%%j%�j%�j%�%� j%�%�j%�j%�%j%�j%�j%�j%V% j%�%�%�%�j%�j%%j%� j%�j%�%�%� %�j%c%%�%�j%# j%�j%b%j%�%�%�j%#. %�j%� j%�j%%j%�j%�j%�%� j%�%j%�j%�j%V% j%�%�%�j%$%j%�j%�%%�j%# j%�%�%�j%a%%�j%�% / %�%�j%� iframe j%�%�%�j%b%%�%�.','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11429,'eg','save_product','j%�%�j%U% j%�%�%�%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11430,'eg','product_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�%�%�j%�j%� j%�%�j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11431,'eg','something_went_wrong','%�%�j%�%� j%�j%V%j%� %�j%�!','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11432,'eg','sorry_for_the_inconvenience_but_were_working_on_it','j%�j%%%� j%c%%�%� j%�%�j%�j%�%j%c%j%�j%� j%� %�%�%�%�j%� %�j%c%%�%� j%c%%�%� j%�%%�%�.','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11433,'eg','error_code','j%�j%V%j%� j%�j%�%�%�%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11434,'eg','please_configure_smtp_setting_to_work_all_email_sending_functionality','%�j%�%j%�%� j%�%�%�%�%� j%�j%c%j%�j%�j%� SMTP %�%�j%c%%�%� j%c%%�%� j%�%�%�j%c% %�j%U%j%�j%�%� j%�j%�%j%%j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11435,'eg','order','j%V%%�j%�','2021-02-09 07:22:26','2021-09-20 07:29: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','%�j%�%�%�j%� j%�j%�%j%�%�j%�j%c% %�j%�j%�%�j%� %�%�j%�%�j%�j%# %�%�j%�%�j%�j%U% j%c%%�%� %�j%�j%�%�j%# j%�%�%�j%%j%�j%�j%�%�. %�j%�%� j%c%%�%�%�j%� j%�%�j%�%�j%�j%a%j%�j%a% %�%� %�%�j%� j%�%�j%�j%�%�j%�%�%� j%�%�j%�%�j%%j%�% %�j%�%�j%�%�%�%� %�%� j%c%j%�%j%b% j%�%�j%�j%�%�j%�%j%# j%�%�%�j%�j%�%�%�j%# %�j%�j%c%%�%�j%� %�j%%j%�j%�%�j%�j%#. %�j%�%� j%�j%a%%�%�%� %�j%�%�j%�j%# j%b%j%c% %�j%�%%� j%�%�%�%�j%�j%V% %�%� j%�%�j%�j%c%j%�j%�j%�j%�%.','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11437,'eg','home_banner_3_max_3','%�j%�%�j%�j%# j%�%�%�%�j%�%%� 3 (j%�%�j%�j%� j%�%�j%�%�j%a%%� 3)','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11438,'eg','add_new_seller','j%�j%b%j%�%�j%# j%�j%�j%�j%c% j%�j%�%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11439,'eg','filter_by_approval','j%�j%a%%�%�j%# j%�j%%j%� j%�%�%�%�j%�%�%�j%#','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11440,'eg','nonapproved','%�%�j%% %�j%a%j%�%� j%c%%�%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11441,'eg','type_name_or_email__enter','j%�%�j%�j%� j%�%�j%�j%%%� j%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� %�j%�j%�j%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11442,'eg','due_to_seller','%�j%%j%�j%�%� %�%�j%�j%�j%�j%c%','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11443,'eg','log_in_as_this_seller','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�j%�j%%%� %�j%�%j%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11444,'eg','go_to_payment','j%�%�j%�%�%� j%�%�%� j%�%�j%�%�j%c%','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11445,'eg','ban_this_seller','j%�j%U%j%�% %�j%�%j%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11446,'eg','do_you_really_want_to_ban_this_seller','%�%� j%�j%�%%�j%� j%�%�%�j%� j%�j%U%j%�% %�j%�%j%� j%�%�j%�j%�j%�j%c%j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11447,'eg','proceed','j%�%�j%�%�!','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11448,'eg','approved_sellers_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%�j%�j%c%%�%� j%�%�%�j%c%j%�%�j%�%�%� j%�%�j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11449,'eg','seller_has_been_deleted_successfully','j%�%� j%�j%�%%� j%�%�j%�j%�j%�j%c% j%�%�j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11450,'eg','seller_information','%�j%c%%�%�%�j%�j%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11451,'eg','seller_has_been_inserted_successfully','j%�%� j%�j%�j%�%j%�j%� j%�%�j%�j%�j%�j%c% j%�%�j%�j%�j%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11452,'eg','email_already_exists','j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� %�%�j%�%�j%� j%�j%�%�%�j%c%%�!','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11453,'eg','verify_your_email_address','j%�j%�%�%� %�%� j%c%%�%�j%�%� j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11454,'eg','before_proceeding_please_check_your_email_for_a_verification_link','%�j%�%� j%�%�%�j%�j%�j%�j%c%j%# j%� %�j%�%j%�%� j%�%�j%�j%�%�%� %�%� j%�j%�%%�j%�%� j%�%�j%�%�%�j%�j%�%%�%�%� %�%�j%�j%a%%�%� j%c%%�%� j%�%j%�j%�j%V% j%�%�j%�j%�%�%�.','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11455,'eg','if_you_did_not_receive_the_email','j%�j%�%j%� %�%� j%�j%%j%�%�%� j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�.','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11456,'eg','click_here_to_request_another','j%�%�%�j%�% %�%�j%� %�j%V%%�j%� j%�j%�j%�%','2021-02-09 07:22:26','2021-09-20 07:29:41'),(11457,'eg','email_verification','j%�j%�%�%�j%� j%�%�j%�j%%j%V%j%# j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11458,'eg','email_verification__','j%�j%�%�%�j%� j%�%�j%�j%%j%V%j%# j%�%�j%�j%�%%�j%� j%�%�j%�%�%�j%�j%�%%�%�%� -','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11459,'eg','https_activation','j%�%�j%c%%�%� HTTPS','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11460,'eg','maintenance_mode','%�%�j%V% j%�%�j%a%%�j%�%�j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11461,'eg','maintenance_mode_activation','j%�%�j%c%%�%� %�j%b%j%c% j%�%�j%a%%�j%�%�j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11462,'eg','classified_product_activate','j%�%�j%$%%�j%V% j%�%�%�%�j%�j%� j%�%�%�j%a%%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11463,'eg','classified_product','%�%�j%�j%� %�j%a%%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11464,'eg','business_related','j%�%�j%�j%c%%�j%�%� j%�%j%�j%� j%�%�j%a%%�j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11465,'eg','vendor_system_activation','j%�%�j%c%%�%� %�j%U%j%�%� j%�%�j%�j%�j%�j%c%','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11466,'eg','wallet_system_activation','j%�%�j%c%%�%� %�j%U%j%�%� j%�%�%�j%�%�j%U%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11467,'eg','coupon_system_activation','j%�%�j%c%%�%� %�j%U%j%�%� j%�%�%�j%%%�%�j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11468,'eg','pickup_point_activation','j%�%�j%c%%�%� %�%�j%V%j%# j%�%�j%�%�j%�%�j%�j%V%','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11469,'eg','conversation_activation','j%�%�j%c%%�%� j%�%�%�j%�j%�j%�j%�j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11470,'eg','guest_checkout_activation','j%�%�j%c%%�%� j%�j%%j%�%�%� j%�j%�%%�j%� j%�%�j%b%%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11471,'eg','categorybased_commission','j%c%%�%�%�j%# j%c%%�%� j%�j%%j%�j%% j%�%�%�j%�j%#','2021-02-09 07:22:27','2021-09-20 07:29: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','j%�j%c%j%� j%�%�j%c%%�%� %�j%�%j%� j%�%�j%�%�j%�j%�% j%� j%%%�j%�%� j%�j%c%j%V%%�%� j%c%%�%�%�j%# j%�%�j%�j%�j%�j%c% %�j%�j%�j%�j%�j%� j%�%�%� j%�j%c%%�%�%� j%�%�j%c%%�%�%�j%# j%c%%�%� %�%� %�j%�j%# %�j%�%�j%� %�%�%� %�j%�j%a%%� j%�%�%�j%%j%�%�%� j%c%%�%� j%�%� j%c%%�%�%�j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11473,'eg','set_commisssion_now','j%�j%c%%�%�%� %�%�%�%�j%%%�%�%� j%�%�j%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11474,'eg','payment_related','j%�%�j%�%�j%c% j%�%j%�j%� j%�%�j%a%%�j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11475,'eg','paypal_payment_activation','j%�%�j%c%%�%� j%�%�j%�%�j%c% j%�j%�%� j%�j%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11476,'eg','you_need_to_configure_paypal_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Paypal j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11477,'eg','stripe_payment_activation','j%�%�j%c%%�%� j%�%�j%�%�j%c% j%c%j%�j%�% j%�%�j%$%j%�%%�j%V%','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11478,'eg','sslcommerz_activation','j%�%�j%c%%�%� SSlCommerz','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11479,'eg','instamojo_payment_activation','j%�%�j%c%%�%� j%�%�j%�%�j%c% Instamojo','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11480,'eg','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Instamojo Payment j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11481,'eg','razor_pay_activation','j%�%�j%c%%�%� j%�%�j%c% j%�%�j%�%�j%�%�j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11482,'eg','you_need_to_configure_razor_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Razor j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11483,'eg','paystack_activation','j%�%�j%c%%�%� PayStack','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11484,'eg','you_need_to_configure_paystack_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� PayStack j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11485,'eg','voguepay_activation','j%�%�j%c%%�%� VoguePay','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11486,'eg','you_need_to_configure_voguepay_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� VoguePay j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11487,'eg','payhere_activation','j%�%�j%c%%�%� Payhere','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11488,'eg','ngenius_activation','j%�%�j%c%%�%� Ngenius','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11489,'eg','you_need_to_configure_ngenius_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Ngenius j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11490,'eg','iyzico_activation','j%�%�j%c%%�%� Iyzico','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11491,'eg','you_need_to_configure_iyzico_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� iyzico j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11492,'eg','bkash_activation','j%�%�j%c%%�%� j%�%�j%�j%$%','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11493,'eg','you_need_to_configure_bkash_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� bkash j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11494,'eg','nagad_activation','j%�%�j%c%%�%� %�j%�j%�j%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11495,'eg','you_need_to_configure_nagad_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� nagad j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11496,'eg','cash_payment_activation','j%�%�j%c%%�%� j%�%�j%�%�j%c% j%�%�%�%�j%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11497,'eg','social_media_login','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� %�j%%j%�j%�%� j%�%�j%�%�j%�j%a%%� j%�%�j%�j%�j%�%�j%�j%c%%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11498,'eg','facebook_login','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� j%�%�%�%�j%%j%�%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11499,'eg','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� Facebook Client j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11500,'eg','google_login','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� Google','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11501,'eg','you_need_to_configure_google_client_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� j%c%%�%�%� Google j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11502,'eg','twitter_login','j%�j%%j%�%�%� j%�%�j%�j%�%�%� j%�%�%� Twitter','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11503,'eg','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','j%�j%�j%�j%�j%� j%�%�%� j%�%�%�%�%� j%c%%�%�%� j%�%�%�j%�j%�% j%�j%$%%�%� j%a%j%�%�j%� %�j%�%�%�%�%� %�j%�%%� j%�%�%�%�j%�%j%#','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11504,'eg','shop_logo','%�j%�j%�j%�% j%�%�j%$%j%c%j%�j%�%','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11505,'eg','shop_address','j%c%%�%�j%�%� j%�%�%�j%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11506,'eg','banner_settings','j%�j%c%j%�j%�j%�j%�j%� j%�%�j%�j%�%�j%�%','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11507,'eg','banners','%�j%�%�j%�j%�j%�','2021-02-09 07:22:27','2021-09-20 07:29: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','%�j%�%� j%c%%�%�%�j%� j%�j%�j%�%�j%� j%�%�j%�j%�%j%�%�j%�j%c% %�%�j%�%�j%�j%U% j%c%%�%� j%�%�j%�j%�j%%j%�%�. %�%� j%�j%c%j%b% j%�%�j%�j%�%�j%�%j%# j%� %�j%� %�j%�%� j%�%�j%�j%a%j%�j%a% %�%�j%� j%�j%�%�j%�%� j%�%�j%$%j%c%j%�j%�% %�%�j%�j%� %�%� j%�%�j%�j%�%j%�%�j%�j%c%.','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11509,'eg','insert_link_with_https_','j%�j%�j%�%� j%�%�j%�j%�%j%�j%�j%�j%V% %�j%c% https','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11510,'eg','your_shop_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� %�j%�j%�j%�%%� j%�%�j%�j%�j%�!','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11511,'eg','search_result_for_','%�j%�%�j%�j%# j%�%�j%�j%�j%� j%c%%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11512,'eg','brand_has_been_inserted_successfully','j%�%� j%�j%�j%�%j%�j%� j%�%�j%c%%�j%�%�j%# j%�%�j%�j%�j%�j%�%%�j%# j%�%�j%�j%�j%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11513,'eg','about','j%�%�%�','2021-02-09 07:22:27','2021-09-20 07:29:41'),(11514,'eg','payout_info','%�j%c%%�%�%�j%�j%� j%�%�j%�%�j%c%','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11515,'eg','bank_acc_name','j%�j%%%� j%�j%%j%�j%� j%�%�j%�%�%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11516,'eg','bank_acc_number','j%�%%�%� j%�j%%j%�j%� j%�%�j%�%�%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11517,'eg','total_products','j%�j%�%�j%�%�%� j%�%�%�%�j%�j%�j%�j%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11518,'eg','total_sold_amount','j%�j%�%�j%�%�%� j%�%�%�j%�%�j%Q% j%�%�%�j%�j%�j%c%','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11519,'eg','wallet_balance','j%�%j%a%%�j%� j%�%�%�j%�%�j%U%j%#','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11520,'eg','cookies_agreement','j%�j%�%�j%�%�%�j%# %�%�%�j%�j%� j%�j%c%j%�%%�%� j%�%�j%�j%�%j%�j%�j%�j%V%','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11521,'eg','cookies_agreement_text','%�j%a% j%�j%�%�j%�%�%�j%# %�%�%�j%�j%� j%�j%c%j%�%%�%� j%�%�j%�j%�%j%�j%�j%�j%V%','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11522,'eg','show_cookies_agreement','j%�j%U%%�j%�j%�% j%�j%�%�j%�%�%�j%# %�%�%�j%�j%� j%�j%c%j%�%%�%� j%�%�j%�j%�%j%�j%�j%�j%V%j%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11523,'eg','custom_script','j%�j%�%%�j%�%�j%� %�j%a%%� %�j%�j%a%j%a%','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11524,'eg','header_custom_script__before_head','j%�%�j%�j%�%%�j%�%�j%� j%�%�%�j%a%%� j%�%�%�j%�j%a%j%a% %�%�j%�%j%�j%% - %�j%�%� </head>','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11525,'eg','write_script_with_script_tag','j%�%�j%�j%� j%�%�j%�j%�%%�j%�%�j%� j%�%�%�j%a%%� j%�j%c%%�j%�%�j%# <script>','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11526,'eg','footer_custom_script__before_body','j%�%�j%�j%�%%�j%�%�j%� j%�%�%�j%a%%� j%�%�%�j%�j%a%j%a% %�%�j%�j%�%%�%�%� - %�j%�%� </ body>','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11527,'eg','category_has_been_inserted_successfully','j%�%� j%�j%�j%�%j%�j%� j%�%�%�j%�j%# j%�%�j%�j%�j%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11528,'eg','all_flash_deals','j%�%�%�j%c% j%c%j%�%%�j%b% %�%�j%�j%$%','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11529,'eg','create_new_flash_deal','j%�%�j%$%j%�j%� j%a%%�%�j%# %�%�j%�j%$% j%�j%�%�j%�j%#','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11530,'eg','ffffff','#FFFFFF','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11531,'eg','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','j%�j%U%%�j%�% %�j%�%%� j%�%�j%a%%�j%�%j%# %�j%�j%�%�j%�% j%Q%%�j%�%� %�%� j%a%%�j%�j%# j%�%�j%�j%a%%�%� j%a%%�%�j%# %�%�j%�j%$%.','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11532,'eg','flash_deal_has_been_inserted_successfully','j%�%� j%�j%�j%�%j%�j%� j%c%j%�%j%b% j%�%�%�%�j%�j%$% j%�%�j%�j%�j%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11533,'eg','flash_deal_status_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�j%�%�j%# j%a%%�%�j%# j%�%�%�%�j%�j%$% j%�%�j%�j%�j%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11534,'eg','flash_deal_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%a%%�%�j%# j%�%�%�%�j%�j%$% j%�%�j%�j%�j%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11535,'eg','update_language_info','j%�j%�j%�%�j%� %�j%c%%�%�%�j%�j%� j%�%�%�j%Q%j%#','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11536,'eg','language_has_been_updated_successfully','j%�%� j%�j%�j%�%�j%� j%�%�%�j%Q%j%# j%�%�j%�j%�j%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11537,'eg','type_key__enter','j%�%�j%�j%� %�%�j%�j%�j%� %�j%�j%�j%�%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11538,'eg','translations_updated_for_','j%�%� j%�j%�j%�%�j%� j%�%�j%�j%�%j%�%�j%�j%� %�%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11539,'eg','language_has_been_inserted_successfully','j%�%� j%�j%�j%�j%�%� j%�%�%�j%Q%j%# j%�%�j%�j%�j%�','2021-02-09 07:22:28','2021-09-20 07:29:41'),(11540,'za','all_category','Dhammaan Qaybta','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11541,'za','all','Dhammaan','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11542,'za','flash_sale','Flash iibinta','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11543,'za','view_more','Fiiri inbadan','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11544,'za','add_to_wishlist','Ku dar liiska xulashooyinka','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11545,'za','add_to_compare','Kudar isbarbar dhig','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11546,'za','add_to_cart','Ku dar gaadhigii','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11547,'za','club_point','Barta Naadiga','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11548,'za','classified_ads','Xayeysiisyada Noocyada ah','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11549,'za','used','Loo adeegsaday','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11550,'za','top_10_categories','Top 10 Qaybaha','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11551,'za','view_all_categories','Eeg Dhammaan Qeybaha','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11552,'za','top_10_brands','10ka Nooc ee ugu sareeya','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11553,'za','view_all_brands','Eeg Dhammaan Noocyada','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11554,'za','terms__conditions','Shuruudaha & shuruudaha','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11555,'za','best_selling','Iibinta Ugu Fiican','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11556,'za','top_20','Sare 20','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11557,'za','featured_products','Alaabada Featured','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11558,'za','best_sellers','Iibiyeyaasha Ugu Fiican','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11559,'za','visit_store','Booqo Bakhaarka','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11560,'za','popular_suggestions','Talooyin Caan ah','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11561,'za','category_suggestions','Talooyinka Nooca','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11562,'za','automobile__motorcycle','Baabuur & Baaskiil','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11563,'za','price_range','Qiyaasta qiimaha','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11564,'za','filter_by_color','Sifee midab ahaan','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11565,'za','home','Guri','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11566,'za','newest','Ugu cusub','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11567,'za','oldest','Ugu da\'da weyn','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11568,'za','price_low_to_high','Qiimo hoose ilaa sare','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11569,'za','price_high_to_low','Qiimo sare ilaa hoose','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11570,'za','brands','Noocyo','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11571,'za','all_brands','Dhamaan Astaamaha','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11572,'za','all_sellers','Dhamaan Iibiyeyaasha','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11573,'za','inhouse_product','Wax soo saarka guryaha','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11574,'za','message_seller','Farriinta Iibiyaha','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11575,'za','price','Qiimo','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11576,'za','discount_price','Qiimaha dhimista','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11577,'za','color','Midab','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11578,'za','quantity','Tirada','2021-02-09 07:28:05','2021-09-20 07:29:41'),(11579,'za','available','la heli karo','2021-02-09 07:28:05','2021-02-09 07:28:05'),(11580,'za','total_price','Wadarta Qiimaha','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11581,'za','out_of_stock','Ka Haray','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11582,'za','refund','Soo celinta','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11583,'za','share','La wadaag','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11584,'za','sold_by','Iibiyay','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11585,'za','customer_reviews','dib u eegista macaamiisha','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11586,'za','top_selling_products','Alaabada Iibinta Sare','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11587,'za','description','Sharaxaad','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11588,'za','video','Video','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11589,'za','reviews','Faallooyinka','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11590,'za','download','Soo Degso','2021-02-09 07:28:05','2021-09-20 07:29: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 07:28:05','2021-09-20 07:29:42'),(11592,'za','related_products','Alaabooyinka la xiriira','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11593,'za','any_query_about_this_product','Su\'aal kasta oo ku saabsan badeecadan','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11594,'za','product_name','Magaca Badeecada','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11595,'za','your_question','Su\'aashaada','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11596,'za','send','Dir','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11597,'za','use_country_code_before_number','Adeegso lambarka waddanka lambarkiisa ka hor','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11598,'za','remember_me','Xusuusnow','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11599,'za','dont_have_an_account','Ma lihid xisaab?','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11600,'za','register_now','Isdiiwaangeli Hada','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11601,'za','or_login_with','Ama Soo Gal Iyadoo','2021-02-09 07:28:05','2021-09-20 07:29:42'),(11602,'za','oops','ooh ..','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11603,'za','this_item_is_out_of_stock','Shaygaani wuu dhammaaday','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11604,'za','back_to_shopping','Ku noqo dukaameysiga','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11605,'za','login_to_your_account','Soo gal koontadaada.','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11606,'za','purchase_history','Taariikhda Iibsiga','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11607,'za','new','Cusub','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11608,'za','downloads','Soo dejisan','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11609,'za','sent_refund_request','Codsi Soo Celin La Diray','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11610,'za','product_bulk_upload','Wax Soosaarka Jumlada','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11611,'za','orders','Amarada','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11612,'za','recieved_refund_request','Codsiga Lacag Celinta La Helay','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11613,'za','shop_setting','Goob Dukaan','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11614,'za','payment_history','Taariikhda Lacag Bixinta','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11615,'za','money_withdraw','Lacag Bixid','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11616,'za','conversations','Wadahadal','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11617,'za','my_wallet','Warqaddayda','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11618,'za','earning_points','Qodobbada Kasbashada','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11619,'za','support_ticket','Tigidhada Taageerada','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11620,'za','manage_profile','Maamul Macluumaadka','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11621,'za','sold_amount','Qaddarka La Iibiyay','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11622,'za','your_sold_amount_current_month','Lacagta aad iibisay (bisha hadda socota)','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11623,'za','total_sold','Wadarta La Iibiyay','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11624,'za','last_month_sold','Bishii Hore ee La Iibiyay','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11625,'za','total_sale','Wadarta iibka','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11626,'za','total_earnings','Wadarta dakhliga','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11627,'za','successful_orders','Amarada guuleysta','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11628,'za','total_orders','Wadarta amarrada','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11629,'za','pending_orders','Amarada sugaya','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11630,'za','cancelled_orders','Amarada la joojiyay','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11631,'za','product','Alaabta','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11632,'za','purchased_package','Xirmo la Iibsaday','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11633,'za','package_not_found','Xirmo lama helin','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11634,'za','upgrade_package','Xirmada Xidhmada','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11635,'za','shop','Dukaan','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11636,'za','manage__organize_your_shop','Maaree oo habee dukaankaaga','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11637,'za','go_to_setting','Tag dejinta','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11638,'za','payment','Lacag bixinta','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11639,'za','configure_your_payment_method','Isku habee habka lacag bixintaada','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11640,'za','my_panel','Gudigeyga','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11641,'za','item_has_been_added_to_wishlist','Shayga ayaa lagu daray liiska xulashooyinka','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11642,'za','my_points','Qodobadayda','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11643,'za','_points','Dhibco','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11644,'za','wallet_money','Lacagta Lacagta','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11645,'za','exchange_rate','Heerka Sarrifka','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11646,'za','point_earning_history','Taariikh dhibic kasbasho','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11647,'za','date','Taariikhda','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11648,'za','points','Dhibco','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11649,'za','converted','La beddelay','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11650,'za','action','Ficil','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11651,'za','no_history_found','Taariikh lama helin.','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11652,'za','convert_has_been_done_successfully_check_your_wallets','Beddelashada si guul leh ayaa loo qabtay Hubso boorsooyinkaaga','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11653,'za','something_went_wrong','Waxbaa qaldamay','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11654,'za','remaining_uploads','Reloads haray','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11655,'za','no_package_found','Xirmo lama helin','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11656,'za','search_product','Raadinta sheyga','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11657,'za','name','Magaca','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11658,'za','current_qty','Qty hadda','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11659,'za','base_price','Qiimaha Saldhigga','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11660,'za','published','La daabacay','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11661,'za','featured','Featured','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11662,'za','options','Fursadaha','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11663,'za','edit','Tafatir','2021-02-09 07:28:06','2021-09-20 07:29:42'),(11664,'za','duplicate','Nuqul','2021-02-09 07:28:06','2021-09-20 07:29: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 07:28:06','2021-09-20 07:29: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 07:28:07','2021-09-20 07:29: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 07:28:07','2021-09-20 07:29: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 07:28:07','2021-09-20 07:29:42'),(11669,'za','download_csv','Soo dejiso CSV','2021-02-09 07:28:07','2021-09-20 07:29: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 07:28:07','2021-09-20 07:29: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 07:28:07','2021-09-20 07:29:42'),(11672,'za','download_category','Degso Qeybta','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11673,'za','download_sub_category','Download Qeybta Sub','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11674,'za','download_sub_sub_category','Download Qeybta Sub Sub','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11675,'za','download_brand','Soodejiso Sumadda','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11676,'za','upload_csv_file','Geli Faylka CSV','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11677,'za','csv','CSV','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11678,'za','choose_csv_file','Xulo Faylka CSV','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11679,'za','upload','Geli','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11680,'za','add_new_digital_product','Kudar Waxsoosaar Cusub oo Dijital ah','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11681,'za','available_status','Xaaladda La Heli Karo','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11682,'za','admin_status','Xaaladda Maamulka','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11683,'za','pending_balance','Isu-dheellitirka sugaya','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11684,'za','send_withdraw_request','U dir Codsiga Ka-noqoshada','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11685,'za','withdraw_request_history','Ka noqo taariikhda Codsiga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11686,'za','amount','Qaddarka','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11687,'za','status','Xaaladda','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11688,'za','message','Fariin','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11689,'za','send_a_withdraw_request','U dir Codsi Soo Jiidasho','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11690,'za','basic_info','Macluumaadka aasaasiga ah','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11691,'za','your_phone','Telefoonkaaga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11692,'za','photo','Sawir','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11693,'za','browse','Baadh','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11694,'za','your_password','Furahaaga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11695,'za','new_password','Password Cusub','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11696,'za','confirm_password','Xaqiiji Furaha','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11697,'za','add_new_address','Kudar Cinwaan Cusub','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11698,'za','payment_setting','Dejinta Bixinta','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11699,'za','cash_payment','Lacag bixinta','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11700,'za','bank_payment','Bixinta Bangiga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11701,'za','bank_name','Magaca Bangiga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11702,'za','bank_account_name','Magaca Koontada Bangiga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11703,'za','bank_account_number','Lambarka Xisaabta Bangiga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11704,'za','bank_routing_number','Lambarka Wadada Bangiga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11705,'za','update_profile','Cusbooneysii Profile','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11706,'za','change_your_email','Beddel emaylkaaga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11707,'za','your_email','Emailkaaga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11708,'za','sending_email','Diraya Email ...','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11709,'za','verify','Xaqiiji','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11710,'za','update_email','Cusboonaysii Email','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11711,'za','new_address','Cinwaan Cusub','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11712,'za','your_address','Ciwaan kaaga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11713,'za','country','Dalka','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11714,'za','select_your_country','Xulo dalkaaga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11715,'za','city','Magaalada','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11716,'za','your_city','Magaaladaada','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11717,'za','your_postal_code','Lambarkaaga Boosta','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11718,'za','880','+880','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11719,'za','save','Keydso','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11720,'za','received_refund_request','La Helay Codsi Soo Celin','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11721,'za','delete_confirmation','Tirtir Xaqiijinta','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11722,'za','are_you_sure_to_delete_this','Ma hubtaa inaad tan tirtirto?','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11723,'za','premium_packages_for_sellers','Xirmooyinka Premium ee Iibiyeyaasha','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11724,'za','product_upload','Soo dejinta alaabta','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11725,'za','digital_product_upload','Soosaarida Waxyaabaha Dijital ah','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11726,'za','purchase_package','Xirmada Iibsiga','2021-02-09 07:28:07','2021-09-20 07:29:42'),(11727,'za','select_payment_type','Xulo Nooca Bixinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11728,'za','payment_type','Nooca Bixinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11729,'za','select_one','Dooro mid','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11730,'za','online_payment','Lacag bixinta khadka tooska ah','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11731,'za','offline_payment','Lacag-bixin la\'aanta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11732,'za','purchase_your_package','Iibso Xirmadaada','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11733,'za','paypal','Paypal','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11734,'za','stripe','Karbaash','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11735,'za','sslcommerz','sslcommerz','2021-02-09 07:28:08','2021-02-09 07:28:08'),(11736,'za','confirm','Xaqiiji','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11737,'za','offline_package_payment','Bixinta Xirmooyinka Khadka Tooska ah','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11738,'za','transaction_id','Aqoonsiga Macaamil ganacsi','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11739,'za','choose_image','Xulo sawirka','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11740,'za','code','Xeer','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11741,'za','delivery_status','Xaaladda Gaarsiinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11742,'za','payment_status','Xaaladda Bixinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11743,'za','paid','Bixiyay','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11744,'za','order_details','Faahfaahin Dalbo','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11745,'za','download_invoice','Download Qaansheeg','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11746,'za','unpaid','Mushahar la\'aan','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11747,'za','order_placed','Dalbasho ayaa la dhigay','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11748,'za','confirmed','La xaqiijiyay','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11749,'za','on_delivery','Gaarsiinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11750,'za','delivered','Gaarsiiyay','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11751,'za','order_summary','Soo Koobid Dalab','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11752,'za','order_code','Nidaamka Nidaamka','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11753,'za','customer','Macaamiil','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11754,'za','total_order_amount','Wadarta qadarka dalabka','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11755,'za','shipping_metdod','Metdod rarka','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11756,'za','flat_shipping_rate','Heerka maraakiibta oo fidsan','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11757,'za','payment_metdod','Nidaamka lacag bixinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11758,'za','variation','Kala duwanaansho','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11759,'za','delivery_type','Nooca Gaarsiinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11760,'za','home_delivery','Gaarsiinta Guriga','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11761,'za','order_ammount','Dalbo Ammount','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11762,'za','subtotal','Subtotal','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11763,'za','shipping','Maraakiibta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11764,'za','coupon_discount','Qiimo dhimis','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11765,'za','na','N / A','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11766,'za','in_stock','Kujira','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11767,'za','buy_now','Iibso Hada','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11768,'za','item_added_to_your_cart','Shayga ayaa lagu daray gaadhigiiaga!','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11769,'za','proceed_to_checkout','U gudub Iibsiga','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11770,'za','cart_items','Waxyaabaha Gaariga','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11771,'za','1_my_cart','1. Gaadhigayga','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11772,'za','view_cart','Gaadhi eeg','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11773,'za','2_shipping_info','2. Faahfaahinta rarka','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11774,'za','checkout','Baadhid','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11775,'za','3_delivery_info','3. Macluumaadka gaarsiinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11776,'za','4_payment','4. Bixinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11777,'za','5_confirmation','5. Xaqiijin','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11778,'za','remove','Ka saar','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11779,'za','return_to_shop','Ku noqo dukaankii','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11780,'za','continue_to_shipping','Sii wad Diritaanka','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11781,'za','or','Ama','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11782,'za','guest_checkout','Martida Iibinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11783,'za','continue_to_delivery_info','Ku Sii wad Macluumaadka Gaarsiinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11784,'za','postal_code','Koodhka boostada','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11785,'za','choose_delivery_type','Xulo Nooca Gaarsiinta','2021-02-09 07:28:08','2021-09-20 07:29:42'),(11786,'za','local_pickup','Qaadista Deegaanka','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11787,'za','select_your_nearest_pickup_point','Xulo meesha ugu wanaagsan ee laga soo qaado','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11788,'za','continue_to_payment','Sii wad Bixinta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11789,'za','select_a_payment_option','Xullo ikhtiyaar lacag bixin ah','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11790,'za','razorpay','Razorpay','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11791,'za','paystack','Boostada','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11792,'za','voguepay','VoguePay','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11793,'za','payhere','meel lacag ah','2021-02-09 07:28:09','2021-02-09 07:28:09'),(11794,'za','ngenius','ngenius','2021-02-09 07:28:09','2021-02-09 07:28:09'),(11795,'za','paytm','Paytm','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11796,'za','cash_on_delivery','Lacag gaarsiinta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11797,'za','your_wallet_balance_','Hadhaaga jeebkaaga:','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11798,'za','insufficient_balance','Isku dheelitir la���aan','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11799,'za','i_agree_to_the','Waan ku raacsanahay','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11800,'za','complete_order','Amarka Dhameystiran','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11801,'za','summary','Soo Koobid','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11802,'za','items','Waxyaabaha','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11803,'za','total_club_point','Wadarta naadiga','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11804,'za','total_shipping','Wadarta Maraakiibta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11805,'za','have_coupon_code_enter_here','Hayso lambar kuuboon ah? Halkan gal','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11806,'za','apply','Codso','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11807,'za','you_need_to_agree_with_our_policies','Waxaad u baahan tahay inaad raacdo siyaasadahayaga','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11808,'za','forgot_password','Ilowday lambarka sirta ah','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11809,'za','seo_setting','Dejinta SEO','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11810,'za','system_update','Cusboonaysiinta Nidaamka','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11811,'za','add_new_payment_method','Kudar Habka Lacag Bixinta Cusub','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11812,'za','manual_payment_method','Habka Bixinta Buugga','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11813,'za','heading','Madaxa','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11814,'za','logo','Astaanta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11815,'za','manual_payment_information','Macluumaadka Bixinta Buugga','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11816,'za','type','Nooca','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11817,'za','custom_payment','Bixinta Lacagta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11818,'za','check_payment','Hubi Bixinta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11819,'za','checkout_thumbnail','Thumbnail Iibinta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11820,'za','payment_instruction','Tilmaamaha Bixinta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11821,'za','bank_information','Macluumaadka Bangiga','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11822,'za','select_file','Xulo Faylka','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11823,'za','upload_new','Cusub Soo Geli','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11824,'za','sort_by_newest','Kala sooc mid cusub','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11825,'za','sort_by_oldest','Lagu kala soocay kan ugu da\'da weyn','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11826,'za','sort_by_smallest','Ku kala sooc ugu yar','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11827,'za','sort_by_largest','Ku kala sooc ugu weyn','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11828,'za','selected_only','Xullay Kaliya','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11829,'za','no_files_found','Wax faylal ah lama helin','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11830,'za','0_file_selected','0 Faylka waa la xushay','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11831,'za','clear','Cad','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11832,'za','prev','Hore','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11833,'za','next','Xiga','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11834,'za','add_files','Kudar Faylal','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11835,'za','method_has_been_inserted_successfully','Habka si guul leh ayaa loo geliyay','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11836,'za','order_date','Taariikhda Dalbashada','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11837,'za','bill_to','Biilka ilaa','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11838,'za','sub_total','Sub Total','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11839,'za','total_tax','Wadarta Canshuurta','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11840,'za','grand_total','Wadarta Guud','2021-02-09 07:28:09','2021-09-20 07:29: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 07:28:09','2021-09-20 07:29:42'),(11842,'za','thank_you_for_your_order','Waad ku mahadsan tahay Amarkaaga!','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11843,'za','order_code','Nidaamka Dalbashada:','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11844,'za','a_copy_or_your_order_summary_has_been_sent_to','Nuqul ama amarkaaga oo kooban ayaa loo diray','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11845,'za','make_payment','Bixi Lacag','2021-02-09 07:28:09','2021-09-20 07:29:42'),(11846,'za','payment_screenshot','Shaashadda lacag bixinta','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11847,'za','paypal_credential','Aqoonsiga Paypal','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11848,'za','paypal_client_id','Aqoonsiga Macaamiisha Paypal','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11849,'za','paypal_client_secret','Sirta Macaamiisha Paypal','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11850,'za','paypal_sandbox_mode','Qaabka Paypal Sandbox','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11851,'za','sslcommerz_credential','Aqoonsiga Sslcommerz','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11852,'za','sslcz_store_id','Sslcz Store Id','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11853,'za','sslcz_store_password','Sslcz lambarka sirta ah','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11854,'za','sslcommerz_sandbox_mode','Xaaladda Sslcommerz Sandbox','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11855,'za','stripe_credential','Aqoonsiga Karbaashka','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11856,'za','stripe_key','FURAHA FURAHA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11857,'za','stripe_secret','SIRTA SARIIR','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11858,'za','razorpay_credential','Aqoonsiga RazorPay','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11859,'za','razor_key','FURAHA KHATAR','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11860,'za','razor_secret','SIR SIXIR LEH','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11861,'za','instamojo_credential','Aqoonsiga Instamojo','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11862,'za','api_key','Furaha API','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11863,'za','im_api_key','IM API FURAHA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11864,'za','auth_token','AWOODA AQOONSIGA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11865,'za','im_auth_token','IM AUTH TOKEN','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11866,'za','instamojo_sandbox_mode','Xaaladda Sanduuqa Sanduuqa','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11867,'za','paystack_credential','Aqoonsiga PayStack','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11868,'za','public_key','FURAHA GUUD','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11869,'za','secret_key','FURAHA SIRTA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11870,'za','merchant_email','EMAIL GANACSADE','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11871,'za','voguepay_credential','Aqoonsiga VoguePay','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11872,'za','merchant_id','Aqoonsi Ganacsi','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11873,'za','sandbox_mode','Habka Sandbox','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11874,'za','payhere_credential','Aqoonsiga Bixinta','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11875,'za','payhere_merchant_id','PAYHERE ID AQOONSIGA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11876,'za','payhere_secret','SIRTA SOO SAAR','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11877,'za','payhere_currency','LACAG-BIXINTA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11878,'za','payhere_sandbox_mode','Habka Sanduuqa Sanduuqa','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11879,'za','ngenius_credential','Aqoonsiga Ngenius','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11880,'za','ngenius_outlet_id','NGENIUS OutTET ID','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11881,'za','ngenius_api_key','NGENIUS API FURAHA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11882,'za','ngenius_currency','NUQULKA NGENIUS','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11883,'za','mpesa_credential','Aqoonsiga Mpesa','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11884,'za','mpesa_consumer_key','Furaha Macaamiisha MPESA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11885,'za','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11886,'za','mpesa_consumer_secret','SIRTA QAADASHADA MPESA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11887,'za','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11888,'za','mpesa_short_code','XEERKA GAABAN EE MPESA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11889,'za','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11890,'za','mpesa_sandbox_activation','WAXQABADKA SANDBOX ee MPESA','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11891,'za','flutterwave_credential','Aqoonsiga Flutterwave','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11892,'za','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11893,'za','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11894,'za','rave_title','RAVE_TITLE','2021-02-09 07:28:10','2021-09-20 07:29:42'),(11895,'za','stagin_activation','WAXQABADKA JOOJINTA','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11896,'za','all_product','Dhammaan alaabta','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11897,'za','sort_by','Kala saar','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11898,'za','rating_high__low','Qiimeynta (Sare> Hoose)','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11899,'za','rating_low__high','Qiimeynta (Hoose> Sare)','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11900,'za','num_of_sale_high__low','Tirada iibka (Sare> Hoose)','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11901,'za','num_of_sale_low__high','Tirada iibka (Hoose> Sare)','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11902,'za','base_price_high__low','Qiimaha Saldhiga (Sare> Hoose)','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11903,'za','base_price_low__high','Qiimaha Saldhiga (Hoose> Sare)','2021-02-09 07:28:10','2021-09-20 07:29:43'),(11904,'za','type__enter','Nooca & Gali','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11905,'za','added_by','Added By','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11906,'za','num_of_sale','Tirada iibka','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11907,'za','total_stock','Wadarta Kaydka','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11908,'za','todays_deal','Heshiiska Maanta','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11909,'za','rating','Qiimeynta','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11910,'za','times','jeer','2021-02-09 07:28:11','2021-02-09 07:28:11'),(11911,'za','add_nerw_product','Ku dar Nerw Product','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11912,'za','product_information','Macluumaadka Badeecada','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11913,'za','unit','Cutub','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11914,'za','unit_eg_kg_pc_etc','Cutub (tusaale, KG, Pc iwm)','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11915,'za','minimum_qty','Ugu Yar Qty','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11916,'za','tags','Calaamadaha','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11917,'za','type_and_hit_enter_to_add_a_tag','Qor oo garaac gala si aad ugu darto sumad','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11918,'za','barcode','Barcode','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11919,'za','refundable','La celin karo','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11920,'za','product_images','Sawirada Sawirka','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11921,'za','gallery_images','Sawirada Gallery','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11922,'za','todays_deal_updated_successfully','Todays Deal ayaa si guul leh loo cusbooneysiiyay','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11923,'za','published_products_updated_successfully','Alaabada la daabacay si guul leh ayaa loo cusbooneysiiyay','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11924,'za','thumbnail_image','Sawir Sawir ah','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11925,'za','featured_products_updated_successfully','Waxyaabaha muuqaalka leh si guul leh ayaa loo casriyeeyay','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11926,'za','product_videos','Fiidiyowyada Alaabada','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11927,'za','video_provider','Bixiyaha Fiidiyowga','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11928,'za','youtube','Youtube','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11929,'za','dailymotion','Dailymotion','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11930,'za','vimeo','Vimeo','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11931,'za','video_link','Xiriiriyaha Fiidiyowga','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11932,'za','product_variation','Kala duwanaanta alaabta','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11933,'za','colors','Midabada','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11934,'za','attributes','Sifooyinka','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11935,'za','choose_attributes','Xulo Sifooyinka','2021-02-09 07:28:11','2021-09-20 07:29: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 07:28:11','2021-09-20 07:29:43'),(11937,'za','product_price__stock','Qiimaha badeecada + keydka','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11938,'za','unit_price','Qiimaha cutubka','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11939,'za','purchase_price','Qiimaha wax iibsiga','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11940,'za','flat','Fidsan','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11941,'za','percent','Boqolkiiba','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11942,'za','discount','Qiimo-dhimis','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11943,'za','product_description','Sharaxaadda alaabta','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11944,'za','product_shipping_cost','Qiimaha Dhoofinta Alaabada','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11945,'za','free_shipping','Maraakiibta free','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11946,'za','flat_rate','Heerka Flat','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11947,'za','shipping_cost','Qiimaha rarka','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11948,'za','pdf_specification','Qeexitaanka PDF','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11949,'za','seo_meta_tags','Tags SEO Meta','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11950,'za','meta_title','Cinwaanka Meta','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11951,'za','meta_image','Sawirka Meta','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11952,'za','choice_title','Cinwaanka Xulashada','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11953,'za','enter_choice_values','Gali qiimaha doorashada','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11954,'za','all_categories','Dhammaan qaybaha','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11955,'za','add_new_category','Ku dar qayb cusub','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11956,'za','type_name__enter','Nooca magaca & Gali','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11957,'za','banner','Banner','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11958,'za','commission','Komishanka','2021-02-09 07:28:11','2021-09-20 07:29:43'),(11959,'za','icon','astaan','2021-02-09 07:28:12','2021-02-09 07:28:12'),(11960,'za','featured_categories_updated_successfully','Qeybaha muuqaalka leh si guul leh ayaa loo casriyeeyay','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11961,'za','hot','Kulul','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11962,'za','filter_by_payment_status','Sifee Xaaladda Bixinta','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11963,'za','unpaid','Aan Bixin','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11964,'za','filter_by_deliver_status','Sifee Xaaladda Bixi','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11965,'za','pending','Sugaya','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11966,'za','type_order_code__hit_enter','Ku qor nambarka dalabka & garaac Gali','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11967,'za','num_of_products','Tirintii ee alaabta','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11968,'za','walk_in_customer','Ku Soco Macaamiil','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11969,'za','qty','QTY','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11970,'za','without_shipping_charge','Adigoon Lacag Gelin','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11971,'za','with_shipping_charge','Iyadoo Lacagta Shixnad','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11972,'za','pay_with_cash','Ku Bixi Lacag Cadaan ah','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11973,'za','shipping_address','Cinwaanka Diritaanka','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11974,'za','close','Xidh','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11975,'za','select_country','Xullo waddan','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11976,'za','order_confirmation','Amarka Xaqiijinta','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11977,'za','are_you_sure_to_confirm_this_order','Ma hubtaa inaad xaqiijineyso amarkan?','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11978,'za','comfirm_order','Amarka Xaqiijinta','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11979,'za','personal_info','Macluumaadka Shakhsiyeed','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11980,'za','repeat_password','Ku celi ereyga sirta ah','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11981,'za','shop_name','Magaca Dukaanka','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11982,'za','register_your_shop','Diiwaangeli Dukaankaaga','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11983,'za','affiliate_informations','Xog-is-dhaafsi','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11984,'za','affiliate','Gacansaar','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11985,'za','user_info','Macluumaadka Isticmaalaha','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11986,'za','installed_addon','Rakibay Addon','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11987,'za','available_addon','Addon la heli karo','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11988,'za','install_new_addon','Ku rakib Addon Cusub','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11989,'za','version','Nooc','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11990,'za','activated','Daaran','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11991,'za','deactivated','Waa ladilay','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11992,'za','activate_otp','Dhaqaaq OTP','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11993,'za','otp_will_be_used_for','OTP waa loo isticmaali doonaa','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11994,'za','settings_updated_successfully','Dejinta si guul leh ayaa loo cusboonaysiiyay','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11995,'za','product_owner','Mulkiilaha Alaabta','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11996,'za','point','Bar','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11997,'za','set_point_for_product_within_a_range','Calan u dhig sheyga inta u dhexeysa','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11998,'za','set_point_for_multiple_products','Calaamadee barta alaabooyin badan','2021-02-09 07:28:12','2021-09-20 07:29:43'),(11999,'za','min_price','Min Qiimaha','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12000,'za','max_price','Max Qiimaha','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12001,'za','set_point_for_all_products','Calaamadee Badeecadaha oo dhan','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12002,'za','set_point_for_','Meel Dhig','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12003,'za','convert_status','Beddel Xaaladda','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12004,'za','earned_at','Kasbaday At','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12005,'za','seller_based_selling_report','Warbixinta Iibinta Ku Salaysan Iibiyaha','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12006,'za','sort_by_verificarion_status','Ku kala sooc xaalada xaqiijinta','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12007,'za','approved','La ogolaaday','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12008,'za','non_approved','Aan La Ansixin','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12009,'za','filter','Sifee','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12010,'za','seller_name','Magaca Iibiyaha','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12011,'za','number_of_product_sale','Tirada iibka alaabta','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12012,'za','order_amount','Amarka Lacagta','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12013,'za','facebook_chat_setting','Dejinta Wadahadalka Facebook','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12014,'za','facebook_page_id','Aqoonsiga Bogga Facebook','2021-02-09 07:28:12','2021-09-20 07:29: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 07:28:12','2021-09-20 07:29:43'),(12016,'za','login_into_your_facebook_page','Soo gal boggaaga facebook','2021-02-09 07:28:12','2021-09-20 07:29:43'),(12017,'za','find_the_about_option_of_your_facebook_page','Raadi xulashada ku saabsan boggaaga facebook','2021-02-09 07:28:12','2021-09-20 07:29: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 07:28:13','2021-09-20 07:29: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 07:28:13','2021-09-20 07:29: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 07:28:13','2021-09-20 07:29:43'),(12021,'za','set_your_website_domain_name','Deji magacaaga boggaaga','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12022,'za','google_recaptcha_setting','Dejinta Google reCAPTCHA','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12023,'za','site_key','Site Fure','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12024,'za','select_shipping_method','Xullo Habka Dhoofinta','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12025,'za','product_wise_shipping_cost','Qiimaha Dhoofinta Xikmada Badeecada','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12026,'za','flat_rate_shipping_cost','Qiimaha Dulsaarka Rate Flat','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12027,'za','seller_wise_flat_shipping_cost','Qiimaha Dhoofinta Faa\'iidada ah ee Iibiyaha','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12028,'za','note','Fiiro gaar ah','2021-02-09 07:28:13','2021-09-20 07:29: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 07:28:13','2021-09-20 07:29: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 07:28:13','2021-09-20 07:29: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 07:28:13','2021-09-20 07:29:43'),(12032,'za','flat_rate_cost','Qiimaha Sicirka Flat','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12033,'za','shipping_cost_for_admin_products','Qiimaha rarka ee alaabada maamulka','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12034,'za','countries','Wadamada','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12035,'za','showhide','Muuji / Qari','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12036,'za','country_status_updated_successfully','Xaaladda waddanka si guul leh ayaa loo cusbooneysiiyey','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12037,'za','all_subcategories','Dhammaan qaybaha hoose','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12038,'za','add_new_subcategory','Kudar Qeyb Cusub','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12039,'za','subcategories','Qeybo-hoosaadyo','2021-02-09 07:28:13','2021-09-20 07:29:43'),(12040,'za','sub_category_information','Macluumaadka Qeybta','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12041,'za','slug','Tuuji','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12042,'za','all_sub_subcategories','Dhammaan qaybaha hoose','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12043,'za','add_new_sub_subcategory','Kudar Subcategory Sub Cusub','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12044,'za','subsubcategories','Qeybaha-Hoosaadyada','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12045,'za','make_this_default','Samee Tan Default','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12046,'za','shops','Dukaamada','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12047,'za','women_clothing__fashion','Dharka Haweenka & Dharka','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12048,'za','cellphones__tabs','Taleefoonnada gacanta & Taabaha','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12049,'za','welcome_to','Ku soo DHAWOOW','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12050,'za','create_a_new_account','Abuur Akoon Cusub','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12051,'za','full_name','Magaca oo buuxa','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12052,'za','password','lambarka sirta ah','2021-02-09 07:28:51','2021-02-09 07:28:51'),(12053,'za','confrim_password','Isku qas sirta','2021-02-09 07:28:51','2021-09-20 07:29:43'),(12054,'za','i_agree_with_the','Waan ku raacsanahay','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12055,'za','terms_and_conditions','Shuruudaha iyo Shuruudaha','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12056,'za','register','Diiwaangeli','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12057,'za','already_have_an_account','Horey u leedahay koonto','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12058,'za','sign_up_with','Saxiix la soco','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12059,'za','i_agree_with_the_terms_and_conditions','Waan ku raacsanahay Shuruudaha iyo Shuruudaha','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12060,'za','all_role','Dhamaan Doorka','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12061,'za','add_new_role','Kudar Door Cusub','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12062,'za','roles','Doorarka','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12063,'za','add_new_staffs','Kudar Shaqaale Cusub','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12064,'za','role','Doorka','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12065,'za','frontend_website_name','Magaca Websaydhka Frontend','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12066,'za','website_name','Magaca Website','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12067,'za','site_motto','Hal ku dhigga Goobta','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12068,'za','best_ecommerce_website','Websaydhka ugu fiican eCommerce','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12069,'za','site_icon','Goobta Icon','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12070,'za','website_favicon_32x32_png','Websayt favicon. 32x32 .png','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12071,'za','website_base_color','Midabka Base Website','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12072,'za','hex_color_code','Hex Color Code','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12073,'za','website_base_hover_color','Midabka Saldhig Websaydh','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12074,'za','update','Cusboonaysiinta','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12075,'za','global_seo','Global Seo','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12076,'za','meta_description','Sifeynta Meta','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12077,'za','keywords','Erayo fure ah','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12078,'za','separate_with_coma','Kala saar kooma','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12079,'za','website_pages','Bogagga Bogagga','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12080,'za','all_pages','Dhamaan Bogagga','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12081,'za','add_new_page','Kudar Bog Cusub','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12082,'za','url','URL','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12083,'za','actions','Waxqabadyada','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12084,'za','edit_page_information','Tafatir Macluumaadka Bogga','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12085,'za','page_content','Mawduuca Bogga','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12086,'za','title','Cinwaanka','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12087,'za','link','Xiriir','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12088,'za','use_character_number_hypen_only','Adeegso xarfaan, nambarka, iskudhufnaan kaliya','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12089,'za','add_content','Kudar Mawduuc','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12090,'za','seo_fields','Goobaha Seo','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12091,'za','update_page','Cusboonaysii Bogga','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12092,'za','default_language','Luqad Asal ah','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12093,'za','add_new_language','Kudar Luqad Cusub','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12094,'za','rtl','RTL','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12095,'za','translation','Tarjumaad','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12096,'za','language_information','Macluumaadka Luqadda','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12097,'za','save_page','Keydso Bogga','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12098,'za','home_page_settings','Dejinta Bogga Hoyga','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12099,'za','home_slider','Home slider','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12100,'za','photos__links','Sawirro & Xiriiro','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12101,'za','add_new','Ku dar Cusub','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12102,'za','home_categories','Qeybaha Guryaha','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12103,'za','home_banner_1_max_3','Banner Home 1 (Max 3)','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12104,'za','banner__links','Banner & Links','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12105,'za','home_banner_2_max_3','Banner Home 2 (Max 3)','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12106,'za','top_10','10-ka sare','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12107,'za','top_categories_max_10','Qaybaha ugu sareeya (Max 10)','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12108,'za','top_brands_max_10','Noocyada Sare (Max 10)','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12109,'za','system_name','Magaca Nidaamka','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12110,'za','system_logo__white','Astaanta Nidaamka - Caddaan','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12111,'za','choose_files','Xulo Faylasha','2021-02-09 07:28:52','2021-09-20 07:29:43'),(12112,'za','will_be_used_in_admin_panel_side_menu','Waxaa loo isticmaali doonaa qeybta gudiga maamulka','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12113,'za','system_logo__black','Astaanta Nidaamka - Madoow','2021-02-09 07:28:53','2021-09-20 07:29: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 07:28:53','2021-09-20 07:29:43'),(12115,'za','system_timezone','Nidaamka Waqtiga','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12116,'za','admin_login_page_background','Maamulka soo gal bogga asalka','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12117,'za','website_header','Madaxa bogga','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12118,'za','header_setting','Dejinta Madaxa','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12119,'za','header_logo','Summada cinwaanka','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12120,'za','show_language_switcher','Muuji Beddelaha Luqadda?','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12121,'za','show_currency_switcher','Muuji Beddelaha Lacagta?','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12122,'za','enable_stikcy_header','Daarma cinwaanka madax adayg?','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12123,'za','website_footer','Bogga Website','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12124,'za','footer_widget','Widget Footer','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12125,'za','about_widget','Ku saabsan Widget','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12126,'za','footer_logo','Astaanta Lugta','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12127,'za','about_description','Ku saabsan sharaxaadda','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12128,'za','contact_info_widget','La xiriir Widget Information','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12129,'za','footer_contact_address','Cinwaanka xiriirka cagaha','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12130,'za','footer_contact_phone','Telefoonka xiriiriyaha hoose','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12131,'za','footer_contact_email','E-maylka xiriiriyaha hoose','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12132,'za','link_widget_one','Link Widget One','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12133,'za','links','Iskuxirayaasha','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12134,'za','footer_bottom','Lugta Hoose','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12135,'za','copyright_widget_','Xuquuqda daabacaadda','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12136,'za','copyright_text','Qoraalka Xuquuqda Qoraalka','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12137,'za','social_link_widget_','Fariinta Xiriirka Bulshada','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12138,'za','show_social_links','Tus Xiriirrada Bulshada?','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12139,'za','social_links','Xiriirinta Bulshada','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12140,'za','payment_methods_widget_','Hababka Bixinta Qalabka','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12141,'za','rtl_status_updated_successfully','Xaaladda RTL si guul leh ayaa loo cusbooneysiiyay','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12142,'za','language_changed_to_','Luqadda ayaa loo beddelay','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12143,'za','inhouse_product_sale_report','Warbixinta iibka alaabta guryaha','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12144,'za','sort_by_category','Ku kala sooc Qayb ahaan','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12145,'za','product_wise_stock_report','Warbixinta sheyga ee caqliga badan','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12146,'za','currency_changed_to_','Lacagta ayaa loo beddelay','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12147,'za','avatar','Avatar','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12148,'za','copy','Nuqul','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12149,'za','variant','Kala duwanaansho','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12150,'za','variant_price','Qiimaha Kala Duwan','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12151,'za','sku','SKU','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12152,'za','key','Fure','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12153,'za','value','Qiimaha','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12154,'za','copy_translations','Nuqul Tarjumaadaha','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12155,'za','all_pickup_points','Dhammaan Qodobbada Soo-qaadista','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12156,'za','add_new_pickup_point','Kudar Bar-qaadis Cusub','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12157,'za','manager','Maareeye','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12158,'za','location','Goobta','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12159,'za','pickup_station_contact','Xiriirka Xarunta Qaadista','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12160,'za','open','Furan','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12161,'za','pos_activation_for_seller','Hawlgelinta POS ee Iibiyaha','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12162,'za','order_completed_successfully','Amarkii Si Guul Ah Ayaa Loo Dhameeyay','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12163,'za','text_input','Galinta qoraalka','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12164,'za','select','Xullo','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12165,'za','multiple_select','Xullo badan','2021-02-09 07:28:53','2021-09-20 07:29:43'),(12166,'za','radio','Raadiyo','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12167,'za','file','Fayl','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12168,'za','email_address','Cinwaanka emailka','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12169,'za','verification_info','Macluumaadka Xaqiijinta','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12170,'za','approval','Ansixin','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12171,'za','due_amount','Qaddarka','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12172,'za','show','Muuji','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12173,'za','pay_now','Bixi Hada','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12174,'za','affiliate_user_verification','Xaqiijinta Isticmaalka Isticmaalaha','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12175,'za','reject','Diid','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12176,'za','accept','Aqbal','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12177,'za','beauty_health__hair','Quruxda, Caafimaadka & Timaha','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12178,'za','comparison','Isbarbar dhig','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12179,'za','reset_compare_list','Dib u celi Liiska Isbarbardhiga','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12180,'za','your_comparison_list_is_empty','Liiskaaga isbarbardhiga waa faaruq','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12181,'za','convert_point_to_wallet','U Beddelo Bar Jeebka','2021-02-09 07:28:54','2021-09-20 07:29: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 07:28:54','2021-09-20 07:29:43'),(12183,'za','create_an_account','Samee xisaab.','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12184,'za','use_email_instead','Isticmaal Email Halkii','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12185,'za','by_signing_up_you_agree_to_our_terms_and_conditions','Marka aad isdiiwaangeliso waxaad ogolaatay shuruudaha iyo shuruudahayaga.','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12186,'za','create_account','Samee Koonto','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12187,'za','or_join_with','Ama Ku Biir','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12188,'za','already_have_an_account','Horey ma u leedahay koonto?','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12189,'za','log_in','Soo gal','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12190,'za','computer__accessories','Kombiyuutarka & Qalabka','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12191,'za','products','Alaabta (yada)','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12192,'za','in_your_cart','gaadhigaaga','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12193,'za','in_your_wishlist','liiskaaga rabitaanka','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12194,'za','you_ordered','waad amartay','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12195,'za','default_shipping_address','Cinwaanka Diritaanka Default','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12196,'za','sports__outdoor','Ciyaaraha & banaanka','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12197,'za','copied','La guuriyey','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12198,'za','copy_the_promote_link','Nuqul Xiriirka Kordhi','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12199,'za','write_a_review','Qor dib u eegis','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12200,'za','your_name','Magacaaga','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12201,'za','comment','Faallo','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12202,'za','your_review','Dib u eegidaada','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12203,'za','submit_review','Gudbi dib u eegis','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12204,'za','claire_willis','Claire Willis','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12205,'za','germaine_greene','Germaine Greene','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12206,'za','product_file','Faylka Alaabta','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12207,'za','choose_file','Xulo feyl','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12208,'za','type_to_add_a_tag','Ku qor si aad ugu darto sumad','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12209,'za','images','Sawirro','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12210,'za','main_images','Sawiro Muhiim ah','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12211,'za','meta_tags','Meta Tags','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12212,'za','digital_product_has_been_inserted_successfully','Wax soosaarka Dijital ah ayaa si guul leh loo geliyay','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12213,'za','edit_digital_product','Tafatir alaabada dhijitaalka ah','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12214,'za','select_an_option','Xulo ikhtiyaar','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12215,'za','tax','cashuurta','2021-02-09 07:28:54','2021-02-09 07:28:54'),(12216,'za','any_question_about_this_product','Su\'aal kasta oo ku saabsan sheygan?','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12217,'za','sign_in','Soo gal','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12218,'za','login_with_google','Soo gal Google','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12219,'za','login_with_facebook','Soo gal Facebook','2021-02-09 07:28:54','2021-09-20 07:29:43'),(12220,'za','login_with_twitter','Ku soo gal Twitter','2021-02-09 07:28:54','2021-09-20 07:29:44'),(12221,'za','click_to_show_phone_number','Guji si aad u muujiso lambarka taleefanka','2021-02-09 07:28:54','2021-09-20 07:29:44'),(12222,'za','other_ads_of','Xayeysiisyada kale ee','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12223,'za','store_home','Guri Bakhaar','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12224,'za','top_selling','Iibinta Sare','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12225,'za','shop_settings','Goobaha Dukaanka','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12226,'za','visit_shop','Booqo Dukaan','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12227,'za','pickup_points','Qodobbada Qaadista','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12228,'za','select_pickup_point','Xulo Barta Qaadista','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12229,'za','slider_settings','Dejinta Slider','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12230,'za','social_media_link','Xiriirinta Warbaahinta Bulshada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12231,'za','facebook','Facebook','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12232,'za','twitter','Twitter','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12233,'za','google','Google','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12234,'za','new_arrival_products','Alaabada Imaanshaha Cusub','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12235,'za','check_your_order_status','Hubi Xaaladda Dalabkaaga','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12236,'za','shipping_method','Habka rarka','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12237,'za','shipped_by','Geeyey By','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12238,'za','image','Sawir','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12239,'za','sub_sub_category','Qayb Sub Sub','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12240,'za','inhouse_products','Alaabta Guryaha','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12241,'za','forgot_password','Ilowday Furaha','2021-02-09 07:28:55','2021-09-20 07:29: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 07:28:55','2021-09-20 07:29:44'),(12243,'za','email_or_phone','Email ama Telefoon','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12244,'za','send_password_reset_link','Soo dir Xiriiriyaha Dib-u-habeynta ereyga','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12245,'za','back_to_login','Ku noqo Soo gal','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12246,'za','index','tusmo','2021-02-09 07:28:55','2021-02-09 07:28:55'),(12247,'za','download_your_product','Soo Degso Alaabtaada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12248,'za','option','Ikhtiyaar','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12249,'za','applied_refund_request','Codsiga Lacag Celinta','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12250,'za','item_has_been_renoved_from_wishlist','Shayga waa laga cusboonaysiiyay liiska xulashada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12251,'za','bulk_products_upload','Alaabada Jumlada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12252,'za','upload_csv','Soo rar CSV','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12253,'za','create_a_ticket','Samee Tigidh','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12254,'za','tickets','Tigidhada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12255,'za','ticket_id','Aqoonsiga Tigidhada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12256,'za','sending_date','Taariikhda Diritaanka','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12257,'za','subject','Mawduuca','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12258,'za','view_details','Faahfaahin Faahfaahin','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12259,'za','provide_a_detailed_description','Bixi sharaxaad faahfaahsan','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12260,'za','type_your_reply','Qor jawaabtaada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12261,'za','send_ticket','Soo dir Tigidhka','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12262,'za','load_more','Xamuul Dheeraad ah','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12263,'za','jewelry__watches','Dahabka & Saacadaha','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12264,'za','filters','Shaandheeyeyaasha','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12265,'za','contact_address','Cinwaanka lagala xiriirayo','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12266,'za','contact_phone','Telefoonka lala xiriiro','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12267,'za','contact_email','E-mayl la xiriir','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12268,'za','filter_by','Sifee','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12269,'za','condition','Xaaladda','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12270,'za','all_type','Dhammaan Noocyada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12271,'za','pay_with_wallet','Ku bixi jeebka','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12272,'za','select_variation','Xullo kala duwanaansho','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12273,'za','no_product_added','Wax alaab ah laguma darin','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12274,'za','status_has_been_updated_successfully','Xaaladda si guul leh ayaa loo cusbooneysiiyay','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12275,'za','all_seller_packages','Dhammaan Baakadaha Iibiyaha','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12276,'za','add_new_package','Kudar Xidhmo Cusub','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12277,'za','package_logo','Astaanta Xirmada','2021-02-09 07:28:55','2021-09-20 07:29:44'),(12278,'za','days','maalmood','2021-02-09 07:28:56','2021-02-09 07:28:56'),(12279,'za','create_new_seller_package','Abuur Xidhmada Iibiyaha Cusub','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12280,'za','package_name','Magaca Xidhmada','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12281,'za','duration','Muddada','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12282,'za','validity_in_number_of_days','Ansaxnimada tirada maalmaha','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12283,'za','update_package_information','Cusboonaysii Macluumaadka Xidhmada','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12284,'za','package_has_been_inserted_successfully','Xirmo ayaa si guul leh loo geliyay','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12285,'za','refund_request','Codsiga Soo Celinta','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12286,'za','reason','Sababta','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12287,'za','label','Calaamadda','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12288,'za','select_label','Xulo Calaamadda','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12289,'za','multiple_select_label','Label Xullo Badan','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12290,'za','radio_label','Sumadda Raadiyaha','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12291,'za','pickup_point_orders','Amarada Goobta Qaadista','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12292,'za','view','Muuqaal','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12293,'za','order_','Dalbo #','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12294,'za','order_status','Amarka Xaaladda','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12295,'za','total_amount','Wadarta qadarka','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12296,'za','total','WADAR','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12297,'za','delivery_status_has_been_updated','Xaaladda gaarsiinta waa la casriyeeyay','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12298,'za','payment_status_has_been_updated','Xaaladda lacag-bixinta ayaa la cusbooneysiiyay','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12299,'za','invoice','KHAYRKA','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12300,'za','set_refund_time','Deji Waqtiga Soo Celinta','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12301,'za','set_time_for_sending_refund_request','Waqti u dejiso dirista Codsiga celinta','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12302,'za','set_refund_sticker','Calan Lacag celinta Lacagta','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12303,'za','sticker','Istiikar','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12304,'za','refund_request_all','Codsiga Soo Celinta Dhammaan','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12305,'za','order_id','Dalbo Id','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12306,'za','seller_approval','Oggolaanshaha Iibiyaha','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12307,'za','admin_approval','Ansixinta Maamulka','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12308,'za','refund_status','Xaaladda Soo Celinta','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12309,'za','no_refund','Lacag celin','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12310,'za','status_updated_successfully','Xaaladda si guul leh ayaa loo cusbooneysiiyay','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12311,'za','user_search_report','Warbixinta Raadinta Isticmaalaha','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12312,'za','search_by','Raadi By','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12313,'za','number_searches','Raadinta nambarka','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12314,'za','sender','Soo diraha','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12315,'za','receiver','Qaataha','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12316,'za','verification_form_updated_successfully','Foomka xaqiijinta ayaa si guul leh loo cusboonaysiiyay','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12317,'za','invalid_email_or_password','Emayl ama fure aan sax ahayn','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12318,'za','all_coupons','Dhamaan Kuuboonada','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12319,'za','add_new_coupon','Ku dar Kuuboon Cusub','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12320,'za','coupon_information','Macluumaadka Kuuboon','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12321,'za','start_date','Taariikhda billowga','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12322,'za','end_date','Taariikhda Dhamaadka','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12323,'za','product_base','Saldhigga alaabta','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12324,'za','send_newsletter','U dir Wargeys','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12325,'za','mobile_users','Isticmaalayaasha Mobilada','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12326,'za','sms_subject','Mawduuca SMS','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12327,'za','sms_content','Qoraalka SMS','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12328,'za','all_flash_delas','Dhamaan Flash Delas','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12329,'za','create_new_flash_dela','Abuur Flash Dela Cusub','2021-02-09 07:28:56','2021-09-20 07:29:44'),(12330,'za','page_link','Xiriirinta Bogga','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12331,'za','flash_deal_information','Macluumaadka Flash Deal','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12332,'za','background_color','Midabka Taariikhda','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12333,'za','0000ff','# 0000ff','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12334,'za','text_color','Midabka qoraalka','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12335,'za','white','Caddaan','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12336,'za','dark','Madoobaa','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12337,'za','choose_products','Xullo Waxyaabaha','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12338,'za','discounts','Qiimo dhimis','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12339,'za','discount_type','Nooca Qiima dhimista','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12340,'za','twillo_credential','Aqoonsiga Twillo','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12341,'za','twilio_sid','TWILIO SID','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12342,'za','twilio_auth_token','TWILIO AUTH TOKEN','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12343,'za','twilio_verify_sid','TWILIO SOO CADEE','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12344,'za','valid_twillo_number','LAMBAR TWILLO LAMBAR','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12345,'za','nexmo_credential','Aqoonsiga Nexmo','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12346,'za','nexmo_key','NEXMO KEY','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12347,'za','nexmo_secret','SIRTA NEXMO','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12348,'za','ssl_wireless_credential','Aqoonsiga Wireless SSL','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12349,'za','ssl_sms_api_token','SSL SMS API TOKEN','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12350,'za','ssl_sms_sid','SSL SMS SID','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12351,'za','ssl_sms_url','SSL SMS URL','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12352,'za','fast2sms_credential','Aqoonsiga Fast2SMS','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12353,'za','auth_key','FURAHA FUDUD','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12354,'za','route','JIDKA','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12355,'za','promotional_use','Isticmaalka Xayeysiinta','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12356,'za','transactional_use','Adeegsiga Macaamil','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12357,'za','sender_id','Aqoonsiga SENDER','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12358,'za','nexmo_otp','Nexmo OTP','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12359,'za','twillo_otp','Twillo OTP','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12360,'za','ssl_wireless_otp','SSL Wireless OTP','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12361,'za','fast2sms_otp','Fast2SMS OTP','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12362,'za','order_placement','Dalbo Meeleyn','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12363,'za','delivery_status_changing_time','Waqtiga Gaarsiinta Isbadelka Waqtiga','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12364,'za','paid_status_changing_time','Waqtiga Beddelka Xaaladda Mushaharka leh','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12365,'za','send_bulk_sms','U dir SMS badan','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12366,'za','all_subscribers','Dhamaan Macaamiisha','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12367,'za','coupon_information_adding','Ku darista Macluumaadka Kuuboon','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12368,'za','coupon_type','Nooca Kuuban','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12369,'za','for_products','Wixii alaab ah','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12370,'za','for_total_orders','Amarada Guud','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12371,'za','add_your_product_base_coupon','Kudar Kuuboonkaga Saldhigga Badeecadaada','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12372,'za','coupon_code','Koodh kuuboon ah','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12373,'za','sub_category','Qeybta Sub','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12374,'za','add_more','Ku dar intaa','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12375,'za','add_your_cart_base_coupon','Ku dar Kaadhkaaga Saldhigga Baska','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12376,'za','minimum_shopping','Dukaameysiga Ugu Yar','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12377,'za','maximum_discount_amount','Tirada Qiima dhimista ugu badan','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12378,'za','coupon_information_update','Cusboonaysiinta Macluumaadka Kuuboon','2021-02-09 07:28:57','2021-09-20 07:29: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 07:28:57','2021-09-20 07:29:44'),(12380,'za','configure_now','Habee Hada','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12381,'za','total_published_products','Wadarta alaabada la daabacay','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12382,'za','total_sellers_products','Wadarta alaabada iibiyaasha','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12383,'za','total_admin_products','Wadarta alaabada maamulka','2021-02-09 07:28:57','2021-09-20 07:29:44'),(12384,'za','manage_products','Maamul Alaabta','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12385,'za','total_product_category','Wadarta qaybta wax soo saarka','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12386,'za','create_category','Abuur Qeyb','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12387,'za','total_product_sub_sub_category','Wadarta shey sub sub sub','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12388,'za','create_sub_sub_category','Abuur Qeyb Sub Sub','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12389,'za','total_product_sub_category','Wadarta shey badeecad ahaan','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12390,'za','create_sub_category','Abuur Qeyb Sub','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12391,'za','total_product_brand','Wadarta sumadda wax soo saarka','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12392,'za','create_brand','Abuur Brand','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12393,'za','total_sellers','Wadarta iibiyaasha','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12394,'za','total_approved_sellers','Wadarta iibiyeyaasha la oggolaaday','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12395,'za','total_pending_sellers','Wadarta iibiyeyaasha sugaya','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12396,'za','manage_sellers','Maamul iibiyeyaasha','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12397,'za','category_wise_product_sale','Iibinta alaabta caqliga badan','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12398,'za','sale','Iib','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12399,'za','category_wise_product_stock','Kaydka alaabta caqliga badan','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12400,'za','category_name','Magaca Qeybta','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12401,'za','stock','Keyd','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12402,'za','frontend','Dhamaadka hore','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12403,'za','home_page','Bogga hore','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12404,'za','setting','dejinta','2021-02-09 07:28:58','2021-02-09 07:28:58'),(12405,'za','policy_page','Bogga siyaasadda','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12406,'za','general','Guud','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12407,'za','click_here','Halkan Guji','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12408,'za','useful_link','Xiriir wax ku ool ah','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12409,'za','activation','Firfircoonida','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12410,'za','smtp','SMTP','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12411,'za','payment_method','Qaabka mushaar-bixinta','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12412,'za','social_media','Warbaahinta bulshada','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12413,'za','business','Ganacsi','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12414,'za','seller_verification','Xaqiijinta iibiyaha','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12415,'za','form_setting','qaab dejinta','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12416,'za','language','Luqadda','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12417,'za','dashboard','Dashboard','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12418,'za','pos_system','Nidaamka POS','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12419,'za','pos_manager','Maamulaha POS','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12420,'za','pos_configuration','Isku xidhka POS','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12421,'za','products','Alaabta','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12422,'za','add_new_product','Kudar shey cusub','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12423,'za','all_products','Dhammaan Alaabooyinka','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12424,'za','in_house_products','Agabka Guryaha','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12425,'za','seller_products','Alaabada Iibiyaha','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12426,'za','digital_products','Waxyaabaha Dijital ah','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12427,'za','bulk_import','Soo Dejinta Jumlada','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12428,'za','bulk_export','Dhoofinta Jumlada','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12429,'za','category','Qeybta','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12430,'za','subcategory','Qeybta hoose','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12431,'za','sub_subcategory','Subcategory sub','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12432,'za','brand','Summad','2021-02-09 07:28:58','2021-09-20 07:29:44'),(12433,'za','attribute','Sifo','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12434,'za','product_reviews','Faallooyinka alaabada','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12435,'za','sales','Iibinta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12436,'za','all_orders','Dhamaan Amarada','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12437,'za','inhouse_orders','Amarada guryaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12438,'za','seller_orders','Amarada Iibiyaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12439,'za','pickup_point_order','Dalbashada Qodobka Qaadista','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12440,'za','refunds','Lacag celin','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12441,'za','refund_requests','Codsiyada celinta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12442,'za','approved_refund','Lacag celinta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12443,'za','refund_configuration','Habeynta soo celinta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12444,'za','customers','Macaamiisha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12445,'za','customer_list','Liiska macaamiisha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12446,'za','classified_products','Alaabada Kala Duwan','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12447,'za','classified_packages','Xirmooyinka Kala Duwan','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12448,'za','sellers','Iibiyeyaasha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12449,'za','all_seller','Dhamaan Iibiyaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12450,'za','payouts','Lacag bixinta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12451,'za','payout_requests','Codsiyada Bixinta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12452,'za','seller_commission','Komishanka Iibiyaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12453,'za','seller_packages','Xirmooyinka Iibiyaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12454,'za','seller_verification_form','Foomka Xaqiijinta Iibiyaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12455,'za','reports','Warbixinno','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12456,'za','in_house_product_sale','Iibinta Alaabta Guriga','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12457,'za','seller_products_sale','Iibinta Alaabada Iibiyaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12458,'za','products_stock','Alaabada Alaabta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12459,'za','products_wishlist','Liisaska waxyaabaha la doonayo','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12460,'za','user_searches','Raadinta Isticmaalaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12461,'za','marketing','Suuqgeynta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12462,'za','flash_deals','Heshiisyada Flash','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12463,'za','newsletters','Wargeysyada','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12464,'za','bulk_sms','SMS badan','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12465,'za','subscribers','Macaamiisha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12466,'za','coupon','Kuuboon','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12467,'za','support','Taageero','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12468,'za','ticket','Tigidhada','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12469,'za','product_queries','Weydiimaha alaabta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12470,'za','website_setup','Dejinta Websaydhka','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12471,'za','header','Madaxa','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12472,'za','footer','Lugood','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12473,'za','pages','Bogagga','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12474,'za','appearance','Muuqaal','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12475,'za','setup__configurations','Dejinta & Qaabdhismeedka','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12476,'za','general_settings','Goobaha Guud','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12477,'za','features_activation','Astaamaha firfircoonaanta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12478,'za','languages','Luqadaha','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12479,'za','currency','Lacagta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12480,'za','pickup_point','Bar qaadista','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12481,'za','smtp_settings','Dejinta SMTP','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12482,'za','payment_methods','Hababka Bixinta','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12483,'za','file_system_configuration','Isku xidhka Nidaamka Faylka','2021-02-09 07:28:59','2021-09-20 07:29:44'),(12484,'za','social_media_logins','Warbaahinta bulshada','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12485,'za','analytics_tools','Qalabka Falanqaynta','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12486,'za','facebook_chat','Wadahadalka Facebook','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12487,'za','google_recaptcha','Google reCAPTCHA','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12488,'za','shipping_configuration','Dejinta Qalabka','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12489,'za','shipping_countries','Wadamada Maraakiibta','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12490,'za','affiliate_system','Nidaamka Isku-xidhka','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12491,'za','affiliate_registration_form','Foomka Diiwaangelinta Iskuxirka','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12492,'za','affiliate_configurations','Iskuduwaha isku xidhka ah','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12493,'za','affiliate_users','Isticmaalayaasha Kuxiran','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12494,'za','referral_users','Isticmaalayaasha Gudbinta','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12495,'za','affiliate_withdraw_requests','Codsiyada Ka Bixida Shirkad wadaag ah','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12496,'za','offline_payment_system','Nidaamka Lacag-bixin la\'aanta','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12497,'za','manual_payment_methods','Hababka Bixinta Buugga','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12498,'za','offline_wallet_recharge','Dib-u-buuxinta Boorsada Lacag-la\'aanta ah','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12499,'za','offline_customer_package_payments','Lacag Bixinta Xidhmada Macaamiisha','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12500,'za','offline_seller_package_payments','Lacag Bixinta Xirmooyinka Iibiyaha Aan Tooska Ahayn','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12501,'za','paytm_payment_gateway','Albaabka Bixinta Paytm','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12502,'za','set_paytm_credentials','Calan Aqoonsiga Paytm','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12503,'za','club_point_system','Nidaamka Barta Naadiga','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12504,'za','club_point_configurations','Iskuduwaha Barta Naadiga','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12505,'za','set_product_point','Calan Bar Bar','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12506,'za','user_points','Qodobbada Isticmaalaha','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12507,'za','otp_system','Nidaamka OTP','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12508,'za','otp_configurations','Qalabaynta OTP','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12509,'za','set_otp_credentials','Calan Aqoonsiga OTP','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12510,'za','staffs','Shaqaalaha','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12511,'za','all_staffs','Dhamaan shaqaalaha','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12512,'za','staff_permissions','Ogolaanshaha shaqaalaha','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12513,'za','addon_manager','Maamulaha Addon','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12514,'za','browse_website','Booqo Websaydhka','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12515,'za','pos','POS','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12516,'za','notifications','Ogeysiisyada','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12517,'za','new_orders','amarro cusub','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12518,'za','userimage','sawir-isticmaale','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12519,'za','profile','Astaan','2021-02-09 07:29:00','2021-09-20 07:29:44'),(12520,'za','logout','Ka bax','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12521,'za','page_not_found','Bog lama helin!','2021-02-09 07:29:31','2021-09-20 07:29: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 07:29:31','2021-09-20 07:29:44'),(12523,'za','registration','Diiwaangelinta','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12524,'za','i_am_shopping_for','Waxaan u adeeganayaa ...','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12525,'za','compare','Isbarbar dhig','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12526,'za','wishlist','Liiska Rabitaanka','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12527,'za','cart','Gawaarida','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12528,'za','your_cart_is_empty','Gaarigaaga ayaa madhan','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12529,'za','categories','Qaybaha','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12530,'za','see_all','Fiiri Dhamaan','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12531,'za','seller_policy','Siyaasadda Iibiyaha','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12532,'za','return_policy','Siyaasadda Soo Celinta','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12533,'za','support_policy','Siyaasadda Taageerada','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12534,'za','privacy_policy','Qaanuunka Arrimaha Khaaska ah','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12535,'za','your_email_address','Cinwaanka Ii-maylkaaga','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12536,'za','subscribe','Subscribe','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12537,'za','contact_info','La xiriir Macluumaadka','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12538,'za','address','Cinwaanka','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12539,'za','phone','Telefoon','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12540,'za','email','Email','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12541,'za','login','Login','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12542,'za','my_account','My Account','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12543,'za','order_history','Order History','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12544,'za','my_wishlist','My Wishlist','2021-02-09 07:29:31','2021-09-20 07:29:44'),(12545,'za','track_order','Track Order','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12546,'za','be_an_affiliate_partner','Be an affiliate partner','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12547,'za','be_a_seller','Be a Seller','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12548,'za','apply_now','Apply Now','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12549,'za','confirmation','Confirmation','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12550,'za','delete_confirmation_message','Delete confirmation message','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12551,'za','cancel','Cancel','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12552,'za','delete','Tirtir','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12553,'za','item_has_been_added_to_compare_list','Item has been added to compare list','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12554,'za','please_login_first','Please login first','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12555,'za','total_earnings_from','Total Earnings From','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12556,'za','client_subscription','Client Subscription','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12557,'za','product_category','Product category','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12558,'za','product_sub_sub_category','Product sub sub category','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12559,'za','product_sub_category','Product sub category','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12560,'za','product_brand','Product brand','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12561,'za','top_client_packages','Top Client Packages','2021-02-09 07:29:31','2021-09-20 07:29:45'),(12562,'za','top_freelancer_packages','Top Freelancer Packages','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12563,'za','number_of_sale','Number of sale','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12564,'za','number_of_stock','Number of Stock','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12565,'za','top_10_products','Top 10 Products','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12566,'za','top_12_products','Top 12 Products','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12567,'za','admin_can_not_be_a_seller','Admin cannot be a seller','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12568,'za','filter_by_rating','Filter by Rating','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12569,'za','published_reviews_updated_successfully','Published reviews updated successfully','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12570,'za','refund_sticker_has_been_updated_successfully','Refund Sticker has been updated successfully','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12571,'za','edit_product','Edit Product','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12572,'za','meta_images','Meta Images','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12573,'za','update_product','Update Product','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12574,'za','product_has_been_deleted_successfully','Product has been deleted successfully','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12575,'za','your_profile_has_been_updated_successfully','Your Profile has been updated successfully!','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12576,'za','upload_limit_has_been_reached_please_upgrade_your_package','Upload limit has been reached. Please upgrade your package.','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12577,'za','add_your_product','Add Your Product','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12578,'za','select_a_category','Select a category','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12579,'za','select_a_brand','Select a brand','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12580,'za','product_unit','Product Unit','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12581,'za','minimum_qty','Minimum Qty.','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12582,'za','product_tag','Product Tag','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12583,'za','type__hit_enter','Type & hit enter','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12584,'za','videos','Videos','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12585,'za','video_from','Video From','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12586,'za','video_url','Video URL','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12587,'za','customer_choice','Customer Choice','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12588,'za','pdf','PDF','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12589,'za','choose_pdf','Choose PDF','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12590,'za','select_category','Select Category','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12591,'za','target_category','Target Category','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12592,'za','subsubcategory','subsubcategory','2021-02-09 07:29:32','2021-02-09 07:29:32'),(12593,'za','search_category','Search Category','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12594,'za','search_subcategory','Search SubCategory','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12595,'za','search_subsubcategory','Search SubSubCategory','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12596,'za','update_your_product','Update your product','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12597,'za','product_has_been_updated_successfully','Product has been updated successfully','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12598,'za','add_your_digital_product','Add Your Digital Product','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12599,'za','active_ecommerce_cms_update_process','Active eCommerce CMS Update Process','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12600,'za','codecanyon_purchase_code','Codecanyon purchase code','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12601,'za','database_name','Database Name','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12602,'za','database_username','Database Username','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12603,'za','database_password','Database Password','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12604,'za','database_hostname','Database Hostname','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12605,'za','update_now','Update Now','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12606,'za','congratulations','Congratulations','2021-02-09 07:29:32','2021-09-20 07:29: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 07:29:32','2021-09-20 07:29:45'),(12608,'za','go_to_home','Go to Home','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12609,'za','login_to_admin_panel','Login to Admin panel','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12610,'za','s3_file_system_credentials','S3 File System Credentials','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12611,'za','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12612,'za','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12613,'za','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12614,'za','aws_bucket','AWS_BUCKET','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12615,'za','aws_url','AWS_URL','2021-02-09 07:29:32','2021-09-20 07:29:45'),(12616,'za','s3_file_system_activation','S3 File System Activation','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12617,'za','your_phone_number','Your phone number','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12618,'za','zip_file','Zip File','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12619,'za','install','Install','2021-02-09 07:29:33','2021-09-20 07:29: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 07:29:33','2021-09-20 07:29:45'),(12621,'za','search_in_menu','Search in menu','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12622,'za','uploaded_files','Uploaded Files','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12623,'za','shipping_cities','Shipping Cities','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12624,'za','system','System','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12625,'za','server_status','Server status','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12626,'za','nothing_found','Nothing Found','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12627,'za','parent_category','Parent Category','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12628,'za','level','Level','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12629,'za','category_information','Category Information','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12630,'za','translatable','Translatable','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12631,'za','no_parent','No Parent','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12632,'za','physical','Physical','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12633,'za','digital','Digital','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12634,'za','200x200','200x200','2021-02-09 07:29:33','2021-02-09 07:29:33'),(12635,'za','32x32','32x32','2021-02-09 07:29:33','2021-02-09 07:29:33'),(12636,'za','search_your_files','Search your files','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12637,'za','category_has_been_updated_successfully','Category has been updated successfully','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12638,'za','all_uploaded_files','All uploaded files','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12639,'za','upload_new_file','Upload New File','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12640,'za','all_files','All files','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12641,'za','search','Search','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12642,'za','details_info','Details Info','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12643,'za','copy_link','Copy Link','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12644,'za','are_you_sure_to_delete_this_file','Are you sure to delete this file?','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12645,'za','file_info','File Info','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12646,'za','link_copied_to_clipboard','Link copied to clipboard','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12647,'za','oops_unable_to_copy','Oops, unable to copy','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12648,'za','file_deleted_successfully','File deleted successfully','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12649,'za','add_new_brand','Add New Brand','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12650,'za','120x80','120x80','2021-02-09 07:29:33','2021-02-09 07:29:33'),(12651,'za','brand_information','Brand Information','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12652,'za','brand_has_been_updated_successfully','Brand has been updated successfully','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12653,'za','brand_has_been_deleted_successfully','Brand has been deleted successfully','2021-02-09 07:29:33','2021-09-20 07:29: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 07:29:33','2021-09-20 07:29: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 07:29:33','2021-09-20 07:29: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 07:29:33','2021-09-20 07:29: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 07:29:33','2021-09-20 07:29:45'),(12658,'za','save_product','Save Product','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12659,'za','product_has_been_inserted_successfully','Product has been inserted successfully','2021-02-09 07:29:33','2021-09-20 07:29:45'),(12660,'za','something_went_wrong','Something went wrong!','2021-02-09 07:29:33','2021-09-20 07:29: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 07:29:33','2021-09-20 07:29:45'),(12662,'za','error_code','Error code','2021-02-09 07:29:33','2021-09-20 07:29: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 07:29:33','2021-09-20 07:29:45'),(12664,'za','order','Order','2021-02-09 07:29:33','2021-09-20 07:29: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 07:29:33','2021-09-20 07:29:45'),(12666,'za','home_banner_3_max_3','Home Banner 3 (Max 3)','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12667,'za','add_new_seller','Add New Seller','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12668,'za','filter_by_approval','Filter by Approval','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12669,'za','nonapproved','Non-Approved','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12670,'za','type_name_or_email__enter','Type name or email & Enter','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12671,'za','due_to_seller','Due to seller','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12672,'za','log_in_as_this_seller','Log in as this Seller','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12673,'za','go_to_payment','Go to Payment','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12674,'za','ban_this_seller','Ban this seller','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12675,'za','do_you_really_want_to_ban_this_seller','Do you really want to ban this seller?','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12676,'za','proceed','Proceed!','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12677,'za','approved_sellers_updated_successfully','Approved sellers updated successfully','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12678,'za','seller_has_been_deleted_successfully','Seller has been deleted successfully','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12679,'za','seller_information','Seller Information','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12680,'za','seller_has_been_inserted_successfully','Seller has been inserted successfully','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12681,'za','email_already_exists','Email already exists!','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12682,'za','verify_your_email_address','Verify Your Email Address','2021-02-09 07:29:34','2021-09-20 07:29: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 07:29:34','2021-09-20 07:29:45'),(12684,'za','if_you_did_not_receive_the_email','If you did not receive the email.','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12685,'za','click_here_to_request_another','Click here to request another','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12686,'za','email_verification','Email Verification','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12687,'za','email_verification__','Email Verification -','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12688,'za','https_activation','HTTPS Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12689,'za','maintenance_mode','Maintenance Mode','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12690,'za','maintenance_mode_activation','Maintenance Mode Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12691,'za','classified_product_activate','Classified Product Activate','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12692,'za','classified_product','Classified Product','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12693,'za','business_related','Business Related','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12694,'za','vendor_system_activation','Vendor System Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12695,'za','wallet_system_activation','Wallet System Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12696,'za','coupon_system_activation','Coupon System Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12697,'za','pickup_point_activation','Pickup Point Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12698,'za','conversation_activation','Conversation Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12699,'za','guest_checkout_activation','Guest Checkout Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12700,'za','categorybased_commission','Category-based Commission','2021-02-09 07:29:34','2021-09-20 07:29: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 07:29:34','2021-09-20 07:29:45'),(12702,'za','set_commisssion_now','Set Commisssion Now','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12703,'za','payment_related','Payment Related','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12704,'za','paypal_payment_activation','Paypal Payment Activation','2021-02-09 07:29:34','2021-09-20 07:29: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 07:29:34','2021-09-20 07:29:45'),(12706,'za','stripe_payment_activation','Stripe Payment Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12707,'za','sslcommerz_activation','SSlCommerz Activation','2021-02-09 07:29:34','2021-09-20 07:29:45'),(12708,'za','instamojo_payment_activation','Instamojo Payment Activation','2021-02-09 07:29:34','2021-09-20 07:29: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 07:29:34','2021-09-20 07:29:45'),(12710,'za','razor_pay_activation','Razor Pay Activation','2021-02-09 07:29:34','2021-09-20 07:29: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 07:29:34','2021-09-20 07:29:45'),(12712,'za','paystack_activation','PayStack Activation','2021-02-09 07:29:34','2021-09-20 07:29: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 07:29:34','2021-09-20 07:29:45'),(12714,'za','voguepay_activation','VoguePay Activation','2021-02-09 07:29:34','2021-09-20 07:29: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 07:29:34','2021-09-20 07:29:45'),(12716,'za','payhere_activation','Payhere Activation','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12717,'za','ngenius_activation','Ngenius Activation','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12719,'za','iyzico_activation','Iyzico Activation','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12721,'za','bkash_activation','Bkash Activation','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12723,'za','nagad_activation','Nagad Activation','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12725,'za','cash_payment_activation','Cash Payment Activation','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12726,'za','social_media_login','Social Media Login','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12727,'za','facebook_login','Facebook login','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12729,'za','google_login','Google login','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12731,'za','twitter_login','Twitter login','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12733,'za','shop_logo','Shop Logo','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12734,'za','shop_address','Shop Address','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12735,'za','banner_settings','Banner Settings','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12736,'za','banners','Banners','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12738,'za','insert_link_with_https_','Insert link with https','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12739,'za','your_shop_has_been_updated_successfully','Dukaankaaga si guul leh ayaa loo casriyeeyay!','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12740,'za','search_result_for_','Search natiijada for','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12741,'za','brand_has_been_inserted_successfully','Nooca ayaa si guul leh loo geliyay','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12742,'za','about','Ku saabsan','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12743,'za','payout_info','Macluumaadka Bixinta','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12744,'za','bank_acc_name','Magaca Bank Acc','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12745,'za','bank_acc_number','Lambarka Bank Acc','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12746,'za','total_products','Wadarta Alaabta','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12747,'za','total_sold_amount','Wadarta La Iibiyay','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12748,'za','wallet_balance','Isu-dheellitirka jeebka','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12749,'za','cookies_agreement','Heshiiska Kukiyada','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12750,'za','cookies_agreement_text','Qoraalka Heshiiska Kukiyada','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12751,'za','show_cookies_agreement','Muuji Heshiiska Kukiyada?','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12752,'za','custom_script','Qoraalka Gaarka ah','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12753,'za','header_custom_script__before_head','Qoraalka gaarka ah qoraalka - ka hor </ madaxa>','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12754,'za','write_script_with_script_tag','Ku qor qoraal qoraal leh <script> tag','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12755,'za','footer_custom_script__before_body','Qoraalka qoraalka caadada - kahor </body>','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12756,'za','category_has_been_inserted_successfully','Qeybta si guul leh ayaa loo geliyay','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12757,'za','all_flash_deals','Dhamaan heshiisyada Flash','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12758,'za','create_new_flash_deal','Abuur Flash Deal Cusub','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12759,'za','ffffff','#FFFFFF','2021-02-09 07:29:35','2021-09-20 07:29: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 07:29:35','2021-09-20 07:29:45'),(12761,'za','flash_deal_has_been_inserted_successfully','Flash Deal ayaa si guul leh loo geliyay','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12762,'za','flash_deal_status_updated_successfully','Xaaladda heshiiska Flash si guul leh ayaa loo cusbooneysiiyey','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12763,'za','flash_deal_has_been_updated_successfully','Flash Deal si guul leh ayaa loo cusbooneysiiyay','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12764,'za','update_language_info','cusboonaysii Macluumaadka Luqadda','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12765,'za','language_has_been_updated_successfully','Luqadda si casri ah ayaa loo casriyeeyay','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12766,'za','type_key__enter','Nooca furaha & Gali','2021-02-09 07:29:35','2021-09-20 07:29:45'),(12767,'za','translations_updated_for_','Tarjumaadaha ayaa loo cusbooneysiiyay','2021-02-09 07:29:36','2021-09-20 07:29:45'),(12768,'za','language_has_been_inserted_successfully','Luuqada si guul leh ayaa loo galiyay','2021-02-09 07:29:36','2021-09-20 07:29:45'),(12769,'ie','all_category','Gach Catag%%ir','2021-02-09 07:34:00','2021-09-20 07:29:45'),(12770,'ie','all','Gach','2021-02-09 07:34:00','2021-09-20 07:29:45'),(12771,'ie','flash_sale','D%�ol Flash','2021-02-09 07:34:00','2021-09-20 07:29:45'),(12772,'ie','view_more','F%#ach Tuilleadh','2021-02-09 07:34:00','2021-09-20 07:29:45'),(12773,'ie','add_to_wishlist','Cuir an liosta a ghu%�','2021-02-09 07:34:00','2021-09-20 07:29:45'),(12774,'ie','add_to_compare','Cuir le compar%�id a dh%#anamh','2021-02-09 07:34:00','2021-09-20 07:29:45'),(12775,'ie','add_to_cart','Cuir le cart','2021-02-09 07:34:00','2021-09-20 07:29:45'),(12776,'ie','club_point','Pointe an Chlub','2021-02-09 07:34:00','2021-09-20 07:29:45'),(12777,'ie','classified_ads','F%%gra%� Rangaithe','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12778,'ie','used','%�s%�idtear','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12779,'ie','top_10_categories','Na 10 gCatag%%ir is Fearr','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12780,'ie','view_all_categories','F%#ach ar na Catag%%ir%� Uile','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12781,'ie','top_10_brands','Na 10 mBranda is Fearr','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12782,'ie','view_all_brands','F%#ach ar na Branda%� Uile','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12783,'ie','terms__conditions','T%#arma%� ��� Coinn%�ollacha','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12784,'ie','best_selling','D%�ol is Fearr','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12785,'ie','top_20','20 barr','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12786,'ie','featured_products','T%�irg%� R%#admhaoin','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12787,'ie','best_sellers','D%�olt%%ir%� is fearr','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12788,'ie','visit_store','Tabhair cuairt ar Store','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12789,'ie','popular_suggestions','Molta%� Coitianta','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12790,'ie','category_suggestions','Molta%� Catag%%ir','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12791,'ie','automobile__motorcycle','Gluaiste%�n & Gluaisrothar','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12792,'ie','price_range','Raon praghsanna','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12793,'ie','filter_by_color','Scagaire de r%#ir datha','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12794,'ie','home','Baile','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12795,'ie','newest','Is nua','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12796,'ie','oldest','Is sine','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12797,'ie','price_low_to_high','Praghas %�seal go hard','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12798,'ie','price_high_to_low','Praghas ard go h%�seal','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12799,'ie','brands','Branda%�','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12800,'ie','all_brands','Gach Brand','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12801,'ie','all_sellers','Gach D%�olt%%ir','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12802,'ie','inhouse_product','T%�irge int%�','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12803,'ie','message_seller','D%�olt%%ir Teachtaireachta','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12804,'ie','price','Praghas','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12805,'ie','discount_price','Praghas Lascaine','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12806,'ie','color','Dath','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12807,'ie','quantity','Cainn%�ocht','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12808,'ie','available','ar f%�il','2021-02-09 07:34:01','2021-02-09 07:34:01'),(12809,'ie','total_price','Praghas ioml%�n','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12810,'ie','out_of_stock','As stoc','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12811,'ie','refund','Ais%�oca%�ocht','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12812,'ie','share','Comhroinn','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12813,'ie','sold_by','D%�olta ag','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12814,'ie','customer_reviews','athbhreithnithe ar chustaim%#ir%�','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12815,'ie','top_selling_products','T%�irg%� D%�ol Barr','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12816,'ie','description','Cur s%�os','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12817,'ie','video','F%�se%�n','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12818,'ie','reviews','L%#irmheasanna','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12819,'ie','download','%�osl%%d%�il','2021-02-09 07:34:01','2021-09-20 07:29: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 07:34:01','2021-09-20 07:29:45'),(12821,'ie','related_products','T%�irg%� gaolmhara','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12822,'ie','any_query_about_this_product','Aon cheist faoin t%�irge seo','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12823,'ie','product_name','Ainm T%�irge','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12824,'ie','your_question','Do cheist','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12825,'ie','send','Seol','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12826,'ie','use_country_code_before_number','%�s%�id c%%d t%�re roimh an uimhir','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12827,'ie','remember_me','Cuimhnigh Mise','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12828,'ie','dont_have_an_account','Nach bhfuil cuntas agat?','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12829,'ie','register_now','Cl%�raigh anois','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12830,'ie','or_login_with','N%% Log%�il Isteach Le','2021-02-09 07:34:01','2021-09-20 07:29:45'),(12831,'ie','oops','oops ..','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12832,'ie','this_item_is_out_of_stock','T%� an t-earra seo as stoc!','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12833,'ie','back_to_shopping','Ar ais ag siopad%%ireacht','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12834,'ie','login_to_your_account','Log%�il isteach i do chuntas.','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12835,'ie','purchase_history','Stair Ceannaigh','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12836,'ie','new','Nua','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12837,'ie','downloads','%�osl%%d%�lacha','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12838,'ie','sent_refund_request','Iarratas ar Ais%�oca%�ocht Seolta','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12839,'ie','product_bulk_upload','Uasl%%d%�il Bulc T%�irg%�','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12840,'ie','orders','Orduithe','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12841,'ie','recieved_refund_request','Iarratas ar Ais%�oca%�ocht Faighte','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12842,'ie','shop_setting','Su%�omh Siopa','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12843,'ie','payment_history','Stair %�oca%�ochta','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12844,'ie','money_withdraw','Aistarraingt Airgid','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12845,'ie','conversations','Comhr%�ite','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12846,'ie','my_wallet','Mo Spar%�n','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12847,'ie','earning_points','Point%� Tuilleamh','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12848,'ie','support_ticket','Tic%#ad Taca%�ochta','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12849,'ie','manage_profile','Bainistigh Pr%%if%�l','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12850,'ie','sold_amount','M%#id D%�olta','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12851,'ie','your_sold_amount_current_month','Do mh%#id d%�olta (an mh%� reatha)','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12852,'ie','total_sold','Ioml%�n D%�olta','2021-02-09 07:34:02','2021-09-20 07:29:45'),(12853,'ie','last_month_sold','An mh%� seo caite a d%�oladh','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12854,'ie','total_sale','D%�ol ioml%�n','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12855,'ie','total_earnings','Tuilleamh ioml%�n','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12856,'ie','successful_orders','Orduithe rath%Q%la','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12857,'ie','total_orders','Orduithe ioml%�na','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12858,'ie','pending_orders','Orduithe ar feitheamh','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12859,'ie','cancelled_orders','Orduithe curtha ar ceal','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12860,'ie','product','T%�irge','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12861,'ie','purchased_package','Pac%�iste Ceannaithe','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12862,'ie','package_not_found','Pac%�iste Gan Aimsi%Q%','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12863,'ie','upgrade_package','Pac%�iste Uasghr%�daithe','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12864,'ie','shop','Siopa','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12865,'ie','manage__organize_your_shop','Bainistigh agus eagraigh do shiopa','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12866,'ie','go_to_setting','T%#igh go su%�omh','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12867,'ie','payment','%�oca%�ocht','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12868,'ie','configure_your_payment_method','Cumraigh do mhodh %�oca%�ochta','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12869,'ie','my_panel','Mo Phain%#al','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12870,'ie','item_has_been_added_to_wishlist','T%� m%�r curtha leis an liosta mian','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12871,'ie','my_points','Mo Phoint%�','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12872,'ie','_points','Point%�','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12873,'ie','wallet_money','Airgead Spar%�n','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12874,'ie','exchange_rate','R%�ta malairte','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12875,'ie','point_earning_history','Stair Tuilleamh Pointe','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12876,'ie','date','D%�ta','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12877,'ie','points','Point%�','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12878,'ie','converted','Tiontaithe','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12879,'ie','action','Gn%�omh','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12880,'ie','no_history_found','N%�or aims%�odh aon stair.','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12881,'ie','convert_has_been_done_successfully_check_your_wallets','T%� tiont%Q% d%#anta go rath%Q%il Seice%�il do Spar%�n','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12882,'ie','something_went_wrong','Chuaigh rud eigin m%�cheart','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12883,'ie','remaining_uploads','Uasl%%d%�il at%� f%�gtha','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12884,'ie','no_package_found','N%�or aims%�odh aon phac%�iste','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12885,'ie','search_product','Cuardaigh t%�irge','2021-02-09 07:34:02','2021-09-20 07:29:46'),(12886,'ie','name','Ainm','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12887,'ie','current_qty','Qty Reatha','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12888,'ie','base_price','Bunphraghas','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12889,'ie','published','Foilsithe','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12890,'ie','featured','R%#admhaoin','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12891,'ie','options','Roghanna','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12892,'ie','edit','Cuir in Eagar','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12893,'ie','duplicate','D%Q%blach','2021-02-09 07:34:03','2021-09-20 07:29: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 07:34:03','2021-09-20 07:29: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 07:34:03','2021-09-20 07:29: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 07:34:03','2021-09-20 07:29: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%Q%.','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12898,'ie','download_csv','%�osl%%d%�il CSV','2021-02-09 07:34:03','2021-09-20 07:29: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%Q%la.','2021-02-09 07:34:03','2021-09-20 07:29: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 07:34:03','2021-09-20 07:29:46'),(12901,'ie','download_category','%�osl%%d%�il Catag%%ir','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12902,'ie','download_sub_category','%�osl%%d%�il Fo-chatag%%ir','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12903,'ie','download_sub_sub_category','%�osl%%d%�il Fo-chatag%%ir','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12904,'ie','download_brand','%�osl%%d%�il Branda','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12905,'ie','upload_csv_file','Uasl%%d%�il Comhad CSV','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12906,'ie','csv','CSV','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12907,'ie','choose_csv_file','Roghnaigh Comhad CSV','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12908,'ie','upload','Uasl%%d%�il','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12909,'ie','add_new_digital_product','Cuir T%�irge Digiteach Nua leis','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12910,'ie','available_status','St%�das ar F%�il','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12911,'ie','admin_status','St%�das Riarach%�in','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12912,'ie','pending_balance','Iarmh%#id ar feitheamh','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12913,'ie','send_withdraw_request','Seol Iarratas Aistarraingthe','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12914,'ie','withdraw_request_history','Stair Iarraidh a Tharraingt Siar','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12915,'ie','amount','M%#id','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12916,'ie','status','St%�das','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12917,'ie','message','Teachtaireacht','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12918,'ie','send_a_withdraw_request','Seol Iarratas Aistarraingthe','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12919,'ie','basic_info','Eolas Bun%Q%sach','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12920,'ie','your_phone','Do ghuth%�n','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12921,'ie','photo','grianghraf','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12922,'ie','browse','Brabhs%�il','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12923,'ie','your_password','Do Pasfhocal','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12924,'ie','new_password','Focal Faire Nua','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12925,'ie','confirm_password','Deimhnigh Pasfhocal','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12926,'ie','add_new_address','Cuir Seoladh Nua leis','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12927,'ie','payment_setting','Socr%Q% %�oca%�ochta','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12928,'ie','cash_payment','%�oca%�ocht Airgid Thirim','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12929,'ie','bank_payment','%�oca%�ocht Bainc','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12930,'ie','bank_name','Ainm Bainc','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12931,'ie','bank_account_name','Ainm an Chuntais Bhainc','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12932,'ie','bank_account_number','Uimhir Chuntais Bhainc','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12933,'ie','bank_routing_number','Uimhir R%%d%Q%ch%�in Bainc','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12934,'ie','update_profile','Pr%%if%�l Nuashonraithe','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12935,'ie','change_your_email','Athraigh do r-phost','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12936,'ie','your_email','Do r-phost','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12937,'ie','sending_email','R%�omhphost a sheoladh ...','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12938,'ie','verify','F%�oraigh','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12939,'ie','update_email','R%�omhphost a Nuashonr%Q%','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12940,'ie','new_address','Seoladh Nua','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12941,'ie','your_address','Do sheoladh','2021-02-09 07:34:03','2021-09-20 07:29:46'),(12942,'ie','country','T%�r','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12943,'ie','select_your_country','Roghnaigh do th%�r f%#in','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12944,'ie','city','Cathair','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12945,'ie','your_city','Do Chathair','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12946,'ie','your_postal_code','Do Ch%%d Poist','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12947,'ie','880','+880','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12948,'ie','save','S%�bh%�il','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12949,'ie','received_refund_request','Iarratas ar Ais%�oca%�ocht Faighte','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12950,'ie','delete_confirmation','Scrios Deimhni%Q%','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12951,'ie','are_you_sure_to_delete_this','An bhfuil t%Q% cinnte %# seo a scriosadh?','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12952,'ie','premium_packages_for_sellers','Pac%�ist%� Pr%#imhe do Dh%�olt%%ir%�','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12953,'ie','product_upload','Uasl%%d%�il T%�irg%�','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12954,'ie','digital_product_upload','Uasl%%d%�il T%�irg%� Digiteacha','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12955,'ie','purchase_package','Pac%�iste Ceannaigh','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12956,'ie','select_payment_type','Roghnaigh Cine%�l %�oca%�ochta','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12957,'ie','payment_type','Cine%�l %�oca%�ochta','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12958,'ie','select_one','Pioc ceann','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12959,'ie','online_payment','%�oca%�ocht ar l%�ne','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12960,'ie','offline_payment','%�oca%�ocht as l%�ne','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12961,'ie','purchase_your_package','Ceannaigh Do Phac%�iste','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12962,'ie','paypal','Paypal','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12963,'ie','stripe','Stripe','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12964,'ie','sslcommerz','sslcommerz','2021-02-09 07:34:04','2021-02-09 07:34:04'),(12965,'ie','confirm','Deimhnigh','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12966,'ie','offline_package_payment','%�oca%�ocht Pac%�iste As L%�ne','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12967,'ie','transaction_id','Aitheantas Idirbheart','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12968,'ie','choose_image','Roghnaigh %�omh%�','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12969,'ie','code','C%%d','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12970,'ie','delivery_status','St%�das Seachadta','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12971,'ie','payment_status','St%�das %�oca%�ochta','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12972,'ie','paid','%�octha','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12973,'ie','order_details','Sonra%� Ordaithe','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12974,'ie','download_invoice','%�osl%%d%�il Sonrasc','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12975,'ie','unpaid','Gan ph%�','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12976,'ie','order_placed','Ord%Q% curtha','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12977,'ie','confirmed','Deimhnithe','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12978,'ie','on_delivery','Ar sheachadadh','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12979,'ie','delivered','Seachadadh','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12980,'ie','order_summary','Achoimre ar an Ord%Q%','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12981,'ie','order_code','C%%d Ordaithe','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12982,'ie','customer','Custaim%#ir','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12983,'ie','total_order_amount','M%#id ioml%�n an ordaithe','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12984,'ie','shipping_metdod','Metdod loingseoireachta','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12985,'ie','flat_shipping_rate','R%�ta loingseoireachta comhr%#idh','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12986,'ie','payment_metdod','Metdod %�oca%�ochta','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12987,'ie','variation','Athr%Q%','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12988,'ie','delivery_type','Cine%�l Seachadta','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12989,'ie','home_delivery','Seachadadh Baile','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12990,'ie','order_ammount','Ord%Q% M%#id','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12991,'ie','subtotal','Fo-ioml%�n','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12992,'ie','shipping','%� sheoladh','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12993,'ie','coupon_discount','Lascaine C%Q%p%%n','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12994,'ie','na','N / A','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12995,'ie','in_stock','I stoc','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12996,'ie','buy_now','Ceannaigh Anois','2021-02-09 07:34:04','2021-09-20 07:29:46'),(12997,'ie','item_added_to_your_cart','M%�r curtha le do cart!','2021-02-09 07:34:05','2021-09-20 07:29:46'),(12998,'ie','proceed_to_checkout','Dul ar aghaidh chun Seice%�il','2021-02-09 07:34:05','2021-09-20 07:29:46'),(12999,'ie','cart_items','M%�reanna Cart','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13000,'ie','1_my_cart','1. Mo Chairt','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13001,'ie','view_cart','F%#ach ar chairt','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13002,'ie','2_shipping_info','2. Eolas loingseoireachta','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13003,'ie','checkout','Seice%�il','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13004,'ie','3_delivery_info','3. Eolas seachadta','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13005,'ie','4_payment','4. %�oca%�ocht','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13006,'ie','5_confirmation','5. Daingni%Q%','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13007,'ie','remove','Bain','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13008,'ie','return_to_shop','Fill ar ais ar an siopa','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13009,'ie','continue_to_shipping','Lean ar aghaidh le Loingseoireacht','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13010,'ie','or','N%%','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13011,'ie','guest_checkout','Seice%�il Aoi','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13012,'ie','continue_to_delivery_info','Lean ar aghaidh le Faisn%#is Seachadta','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13013,'ie','postal_code','C%%d Poist','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13014,'ie','choose_delivery_type','Roghnaigh Cine%�l Seachadta','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13015,'ie','local_pickup','Piocadh %�iti%Q%il','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13016,'ie','select_your_nearest_pickup_point','Roghnaigh an pointe pioctha is gaire duit','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13017,'ie','continue_to_payment','Lean ar aghaidh leis an %�oca%�ocht','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13018,'ie','select_a_payment_option','Roghnaigh rogha %�oca%�ochta','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13019,'ie','razorpay','Razorpay','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13020,'ie','paystack','St%�c P%�','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13021,'ie','voguepay','VoguePay','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13022,'ie','payhere','payhere','2021-02-09 07:34:05','2021-02-09 07:34:05'),(13023,'ie','ngenius','ngenius','2021-02-09 07:34:05','2021-02-09 07:34:05'),(13024,'ie','paytm','Paytm','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13025,'ie','cash_on_delivery','%�oc ar sheachadadh','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13026,'ie','your_wallet_balance_','Iarmh%#id do spar%�n:','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13027,'ie','insufficient_balance','Cothroma%�ocht neamhleor','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13028,'ie','i_agree_to_the','Aonta%�m leis an','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13029,'ie','complete_order','Ord%Q% Comhl%�naithe','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13030,'ie','summary','Achoimre','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13031,'ie','items','M%�reanna','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13032,'ie','total_club_point','Pointe Ioml%�n an Chlub','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13033,'ie','total_shipping','Loingseoireacht Ioml%�n','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13034,'ie','have_coupon_code_enter_here','An bhfuil c%%d c%Q%p%%n agat? Iontr%�il anseo','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13035,'ie','apply','Cuir iarratas isteach','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13036,'ie','you_need_to_agree_with_our_policies','Caithfidh t%Q% aont%Q% len%�r bpolasaithe','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13037,'ie','forgot_password','Dearmad ar pasfhocal','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13038,'ie','seo_setting','Su%�omh SEO','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13039,'ie','system_update','Nuashonr%Q% C%%rais','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13040,'ie','add_new_payment_method','Cuir Modh %�oca%�ochta Nua leis','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13041,'ie','manual_payment_method','Modh %�oca%�ochta L%�imhe','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13042,'ie','heading','Ceannteideal','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13043,'ie','logo','L%%g%%','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13044,'ie','manual_payment_information','Faisn%#is %�oca%�ochta L%�imhe','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13045,'ie','type','Cine%�l','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13046,'ie','custom_payment','%�oca%�ocht Chustaim','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13047,'ie','check_payment','Seice%�il %�oca%�ocht','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13048,'ie','checkout_thumbnail','Mionsamhail Seice%�il','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13049,'ie','payment_instruction','Treoir %�oca%�ochta','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13050,'ie','bank_information','Faisn%#is Bainc','2021-02-09 07:34:05','2021-09-20 07:29:46'),(13051,'ie','select_file','Roghnaigh Comhad','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13052,'ie','upload_new','Uasl%%d%�il Nua','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13053,'ie','sort_by_newest','S%%rt%�il de r%#ir is nua','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13054,'ie','sort_by_oldest','S%%rt%�il de r%#ir an duine is sine','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13055,'ie','sort_by_smallest','S%%rt%�il de r%#ir an m%#id is l%Q%','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13056,'ie','sort_by_largest','S%%rt%�il de r%#ir is m%%','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13057,'ie','selected_only','Roghnaithe Amh%�in','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13058,'ie','no_files_found','N%�or aims%�odh aon chomhaid','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13059,'ie','0_file_selected','0 Comhad roghnaithe','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13060,'ie','clear','Glan','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13061,'ie','prev','Roimhe seo','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13062,'ie','next','Ar Aghaidh','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13063,'ie','add_files','Cuir Comhaid leis','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13064,'ie','method_has_been_inserted_successfully','Cuireadh an modh isteach go rath%Q%il','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13065,'ie','order_date','D%�ta Ordaithe','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13066,'ie','bill_to','Bille','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13067,'ie','sub_total','Fo-Ioml%�n','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13068,'ie','total_tax','C%�in Ioml%�n','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13069,'ie','grand_total','Ioml%�n mh%%r','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13070,'ie','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','Cuireadh d���ord%Q% go rath%Q%il. Cuir isteach faisn%#is %�oca%�ochta %% stair an cheannaigh le do thoil','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13071,'ie','thank_you_for_your_order','Go raibh maith agat as d\'Ord%Q%!','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13072,'ie','order_code','C%%d Ordaithe:','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13073,'ie','a_copy_or_your_order_summary_has_been_sent_to','T%� c%%ip n%% achoimre d���ord%Q% seolta chuig','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13074,'ie','make_payment','D%#an %�oca%�ocht','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13075,'ie','payment_screenshot','Sc%�ile%�n %�oca%�ochta','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13076,'ie','paypal_credential','Dinti%Q%r Paypal','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13077,'ie','paypal_client_id','Aitheantas Cliant Paypal','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13078,'ie','paypal_client_secret','R%Q%nda Cliant Paypal','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13079,'ie','paypal_sandbox_mode','M%%d Bosca Gaineamh Paypal','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13080,'ie','sslcommerz_credential','Dinti%Q%r Sslcommerz','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13081,'ie','sslcz_store_id','Sslcz Store Id','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13082,'ie','sslcz_store_password','Pasfhocal st%%r Sslcz','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13083,'ie','sslcommerz_sandbox_mode','M%%d Bosca Gaineamh Sslcommerz','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13084,'ie','stripe_credential','Dinti%Q%r Stripe','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13085,'ie','stripe_key','EOCHAIR STRIPE','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13086,'ie','stripe_secret','R%�NA%� STRIPE','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13087,'ie','razorpay_credential','Dinti%Q%r RazorPay','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13088,'ie','razor_key','EOCHAIR RAZOR','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13089,'ie','razor_secret','R%�NA%� RAZOR','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13090,'ie','instamojo_credential','Dinti%Q%r Instamojo','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13091,'ie','api_key','EOCHAIR API','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13092,'ie','im_api_key','EOCHAIR IM API','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13093,'ie','auth_token','BREITHI%�NAS TOKEN','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13094,'ie','im_auth_token','IM AUTH TOKEN','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13095,'ie','instamojo_sandbox_mode','M%%d Bosca Gaineamh Instamojo','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13096,'ie','paystack_credential','Dinti%Q%r PayStack','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13097,'ie','public_key','EOCHAIR PHOIBL%�','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13098,'ie','secret_key','EOCHAIR-R%�NA%�','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13099,'ie','merchant_email','EMAIL MERCHANT','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13100,'ie','voguepay_credential','Dinti%Q%r VoguePay','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13101,'ie','merchant_id','ID MERCHANT','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13102,'ie','sandbox_mode','M%%d Bosca Gaineamh','2021-02-09 07:34:06','2021-09-20 07:29:46'),(13103,'ie','payhere_credential','Dinti%Q%r Payhere','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13104,'ie','payhere_merchant_id','PAYHERE MERCHANT ID','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13105,'ie','payhere_secret','R%�NA%� %�MAT','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13106,'ie','payhere_currency','CURRENCY PAYHERE','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13107,'ie','payhere_sandbox_mode','M%%d Bosca Gaineamh Payhere','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13108,'ie','ngenius_credential','Dinti%Q%r Ngenius','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13109,'ie','ngenius_outlet_id','ID NGENIUS OUTLET','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13110,'ie','ngenius_api_key','EOCHAIR API NGENIUS','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13111,'ie','ngenius_currency','CURRENCY NGENIUS','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13112,'ie','mpesa_credential','Dinti%Q%r Mpesa','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13113,'ie','mpesa_consumer_key','EOCHAIR TOMHALT%�IR MPESA','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13114,'ie','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13115,'ie','mpesa_consumer_secret','R%�NA%� TOMHALT%�IR MPESA','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13116,'ie','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13117,'ie','mpesa_short_code','C%�D GORM MPESA','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13118,'ie','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13119,'ie','mpesa_sandbox_activation','GN%�OMHA%�OCHT MPESA SANDBOX','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13120,'ie','flutterwave_credential','Dinti%Q%r Flutterwave','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13121,'ie','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13122,'ie','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13123,'ie','rave_title','RAVE_TITLE','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13124,'ie','stagin_activation','GN%�OMHA%�OCHT STAGIN','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13125,'ie','all_product','Gach T%�irge','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13126,'ie','sort_by','S%%rt%�il de r%#ir','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13127,'ie','rating_high__low','R%�t%�il (Ard> %�seal)','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13128,'ie','rating_low__high','R%�t%�il (%�seal> Ard)','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13129,'ie','num_of_sale_high__low','L%�on an D%�olach%�in (Ard> %�seal)','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13130,'ie','num_of_sale_low__high','L%�on an D%�olach%�in (%�seal> Ard)','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13131,'ie','base_price_high__low','Bunphraghas (Ard> %�seal)','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13132,'ie','base_price_low__high','Bunphraghas (%�seal> Ard)','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13133,'ie','type__enter','Cine%�l & Iontr%�il','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13134,'ie','added_by','Arna chur leis','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13135,'ie','num_of_sale','L%�on D%�ola','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13136,'ie','total_stock','Stoc Ioml%�n','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13137,'ie','todays_deal','D%#ile%�il an Lae Inniu','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13138,'ie','rating','R%�t%�il','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13139,'ie','times','uaireanta','2021-02-09 07:34:07','2021-02-09 07:34:07'),(13140,'ie','add_nerw_product','Cuir T%�irge Nerw leis','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13141,'ie','product_information','Faisn%#is faoi Th%�irg%�','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13142,'ie','unit','Aonad','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13143,'ie','unit_eg_kg_pc_etc','Aonad (m.sh. KG, r%�omhaire srl)','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13144,'ie','minimum_qty','Qty %�osta','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13145,'ie','tags','Clibeanna','2021-02-09 07:34:07','2021-09-20 07:29: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 07:34:07','2021-09-20 07:29:46'),(13147,'ie','barcode','Barrach%%d','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13148,'ie','refundable','In-ais%�octha','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13149,'ie','product_images','%�omh%�nna T%�irg%�','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13150,'ie','gallery_images','%�omh%�nna Gaileara%�','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13151,'ie','todays_deal_updated_successfully','Nuashonra%�odh D%#ile%�il an lae inniu go rath%Q%il','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13152,'ie','published_products_updated_successfully','Nuashonra%�odh t%�irg%� foilsithe go rath%Q%il','2021-02-09 07:34:07','2021-09-20 07:29:46'),(13153,'ie','thumbnail_image','%�omh%� Mionsamhail','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13154,'ie','featured_products_updated_successfully','Nuashonra%�odh t%�irg%� m%%r le r%� go rath%Q%il','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13155,'ie','product_videos','F%�se%�in T%�irg%�','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13156,'ie','video_provider','Sol%�thra%� F%�se','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13157,'ie','youtube','Youtube','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13158,'ie','dailymotion','Dailymotion','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13159,'ie','vimeo','Vimeo','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13160,'ie','video_link','Nasc F%�se','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13161,'ie','product_variation','Athr%Q% T%�irg%�','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13162,'ie','colors','Dathanna','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13163,'ie','attributes','Tr%#ithe','2021-02-09 07:34:08','2021-09-20 07:29:46'),(13164,'ie','choose_attributes','Roghnaigh Tr%#ithe','2021-02-09 07:34:08','2021-09-20 07:29: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 07:34:08','2021-09-20 07:29:47'),(13166,'ie','product_price__stock','Praghas t%�irge + stoc','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13167,'ie','unit_price','Praghas aonaid','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13168,'ie','purchase_price','Praghas ceannaigh','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13169,'ie','flat','Maol','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13170,'ie','percent','C%#atad%�n','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13171,'ie','discount','Lascaine','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13172,'ie','product_description','Cur s%�os ar an T%�irge','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13173,'ie','product_shipping_cost','Costas Loingseoireachta T%�irg%�','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13174,'ie','free_shipping','Loingeas SAOR IN AISCE','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13175,'ie','flat_rate','R%�ta comhr%#idh','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13176,'ie','shipping_cost','Costas loingseoireachta','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13177,'ie','pdf_specification','Sonra%�ocht PDF','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13178,'ie','seo_meta_tags','Clibeanna Meta Sinsearach','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13179,'ie','meta_title','Teideal Meiteashonra%�','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13180,'ie','meta_image','%�omh%� meta','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13181,'ie','choice_title','Teideal Rogha','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13182,'ie','enter_choice_values','Iontr%�il luachanna rogha','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13183,'ie','all_categories','Gach catag%%ir','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13184,'ie','add_new_category','Cuir catag%%ir Nua leis','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13185,'ie','type_name__enter','Cine%�l ainm & Iontr%�il','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13186,'ie','banner','Meirge','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13187,'ie','commission','Coimisi%Q%n','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13188,'ie','icon','deilbh%�n','2021-02-09 07:34:08','2021-02-09 07:34:08'),(13189,'ie','featured_categories_updated_successfully','Nuashonra%�odh na catag%%ir%� m%%r le r%� go rath%Q%il','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13190,'ie','hot','Te','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13191,'ie','filter_by_payment_status','Scagaire de r%#ir St%�das %�oca%�ochta','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13192,'ie','unpaid','Neamh%�octha','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13193,'ie','filter_by_deliver_status','Scagaire de r%#ir St%�das Seachadta','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13194,'ie','pending','Ar feitheamh','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13195,'ie','type_order_code__hit_enter','Cine%�l Ord%Q% c%%d & bhuail Iontr%�il','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13196,'ie','num_of_products','Num. T%�irg%�','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13197,'ie','walk_in_customer','Custaim%#ir Si%Q%il Isteach','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13198,'ie','qty','QTY','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13199,'ie','without_shipping_charge','Gan Muirear Loingis','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13200,'ie','with_shipping_charge','Le Muirear Loingis','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13201,'ie','pay_with_cash','%�oc le hAirgead Tirim','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13202,'ie','shipping_address','Seoladh Loingseoireacht','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13203,'ie','close','D%Q%n','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13204,'ie','select_country','Roghnaigh t%�r','2021-02-09 07:34:08','2021-09-20 07:29:47'),(13205,'ie','order_confirmation','Daingni%Q% Ordaithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13206,'ie','are_you_sure_to_confirm_this_order','An bhfuil t%Q% cinnte an t-ord%Q% seo a dhearbh%Q%?','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13207,'ie','comfirm_order','Ord%Q% Daingnithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13208,'ie','personal_info','Eolas Pearsanta','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13209,'ie','repeat_password','Athscr%�obh an Pasfhocal','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13210,'ie','shop_name','Ainm Siopa','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13211,'ie','register_your_shop','Cl%�raigh Do Siopa','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13212,'ie','affiliate_informations','Faisn%#is Affiliate','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13213,'ie','affiliate','Cleamhnaithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13214,'ie','user_info','Faisn%#is %�s%�ideora','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13215,'ie','installed_addon','Suite%�ilte Addon','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13216,'ie','available_addon','Addon ar f%�il','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13217,'ie','install_new_addon','Suite%�il Addon Nua','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13218,'ie','version','Leagan','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13219,'ie','activated','Gn%�omhachtaithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13220,'ie','deactivated','D%�ghn%�omhachtaithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13221,'ie','activate_otp','Gn%�omhacht%Q% OTP','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13222,'ie','otp_will_be_used_for','%�s%�idfear OTP','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13223,'ie','settings_updated_successfully','Nuashonra%�odh na socruithe go rath%Q%il','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13224,'ie','product_owner','%�in%#ir T%�irg%�','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13225,'ie','point','Pointe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13226,'ie','set_point_for_product_within_a_range','Pointe Socraithe don T%�irge Laistigh de Raon','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13227,'ie','set_point_for_multiple_products','Pointe Socraithe do th%�irg%� iolracha','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13228,'ie','min_price','Praghas Min','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13229,'ie','max_price','Max Price','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13230,'ie','set_point_for_all_products','Pointe Socraithe do na T%�irg%� go l%#ir','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13231,'ie','set_point_for_','Pointe Socraithe Do.','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13232,'ie','convert_status','St%�das Tiontaigh','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13233,'ie','earned_at','Thuilltear At','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13234,'ie','seller_based_selling_report','Tuarasc%�il D%�ol Bunaithe ar Dh%�olt%%ir%�','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13235,'ie','sort_by_verificarion_status','S%%rt%�il de r%#ir st%�das f%�oraithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13236,'ie','approved','Ceadaithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13237,'ie','non_approved','Neamhcheadaithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13238,'ie','filter','Scagaire','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13239,'ie','seller_name','Ainm an D%�olt%%ra','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13240,'ie','number_of_product_sale','L%�on na nD%�olach%�n T%�irg%�','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13241,'ie','order_amount','M%#id Ordaithe','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13242,'ie','facebook_chat_setting','Socr%Q% Comhr%� Facebook','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13243,'ie','facebook_page_id','Aitheantas Leathanach Facebook','2021-02-09 07:34:09','2021-09-20 07:29: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%Q%ramach le do thoil agus t%Q% ag cumr%Q% comhr%� Facebook. Maidir le cumra%�ocht mh%�cheart n%� bhfaighidh t%Q% deilbh%�n teachtaire ar do shu%�omh deireadh %Q%s%�ideora.','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13245,'ie','login_into_your_facebook_page','Log%�il isteach i do leathanach facebook','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13246,'ie','find_the_about_option_of_your_facebook_page','Faigh an rogha About de do leathanach facebook','2021-02-09 07:34:09','2021-09-20 07:29: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 07:34:09','2021-09-20 07:29: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 07:34:09','2021-09-20 07:29:47'),(13249,'ie','scroll_down_that_page_and_you_will_get_white_listed_domain','Scrollaigh s%�os an leathanach sin agus gheobhaidh t%Q% \\ \"fearann ������liostaithe b%�n \\\"','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13250,'ie','set_your_website_domain_name','Socraigh ainm fearainn do shu%�omh Gr%#as%�in','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13251,'ie','google_recaptcha_setting','Socr%Q% reCAPTCHA Google','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13252,'ie','site_key','Su%�omh EOCHAIR','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13253,'ie','select_shipping_method','Roghnaigh Modh Loingseoireachta','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13254,'ie','product_wise_shipping_cost','Costas Loingseoireachta Wise T%�irg%�','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13255,'ie','flat_rate_shipping_cost','Costas Loingseoireachta R%�ta Comhr%#idh','2021-02-09 07:34:09','2021-09-20 07:29:47'),(13256,'ie','seller_wise_flat_shipping_cost','Costas Loingseoireachta Cliste Maith','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13257,'ie','note','N%%ta','2021-02-09 07:34:10','2021-09-20 07:29: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 07:34:10','2021-09-20 07:29: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 07:34:10','2021-09-20 07:29: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%Q% 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 07:34:10','2021-09-20 07:29:47'),(13261,'ie','flat_rate_cost','Costas R%�ta Comhr%#idh','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13262,'ie','shipping_cost_for_admin_products','Costas Loingseoireachta do Th%�irg%� Riarach%�in','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13263,'ie','countries','T%�ortha','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13264,'ie','showhide','Taispe%�in / Folaigh','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13265,'ie','country_status_updated_successfully','Nuashonra%�odh st%�das t%�re go rath%Q%il','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13266,'ie','all_subcategories','Gach Fochatag%%ir','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13267,'ie','add_new_subcategory','Cuir Fochatag%%ir Nua leis','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13268,'ie','subcategories','Fo-chatag%%ir%�','2021-02-09 07:34:10','2021-09-20 07:29:47'),(13269,'ie','sub_category_information','Faisn%#is faoin bhFochatag%%ir','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13270,'ie','slug','Seilide','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13271,'ie','all_sub_subcategories','Gach Fo-chatag%%ir','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13272,'ie','add_new_sub_subcategory','Cuir Fochatag%%ir Nua leis','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13273,'ie','subsubcategories','Fo-fho-chatag%%ir%�','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13274,'ie','make_this_default','D%#an an R%#amhshocr%Q% seo','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13275,'ie','shops','Siopa%�','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13276,'ie','women_clothing__fashion','%�ada%� & Faisean na mBan','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13277,'ie','cellphones__tabs','F%%in ph%%ca & Cluais%�n%�','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13278,'ie','welcome_to','F%�ilte go','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13279,'ie','create_a_new_account','Cruthaigh Cuntas Nua','2021-02-09 07:35:00','2021-09-20 07:29:47'),(13280,'ie','full_name','Ainm ioml%�n','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13281,'ie','password','pasfhocal','2021-02-09 07:35:01','2021-02-09 07:35:01'),(13282,'ie','confrim_password','Pasfhocal Confrim','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13283,'ie','i_agree_with_the','Aonta%�m leis an','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13284,'ie','terms_and_conditions','T%#arma%� agus Coinn%�ollacha','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13285,'ie','register','Cl%�raigh','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13286,'ie','already_have_an_account','Cheana f%#in t%� cuntas agat','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13287,'ie','sign_up_with','Cl%�raigh le','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13288,'ie','i_agree_with_the_terms_and_conditions','Aonta%�m leis na T%#arma%� agus Coinn%�ollacha','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13289,'ie','all_role','R%%l Uile','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13290,'ie','add_new_role','Cuir R%%l Nua leis','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13291,'ie','roles','R%%il','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13292,'ie','add_new_staffs','Cuir Foirne Nua leis','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13293,'ie','role','R%%l','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13294,'ie','frontend_website_name','Ainm Su%�omh Gr%#as%�in Frontend','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13295,'ie','website_name','Ainm Su%�omh Gr%#as%�in','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13296,'ie','site_motto','Mana an tSu%�mh','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13297,'ie','best_ecommerce_website','Su%�omh Gr%#as%�in R%�omhthr%�cht%�la is Fearr','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13298,'ie','site_icon','Deilbh%�n L%�ithre%�in','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13299,'ie','website_favicon_32x32_png','Fabhar an l%�ithre%�in ghr%#as%�in. 32x32 .png','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13300,'ie','website_base_color','Dath Bonn an L%�ithre%�in Gr%#as%�in','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13301,'ie','hex_color_code','C%%d Dath Heics','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13302,'ie','website_base_hover_color','Su%�omh Gr%#as%�in Base Hover Colour','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13303,'ie','update','Nuashonr%Q%','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13304,'ie','global_seo','Domhanda Seo','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13305,'ie','meta_description','Tuairisc meta','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13306,'ie','keywords','Keywords','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13307,'ie','separate_with_coma','Ar leithligh le Bheirnic%#','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13308,'ie','website_pages','Leathanaigh Su%�omh Gr%#as%�in','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13309,'ie','all_pages','Gach Leathanach','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13310,'ie','add_new_page','Cuir Leathanach Nua leis','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13311,'ie','url','URL','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13312,'ie','actions','Caingne','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13313,'ie','edit_page_information','Cuir Eolas Leathanach in Eagar','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13314,'ie','page_content','%�bhar Leathanach','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13315,'ie','title','Teideal','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13316,'ie','link','Nasc','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13317,'ie','use_character_number_hypen_only','Bain %Q%s%�id as carachtar, uimhir, hypen amh%�in','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13318,'ie','add_content','Cuir %�bhar leis','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13319,'ie','seo_fields','Seo R%#ims%�','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13320,'ie','update_page','Leathanach Nuashonraithe','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13321,'ie','default_language','Teanga R%#amhshocraithe','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13322,'ie','add_new_language','Cuir Teanga Nua leis','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13323,'ie','rtl','RTL','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13324,'ie','translation','Aistri%Q%ch%�n','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13325,'ie','language_information','Eolas Teanga','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13326,'ie','save_page','S%�bh%�il Leathanach','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13327,'ie','home_page_settings','Socruithe Leathanach Baile','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13328,'ie','home_slider','Sleamhn%�n Baile','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13329,'ie','photos__links','Grianghraif & Naisc','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13330,'ie','add_new','Cuir Nua leis','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13331,'ie','home_categories','Catag%%ir%� Baile','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13332,'ie','home_banner_1_max_3','Meirge Baile 1 (Uasmh%#id 3)','2021-02-09 07:35:01','2021-09-20 07:29:47'),(13333,'ie','banner__links','Meirge & Naisc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13334,'ie','home_banner_2_max_3','Meirge Baile 2 (Uasmh%#id 3)','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13335,'ie','top_10','Na 10 barr','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13336,'ie','top_categories_max_10','Na Catag%%ir%� is Fearr (Uasmh%#id 10)','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13337,'ie','top_brands_max_10','Branda%� Barr (Uasmh%#id 10)','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13338,'ie','system_name','Ainm an Ch%%rais','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13339,'ie','system_logo__white','L%%g%% an Ch%%rais - B%�n','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13340,'ie','choose_files','Roghnaigh Comhaid','2021-02-09 07:35:02','2021-09-20 07:29: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 07:35:02','2021-09-20 07:29:47'),(13342,'ie','system_logo__black','L%%g%% an Ch%%rais - Dubh','2021-02-09 07:35:02','2021-09-20 07:29: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 07:35:02','2021-09-20 07:29:47'),(13344,'ie','system_timezone','Crios Ama an Ch%%rais','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13345,'ie','admin_login_page_background','C%Q%lra leathanach log%�la isteach riarach%�in','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13346,'ie','website_header','Ceannt%�sc Su%�omh Gr%#as%�in','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13347,'ie','header_setting','Socr%Q% Ceannt%�sca','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13348,'ie','header_logo','L%%g%% Ceannt%�sc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13349,'ie','show_language_switcher','Taispe%�in Switcher Teanga?','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13350,'ie','show_currency_switcher','Taispe%�in Switcher Airgeadra?','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13351,'ie','enable_stikcy_header','Cumasaigh ceannt%�sc stikcy?','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13352,'ie','website_footer','Bunt%�sc Su%�omh Gr%#as%�in','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13353,'ie','footer_widget','Giuirl%#id Bunt%�sc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13354,'ie','about_widget','Maidir le Giuirl%#id','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13355,'ie','footer_logo','L%%g%% Bunt%�sc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13356,'ie','about_description','Maidir leis an gcur s%�os','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13357,'ie','contact_info_widget','D%#an teagmh%�il le Giuirl%#id Faisn%#ise','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13358,'ie','footer_contact_address','Seoladh teagmh%�la bunt%�sc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13359,'ie','footer_contact_phone','F%%n teagmh%�la bunt%�sc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13360,'ie','footer_contact_email','R-phost teagmh%�la bunt%�sc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13361,'ie','link_widget_one','Nasc Giuirl%#id a hAon','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13362,'ie','links','Naisc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13363,'ie','footer_bottom','Bun Bunt%�sc','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13364,'ie','copyright_widget_','Giuirl%#id C%%ipchirt','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13365,'ie','copyright_text','T%#acs C%%ipchirt','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13366,'ie','social_link_widget_','Giuirl%#id Nasc S%%isialta','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13367,'ie','show_social_links','Taispe%�in Naisc Sh%%isialta?','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13368,'ie','social_links','Naisc Sh%%isialta','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13369,'ie','payment_methods_widget_','Giuirl%#id Modhanna %�oca%�ochta','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13370,'ie','rtl_status_updated_successfully','Nuashonra%�odh st%�das RTL go rath%Q%il','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13371,'ie','language_changed_to_','Athra%�odh an teanga go','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13372,'ie','inhouse_product_sale_report','Tuarasc%�il ar dh%�ol T%�irg%� Int%�','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13373,'ie','sort_by_category','S%%rt%�il de r%#ir Catag%%ire','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13374,'ie','product_wise_stock_report','Tuarasc%�il stoic ciallmhar t%�irge','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13375,'ie','currency_changed_to_','Athra%�odh airgeadra go','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13376,'ie','avatar','Avatar','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13377,'ie','copy','C%%ip','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13378,'ie','variant','Leagan','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13379,'ie','variant_price','Praghas Athraitheach','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13380,'ie','sku','SKU','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13381,'ie','key','Eochair','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13382,'ie','value','Luach','2021-02-09 07:35:02','2021-09-20 07:29:47'),(13383,'ie','copy_translations','C%%ipe%�il Aistri%Q%ch%�in','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13384,'ie','all_pickup_points','Gach Pointe Pioc suas','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13385,'ie','add_new_pickup_point','Cuir Pointe Pioc Nua leis','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13386,'ie','manager','Bainisteoir','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13387,'ie','location','Su%�omh','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13388,'ie','pickup_station_contact','Teagmh%�la%� St%�isi%Q%in Pickup','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13389,'ie','open','Oscail','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13390,'ie','pos_activation_for_seller','Gn%�omhacht%Q% POS don D%�olt%%ir','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13391,'ie','order_completed_successfully','Ord%Q% Cr%�ochnaithe go rath%Q%il.','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13392,'ie','text_input','Ionchur T%#acs','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13393,'ie','select','Roghnaigh','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13394,'ie','multiple_select','Roghnaigh Il','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13395,'ie','radio','Raidi%%','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13396,'ie','file','Comhad','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13397,'ie','email_address','Seoladh r%�omhphoist','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13398,'ie','verification_info','Eolas F%�oraithe','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13399,'ie','approval','Cead%Q%','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13400,'ie','due_amount','M%#id Dlite','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13401,'ie','show','Taispe%�in','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13402,'ie','pay_now','%�oc anois','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13403,'ie','affiliate_user_verification','F%�or%Q% %�s%�ideora Affiliate','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13404,'ie','reject','Di%Q%ltaigh','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13405,'ie','accept','Glac','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13406,'ie','beauty_health__hair','%�illeacht, Sl%�inte & Gruaige','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13407,'ie','comparison','Compar%�id','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13408,'ie','reset_compare_list','Athshocraigh Liosta D%#an compar%�id idir','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13409,'ie','your_comparison_list_is_empty','T%� do liosta compar%�ide folamh','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13410,'ie','convert_point_to_wallet','Tiontaigh Pointe go Spar%�n','2021-02-09 07:35:03','2021-09-20 07:29: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%Q% ar dt%Q%s sula n-%Q%s%�ideann t%Q% addon pointe club.','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13412,'ie','create_an_account','Cruthaigh cuntas.','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13413,'ie','use_email_instead','%�s%�id R%�omhphost ina %�it','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13414,'ie','by_signing_up_you_agree_to_our_terms_and_conditions','Nuair a chl%�ra%�onn t%Q% aonta%�onn t%Q% len%�r dt%#arma%� agus coinn%�ollacha.','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13415,'ie','create_account','Cruthaigh Cuntas','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13416,'ie','or_join_with','N%% B%� p%�irteach','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13417,'ie','already_have_an_account','An bhfuil cuntas agat cheana?','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13418,'ie','log_in','Log%�il isteach','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13419,'ie','computer__accessories','R%�omhaire & Gabh%�lais','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13420,'ie','products','T%�irge (%�)','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13421,'ie','in_your_cart','i do cart','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13422,'ie','in_your_wishlist','i do liosta mian','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13423,'ie','you_ordered','d\'ordaigh t%Q%','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13424,'ie','default_shipping_address','Seoladh R%#amhshocraithe Loingseoireachta','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13425,'ie','sports__outdoor','Sp%%irt & lasmuigh','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13426,'ie','copied','C%%ipe%�ladh','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13427,'ie','copy_the_promote_link','C%%ipe%�il an Nasc Chun Cinn','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13428,'ie','write_a_review','Scr%�obh l%#irmheas','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13429,'ie','your_name','Do ainm','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13430,'ie','comment','Tr%�chtaireacht','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13431,'ie','your_review','Do l%#irmheas','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13432,'ie','submit_review','Cuir isteach athbhreithni%Q%','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13433,'ie','claire_willis','Claire Willis','2021-02-09 07:35:03','2021-09-20 07:29:47'),(13434,'ie','germaine_greene','Germaine Greene','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13435,'ie','product_file','Comhad T%�irg%�','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13436,'ie','choose_file','Roghnaigh comhad','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13437,'ie','type_to_add_a_tag','Cl%%scr%�obh chun clib a chur leis','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13438,'ie','images','%�omh%�nna','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13439,'ie','main_images','Pr%�omh%�omh%�nna','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13440,'ie','meta_tags','Clibeanna meta','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13441,'ie','digital_product_has_been_inserted_successfully','Cuireadh T%�irge Digiteach isteach go rath%Q%il','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13442,'ie','edit_digital_product','Cuir T%�irge Digiteach in Eagar','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13443,'ie','select_an_option','Roghnaigh rogha','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13444,'ie','tax','c%�in','2021-02-09 07:35:04','2021-02-09 07:35:04'),(13445,'ie','any_question_about_this_product','Aon cheist faoin t%�irge seo?','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13446,'ie','sign_in','S%�nigh isteach','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13447,'ie','login_with_google','Log%�il isteach le Google','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13448,'ie','login_with_facebook','Log%�il isteach le Facebook','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13449,'ie','login_with_twitter','Log%�il isteach le Twitter','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13450,'ie','click_to_show_phone_number','Clice%�il chun uimhir theileaf%%in a thaispe%�int','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13451,'ie','other_ads_of','F%%gra%� Eile de','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13452,'ie','store_home','Baile St%%r','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13453,'ie','top_selling','D%�ol Barr','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13454,'ie','shop_settings','Socruithe Siopa','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13455,'ie','visit_shop','Tabhair cuairt ar Siopa','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13456,'ie','pickup_points','Point%� Pioc%�la','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13457,'ie','select_pickup_point','Roghnaigh Pickup Point','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13458,'ie','slider_settings','Socruithe Sleamhn%�in','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13459,'ie','social_media_link','Nasc na Me%�n S%%isialta','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13460,'ie','facebook','Facebook','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13461,'ie','twitter','Twitter','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13462,'ie','google','Google','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13463,'ie','new_arrival_products','T%�irg%� Teacht Nua','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13464,'ie','check_your_order_status','Seice%�il St%�das Do Ordaithe','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13465,'ie','shipping_method','Modh Seachadta','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13466,'ie','shipped_by','Seolta Faoi','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13467,'ie','image','%�omha','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13468,'ie','sub_sub_category','Fo-Chatag%%ir','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13469,'ie','inhouse_products','T%�irg%� Int%�','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13470,'ie','forgot_password','Dearmad ar pasfhocal?','2021-02-09 07:35:04','2021-09-20 07:29: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 07:35:04','2021-09-20 07:29:47'),(13472,'ie','email_or_phone','R%�omhphost n%% F%%n','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13473,'ie','send_password_reset_link','Seol Nasc Athshocraigh Pasfhocal','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13474,'ie','back_to_login','Ar ais ar Log%�il Isteach','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13475,'ie','index','inn%#acs','2021-02-09 07:35:04','2021-02-09 07:35:04'),(13476,'ie','download_your_product','%�osl%%d%�il Do Th%�irge','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13477,'ie','option','Rogha','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13478,'ie','applied_refund_request','Iarratas ar Ais%�oca%�ocht Fheidhmeach','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13479,'ie','item_has_been_renoved_from_wishlist','T%� an mh%�r curtha ar ais %%n liosta mian','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13480,'ie','bulk_products_upload','Uasl%%d%�il T%�irg%� Bulc','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13481,'ie','upload_csv','Uasl%%d%�il CSV','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13482,'ie','create_a_ticket','Cruthaigh Tic%#ad','2021-02-09 07:35:04','2021-09-20 07:29:47'),(13483,'ie','tickets','Tic%#id','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13484,'ie','ticket_id','Aitheantas an tic%#id','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13485,'ie','sending_date','D%�ta Seolta','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13486,'ie','subject','%�bhar','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13487,'ie','view_details','F%#ach Sonra%�','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13488,'ie','provide_a_detailed_description','Cuir s%�os mionsonraithe ar f%�il','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13489,'ie','type_your_reply','Cl%%scr%�obh do fhreagra','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13490,'ie','send_ticket','Seol Tic%#ad','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13491,'ie','load_more','Luchtaigh Tuilleadh','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13492,'ie','jewelry__watches','Seodra & Uairead%%ir%�','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13493,'ie','filters','Scagair%�','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13494,'ie','contact_address','Seoladh teagmh%�la','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13495,'ie','contact_phone','F%%n teagmh%�la','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13496,'ie','contact_email','D%#an teagmh%�il le r%�omhphost','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13497,'ie','filter_by','Scagaire le','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13498,'ie','condition','Coinn%�oll','2021-02-09 07:35:05','2021-09-20 07:29:47'),(13499,'ie','all_type','Gach Cine%�l','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13500,'ie','pay_with_wallet','%�oc le spar%�n','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13501,'ie','select_variation','Roghnaigh %#ags%Q%lacht','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13502,'ie','no_product_added','Gan T%�irge curtha leis','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13503,'ie','status_has_been_updated_successfully','Nuashonra%�odh an st%�das go rath%Q%il','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13504,'ie','all_seller_packages','Gach Pac%�iste D%�olt%%ra','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13505,'ie','add_new_package','Cuir Pac%�iste Nua leis','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13506,'ie','package_logo','L%%g%% Pac%�iste','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13507,'ie','days','laethanta','2021-02-09 07:35:05','2021-02-09 07:35:05'),(13508,'ie','create_new_seller_package','Cruthaigh Pac%�iste D%�olt%%ra Nua','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13509,'ie','package_name','Ainm an Phac%�iste','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13510,'ie','duration','Fad','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13511,'ie','validity_in_number_of_days','Bail%�ocht i l%�on na laethanta','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13512,'ie','update_package_information','Faisn%#is faoin bPac%�iste a Nuashonr%Q%','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13513,'ie','package_has_been_inserted_successfully','Cuireadh an pac%�iste isteach go rath%Q%il','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13514,'ie','refund_request','Iarratas ar Ais%�oca%�ocht','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13515,'ie','reason','C%Q%is','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13516,'ie','label','Lip%#ad','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13517,'ie','select_label','Roghnaigh Lip%#ad','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13518,'ie','multiple_select_label','Lip%#ad Il-Roghnaigh','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13519,'ie','radio_label','Lip%#ad Raidi%%','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13520,'ie','pickup_point_orders','Orduithe Pointe Pioc%�la','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13521,'ie','view','Amharc','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13522,'ie','order_','Ord%Q% #','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13523,'ie','order_status','St%�das Ordaithe','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13524,'ie','total_amount','Ioml%�n','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13525,'ie','total','IOML%�N','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13526,'ie','delivery_status_has_been_updated','Nuashonra%�odh an st%�das seachadta','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13527,'ie','payment_status_has_been_updated','Nuashonra%�odh st%�das %�oca%�ochta','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13528,'ie','invoice','INFHEIST%�OCHTA','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13529,'ie','set_refund_time','Am Ais%�oca%�ochta Socraithe','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13530,'ie','set_time_for_sending_refund_request','Am Socraithe chun Iarratas ar Ais%�oca%�ocht a sheoladh','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13531,'ie','set_refund_sticker','Gream%�n Ais%�oca%�ochta Socraithe','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13532,'ie','sticker','Gream%�n','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13533,'ie','refund_request_all','Iarraidh ar Ais%�oca%�ocht Uile','2021-02-09 07:35:05','2021-09-20 07:29:48'),(13534,'ie','order_id','Ord%Q% Id','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13535,'ie','seller_approval','Faomhadh an D%�olt%%ra','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13536,'ie','admin_approval','Faomhadh Riarach%�in','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13537,'ie','refund_status','St%�das Ais%�oca%�ochta','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13538,'ie','no_refund','Gan Ais%�oca%�ocht ar bith','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13539,'ie','status_updated_successfully','St%�das nuashonraithe go rath%Q%il','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13540,'ie','user_search_report','Tuarasc%�il Cuardaigh %�s%�ideora','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13541,'ie','search_by','Cuardaigh Faoi','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13542,'ie','number_searches','Cuardach uimhreacha','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13543,'ie','sender','Seolt%%ir','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13544,'ie','receiver','Glacad%%ir','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13545,'ie','verification_form_updated_successfully','Nuashonra%�odh an fhoirm f%�oraithe go rath%Q%il','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13546,'ie','invalid_email_or_password','R-phost n%% pasfhocal neamhbhail%�','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13547,'ie','all_coupons','Gach C%Q%p%%n','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13548,'ie','add_new_coupon','Cuir C%Q%p%%n Nua leis','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13549,'ie','coupon_information','Eolas C%Q%p%%n','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13550,'ie','start_date','D%�ta tosaigh','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13551,'ie','end_date','D%�ta deiridh','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13552,'ie','product_base','Bonn T%�irg%�','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13553,'ie','send_newsletter','Seol Nuachtlitir','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13554,'ie','mobile_users','%�s%�ideoir%� Soghluaiste','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13555,'ie','sms_subject','%�bhar SMS','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13556,'ie','sms_content','%�bhar SMS','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13557,'ie','all_flash_delas','Gach Flash Delas','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13558,'ie','create_new_flash_dela','Cruthaigh Dela Flash Nua','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13559,'ie','page_link','Nasc Leathanach','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13560,'ie','flash_deal_information','Eolas faoi Bheart Flash','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13561,'ie','background_color','Dath C%Q%lra','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13562,'ie','0000ff','# 0000ff','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13563,'ie','text_color','Dath an T%#acs','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13564,'ie','white','B%�n','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13565,'ie','dark','Dorcha','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13566,'ie','choose_products','Roghnaigh T%�irg%�','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13567,'ie','discounts','Lascain%�','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13568,'ie','discount_type','Cine%�l Lascaine','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13569,'ie','twillo_credential','Dinti%Q%r Twillo','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13570,'ie','twilio_sid','TWILIO SID','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13571,'ie','twilio_auth_token','TWILIO AUTH TOKEN','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13572,'ie','twilio_verify_sid','SID F%�OR TWILIO','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13573,'ie','valid_twillo_number','UIMHIR D%�OL D%�OL','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13574,'ie','nexmo_credential','Dinti%Q%r Nexmo','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13575,'ie','nexmo_key','EOCHAIR NEXMO','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13576,'ie','nexmo_secret','R%�NA%� NEXMO','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13577,'ie','ssl_wireless_credential','Dinti%Q%r Gan Sreang SSL','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13578,'ie','ssl_sms_api_token','SSL SMS API TOKEN','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13579,'ie','ssl_sms_sid','SSL SMS SID','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13580,'ie','ssl_sms_url','URL SMS SSL','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13581,'ie','fast2sms_credential','Dinti%Q%r Fast2SMS','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13582,'ie','auth_key','Dearbh-EOCHAIR','2021-02-09 07:35:06','2021-09-20 07:29:48'),(13583,'ie','route','B%�THAR','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13584,'ie','promotional_use','%�s%�id Chur Chun Cinn','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13585,'ie','transactional_use','%�s%�id Idirbheartach','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13586,'ie','sender_id','ID SENDER','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13587,'ie','nexmo_otp','Nexmo OTP','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13588,'ie','twillo_otp','Twillo OTP','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13589,'ie','ssl_wireless_otp','OTP Gan Sreang SSL','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13590,'ie','fast2sms_otp','Fast2SMS OTP','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13591,'ie','order_placement','Socr%Q%ch%�n Ordaithe','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13592,'ie','delivery_status_changing_time','St%�das Seachadta Am Athraithe','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13593,'ie','paid_status_changing_time','St%�das %�octha Am Athraithe','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13594,'ie','send_bulk_sms','Seol Bulc SMS','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13595,'ie','all_subscribers','Gach Suibscr%�obha%�','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13596,'ie','coupon_information_adding','Faisn%#is C%Q%p%%n a Chur Leis','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13597,'ie','coupon_type','Cine%�l C%Q%p%%n','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13598,'ie','for_products','Le haghaidh T%�irg%�','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13599,'ie','for_total_orders','Le haghaidh Orduithe Ioml%�n','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13600,'ie','add_your_product_base_coupon','Cuir Do C%Q%p%%n Bonn T%�irg%� leis','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13601,'ie','coupon_code','C%%d c%Q%p%%n','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13602,'ie','sub_category','Fo-Chatag%%ir','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13603,'ie','add_more','Cuir Tuilleadh leis','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13604,'ie','add_your_cart_base_coupon','Cuir Do C%Q%p%%n Bonn Cart','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13605,'ie','minimum_shopping','Siopad%%ireacht %�osta','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13606,'ie','maximum_discount_amount','Uasmh%#id Lascaine','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13607,'ie','coupon_information_update','Nuashonr%Q% Faisn%#ise C%Q%p%%n','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13608,'ie','please_configure_smtp_setting_to_work_all_email_sending_funtionality','Cumraigh Socr%Q% SMTP le do thoil chun gach spraoi seolta r%�omhphoist a oibri%Q%','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13609,'ie','configure_now','Cumraigh Anois','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13610,'ie','total_published_products','Ioml%�n na dt%�irg%� foilsithe','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13611,'ie','total_sellers_products','T%�irg%� d%�olt%%ir%� ioml%�na','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13612,'ie','total_admin_products','Ioml%�n na dt%�irg%� riarach%�in','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13613,'ie','manage_products','Bainistigh T%�irg%�','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13614,'ie','total_product_category','Catag%%ir ioml%�n an t%�irge','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13615,'ie','create_category','Cruthaigh Catag%%ir','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13616,'ie','total_product_sub_sub_category','Fo-chatag%%ir ioml%�n an t%�irge','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13617,'ie','create_sub_sub_category','Cruthaigh Fo-Chatag%%ir','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13618,'ie','total_product_sub_category','Fo-chatag%%ir ioml%�n an t%�irge','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13619,'ie','create_sub_category','Cruthaigh Fo-Chatag%%ir','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13620,'ie','total_product_brand','Branda ioml%�n an t%�irge','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13621,'ie','create_brand','Cruthaigh Branda','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13622,'ie','total_sellers','D%�olt%%ir%� ioml%�na','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13623,'ie','total_approved_sellers','Ioml%�n na nd%�olt%%ir%� ceadaithe','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13624,'ie','total_pending_sellers','Ioml%�n na nd%�olt%%ir%� at%� ar feitheamh','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13625,'ie','manage_sellers','Bainistigh D%�olt%%ir%�','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13626,'ie','category_wise_product_sale','Catag%%ir d%�olach%�n t%�irge ciallmhar','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13627,'ie','sale','D%�ol','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13628,'ie','category_wise_product_stock','Stoc t%�irge de r%#ir catag%%ir','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13629,'ie','category_name','Ainm Catag%%ir','2021-02-09 07:35:07','2021-09-20 07:29:48'),(13630,'ie','stock','Stoc','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13631,'ie','frontend','Ceann tosaigh','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13632,'ie','home_page','Leathanach baile','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13633,'ie','setting','su%�omh','2021-02-09 07:35:08','2021-02-09 07:35:08'),(13634,'ie','policy_page','Leathanach beartais','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13635,'ie','general','Ginear%�lta','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13636,'ie','click_here','Clice%�il anseo','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13637,'ie','useful_link','Nasc %Q%s%�ideach','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13638,'ie','activation','Gn%�omhacht%Q%','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13639,'ie','smtp','SMTP','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13640,'ie','payment_method','Modh %�oca%�ochta','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13641,'ie','social_media','Na me%�in sh%%isialta','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13642,'ie','business','Gn%%','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13643,'ie','seller_verification','F%�or%Q% d%�olt%%ra','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13644,'ie','form_setting','socr%Q% foirme','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13645,'ie','language','Teanga','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13646,'ie','dashboard','Pain%#al na nIonstraim%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13647,'ie','pos_system','C%%ras POS','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13648,'ie','pos_manager','Bainisteoir POS','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13649,'ie','pos_configuration','Cumra%�ocht POS','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13650,'ie','products','T%�irg%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13651,'ie','add_new_product','Cuir t%�irge nua leis','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13652,'ie','all_products','Gach T%�irg%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13653,'ie','in_house_products','T%�irg%� Int%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13654,'ie','seller_products','T%�irg%� D%�olt%%ra','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13655,'ie','digital_products','T%�irg%� Digiteacha','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13656,'ie','bulk_import','Bulc-Iomp%%rt%�il','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13657,'ie','bulk_export','Bulc Easp%%rt%�il','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13658,'ie','category','Catag%%ir','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13659,'ie','subcategory','Fochatag%%ir','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13660,'ie','sub_subcategory','Fochatag%%ir','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13661,'ie','brand','Branda','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13662,'ie','attribute','Tr%#ith','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13663,'ie','product_reviews','L%#irmheasanna ar Th%�irg%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13664,'ie','sales','D%�olach%�in','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13665,'ie','all_orders','Gach Ord%Q%','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13666,'ie','inhouse_orders','Orduithe int%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13667,'ie','seller_orders','Orduithe D%�olt%%ra','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13668,'ie','pickup_point_order','Ord%Q% Pointe Pioc suas','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13669,'ie','refunds','Ais%�oca%�ochta%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13670,'ie','refund_requests','Iarrata%� ar Ais%�oca%�ocht','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13671,'ie','approved_refund','Ais%�oca%�ocht Cheadaithe','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13672,'ie','refund_configuration','Cumra%�ocht Ais%�oca%�ochta','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13673,'ie','customers','Custaim%#ir%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13674,'ie','customer_list','Liosta custaim%#ir%�','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13675,'ie','classified_products','T%�irg%� Rangaithe','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13676,'ie','classified_packages','Pac%�ist%� Rangaithe','2021-02-09 07:35:08','2021-09-20 07:29:48'),(13677,'ie','sellers','D%�olt%%ir%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13678,'ie','all_seller','Gach D%�olt%%ir','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13679,'ie','payouts','%�oca%�ochta%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13680,'ie','payout_requests','Iarrata%� %�oca%�ochta','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13681,'ie','seller_commission','An Coimisi%Q%n D%�olt%%ra','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13682,'ie','seller_packages','Pac%�ist%� D%�olt%%ra','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13683,'ie','seller_verification_form','Foirm F%�oraithe D%�olt%%ra','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13684,'ie','reports','Tuarasc%�lacha','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13685,'ie','in_house_product_sale','D%�ol T%�irg%� Int%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13686,'ie','seller_products_sale','D%�ol T%�irg%� D%�olt%%ra','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13687,'ie','products_stock','Stoc T%�irg%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13688,'ie','products_wishlist','Liosta mian t%�irg%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13689,'ie','user_searches','Cuardaigh %�s%�ideoir%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13690,'ie','marketing','Marga%�ocht','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13691,'ie','flash_deals','D%#ile%�lann Flash','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13692,'ie','newsletters','Nuachtlitreacha','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13693,'ie','bulk_sms','Bulc SMS','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13694,'ie','subscribers','S%�nti%Q%s%%ir%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13695,'ie','coupon','C%Q%p%%n','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13696,'ie','support','Taca%�ocht','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13697,'ie','ticket','Tic%#ad','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13698,'ie','product_queries','Fiosr%Q%ch%�in T%�irg%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13699,'ie','website_setup','Socr%Q% Su%�omh Gr%#as%�in','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13700,'ie','header','Ceannt%�sc','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13701,'ie','footer','Bunt%�sc','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13702,'ie','pages','Leathanaigh','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13703,'ie','appearance','Dealramh','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13704,'ie','setup__configurations','Socr%Q% & Cumra%�ochta%�','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13705,'ie','general_settings','Socruithe Ginear%�lta','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13706,'ie','features_activation','Gn%#ithe gn%�omhacht%Q%','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13707,'ie','languages','Teangacha','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13708,'ie','currency','Airgeadra','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13709,'ie','pickup_point','Pointe pioctha','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13710,'ie','smtp_settings','Socruithe SMTP','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13711,'ie','payment_methods','Modhanna %�oca%�ochta','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13712,'ie','file_system_configuration','Cumra%�ocht an Ch%%rais Comhad','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13713,'ie','social_media_logins','Logins na me%�n s%%isialta','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13714,'ie','analytics_tools','Uirlis%� Analytics','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13715,'ie','facebook_chat','Comhr%� Facebook','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13716,'ie','google_recaptcha','Google reCAPTCHA','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13717,'ie','shipping_configuration','Cumra%�ocht Loingseoireachta','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13718,'ie','shipping_countries','T%�ortha Loingseoireachta','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13719,'ie','affiliate_system','C%%ras Affiliate','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13720,'ie','affiliate_registration_form','Foirm Chl%�raithe Affiliate','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13721,'ie','affiliate_configurations','Cumra%�ochta%� Cleamhnaithe','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13722,'ie','affiliate_users','%�s%�ideoir%� Cleamhnaithe','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13723,'ie','referral_users','%�s%�ideoir%� Atreoraithe','2021-02-09 07:35:09','2021-09-20 07:29:48'),(13724,'ie','affiliate_withdraw_requests','Iarratais ar aistarraingt chleamhnaithe','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13725,'ie','offline_payment_system','C%%ras %�oca%�ochta As L%�ne','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13726,'ie','manual_payment_methods','Modhanna %�oca%�ochta L%�imhe','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13727,'ie','offline_wallet_recharge','Athshl%�n%Q% Spar%�n As L%�ne','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13728,'ie','offline_customer_package_payments','%�oca%�ochta%� Pac%�iste Custaim%#ir%� As L%�ne','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13729,'ie','offline_seller_package_payments','%�oca%�ochta%� Pac%�iste D%�olt%%ra As L%�ne','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13730,'ie','paytm_payment_gateway','Geata %�oca%�ochta Paytm','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13731,'ie','set_paytm_credentials','Socraigh Dinti%Q%ir Paytm','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13732,'ie','club_point_system','C%%ras Pointe Club','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13733,'ie','club_point_configurations','Cumra%�ochta%� Pointe Club','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13734,'ie','set_product_point','Pointe T%�irg%� Socraithe','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13735,'ie','user_points','Point%� %�s%�ideora','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13736,'ie','otp_system','C%%ras OTP','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13737,'ie','otp_configurations','Cumra%�ochta%� OTP','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13738,'ie','set_otp_credentials','Socraigh Dinti%Q%ir OTP','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13739,'ie','staffs','Foirne','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13740,'ie','all_staffs','Gach foireann','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13741,'ie','staff_permissions','Ceadanna foirne','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13742,'ie','addon_manager','Bainisteoir Addon','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13743,'ie','browse_website','Brabhs%�il Su%�omh Gr%#as%�in','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13744,'ie','pos','POS','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13745,'ie','notifications','F%%gra%�','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13746,'ie','new_orders','orduithe nua','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13747,'ie','userimage','%�omh%� %Q%s%�ideora','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13748,'ie','profile','Pr%%if%�l','2021-02-09 07:35:10','2021-09-20 07:29:48'),(13749,'ie','logout','Log%�il Amach','2021-02-09 07:35:40','2021-09-20 07:29:48'),(13750,'ie','page_not_found','N%� bhfuarthas an leathanach!','2021-02-09 07:35:40','2021-09-20 07:29: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 07:35:41','2021-09-20 07:29:48'),(13752,'ie','registration','Cl%�r%Q%','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13753,'ie','i_am_shopping_for','T%�im ag siopad%%ireacht le haghaidh ...','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13754,'ie','compare','D%#an compar%�id idir','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13755,'ie','wishlist','Liosta Mianta','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13756,'ie','cart','Cart','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13757,'ie','your_cart_is_empty','T%� do Chairt folamh','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13758,'ie','categories','Catag%%ir%�','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13759,'ie','see_all','Gach rud a fheic%�il','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13760,'ie','seller_policy','Beartas D%�olt%%ra','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13761,'ie','return_policy','Beartas um Fhilleadh','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13762,'ie','support_policy','Beartas Taca%�ochta','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13763,'ie','privacy_policy','Beartas Pr%�obh%�ideachais','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13764,'ie','your_email_address','Do sheoladh r%�omhphoist','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13765,'ie','subscribe','Liost%�il','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13766,'ie','contact_info','Eolas teagmh%�la','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13767,'ie','address','Seoladh','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13768,'ie','phone','F%%n','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13769,'ie','email','R%�omhphost','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13770,'ie','login','Login','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13771,'ie','my_account','My Account','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13772,'ie','order_history','Order History','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13773,'ie','my_wishlist','My Wishlist','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13774,'ie','track_order','Track Order','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13775,'ie','be_an_affiliate_partner','Be an affiliate partner','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13776,'ie','be_a_seller','Be a Seller','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13777,'ie','apply_now','Apply Now','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13778,'ie','confirmation','Confirmation','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13779,'ie','delete_confirmation_message','Delete confirmation message','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13780,'ie','cancel','Cancel','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13781,'ie','delete','Scrios','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13782,'ie','item_has_been_added_to_compare_list','Item has been added to compare list','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13783,'ie','please_login_first','Please login first','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13784,'ie','total_earnings_from','Total Earnings From','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13785,'ie','client_subscription','Client Subscription','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13786,'ie','product_category','Product category','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13787,'ie','product_sub_sub_category','Product sub sub category','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13788,'ie','product_sub_category','Product sub category','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13789,'ie','product_brand','Product brand','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13790,'ie','top_client_packages','Top Client Packages','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13791,'ie','top_freelancer_packages','Top Freelancer Packages','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13792,'ie','number_of_sale','Number of sale','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13793,'ie','number_of_stock','Number of Stock','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13794,'ie','top_10_products','Top 10 Products','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13795,'ie','top_12_products','Top 12 Products','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13796,'ie','admin_can_not_be_a_seller','Admin cannot be a seller','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13797,'ie','filter_by_rating','Filter by Rating','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13798,'ie','published_reviews_updated_successfully','Published reviews updated successfully','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13799,'ie','refund_sticker_has_been_updated_successfully','Refund Sticker has been updated successfully','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13800,'ie','edit_product','Edit Product','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13801,'ie','meta_images','Meta Images','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13802,'ie','update_product','Update Product','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13803,'ie','product_has_been_deleted_successfully','Product has been deleted successfully','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13804,'ie','your_profile_has_been_updated_successfully','Your Profile has been updated successfully!','2021-02-09 07:35:41','2021-09-20 07:29:48'),(13805,'ie','upload_limit_has_been_reached_please_upgrade_your_package','Upload limit has been reached. Please upgrade your package.','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13806,'ie','add_your_product','Add Your Product','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13807,'ie','select_a_category','Select a category','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13808,'ie','select_a_brand','Select a brand','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13809,'ie','product_unit','Product Unit','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13810,'ie','minimum_qty','Minimum Qty.','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13811,'ie','product_tag','Product Tag','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13812,'ie','type__hit_enter','Type & hit enter','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13813,'ie','videos','Videos','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13814,'ie','video_from','Video From','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13815,'ie','video_url','Video URL','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13816,'ie','customer_choice','Customer Choice','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13817,'ie','pdf','PDF','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13818,'ie','choose_pdf','Choose PDF','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13819,'ie','select_category','Select Category','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13820,'ie','target_category','Target Category','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13821,'ie','subsubcategory','subsubcategory','2021-02-09 07:35:42','2021-02-09 07:35:42'),(13822,'ie','search_category','Search Category','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13823,'ie','search_subcategory','Search SubCategory','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13824,'ie','search_subsubcategory','Search SubSubCategory','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13825,'ie','update_your_product','Update your product','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13826,'ie','product_has_been_updated_successfully','Product has been updated successfully','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13827,'ie','add_your_digital_product','Add Your Digital Product','2021-02-09 07:35:42','2021-09-20 07:29:48'),(13828,'ie','active_ecommerce_cms_update_process','Active eCommerce CMS Update Process','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13829,'ie','codecanyon_purchase_code','Codecanyon purchase code','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13830,'ie','database_name','Database Name','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13831,'ie','database_username','Database Username','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13832,'ie','database_password','Database Password','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13833,'ie','database_hostname','Database Hostname','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13834,'ie','update_now','Update Now','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13835,'ie','congratulations','Congratulations','2021-02-09 07:35:42','2021-09-20 07:29: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 07:35:42','2021-09-20 07:29:49'),(13837,'ie','go_to_home','Go to Home','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13838,'ie','login_to_admin_panel','Login to Admin panel','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13839,'ie','s3_file_system_credentials','S3 File System Credentials','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13840,'ie','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13841,'ie','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13842,'ie','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13843,'ie','aws_bucket','AWS_BUCKET','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13844,'ie','aws_url','AWS_URL','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13845,'ie','s3_file_system_activation','S3 File System Activation','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13846,'ie','your_phone_number','Your phone number','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13847,'ie','zip_file','Zip File','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13848,'ie','install','Install','2021-02-09 07:35:42','2021-09-20 07:29: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 07:35:42','2021-09-20 07:29:49'),(13850,'ie','search_in_menu','Search in menu','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13851,'ie','uploaded_files','Uploaded Files','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13852,'ie','shipping_cities','Shipping Cities','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13853,'ie','system','System','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13854,'ie','server_status','Server status','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13855,'ie','nothing_found','Nothing Found','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13856,'ie','parent_category','Parent Category','2021-02-09 07:35:42','2021-09-20 07:29:49'),(13857,'ie','level','Level','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13858,'ie','category_information','Category Information','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13859,'ie','translatable','Translatable','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13860,'ie','no_parent','No Parent','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13861,'ie','physical','Physical','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13862,'ie','digital','Digital','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13863,'ie','200x200','200x200','2021-02-09 07:35:43','2021-02-09 07:35:43'),(13864,'ie','32x32','32x32','2021-02-09 07:35:43','2021-02-09 07:35:43'),(13865,'ie','search_your_files','Search your files','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13866,'ie','category_has_been_updated_successfully','Category has been updated successfully','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13867,'ie','all_uploaded_files','All uploaded files','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13868,'ie','upload_new_file','Upload New File','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13869,'ie','all_files','All files','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13870,'ie','search','Search','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13871,'ie','details_info','Details Info','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13872,'ie','copy_link','Copy Link','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13873,'ie','are_you_sure_to_delete_this_file','Are you sure to delete this file?','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13874,'ie','file_info','File Info','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13875,'ie','link_copied_to_clipboard','Link copied to clipboard','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13876,'ie','oops_unable_to_copy','Oops, unable to copy','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13877,'ie','file_deleted_successfully','File deleted successfully','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13878,'ie','add_new_brand','Add New Brand','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13879,'ie','120x80','120x80','2021-02-09 07:35:43','2021-02-09 07:35:43'),(13880,'ie','brand_information','Brand Information','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13881,'ie','brand_has_been_updated_successfully','Brand has been updated successfully','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13882,'ie','brand_has_been_deleted_successfully','Brand has been deleted successfully','2021-02-09 07:35:43','2021-09-20 07:29: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 07:35:43','2021-09-20 07:29: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 07:35:43','2021-09-20 07:29: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 07:35:43','2021-09-20 07:29: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 07:35:43','2021-09-20 07:29:49'),(13887,'ie','save_product','Save Product','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13888,'ie','product_has_been_inserted_successfully','Product has been inserted successfully','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13889,'ie','something_went_wrong','Something went wrong!','2021-02-09 07:35:43','2021-09-20 07:29: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 07:35:43','2021-09-20 07:29:49'),(13891,'ie','error_code','Error code','2021-02-09 07:35:43','2021-09-20 07:29: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 07:35:43','2021-09-20 07:29:49'),(13893,'ie','order','Order','2021-02-09 07:35:43','2021-09-20 07:29: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 07:35:43','2021-09-20 07:29:49'),(13895,'ie','home_banner_3_max_3','Home Banner 3 (Max 3)','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13896,'ie','add_new_seller','Add New Seller','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13897,'ie','filter_by_approval','Filter by Approval','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13898,'ie','nonapproved','Non-Approved','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13899,'ie','type_name_or_email__enter','Type name or email & Enter','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13900,'ie','due_to_seller','Due to seller','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13901,'ie','log_in_as_this_seller','Log in as this Seller','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13902,'ie','go_to_payment','Go to Payment','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13903,'ie','ban_this_seller','Ban this seller','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13904,'ie','do_you_really_want_to_ban_this_seller','Do you really want to ban this seller?','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13905,'ie','proceed','Proceed!','2021-02-09 07:35:43','2021-09-20 07:29:49'),(13906,'ie','approved_sellers_updated_successfully','Approved sellers updated successfully','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13907,'ie','seller_has_been_deleted_successfully','Seller has been deleted successfully','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13908,'ie','seller_information','Seller Information','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13909,'ie','seller_has_been_inserted_successfully','Seller has been inserted successfully','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13910,'ie','email_already_exists','Email already exists!','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13911,'ie','verify_your_email_address','Verify Your Email Address','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13913,'ie','if_you_did_not_receive_the_email','If you did not receive the email.','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13914,'ie','click_here_to_request_another','Click here to request another','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13915,'ie','email_verification','Email Verification','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13916,'ie','email_verification__','Email Verification -','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13917,'ie','https_activation','HTTPS Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13918,'ie','maintenance_mode','Maintenance Mode','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13919,'ie','maintenance_mode_activation','Maintenance Mode Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13920,'ie','classified_product_activate','Classified Product Activate','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13921,'ie','classified_product','Classified Product','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13922,'ie','business_related','Business Related','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13923,'ie','vendor_system_activation','Vendor System Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13924,'ie','wallet_system_activation','Wallet System Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13925,'ie','coupon_system_activation','Coupon System Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13926,'ie','pickup_point_activation','Pickup Point Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13927,'ie','conversation_activation','Conversation Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13928,'ie','guest_checkout_activation','Guest Checkout Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13929,'ie','categorybased_commission','Category-based Commission','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13931,'ie','set_commisssion_now','Set Commisssion Now','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13932,'ie','payment_related','Payment Related','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13933,'ie','paypal_payment_activation','Paypal Payment Activation','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13935,'ie','stripe_payment_activation','Stripe Payment Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13936,'ie','sslcommerz_activation','SSlCommerz Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13937,'ie','instamojo_payment_activation','Instamojo Payment Activation','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13939,'ie','razor_pay_activation','Razor Pay Activation','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13941,'ie','paystack_activation','PayStack Activation','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13943,'ie','voguepay_activation','VoguePay Activation','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13945,'ie','payhere_activation','Payhere Activation','2021-02-09 07:35:44','2021-09-20 07:29:49'),(13946,'ie','ngenius_activation','Ngenius Activation','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13948,'ie','iyzico_activation','Iyzico Activation','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13950,'ie','bkash_activation','Bkash Activation','2021-02-09 07:35:44','2021-09-20 07:29: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 07:35:44','2021-09-20 07:29:49'),(13952,'ie','nagad_activation','Nagad Activation','2021-02-09 07:35:45','2021-09-20 07:29: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 07:35:45','2021-09-20 07:29:49'),(13954,'ie','cash_payment_activation','Cash Payment Activation','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13955,'ie','social_media_login','Social Media Login','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13956,'ie','facebook_login','Facebook login','2021-02-09 07:35:45','2021-09-20 07:29: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 07:35:45','2021-09-20 07:29:49'),(13958,'ie','google_login','Google login','2021-02-09 07:35:45','2021-09-20 07:29: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 07:35:45','2021-09-20 07:29:49'),(13960,'ie','twitter_login','Twitter login','2021-02-09 07:35:45','2021-09-20 07:29: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 07:35:45','2021-09-20 07:29:49'),(13962,'ie','shop_logo','Shop Logo','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13963,'ie','shop_address','Shop Address','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13964,'ie','banner_settings','Banner Settings','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13965,'ie','banners','Banners','2021-02-09 07:35:45','2021-09-20 07:29: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 07:35:45','2021-09-20 07:29:49'),(13967,'ie','insert_link_with_https_','Insert link with https','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13968,'ie','your_shop_has_been_updated_successfully','Nuashonra%�odh Do Siopa go rath%Q%il!','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13969,'ie','search_result_for_','Toradh cuardaigh do','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13970,'ie','brand_has_been_inserted_successfully','Cuireadh branda isteach go rath%Q%il','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13971,'ie','about','Faoi','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13972,'ie','payout_info','Eolas %�oca%�ochta','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13973,'ie','bank_acc_name','Ainm Acc Bainc','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13974,'ie','bank_acc_number','Uimhir Acc Bainc','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13975,'ie','total_products','T%�irg%� Ioml%�n','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13976,'ie','total_sold_amount','M%#id Ioml%�n D%�olta','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13977,'ie','wallet_balance','Cothroma%�ocht Spar%�n','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13978,'ie','cookies_agreement','Comhaont%Q% Fian%�n','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13979,'ie','cookies_agreement_text','T%#acs an Chomhaontaithe Fian%�n','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13980,'ie','show_cookies_agreement','Taispe%�in Comhaont%Q% Fian%�n?','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13981,'ie','custom_script','Script Saincheaptha','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13982,'ie','header_custom_script__before_head','Script saincheaptha ceannt%�sc - roimh </head>','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13983,'ie','write_script_with_script_tag','Scr%�obh script le <tag tag','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13984,'ie','footer_custom_script__before_body','Script saincheaptha bunt%�sc - roimh </body>','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13985,'ie','category_has_been_inserted_successfully','Cuireadh catag%%ir isteach go rath%Q%il','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13986,'ie','all_flash_deals','Gach Margadh Flash','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13987,'ie','create_new_flash_deal','Cruthaigh Flash Deal Nua','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13988,'ie','ffffff','#FFFFFF','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13989,'ie','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','Taispe%�ntar an %�omh%� seo mar bhratach cl%Q%daigh ar leathanach mionsonra%� d%#ile%�la splanc.','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13990,'ie','flash_deal_has_been_inserted_successfully','Cuireadh Flash Deal isteach go rath%Q%il','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13991,'ie','flash_deal_status_updated_successfully','Nuashonra%�odh st%�das d%#ile%�la Flash go rath%Q%il','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13992,'ie','flash_deal_has_been_updated_successfully','Nuashonra%�odh Flash Deal go rath%Q%il','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13993,'ie','update_language_info','Faisn%#is Teanga a nuashonr%Q%','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13994,'ie','language_has_been_updated_successfully','Nuashonra%�odh an teanga go rath%Q%il','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13995,'ie','type_key__enter','Eochair cine%�l & Iontr%�il','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13996,'ie','translations_updated_for_','Aistri%Q%ch%�in nuashonraithe do','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13997,'ie','language_has_been_inserted_successfully','Cuireadh teanga isteach go rath%Q%il','2021-02-09 07:35:45','2021-09-20 07:29:49'),(13998,'sg','all_category','Semua Kategori','2021-02-09 07:42:29','2021-09-20 07:29:49'),(13999,'sg','all','Semua','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14000,'sg','flash_sale','Jualan Kilat','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14001,'sg','view_more','Lihat Lagi','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14002,'sg','add_to_wishlist','Tambahkan ke senarai keinginan','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14003,'sg','add_to_compare','Tambah untuk membandingkan','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14004,'sg','add_to_cart','Tambah ke troli','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14005,'sg','club_point','Titik Kelab','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14006,'sg','classified_ads','Iklan','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14007,'sg','used','Terpakai','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14008,'sg','top_10_categories','10 Kategori Teratas','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14009,'sg','view_all_categories','Lihat Semua Kategori','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14010,'sg','top_10_brands','10 Jenama Teratas','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14011,'sg','view_all_brands','Lihat Semua Jenama','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14012,'sg','terms__conditions','Terma & Syarat','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14013,'sg','best_selling','Terlaris','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14014,'sg','top_20','20 teratas','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14015,'sg','featured_products','Produk Pilihan','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14016,'sg','best_sellers','Jualan paling laris','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14017,'sg','visit_store','Lawati Kedai','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14018,'sg','popular_suggestions','Cadangan Popular','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14019,'sg','category_suggestions','Cadangan Kategori','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14020,'sg','automobile__motorcycle','Automobil & Motosikal','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14021,'sg','price_range','Julat harga','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14022,'sg','filter_by_color','Tapis mengikut warna','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14023,'sg','home','Rumah','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14024,'sg','newest','Terkini','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14025,'sg','oldest','Tertua','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14026,'sg','price_low_to_high','Harga rendah hingga tinggi','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14027,'sg','price_high_to_low','Harga tinggi hingga rendah','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14028,'sg','brands','Jenama','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14029,'sg','all_brands','Semua Jenama','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14030,'sg','all_sellers','Semua Penjual','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14031,'sg','inhouse_product','Produk dalaman','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14032,'sg','message_seller','Penjual Mesej','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14033,'sg','price','Harga','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14034,'sg','discount_price','Harga diskaun','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14035,'sg','color','Warna','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14036,'sg','quantity','Kuantiti','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14037,'sg','available','ada','2021-02-09 07:42:29','2021-02-09 07:42:29'),(14038,'sg','total_price','Harga keseluruhan','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14039,'sg','out_of_stock','Kehabisan Stok','2021-02-09 07:42:29','2021-09-20 07:29:49'),(14040,'sg','refund','Bayaran balik','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14041,'sg','share','Berkongsi','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14042,'sg','sold_by','Dijual oleh','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14043,'sg','customer_reviews','Maklumbalas Pelanggan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14044,'sg','top_selling_products','Produk Terlaris','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14045,'sg','description','Penerangan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14046,'sg','video','Video','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14047,'sg','reviews','Ulasan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14048,'sg','download','Muat turun','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14049,'sg','there_have_been_no_reviews_for_this_product_yet','Belum ada ulasan untuk produk ini.','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14050,'sg','related_products','Produk Berkaitan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14051,'sg','any_query_about_this_product','Sebarang pertanyaan mengenai produk ini','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14052,'sg','product_name','Nama Produk','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14053,'sg','your_question','Soalan anda','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14054,'sg','send','Hantar','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14055,'sg','use_country_code_before_number','Gunakan kod negara sebelum nombor','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14056,'sg','remember_me','Ingatlah Aku','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14057,'sg','dont_have_an_account','Tidak mempunyai akaun?','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14058,'sg','register_now','Daftar sekarang','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14059,'sg','or_login_with','Atau Log Masuk Dengan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14060,'sg','oops','Alamak ..','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14061,'sg','this_item_is_out_of_stock','Item ini kehabisan stok!','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14062,'sg','back_to_shopping','Kembali ke membeli-belah','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14063,'sg','login_to_your_account','Log masuk ke akaun anda.','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14064,'sg','purchase_history','Sejarah pembelian','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14065,'sg','new','Baru','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14066,'sg','downloads','Muat turun','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14067,'sg','sent_refund_request','Permintaan Bayaran Balik Dihantar','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14068,'sg','product_bulk_upload','Muat Naik Pukal Produk','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14069,'sg','orders','Pesanan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14070,'sg','recieved_refund_request','Permintaan Bayaran Balik yang Diterima','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14071,'sg','shop_setting','Kedai Kedai','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14072,'sg','payment_history','sejarah pembayaran','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14073,'sg','money_withdraw','Pengeluaran Wang','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14074,'sg','conversations','Perbualan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14075,'sg','my_wallet','Dompet saya','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14076,'sg','earning_points','Memperoleh Mata','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14077,'sg','support_ticket','Tiket Sokongan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14078,'sg','manage_profile','Urus Profil','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14079,'sg','sold_amount','Jumlah Dijual','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14080,'sg','your_sold_amount_current_month','Jumlah jualan anda (bulan semasa)','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14081,'sg','total_sold','Jumlah Dijual','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14082,'sg','last_month_sold','Bulan Terakhir Dijual','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14083,'sg','total_sale','Jumlah jualan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14084,'sg','total_earnings','Jumlah pendapatan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14085,'sg','successful_orders','Pesanan berjaya','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14086,'sg','total_orders','Jumlah pesanan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14087,'sg','pending_orders','Pesanan belum selesai','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14088,'sg','cancelled_orders','Pesanan dibatalkan','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14089,'sg','product','Produk','2021-02-09 07:42:30','2021-09-20 07:29:49'),(14090,'sg','purchased_package','Pakej yang Dibeli','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14091,'sg','package_not_found','Pakej Tidak Dijumpai','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14092,'sg','upgrade_package','Pakej Naik Taraf','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14093,'sg','shop','Kedai','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14094,'sg','manage__organize_your_shop','Urus & atur kedai anda','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14095,'sg','go_to_setting','Pergi ke tetapan','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14096,'sg','payment','Pembayaran','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14097,'sg','configure_your_payment_method','Konfigurasikan kaedah pembayaran anda','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14098,'sg','my_panel','Panel Saya','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14099,'sg','item_has_been_added_to_wishlist','Item telah ditambahkan ke senarai keinginan','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14100,'sg','my_points','Mata Saya','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14101,'sg','_points','Mata','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14102,'sg','wallet_money','Wang Dompet','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14103,'sg','exchange_rate','Kadar pertukaran','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14104,'sg','point_earning_history','Sejarah Perolehan Mata','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14105,'sg','date','Tarikh','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14106,'sg','points','Mata','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14107,'sg','converted','Ditukar','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14108,'sg','action','Tindakan','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14109,'sg','no_history_found','Tiada sejarah dijumpai.','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14110,'sg','convert_has_been_done_successfully_check_your_wallets','Penukaran telah berjaya dilakukan Periksa Dompet anda','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14111,'sg','something_went_wrong','Ada yang tidak kena','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14112,'sg','remaining_uploads','Sisa Muat Naik','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14113,'sg','no_package_found','Tiada Pakej Dijumpai','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14114,'sg','search_product','Cari produk','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14115,'sg','name','Nama','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14116,'sg','current_qty','Kuantiti Semasa','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14117,'sg','base_price','Harga Asas','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14118,'sg','published','Diterbitkan','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14119,'sg','featured','Yang diketengahkan','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14120,'sg','options','Pilihan','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14121,'sg','edit','Edit','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14122,'sg','duplicate','Gandakan','2021-02-09 07:42:31','2021-09-20 07:29: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 07:42:31','2021-09-20 07:29: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 07:42:31','2021-09-20 07:29: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 07:42:31','2021-09-20 07:29: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 07:42:31','2021-09-20 07:29:49'),(14127,'sg','download_csv','Muat turun CSV','2021-02-09 07:42:31','2021-09-20 07:29: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 07:42:31','2021-09-20 07:29: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 07:42:31','2021-09-20 07:29:49'),(14130,'sg','download_category','Kategori Muat turun','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14131,'sg','download_sub_category','Muat turun Sub kategori','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14132,'sg','download_sub_sub_category','Muat turun Sub Sub kategori','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14133,'sg','download_brand','Muat turun Jenama','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14134,'sg','upload_csv_file','Muat naik Fail CSV','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14135,'sg','csv','CSV','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14136,'sg','choose_csv_file','Pilih Fail CSV','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14137,'sg','upload','Muat naik','2021-02-09 07:42:31','2021-09-20 07:29:49'),(14138,'sg','add_new_digital_product','Tambah Produk Digital Baru','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14139,'sg','available_status','Status yang ada','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14140,'sg','admin_status','Status Pentadbir','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14141,'sg','pending_balance','Baki Belum Selesai','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14142,'sg','send_withdraw_request','Hantar Permintaan Pengeluaran','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14143,'sg','withdraw_request_history','Tarik balik sejarah Permintaan','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14144,'sg','amount','Jumlah','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14145,'sg','status','Status','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14146,'sg','message','Mesej','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14147,'sg','send_a_withdraw_request','Hantar Permintaan Pengeluaran','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14148,'sg','basic_info','Info asas','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14149,'sg','your_phone','Telefon awak','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14150,'sg','photo','Foto','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14151,'sg','browse','Semak imbas','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14152,'sg','your_password','Kata laluan Awak','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14153,'sg','new_password','Kata laluan baharu','2021-02-09 07:42:32','2021-09-20 07:29:49'),(14154,'sg','confirm_password','Sahkan Kata Laluan','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14155,'sg','add_new_address','Tambah Alamat Baru','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14156,'sg','payment_setting','Tetapan Pembayaran','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14157,'sg','cash_payment','Pembayaran tunai','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14158,'sg','bank_payment','Bayaran Bank','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14159,'sg','bank_name','Nama bank','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14160,'sg','bank_account_name','Nama Akaun Bank','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14161,'sg','bank_account_number','Nombor akaun bank','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14162,'sg','bank_routing_number','Nombor Laluan Bank','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14163,'sg','update_profile','Kemas kini Profil','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14164,'sg','change_your_email','Tukar e-mel anda','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14165,'sg','your_email','Emel anda','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14166,'sg','sending_email','Menghantar E-mel ...','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14167,'sg','verify','Sahkan','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14168,'sg','update_email','Kemas kini E-mel','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14169,'sg','new_address','Alamat Baru','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14170,'sg','your_address','Alamat anda','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14171,'sg','country','Negara','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14172,'sg','select_your_country','Pilih negara anda','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14173,'sg','city','Bandar','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14174,'sg','your_city','Bandar anda','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14175,'sg','your_postal_code','Poskod Anda','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14176,'sg','880','+880','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14177,'sg','save','Jimat','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14178,'sg','received_refund_request','Permintaan Bayaran Balik yang Diterima','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14179,'sg','delete_confirmation','Padamkan Pengesahan','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14180,'sg','are_you_sure_to_delete_this','Adakah anda pasti memadamkannya?','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14181,'sg','premium_packages_for_sellers','Pakej Premium untuk Penjual','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14182,'sg','product_upload','Muat Naik Produk','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14183,'sg','digital_product_upload','Muat Naik Produk Digital','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14184,'sg','purchase_package','Pakej Pembelian','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14185,'sg','select_payment_type','Pilih Jenis Pembayaran','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14186,'sg','payment_type','Jenis pembayaran','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14187,'sg','select_one','Pilih satu','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14188,'sg','online_payment','Pembayaran dalam talian','2021-02-09 07:42:32','2021-09-20 07:29:50'),(14189,'sg','offline_payment','Pembayaran luar talian','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14190,'sg','purchase_your_package','Beli Pakej Anda','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14191,'sg','paypal','Paypal','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14192,'sg','stripe','Jalur','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14193,'sg','sslcommerz','sslcommerz','2021-02-09 07:42:33','2021-02-09 07:42:33'),(14194,'sg','confirm','Sahkan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14195,'sg','offline_package_payment','Pembayaran Pakej Luar Talian','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14196,'sg','transaction_id','ID Transaksi','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14197,'sg','choose_image','Pilih gambar','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14198,'sg','code','Kod','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14199,'sg','delivery_status','Status penghantaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14200,'sg','payment_status','Status bayaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14201,'sg','paid','Dibayar','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14202,'sg','order_details','Maklumat-maklumat Pesanan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14203,'sg','download_invoice','Muat turun Invois','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14204,'sg','unpaid','Tanpa Bayaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14205,'sg','order_placed','Pesanan dibuat','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14206,'sg','confirmed','Disahkan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14207,'sg','on_delivery','Dalam penghantaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14208,'sg','delivered','Dihantar','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14209,'sg','order_summary','Ringkasan Pesanan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14210,'sg','order_code','Kod Pesanan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14211,'sg','customer','Pelanggan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14212,'sg','total_order_amount','Jumlah jumlah pesanan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14213,'sg','shipping_metdod','Metdod penghantaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14214,'sg','flat_shipping_rate','Kadar penghantaran rata','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14215,'sg','payment_metdod','Metod pembayaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14216,'sg','variation','Variasi','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14217,'sg','delivery_type','Jenis Penghantaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14218,'sg','home_delivery','Penghantaran ke rumah','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14219,'sg','order_ammount','Jumlah Pesanan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14220,'sg','subtotal','jumlah kecil','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14221,'sg','shipping','penghantaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14222,'sg','coupon_discount','Potongan Kupon','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14223,'sg','na','N / A','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14224,'sg','in_stock','Dalam stok','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14225,'sg','buy_now','Beli sekarang','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14226,'sg','item_added_to_your_cart','Item ditambahkan ke troli anda!','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14227,'sg','proceed_to_checkout','Teruskan ke Checkout','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14228,'sg','cart_items','Item Troli','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14229,'sg','1_my_cart','1. Troli Saya','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14230,'sg','view_cart','Lihat troli','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14231,'sg','2_shipping_info','2. Maklumat penghantaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14232,'sg','checkout','Daftar keluar','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14233,'sg','3_delivery_info','3. Maklumat penghantaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14234,'sg','4_payment','4. Pembayaran','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14235,'sg','5_confirmation','5. Pengesahan','2021-02-09 07:42:33','2021-09-20 07:29:50'),(14236,'sg','remove','Keluarkan','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14237,'sg','return_to_shop','Kembali ke kedai','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14238,'sg','continue_to_shipping','Terus Penghantaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14239,'sg','or','Atau','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14240,'sg','guest_checkout','Daftar Keluar Tetamu','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14241,'sg','continue_to_delivery_info','Terus ke Maklumat Penghantaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14242,'sg','postal_code','Poskod','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14243,'sg','choose_delivery_type','Pilih Jenis Penghantaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14244,'sg','local_pickup','Pengambilan Tempatan','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14245,'sg','select_your_nearest_pickup_point','Pilih tempat pengambilan terdekat anda','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14246,'sg','continue_to_payment','Terus ke Pembayaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14247,'sg','select_a_payment_option','Pilih pilihan pembayaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14248,'sg','razorpay','Razorpay','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14249,'sg','paystack','Paystack','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14250,'sg','voguepay','VoguePay','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14251,'sg','payhere','gaji','2021-02-09 07:42:34','2021-02-09 07:42:34'),(14252,'sg','ngenius','ngenius','2021-02-09 07:42:34','2021-02-09 07:42:34'),(14253,'sg','paytm','Bayaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14254,'sg','cash_on_delivery','Tunai semasa Penghantaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14255,'sg','your_wallet_balance_','Baki dompet anda:','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14256,'sg','insufficient_balance','Baki tidak mencukupi','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14257,'sg','i_agree_to_the','saya setuju dengan','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14258,'sg','complete_order','Pesanan Lengkap','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14259,'sg','summary','Ringkasan','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14260,'sg','items','Barang','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14261,'sg','total_club_point','Jumlah mata Kelab','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14262,'sg','total_shipping','Jumlah Penghantaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14263,'sg','have_coupon_code_enter_here','Ada kod kupon? Masuk ke sini','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14264,'sg','apply','Memohon','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14265,'sg','you_need_to_agree_with_our_policies','Anda perlu bersetuju dengan dasar kami','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14266,'sg','forgot_password','Lupa kata laluan','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14267,'sg','seo_setting','Tetapan SEO','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14268,'sg','system_update','Kemas kini sistem','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14269,'sg','add_new_payment_method','Tambahkan Kaedah Pembayaran Baru','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14270,'sg','manual_payment_method','Kaedah Pembayaran Manual','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14271,'sg','heading','Tajuk','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14272,'sg','logo','Logo','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14273,'sg','manual_payment_information','Maklumat Pembayaran Manual','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14274,'sg','type','Jenis','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14275,'sg','custom_payment','Pembayaran Tersuai','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14276,'sg','check_payment','Cek Bayaran','2021-02-09 07:42:34','2021-09-20 07:29:50'),(14277,'sg','checkout_thumbnail','Gambar Kecil Checkout','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14278,'sg','payment_instruction','Arahan Pembayaran','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14279,'sg','bank_information','Maklumat bank','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14280,'sg','select_file','Pilih fail','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14281,'sg','upload_new','Muat Naik Baru','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14282,'sg','sort_by_newest','Susun mengikut yang terbaru','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14283,'sg','sort_by_oldest','Susun mengikut yang tertua','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14284,'sg','sort_by_smallest','Isih mengikut terkecil','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14285,'sg','sort_by_largest','Susun mengikut yang terbesar','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14286,'sg','selected_only','Dipilih Sahaja','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14287,'sg','no_files_found','Fail tidak dijumpai','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14288,'sg','0_file_selected','0 Fail dipilih','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14289,'sg','clear','Jelas','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14290,'sg','prev','Sebelumnya','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14291,'sg','next','Seterusnya','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14292,'sg','add_files','Menambah fail','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14293,'sg','method_has_been_inserted_successfully','Kaedah telah berjaya dimasukkan','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14294,'sg','order_date','Tarikh pesanan','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14295,'sg','bill_to','Bil ke','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14296,'sg','sub_total','Jumlah kecil','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14297,'sg','total_tax','Jumlah Cukai','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14298,'sg','grand_total','Jumlah keseluruhan','2021-02-09 07:42:35','2021-09-20 07:29: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 07:42:35','2021-09-20 07:29:50'),(14300,'sg','thank_you_for_your_order','Terima kasih atas pesanan anda!','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14301,'sg','order_code','Kod Pesanan:','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14302,'sg','a_copy_or_your_order_summary_has_been_sent_to','Salinan atau ringkasan pesanan anda telah dihantar ke','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14303,'sg','make_payment','Buat bayaran','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14304,'sg','payment_screenshot','Tangkapan skrin pembayaran','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14305,'sg','paypal_credential','Kelayakan Paypal','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14306,'sg','paypal_client_id','ID Pelanggan Paypal','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14307,'sg','paypal_client_secret','Rahsia Pelanggan Paypal','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14308,'sg','paypal_sandbox_mode','Mod Kotak Pasir Paypal','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14309,'sg','sslcommerz_credential','Kelayakan Sslcommerz','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14310,'sg','sslcz_store_id','Id Kedai Sslcz','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14311,'sg','sslcz_store_password','Kata laluan kedai Sslcz','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14312,'sg','sslcommerz_sandbox_mode','Mod Kotak Pasir Sslcommerz','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14313,'sg','stripe_credential','Kredensial Stripe','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14314,'sg','stripe_key','KUNCI STRIPE','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14315,'sg','stripe_secret','RAHSIA STRIPE','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14316,'sg','razorpay_credential','Kelayakan RazorPay','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14317,'sg','razor_key','KUNCI RAZOR','2021-02-09 07:42:35','2021-09-20 07:29:50'),(14318,'sg','razor_secret','RAHSIA RAZOR','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14319,'sg','instamojo_credential','Kelayakan Instamojo','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14320,'sg','api_key','KUNCI API','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14321,'sg','im_api_key','KUNCI API IM','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14322,'sg','auth_token','TOKEN AUTH','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14323,'sg','im_auth_token','TOKEN KEBENARAN IM','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14324,'sg','instamojo_sandbox_mode','Mod Kotak Pasir Instamojo','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14325,'sg','paystack_credential','Kelayakan PayStack','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14326,'sg','public_key','KUNCI AWAM','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14327,'sg','secret_key','KUNCI RAHSIA','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14328,'sg','merchant_email','E-mel PEKERJA','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14329,'sg','voguepay_credential','Kelayakan VoguePay','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14330,'sg','merchant_id','ID PENGEDAR','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14331,'sg','sandbox_mode','Mod Kotak Pasir','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14332,'sg','payhere_credential','Kelayakan Payhere','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14333,'sg','payhere_merchant_id','ID PEMBELI PAYHERE','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14334,'sg','payhere_secret','RAHSIA PAYHERE','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14335,'sg','payhere_currency','MATA WANG BAYARAN','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14336,'sg','payhere_sandbox_mode','Mod Kotak Pasir Payhere','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14337,'sg','ngenius_credential','Kepujian Ngenius','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14338,'sg','ngenius_outlet_id','ID NGENIUS OUTLET','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14339,'sg','ngenius_api_key','KUNCI API NGENIUS','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14340,'sg','ngenius_currency','MATA WANG NGENIUS','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14341,'sg','mpesa_credential','Kepujian Mpesa','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14342,'sg','mpesa_consumer_key','KUNCI PENGGUNA MPESA','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14343,'sg','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14344,'sg','mpesa_consumer_secret','RAHSIA PENGGUNA MPESA','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14345,'sg','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14346,'sg','mpesa_short_code','KOD PENDEK MPESA','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14347,'sg','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14348,'sg','mpesa_sandbox_activation','AKTIVITI SANDBOX MPESA','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14349,'sg','flutterwave_credential','Kelayakan Flutterwave','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14350,'sg','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14351,'sg','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14352,'sg','rave_title','RAVE_TITLE','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14353,'sg','stagin_activation','PENGAKTIFAN STAGIN','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14354,'sg','all_product','Semua Produk','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14355,'sg','sort_by','Disusun mengikut','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14356,'sg','rating_high__low','Penilaian (Tinggi> Rendah)','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14357,'sg','rating_low__high','Penilaian (Rendah> Tinggi)','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14358,'sg','num_of_sale_high__low','Jumlah Jualan (Tinggi> Rendah)','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14359,'sg','num_of_sale_low__high','Jumlah Jualan (Rendah> Tinggi)','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14360,'sg','base_price_high__low','Harga Asas (Tinggi> Rendah)','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14361,'sg','base_price_low__high','Harga Asas (Rendah> Tinggi)','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14362,'sg','type__enter','Taip & Masukkan','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14363,'sg','added_by','Ditambah Oleh','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14364,'sg','num_of_sale','Jumlah Jualan','2021-02-09 07:42:36','2021-09-20 07:29:50'),(14365,'sg','total_stock','Jumlah Stok','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14366,'sg','todays_deal','Tawaran Hari Ini','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14367,'sg','rating','Penarafan','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14368,'sg','times','kali','2021-02-09 07:42:37','2021-02-09 07:42:37'),(14369,'sg','add_nerw_product','Tambah Produk Nerw','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14370,'sg','product_information','informasi produk','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14371,'sg','unit','Unit','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14372,'sg','unit_eg_kg_pc_etc','Unit (contohnya KG, Pc dll)','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14373,'sg','minimum_qty','Kuantiti minimum','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14374,'sg','tags','Teg','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14375,'sg','type_and_hit_enter_to_add_a_tag','Taip dan tekan enter untuk menambah teg','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14376,'sg','barcode','Kod bar','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14377,'sg','refundable','Dikembalikan','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14378,'sg','product_images','Imej Produk','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14379,'sg','gallery_images','Gambar Galeri','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14380,'sg','todays_deal_updated_successfully','Tawaran Hari Ini berjaya dikemas kini','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14381,'sg','published_products_updated_successfully','Produk yang diterbitkan berjaya dikemas kini','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14382,'sg','thumbnail_image','Gambar Lakaran Kecil','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14383,'sg','featured_products_updated_successfully','Produk unggulan berjaya dikemas kini','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14384,'sg','product_videos','Video Produk','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14385,'sg','video_provider','Penyedia Video','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14386,'sg','youtube','Youtube','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14387,'sg','dailymotion','Dailymotion','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14388,'sg','vimeo','Vimeo','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14389,'sg','video_link','Pautan Video','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14390,'sg','product_variation','Variasi Produk','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14391,'sg','colors','Warna','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14392,'sg','attributes','Atribut','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14393,'sg','choose_attributes','Pilih Atribut','2021-02-09 07:42:37','2021-09-20 07:29: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 07:42:37','2021-09-20 07:29:50'),(14395,'sg','product_price__stock','Harga produk + stok','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14396,'sg','unit_price','Harga seunit','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14397,'sg','purchase_price','Harga pembelian','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14398,'sg','flat','Rata','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14399,'sg','percent','Peratus','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14400,'sg','discount','Diskaun','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14401,'sg','product_description','Penerangan Produk','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14402,'sg','product_shipping_cost','Kos Penghantaran Produk','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14403,'sg','free_shipping','Penghantaran percuma','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14404,'sg','flat_rate','Kadar rata','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14405,'sg','shipping_cost','Kos penghantaran','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14406,'sg','pdf_specification','Spesifikasi PDF','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14407,'sg','seo_meta_tags','Teg Meta SEO','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14408,'sg','meta_title','Tajuk Meta','2021-02-09 07:42:37','2021-09-20 07:29:50'),(14409,'sg','meta_image','Imej Meta','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14410,'sg','choice_title','Tajuk Pilihan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14411,'sg','enter_choice_values','Masukkan nilai pilihan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14412,'sg','all_categories','Semua Kategori','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14413,'sg','add_new_category','Tambah kategori Baru','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14414,'sg','type_name__enter','Taipkan nama & Masukkan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14415,'sg','banner','Sepanduk','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14416,'sg','commission','Suruhanjaya','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14417,'sg','icon','ikon','2021-02-09 07:42:38','2021-02-09 07:42:38'),(14418,'sg','featured_categories_updated_successfully','Kategori pilihan berjaya dikemas kini','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14419,'sg','hot','Panas','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14420,'sg','filter_by_payment_status','Tapis mengikut Status Pembayaran','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14421,'sg','unpaid','Tanpa Bayaran','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14422,'sg','filter_by_deliver_status','Tapis mengikut Status Penghantaran','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14423,'sg','pending','Yang belum selesai','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14424,'sg','type_order_code__hit_enter','Taipkan kod pesanan & tekan Enter','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14425,'sg','num_of_products','Bil. Produk','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14426,'sg','walk_in_customer','Berjalan di Pelanggan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14427,'sg','qty','QTY','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14428,'sg','without_shipping_charge','Tanpa Caj Penghantaran','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14429,'sg','with_shipping_charge','Dengan Caj Penghantaran','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14430,'sg','pay_with_cash','Bayar Dengan Wang Tunai','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14431,'sg','shipping_address','Alamat Penghantaran','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14432,'sg','close','Tutup','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14433,'sg','select_country','Pilih negara','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14434,'sg','order_confirmation','Pengesahan pesanan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14435,'sg','are_you_sure_to_confirm_this_order','Adakah anda pasti mengesahkan pesanan ini?','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14436,'sg','comfirm_order','Perintah Mematuhi','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14437,'sg','personal_info','Maklumat peribadi','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14438,'sg','repeat_password','Ulang kata laluan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14439,'sg','shop_name','Nama Kedai','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14440,'sg','register_your_shop','Daftarkan Kedai Anda','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14441,'sg','affiliate_informations','Maklumat Gabungan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14442,'sg','affiliate','Ahli gabungan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14443,'sg','user_info','Maklumat Pengguna','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14444,'sg','installed_addon','Addon dipasang','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14445,'sg','available_addon','Addon yang ada','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14446,'sg','install_new_addon','Pasang Addon Baru','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14447,'sg','version','Versi','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14448,'sg','activated','Diaktifkan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14449,'sg','deactivated','Nyahaktifkan','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14450,'sg','activate_otp','Aktifkan OTP','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14451,'sg','otp_will_be_used_for','OTP akan digunakan untuk','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14452,'sg','settings_updated_successfully','Tetapan berjaya dikemas kini','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14453,'sg','product_owner','Pemilik Produk','2021-02-09 07:42:38','2021-09-20 07:29:50'),(14454,'sg','point','Titik','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14455,'sg','set_point_for_product_within_a_range','Tetapkan Titik untuk Produk Dalam Julat','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14456,'sg','set_point_for_multiple_products','Tetapkan Titik untuk pelbagai produk','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14457,'sg','min_price','Harga Min','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14458,'sg','max_price','Harga Maksimum','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14459,'sg','set_point_for_all_products','Tetapkan Titik untuk semua Produk','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14460,'sg','set_point_for_','Tetapkan Titik Untuk','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14461,'sg','convert_status','Tukar Status','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14462,'sg','earned_at','Diperolehi Pada','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14463,'sg','seller_based_selling_report','Laporan Jual Berdasarkan Penjual','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14464,'sg','sort_by_verificarion_status','Isih mengikut status verifikasi','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14465,'sg','approved','Diluluskan','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14466,'sg','non_approved','Tidak Diluluskan','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14467,'sg','filter','Tapis','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14468,'sg','seller_name','Nama Penjual','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14469,'sg','number_of_product_sale','Bilangan Jualan Produk','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14470,'sg','order_amount','Jumlah Pesanan','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14471,'sg','facebook_chat_setting','Tetapan Sembang Facebook','2021-02-09 07:42:39','2021-09-20 07:29:50'),(14472,'sg','facebook_page_id','ID Halaman Facebook','2021-02-09 07:42:39','2021-09-20 07:29: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 07:42:39','2021-09-20 07:29:50'),(14474,'sg','login_into_your_facebook_page','Log masuk ke laman facebook anda','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14475,'sg','find_the_about_option_of_your_facebook_page','Cari pilihan Tentang halaman facebook anda','2021-02-09 07:42:39','2021-09-20 07:29: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 07:42:39','2021-09-20 07:29: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 07:42:39','2021-09-20 07:29: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 07:42:39','2021-09-20 07:29:51'),(14479,'sg','set_your_website_domain_name','Tetapkan nama domain laman web anda','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14480,'sg','google_recaptcha_setting','Tetapan Google reCAPTCHA','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14481,'sg','site_key','KUNCI laman web','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14482,'sg','select_shipping_method','Pilih Kaedah Penghantaran','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14483,'sg','product_wise_shipping_cost','Kos Penghantaran Produk','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14484,'sg','flat_rate_shipping_cost','Kos Penghantaran Kadar Rata','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14485,'sg','seller_wise_flat_shipping_cost','Kos Penghantaran Rata-rata Penjual','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14486,'sg','note','Catatan','2021-02-09 07:42:39','2021-09-20 07:29: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 07:42:39','2021-09-20 07:29: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 07:42:39','2021-09-20 07:29: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 07:42:39','2021-09-20 07:29:51'),(14490,'sg','flat_rate_cost','Kos Kadar Rata','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14491,'sg','shipping_cost_for_admin_products','Kos Penghantaran untuk Produk Pentadbir','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14492,'sg','countries','Negara','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14493,'sg','showhide','Tunjukkan / Sembunyikan','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14494,'sg','country_status_updated_successfully','Status negara berjaya dikemas kini','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14495,'sg','all_subcategories','Semua Subkategori','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14496,'sg','add_new_subcategory','Tambah Subkategori Baru','2021-02-09 07:42:39','2021-09-20 07:29:51'),(14497,'sg','subcategories','Sub-Kategori','2021-02-09 07:42:40','2021-09-20 07:29:51'),(14498,'sg','sub_category_information','Maklumat Sub Kategori','2021-02-09 07:43:25','2021-09-20 07:29:51'),(14499,'sg','slug','Slug','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14500,'sg','all_sub_subcategories','Semua Subkategori','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14501,'sg','add_new_sub_subcategory','Tambah Subkategori Baru','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14502,'sg','subsubcategories','Sub-sub-kategori','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14503,'sg','make_this_default','Jadikan Lalai Ini','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14504,'sg','shops','Kedai','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14505,'sg','women_clothing__fashion','Pakaian & Fesyen Wanita','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14506,'sg','cellphones__tabs','Telefon bimbit & Tab','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14507,'sg','welcome_to','Selamat datang ke','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14508,'sg','create_a_new_account','Buat Akaun Baru','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14509,'sg','full_name','Nama penuh','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14510,'sg','password','kata laluan','2021-02-09 07:43:26','2021-02-09 07:43:26'),(14511,'sg','confrim_password','Konfirmasi Kata Laluan','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14512,'sg','i_agree_with_the','Saya bersetuju dengan','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14513,'sg','terms_and_conditions','Terma dan syarat','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14514,'sg','register','Daftar','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14515,'sg','already_have_an_account','Sudah mempunyai akaun','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14516,'sg','sign_up_with','Daftar dengan','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14517,'sg','i_agree_with_the_terms_and_conditions','Saya bersetuju dengan Terma dan Syarat','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14518,'sg','all_role','Semua Peranan','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14519,'sg','add_new_role','Tambah Peranan Baru','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14520,'sg','roles','Peranan','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14521,'sg','add_new_staffs','Tambah Kakitangan Baru','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14522,'sg','role','Peranan','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14523,'sg','frontend_website_name','Nama Laman Web Frontend','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14524,'sg','website_name','Nama Laman Web','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14525,'sg','site_motto','Moto Laman Web','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14526,'sg','best_ecommerce_website','Laman Web eCommerce Terbaik','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14527,'sg','site_icon','Ikon Tapak','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14528,'sg','website_favicon_32x32_png','Favicon laman web. 32x32 .png','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14529,'sg','website_base_color','Warna Pangkalan Laman Web','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14530,'sg','hex_color_code','Kod Warna Hex','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14531,'sg','website_base_hover_color','Warna Hover Pangkalan Laman Web','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14532,'sg','update','Kemas kini','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14533,'sg','global_seo','Seo Global','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14534,'sg','meta_description','Penerangan meta','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14535,'sg','keywords','Kata kunci','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14536,'sg','separate_with_coma','Pisahkan dengan koma','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14537,'sg','website_pages','Halaman Laman Web','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14538,'sg','all_pages','Semua Halaman','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14539,'sg','add_new_page','Tambah Halaman Baru','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14540,'sg','url','URL','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14541,'sg','actions','Tindakan','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14542,'sg','edit_page_information','Edit Maklumat Halaman','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14543,'sg','page_content','Kandungan Halaman','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14544,'sg','title','Tajuk','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14545,'sg','link','Pautan','2021-02-09 07:43:26','2021-09-20 07:29:51'),(14546,'sg','use_character_number_hypen_only','Gunakan watak, nombor, tanda hubung sahaja','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14547,'sg','add_content','Tambah Kandungan','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14548,'sg','seo_fields','Seo Fields','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14549,'sg','update_page','Kemas kini Halaman','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14550,'sg','default_language','Bahasa Lalai','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14551,'sg','add_new_language','Tambah Bahasa Baru','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14552,'sg','rtl','RTL','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14553,'sg','translation','Terjemahan','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14554,'sg','language_information','Maklumat Bahasa','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14555,'sg','save_page','Simpan Halaman','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14556,'sg','home_page_settings','Tetapan Halaman Utama','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14557,'sg','home_slider','Gelangsar Rumah','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14558,'sg','photos__links','Foto & Pautan','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14559,'sg','add_new','Tambah baru','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14560,'sg','home_categories','Kategori Rumah','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14561,'sg','home_banner_1_max_3','Sepanduk Rumah 1 (Maksimum 3)','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14562,'sg','banner__links','Sepanduk & Pautan','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14563,'sg','home_banner_2_max_3','Sepanduk Rumah 2 (Maksimum 3)','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14564,'sg','top_10','10 teratas','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14565,'sg','top_categories_max_10','Kategori Teratas (Maksimum 10)','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14566,'sg','top_brands_max_10','Jenama Teratas (Maksimum 10)','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14567,'sg','system_name','Nama Sistem','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14568,'sg','system_logo__white','Logo Sistem - Putih','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14569,'sg','choose_files','Pilih Fail','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14570,'sg','will_be_used_in_admin_panel_side_menu','Akan digunakan dalam menu sisi panel pentadbir','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14571,'sg','system_logo__black','Logo Sistem - Hitam','2021-02-09 07:43:27','2021-09-20 07:29: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 07:43:27','2021-09-20 07:29:51'),(14573,'sg','system_timezone','Zon Waktu Sistem','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14574,'sg','admin_login_page_background','Latar belakang halaman log masuk pentadbir','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14575,'sg','website_header','Pengepala Laman Web','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14576,'sg','header_setting','Penetapan Header','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14577,'sg','header_logo','Logo Pengepala','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14578,'sg','show_language_switcher','Tunjukkan Pengalih Bahasa?','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14579,'sg','show_currency_switcher','Tunjukkan Penukar Mata Wang?','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14580,'sg','enable_stikcy_header','Dayakan pengepala tegas?','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14581,'sg','website_footer','Footer Laman Web','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14582,'sg','footer_widget','Widget Kaki','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14583,'sg','about_widget','Mengenai Widget','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14584,'sg','footer_logo','Logo Footer','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14585,'sg','about_description','Mengenai keterangan','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14586,'sg','contact_info_widget','Widget Maklumat Perhubungan','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14587,'sg','footer_contact_address','Alamat hubungan footer','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14588,'sg','footer_contact_phone','Telefon kenalan footer','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14589,'sg','footer_contact_email','E-mel hubungan footer','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14590,'sg','link_widget_one','Pautan Widget Satu','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14591,'sg','links','Pautan','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14592,'sg','footer_bottom','Bahagian Bawah Kaki','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14593,'sg','copyright_widget_','Widget Hak Cipta','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14594,'sg','copyright_text','Teks Hak Cipta','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14595,'sg','social_link_widget_','Widget Pautan Sosial','2021-02-09 07:43:27','2021-09-20 07:29:51'),(14596,'sg','show_social_links','Tunjukkan Pautan Sosial?','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14597,'sg','social_links','Pautan Sosial','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14598,'sg','payment_methods_widget_','Widget Kaedah Pembayaran','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14599,'sg','rtl_status_updated_successfully','Status RTL berjaya dikemas kini','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14600,'sg','language_changed_to_','Bahasa ditukar menjadi','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14601,'sg','inhouse_product_sale_report','Laporan penjualan Produk Inhouse','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14602,'sg','sort_by_category','Susun mengikut Kategori','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14603,'sg','product_wise_stock_report','Laporan stok produk','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14604,'sg','currency_changed_to_','Mata wang ditukar menjadi','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14605,'sg','avatar','Avatar','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14606,'sg','copy','Salinan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14607,'sg','variant','Pelbagai','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14608,'sg','variant_price','Harga Bervariasi','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14609,'sg','sku','SKU','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14610,'sg','key','Kunci','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14611,'sg','value','Nilai','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14612,'sg','copy_translations','Salin Terjemahan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14613,'sg','all_pickup_points','Semua Mata Pengambilan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14614,'sg','add_new_pickup_point','Tambah Titik Pengambilan Baru','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14615,'sg','manager','Pengurus','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14616,'sg','location','Lokasi','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14617,'sg','pickup_station_contact','Hubungi Stesen Pickup','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14618,'sg','open','Buka','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14619,'sg','pos_activation_for_seller','Pengaktifan POS untuk Penjual','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14620,'sg','order_completed_successfully','Pesanan Selesai Berjaya.','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14621,'sg','text_input','Input Teks','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14622,'sg','select','Pilih','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14623,'sg','multiple_select','Pelbagai Pilihan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14624,'sg','radio','Radio','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14625,'sg','file','Fail','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14626,'sg','email_address','Alamat emel','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14627,'sg','verification_info','Maklumat Pengesahan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14628,'sg','approval','Kelulusan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14629,'sg','due_amount','Jumlah Hutang','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14630,'sg','show','Tunjuk','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14631,'sg','pay_now','Bayar sekarang','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14632,'sg','affiliate_user_verification','Pengesahan Pengguna Gabungan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14633,'sg','reject','Tolak','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14634,'sg','accept','Terima','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14635,'sg','beauty_health__hair','Kecantikan, Kesihatan & Rambut','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14636,'sg','comparison','Perbandingan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14637,'sg','reset_compare_list','Tetapkan semula Senarai Bandingkan','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14638,'sg','your_comparison_list_is_empty','Senarai perbandingan anda kosong','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14639,'sg','convert_point_to_wallet','Tukar Titik Ke Dompet','2021-02-09 07:43:28','2021-09-20 07:29: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 07:43:28','2021-09-20 07:29:51'),(14641,'sg','create_an_account','Buat akaun.','2021-02-09 07:43:28','2021-09-20 07:29:51'),(14642,'sg','use_email_instead','Gunakan E-mel Sebaliknya','2021-02-09 07:43:28','2021-09-20 07:29: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 07:43:28','2021-09-20 07:29:51'),(14644,'sg','create_account','Buat akaun','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14645,'sg','or_join_with','Atau Sertai Dengan','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14646,'sg','already_have_an_account','Sudah mempunyai akaun?','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14647,'sg','log_in','Log masuk','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14648,'sg','computer__accessories','Aksesori komputer','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14649,'sg','products','Produk','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14650,'sg','in_your_cart','di dalam troli anda','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14651,'sg','in_your_wishlist','dalam senarai keinginan anda','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14652,'sg','you_ordered','awak pesan','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14653,'sg','default_shipping_address','Alamat Penghantaran Lalai','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14654,'sg','sports__outdoor','Sukan & luaran','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14655,'sg','copied','Disalin','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14656,'sg','copy_the_promote_link','Salin Pautan Promosi','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14657,'sg','write_a_review','Menulis ulasan','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14658,'sg','your_name','Nama awak','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14659,'sg','comment','Komen','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14660,'sg','your_review','Ulasan anda','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14661,'sg','submit_review','Hantar semakan','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14662,'sg','claire_willis','Claire Willis','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14663,'sg','germaine_greene','Germaine Greene','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14664,'sg','product_file','Fail Produk','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14665,'sg','choose_file','Pilih fail','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14666,'sg','type_to_add_a_tag','Taip untuk menambah teg','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14667,'sg','images','Gambar','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14668,'sg','main_images','Imej Utama','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14669,'sg','meta_tags','Teg Meta','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14670,'sg','digital_product_has_been_inserted_successfully','Produk Digital berjaya dimasukkan','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14671,'sg','edit_digital_product','Edit Produk Digital','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14672,'sg','select_an_option','Buat pilihan','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14673,'sg','tax','cukai','2021-02-09 07:43:29','2021-02-09 07:43:29'),(14674,'sg','any_question_about_this_product','Ada sebarang pertanyaan mengenai produk ini?','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14675,'sg','sign_in','Log masuk','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14676,'sg','login_with_google','Log masuk dengan Google','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14677,'sg','login_with_facebook','Log masuk melalui Facebook','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14678,'sg','login_with_twitter','Log masuk dengan Twitter','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14679,'sg','click_to_show_phone_number','Klik untuk menunjukkan nombor telefon','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14680,'sg','other_ads_of','Iklan lain dari','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14681,'sg','store_home','Stor Rumah','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14682,'sg','top_selling','Terlaris','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14683,'sg','shop_settings','Tetapan Kedai','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14684,'sg','visit_shop','Lawati Kedai','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14685,'sg','pickup_points','Mata Pengambilan','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14686,'sg','select_pickup_point','Pilih Pickup Point','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14687,'sg','slider_settings','Tetapan Gelangsar','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14688,'sg','social_media_link','Pautan Media Sosial','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14689,'sg','facebook','Facebook','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14690,'sg','twitter','Twitter','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14691,'sg','google','Google','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14692,'sg','new_arrival_products','Produk Ketibaan Baru','2021-02-09 07:43:29','2021-09-20 07:29:51'),(14693,'sg','check_your_order_status','Periksa Status Pesanan Anda','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14694,'sg','shipping_method','Cara penghantaran','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14695,'sg','shipped_by','Dihantar oleh','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14696,'sg','image','Imej','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14697,'sg','sub_sub_category','Sub Sub Kategori','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14698,'sg','inhouse_products','Produk Dalaman','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14699,'sg','forgot_password','Lupa kata laluan?','2021-02-09 07:43:30','2021-09-20 07:29: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 07:43:30','2021-09-20 07:29:51'),(14701,'sg','email_or_phone','Emel atau telefon','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14702,'sg','send_password_reset_link','Hantar Pautan Tetapkan Semula Kata Laluan','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14703,'sg','back_to_login','Kembali ke Log Masuk','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14704,'sg','index','indeks','2021-02-09 07:43:30','2021-02-09 07:43:30'),(14705,'sg','download_your_product','Muat turun Produk Anda','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14706,'sg','option','Pilihan','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14707,'sg','applied_refund_request','Permintaan Bayaran Balik Terpakai','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14708,'sg','item_has_been_renoved_from_wishlist','Item telah ditukar dari senarai keinginan','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14709,'sg','bulk_products_upload','Muat Naik Produk Pukal','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14710,'sg','upload_csv','Muat naik CSV','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14711,'sg','create_a_ticket','Buat Tiket','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14712,'sg','tickets','Tiket','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14713,'sg','ticket_id','ID tiket','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14714,'sg','sending_date','Tarikh Penghantaran','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14715,'sg','subject','Subjek','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14716,'sg','view_details','Lihat butiran','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14717,'sg','provide_a_detailed_description','Berikan penerangan terperinci','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14718,'sg','type_your_reply','Taipkan jawapan anda','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14719,'sg','send_ticket','Hantar Tiket','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14720,'sg','load_more','Tambah lagi','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14721,'sg','jewelry__watches','Perhiasan & Jam Tangan','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14722,'sg','filters','Penapis','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14723,'sg','contact_address','Alamat','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14724,'sg','contact_phone','Telefon kenalan','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14725,'sg','contact_email','E-mel hubungan','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14726,'sg','filter_by','Tapis mengikut','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14727,'sg','condition','Keadaan','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14728,'sg','all_type','Semua Jenis','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14729,'sg','pay_with_wallet','Bayar dengan dompet','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14730,'sg','select_variation','Pilih variasi','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14731,'sg','no_product_added','Tiada Produk Ditambah','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14732,'sg','status_has_been_updated_successfully','Status telah berjaya dikemas kini','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14733,'sg','all_seller_packages','Semua Pakej Penjual','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14734,'sg','add_new_package','Tambah Pakej Baru','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14735,'sg','package_logo','Logo Pakej','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14736,'sg','days','hari-hari','2021-02-09 07:43:30','2021-02-09 07:43:30'),(14737,'sg','create_new_seller_package','Buat Pakej Penjual Baru','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14738,'sg','package_name','Nama Pakej','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14739,'sg','duration','Jangka masa','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14740,'sg','validity_in_number_of_days','Kesahan dalam bilangan hari','2021-02-09 07:43:30','2021-09-20 07:29:51'),(14741,'sg','update_package_information','Kemas kini Maklumat Pakej','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14742,'sg','package_has_been_inserted_successfully','Pakej telah berjaya dimasukkan','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14743,'sg','refund_request','Permintaan Bayaran Balik','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14744,'sg','reason','Sebab','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14745,'sg','label','Label','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14746,'sg','select_label','Pilih Label','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14747,'sg','multiple_select_label','Pelbagai Pilih Label','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14748,'sg','radio_label','Label Radio','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14749,'sg','pickup_point_orders','Pesanan Pickup Point','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14750,'sg','view','Pandangan','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14751,'sg','order_','Pesanan #','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14752,'sg','order_status','Status pesanan','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14753,'sg','total_amount','Jumlah keseluruhan','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14754,'sg','total','JUMLAH','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14755,'sg','delivery_status_has_been_updated','Status penghantaran telah dikemas kini','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14756,'sg','payment_status_has_been_updated','Status pembayaran telah dikemas kini','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14757,'sg','invoice','INVOIS','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14758,'sg','set_refund_time','Tetapkan Masa Bayaran Balik','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14759,'sg','set_time_for_sending_refund_request','Tetapkan Masa untuk menghantar Permintaan Bayaran Balik','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14760,'sg','set_refund_sticker','Tetapkan Pelekat Bayaran Balik','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14761,'sg','sticker','Pelekat','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14762,'sg','refund_request_all','Permintaan Bayaran Balik Semua','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14763,'sg','order_id','Id Pesanan','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14764,'sg','seller_approval','Kelulusan Penjual','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14765,'sg','admin_approval','Kelulusan Pentadbir','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14766,'sg','refund_status','Status Bayaran Balik','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14767,'sg','no_refund','Tanpa Bayaran Balik','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14768,'sg','status_updated_successfully','Status berjaya dikemas kini','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14769,'sg','user_search_report','Laporan Carian Pengguna','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14770,'sg','search_by','Dicari oleh','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14771,'sg','number_searches','Pencarian nombor','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14772,'sg','sender','Penghantar','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14773,'sg','receiver','Penerima','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14774,'sg','verification_form_updated_successfully','Borang pengesahan berjaya dikemas kini','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14775,'sg','invalid_email_or_password','emel dan kata laluan tidak sah','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14776,'sg','all_coupons','Semua Kupon','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14777,'sg','add_new_coupon','Tambah Kupon Baru','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14778,'sg','coupon_information','Maklumat Kupon','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14779,'sg','start_date','Tarikh mula','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14780,'sg','end_date','Tarikh tamat','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14781,'sg','product_base','Pangkalan Produk','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14782,'sg','send_newsletter','Hantar Buletin','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14783,'sg','mobile_users','Pengguna Mudah Alih','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14784,'sg','sms_subject','Subjek SMS','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14785,'sg','sms_content','Kandungan SMS','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14786,'sg','all_flash_delas','Semua Flash Delas','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14787,'sg','create_new_flash_dela','Buat Dela Flash Baru','2021-02-09 07:43:31','2021-09-20 07:29:51'),(14788,'sg','page_link','Pautan Halaman','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14789,'sg','flash_deal_information','Maklumat Perjanjian Kilat','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14790,'sg','background_color','Warna latar belakang','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14791,'sg','0000ff','# 0000ff','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14792,'sg','text_color','Warna Teks','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14793,'sg','white','Putih','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14794,'sg','dark','Gelap','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14795,'sg','choose_products','Pilih Produk','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14796,'sg','discounts','Potongan harga','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14797,'sg','discount_type','Jenis Diskaun','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14798,'sg','twillo_credential','Kepujian Twillo','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14799,'sg','twilio_sid','TWILIO SID','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14800,'sg','twilio_auth_token','TOKEN AUTH TWILIO','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14801,'sg','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14802,'sg','valid_twillo_number','NOMBOR DUA BIL','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14803,'sg','nexmo_credential','Kelayakan Nexmo','2021-02-09 07:43:32','2021-09-20 07:29:51'),(14804,'sg','nexmo_key','KUNCI NEXMO','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14805,'sg','nexmo_secret','RAHSIA NEXMO','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14806,'sg','ssl_wireless_credential','Kelayakan Tanpa Wayar SSL','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14807,'sg','ssl_sms_api_token','TOKEN API SMS SSL','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14808,'sg','ssl_sms_sid','SSL SMS SSL','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14809,'sg','ssl_sms_url','URL SMS SSL','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14810,'sg','fast2sms_credential','Kelayakan Fast2SMS','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14811,'sg','auth_key','KUNCI AUTH','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14812,'sg','route','JALAN','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14813,'sg','promotional_use','Penggunaan Promosi','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14814,'sg','transactional_use','Penggunaan Transaksional','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14815,'sg','sender_id','ID PENGHANTAR','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14816,'sg','nexmo_otp','Nexmo OTP','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14817,'sg','twillo_otp','Twillo OTP','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14818,'sg','ssl_wireless_otp','OTP Tanpa Wayar SSL','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14819,'sg','fast2sms_otp','OTP Cepat2SMS','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14820,'sg','order_placement','Penempatan Pesanan','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14821,'sg','delivery_status_changing_time','Status Perubahan Waktu Penghantaran','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14822,'sg','paid_status_changing_time','Masa Berubah Status Berbayar','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14823,'sg','send_bulk_sms','Hantar SMS Pukal','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14824,'sg','all_subscribers','Semua Pelanggan','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14825,'sg','coupon_information_adding','Menambah Maklumat Kupon','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14826,'sg','coupon_type','Jenis Kupon','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14827,'sg','for_products','Untuk Produk','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14828,'sg','for_total_orders','Untuk Jumlah Pesanan','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14829,'sg','add_your_product_base_coupon','Tambahkan Kupon Pangkalan Produk Anda','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14830,'sg','coupon_code','Kod Kupon','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14831,'sg','sub_category','Sub Kategori','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14832,'sg','add_more','Tambah Lagi','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14833,'sg','add_your_cart_base_coupon','Tambahkan Kupon Pangkalan Troli Anda','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14834,'sg','minimum_shopping','Belanja Minimum','2021-02-09 07:43:32','2021-09-20 07:29:52'),(14835,'sg','maximum_discount_amount','Amaun Diskaun Maksimum','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14836,'sg','coupon_information_update','Kemas kini Maklumat Kupon','2021-02-09 07:43:33','2021-09-20 07:29: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 07:43:33','2021-09-20 07:29:52'),(14838,'sg','configure_now','Konfigurasikan Sekarang','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14839,'sg','total_published_products','Jumlah produk yang diterbitkan','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14840,'sg','total_sellers_products','Jumlah produk penjual','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14841,'sg','total_admin_products','Jumlah produk pentadbir','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14842,'sg','manage_products','Urus Produk','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14843,'sg','total_product_category','Jumlah kategori produk','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14844,'sg','create_category','Buat Kategori','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14845,'sg','total_product_sub_sub_category','Jumlah subkategori produk','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14846,'sg','create_sub_sub_category','Buat Sub Sub Kategori','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14847,'sg','total_product_sub_category','Jumlah subkategori produk','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14848,'sg','create_sub_category','Buat Sub Kategori','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14849,'sg','total_product_brand','Jumlah jenama produk','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14850,'sg','create_brand','Buat Jenama','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14851,'sg','total_sellers','Jumlah penjual','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14852,'sg','total_approved_sellers','Jumlah penjual yang diluluskan','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14853,'sg','total_pending_sellers','Jumlah penjual belum selesai','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14854,'sg','manage_sellers','Urus Penjual','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14855,'sg','category_wise_product_sale','Penjualan produk berdasarkan kategori','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14856,'sg','sale','Jualan','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14857,'sg','category_wise_product_stock','Stok produk bijak kategori','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14858,'sg','category_name','Nama kategori','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14859,'sg','stock','Stok','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14860,'sg','frontend','Bahagian depan','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14861,'sg','home_page','Laman utama','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14862,'sg','setting','tetapan','2021-02-09 07:43:33','2021-02-09 07:43:33'),(14863,'sg','policy_page','Halaman dasar','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14864,'sg','general','Am','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14865,'sg','click_here','Tekan di sini','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14866,'sg','useful_link','Pautan berguna','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14867,'sg','activation','Pengaktifan','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14868,'sg','smtp','SMTP','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14869,'sg','payment_method','Kaedah pembayaran','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14870,'sg','social_media','Media sosial','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14871,'sg','business','Perniagaan','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14872,'sg','seller_verification','Pengesahan penjual','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14873,'sg','form_setting','penetapan borang','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14874,'sg','language','Bahasa','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14875,'sg','dashboard','Papan Pemuka','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14876,'sg','pos_system','Sistem POS','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14877,'sg','pos_manager','Pengurus POS','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14878,'sg','pos_configuration','Konfigurasi POS','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14879,'sg','products','Produk','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14880,'sg','add_new_product','Tambah produk Baru','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14881,'sg','all_products','Semua produk','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14882,'sg','in_house_products','Produk Rumah','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14883,'sg','seller_products','Produk Penjual','2021-02-09 07:43:33','2021-09-20 07:29:52'),(14884,'sg','digital_products','Produk Digital','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14885,'sg','bulk_import','Import Pukal','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14886,'sg','bulk_export','Eksport Pukal','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14887,'sg','category','Kategori','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14888,'sg','subcategory','Subkategori','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14889,'sg','sub_subcategory','Subkategori','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14890,'sg','brand','Jenama','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14891,'sg','attribute','Atribut','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14892,'sg','product_reviews','Ulasan Produk','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14893,'sg','sales','Jualan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14894,'sg','all_orders','Semua Pesanan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14895,'sg','inhouse_orders','Pesanan dalam rumah','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14896,'sg','seller_orders','Pesanan Penjual','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14897,'sg','pickup_point_order','Pesanan Titik Pick-up','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14898,'sg','refunds','Bayaran Balik','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14899,'sg','refund_requests','Permintaan Bayaran Balik','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14900,'sg','approved_refund','Bayaran Balik yang Diluluskan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14901,'sg','refund_configuration','Konfigurasi Bayaran Balik','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14902,'sg','customers','Pelanggan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14903,'sg','customer_list','Senarai pelanggan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14904,'sg','classified_products','Produk Terkelaskan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14905,'sg','classified_packages','Pakej Terkelaskan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14906,'sg','sellers','Penjual','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14907,'sg','all_seller','Semua Penjual','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14908,'sg','payouts','Bayaran','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14909,'sg','payout_requests','Permintaan Pembayaran','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14910,'sg','seller_commission','Suruhanjaya Penjual','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14911,'sg','seller_packages','Pakej Penjual','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14912,'sg','seller_verification_form','Borang Pengesahan Penjual','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14913,'sg','reports','Laporan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14914,'sg','in_house_product_sale','Jualan Produk Dalam Rumah','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14915,'sg','seller_products_sale','Penjualan Produk Penjual','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14916,'sg','products_stock','Stok Produk','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14917,'sg','products_wishlist','Senarai harapan produk','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14918,'sg','user_searches','Carian Pengguna','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14919,'sg','marketing','Pemasaran','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14920,'sg','flash_deals','Tawaran kilat','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14921,'sg','newsletters','Surat berita','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14922,'sg','bulk_sms','SMS pukal','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14923,'sg','subscribers','Pelanggan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14924,'sg','coupon','Kupon','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14925,'sg','support','Sokongan','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14926,'sg','ticket','Tiket','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14927,'sg','product_queries','Pertanyaan Produk','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14928,'sg','website_setup','Persediaan Laman Web','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14929,'sg','header','Kepala','2021-02-09 07:43:34','2021-09-20 07:29:52'),(14930,'sg','footer','Kaki','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14931,'sg','pages','Halaman','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14932,'sg','appearance','Penampilan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14933,'sg','setup__configurations','Persediaan & Konfigurasi','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14934,'sg','general_settings','Tetapan umum','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14935,'sg','features_activation','Ciri pengaktifan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14936,'sg','languages','Bahasa','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14937,'sg','currency','Mata Wang','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14938,'sg','pickup_point','Titik pengambilan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14939,'sg','smtp_settings','Tetapan SMTP','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14940,'sg','payment_methods','cara bayaran','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14941,'sg','file_system_configuration','Konfigurasi Sistem Fail','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14942,'sg','social_media_logins','Log masuk media sosial','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14943,'sg','analytics_tools','Alat Analisis','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14944,'sg','facebook_chat','Sembang Facebook','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14945,'sg','google_recaptcha','Google reCAPTCHA','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14946,'sg','shipping_configuration','Konfigurasi Penghantaran','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14947,'sg','shipping_countries','Negara Penghantaran','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14948,'sg','affiliate_system','Sistem Gabungan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14949,'sg','affiliate_registration_form','Borang Pendaftaran Gabungan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14950,'sg','affiliate_configurations','Konfigurasi Gabungan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14951,'sg','affiliate_users','Pengguna Gabungan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14952,'sg','referral_users','Pengguna Rujukan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14953,'sg','affiliate_withdraw_requests','Permintaan Pengeluaran Gabungan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14954,'sg','offline_payment_system','Sistem Pembayaran Luar Talian','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14955,'sg','manual_payment_methods','Kaedah Pembayaran Manual','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14956,'sg','offline_wallet_recharge','Isi Ulang Dompet Luar Talian','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14957,'sg','offline_customer_package_payments','Pembayaran Pakej Pelanggan Luar Talian','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14958,'sg','offline_seller_package_payments','Pembayaran Pakej Penjual Luar Talian','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14959,'sg','paytm_payment_gateway','Gerbang Pembayaran Paytm','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14960,'sg','set_paytm_credentials','Tetapkan Kelayakan Paytm','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14961,'sg','club_point_system','Sistem Titik Kelab','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14962,'sg','club_point_configurations','Konfigurasi Titik Kelab','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14963,'sg','set_product_point','Tetapkan Titik Produk','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14964,'sg','user_points','Mata Pengguna','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14965,'sg','otp_system','Sistem OTP','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14966,'sg','otp_configurations','Konfigurasi OTP','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14967,'sg','set_otp_credentials','Tetapkan Kelayakan OTP','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14968,'sg','staffs','Kakitangan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14969,'sg','all_staffs','Semua kakitangan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14970,'sg','staff_permissions','Kebenaran kakitangan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14971,'sg','addon_manager','Pengurus Addon','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14972,'sg','browse_website','Layari Laman Web','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14973,'sg','pos','POS','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14974,'sg','notifications','Pemberitahuan','2021-02-09 07:43:35','2021-09-20 07:29:52'),(14975,'sg','new_orders','pesanan baru','2021-02-09 07:43:36','2021-09-20 07:29:52'),(14976,'sg','userimage','gambar pengguna','2021-02-09 07:43:36','2021-09-20 07:29:52'),(14977,'sg','profile','Profil','2021-02-09 07:43:36','2021-09-20 07:29:52'),(14978,'sg','logout','Log keluar','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14979,'sg','page_not_found','Laman tidak dijumpai!','2021-02-09 07:44:19','2021-09-20 07:29: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 07:44:19','2021-09-20 07:29:52'),(14981,'sg','registration','Pendaftaran','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14982,'sg','i_am_shopping_for','Saya membeli-belah untuk ...','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14983,'sg','compare','Bandingkan','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14984,'sg','wishlist','Daftar Keinginan','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14985,'sg','cart','Troli','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14986,'sg','your_cart_is_empty','Troli anda kosong','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14987,'sg','categories','Kategori','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14988,'sg','see_all','Lihat semua','2021-02-09 07:44:19','2021-09-20 07:29:52'),(14989,'sg','seller_policy','Dasar Penjual','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14990,'sg','return_policy','Syarat pengembalian','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14991,'sg','support_policy','Dasar Sokongan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14992,'sg','privacy_policy','Dasar Privasi','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14993,'sg','your_email_address','Alamat E-mel Anda','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14994,'sg','subscribe','Langgan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14995,'sg','contact_info','Maklumat Perhubungan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14996,'sg','address','Alamat','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14997,'sg','phone','Telefon','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14998,'sg','email','E-mel','2021-02-09 07:44:20','2021-09-20 07:29:52'),(14999,'sg','login','Log masuk','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15000,'sg','my_account','Akaun saya','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15001,'sg','order_history','Sejarah Pesanan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15002,'sg','my_wishlist','Permintaan Saya','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15003,'sg','track_order','Susunan Jejak','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15004,'sg','be_an_affiliate_partner','Jadilah rakan sekutu','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15005,'sg','be_a_seller','Jadilah Penjual','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15006,'sg','apply_now','Mohon sekarang','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15007,'sg','confirmation','Pengesahan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15008,'sg','delete_confirmation_message','Padamkan mesej pengesahan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15009,'sg','cancel','Batal','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15010,'sg','delete','Padam','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15011,'sg','item_has_been_added_to_compare_list','Item telah ditambahkan untuk membandingkan senarai','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15012,'sg','please_login_first','Sila log masuk dahulu','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15013,'sg','total_earnings_from','Jumlah Pendapatan Dari','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15014,'sg','client_subscription','Langganan Pelanggan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15015,'sg','product_category','Kategori Produk','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15016,'sg','product_sub_sub_category','Subkategori produk','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15017,'sg','product_sub_category','Subkategori produk','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15018,'sg','product_brand','Jenama produk','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15019,'sg','top_client_packages','Pakej Pelanggan Teratas','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15020,'sg','top_freelancer_packages','Pakej Freelancer Teratas','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15021,'sg','number_of_sale','Jumlah penjualan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15022,'sg','number_of_stock','Bilangan Stok','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15023,'sg','top_10_products','10 Produk Teratas','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15024,'sg','top_12_products','12 Produk Teratas','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15025,'sg','admin_can_not_be_a_seller','Admin tidak boleh menjadi penjual','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15026,'sg','filter_by_rating','Tapis mengikut Penarafan','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15027,'sg','published_reviews_updated_successfully','Ulasan yang diterbitkan berjaya dikemas kini','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15028,'sg','refund_sticker_has_been_updated_successfully','Refund Sticker berjaya dikemas kini','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15029,'sg','edit_product','Edit Produk','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15030,'sg','meta_images','Imej Meta','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15031,'sg','update_product','Kemas kini Produk','2021-02-09 07:44:20','2021-09-20 07:29:52'),(15032,'sg','product_has_been_deleted_successfully','Produk berjaya dipadamkan','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15033,'sg','your_profile_has_been_updated_successfully','Profil anda berjaya dikemas kini!','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15034,'sg','upload_limit_has_been_reached_please_upgrade_your_package','Had muat naik telah dicapai. Sila tingkatkan pakej anda.','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15035,'sg','add_your_product','Tambah Produk Anda','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15036,'sg','select_a_category','Pilih kategori','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15037,'sg','select_a_brand','Pilih jenama','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15038,'sg','product_unit','Unit Produk','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15039,'sg','minimum_qty','Kuantiti minimum.','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15040,'sg','product_tag','Tag Produk','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15041,'sg','type__hit_enter','Taip & tekan enter','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15042,'sg','videos','Video','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15043,'sg','video_from','Video Dari','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15044,'sg','video_url','URL video','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15045,'sg','customer_choice','Pilihan Pelanggan','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15046,'sg','pdf','PDF','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15047,'sg','choose_pdf','Pilih PDF','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15048,'sg','select_category','Pilih Kategori','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15049,'sg','target_category','Kategori Sasaran','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15050,'sg','subsubcategory','subkategori','2021-02-09 07:44:21','2021-02-09 07:44:21'),(15051,'sg','search_category','Kategori Carian','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15052,'sg','search_subcategory','Cari Subkategori','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15053,'sg','search_subsubcategory','Cari SubSubKategori','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15054,'sg','update_your_product','Kemas kini produk anda','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15055,'sg','product_has_been_updated_successfully','Produk berjaya dikemas kini','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15056,'sg','add_your_digital_product','Tambahkan Produk Digital Anda','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15057,'sg','active_ecommerce_cms_update_process','Proses Kemas kini CMS eCommerce aktif','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15058,'sg','codecanyon_purchase_code','Kod pembelian Codecanyon','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15059,'sg','database_name','Nama Pangkalan Data','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15060,'sg','database_username','Nama Pengguna Pangkalan Data','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15061,'sg','database_password','Kata Laluan Pangkalan Data','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15062,'sg','database_hostname','Nama Hos Pangkalan Data','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15063,'sg','update_now','Mengemas kini sekarang','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15064,'sg','congratulations','Selamat bertunang','2021-02-09 07:44:21','2021-09-20 07:29: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 07:44:21','2021-09-20 07:29:52'),(15066,'sg','go_to_home','Pulang ke rumah','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15067,'sg','login_to_admin_panel','Log masuk ke panel Pentadbir','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15068,'sg','s3_file_system_credentials','Kelayakan Sistem Fail S3','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15069,'sg','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15070,'sg','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15071,'sg','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15072,'sg','aws_bucket','AWS_BUCKET','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15073,'sg','aws_url','AWS_URL','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15074,'sg','s3_file_system_activation','Pengaktifan Sistem Fail S3','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15075,'sg','your_phone_number','Nombor telefon anda','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15076,'sg','zip_file','Fail Zip','2021-02-09 07:44:21','2021-09-20 07:29:52'),(15077,'sg','install','Pasang','2021-02-09 07:44:21','2021-09-20 07:29: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 07:44:22','2021-09-20 07:29:52'),(15079,'sg','search_in_menu','Cari dalam menu','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15080,'sg','uploaded_files','Fail yang dimuat naik','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15081,'sg','shipping_cities','Bandar Penghantaran','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15082,'sg','system','Sistem','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15083,'sg','server_status','Status pelayan','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15084,'sg','nothing_found','Tiada apa-apa Dijumpai','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15085,'sg','parent_category','Kategori Ibu Bapa','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15086,'sg','level','Tahap','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15087,'sg','category_information','Maklumat Kategori','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15088,'sg','translatable','Boleh dilayari','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15089,'sg','no_parent','Tiada Ibu Bapa','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15090,'sg','physical','Fizikal','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15091,'sg','digital','Digital','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15092,'sg','200x200','200x200','2021-02-09 07:44:22','2021-02-09 07:44:22'),(15093,'sg','32x32','32x32','2021-02-09 07:44:22','2021-02-09 07:44:22'),(15094,'sg','search_your_files','Cari fail anda','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15095,'sg','category_has_been_updated_successfully','Kategori telah berjaya dikemas kini','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15096,'sg','all_uploaded_files','Semua fail yang dimuat naik','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15097,'sg','upload_new_file','Muat Naik Fail Baru','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15098,'sg','all_files','Semua fail','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15099,'sg','search','Cari','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15100,'sg','details_info','Maklumat Perincian','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15101,'sg','copy_link','Salin pautan','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15102,'sg','are_you_sure_to_delete_this_file','Adakah anda pasti memadamkan fail ini?','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15103,'sg','file_info','Maklumat Fail','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15104,'sg','link_copied_to_clipboard','Pautan disalin ke papan keratan','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15105,'sg','oops_unable_to_copy','Op, tidak dapat menyalin','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15106,'sg','file_deleted_successfully','Fail berjaya dipadamkan','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15107,'sg','add_new_brand','Tambah Jenama Baru','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15108,'sg','120x80','120x80','2021-02-09 07:44:22','2021-02-09 07:44:22'),(15109,'sg','brand_information','Maklumat Jenama','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15110,'sg','brand_has_been_updated_successfully','Jenama telah berjaya dikemas kini','2021-02-09 07:44:22','2021-09-20 07:29:52'),(15111,'sg','brand_has_been_deleted_successfully','Jenama berjaya dipadamkan','2021-02-09 07:44:22','2021-09-20 07:29: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 07:44:22','2021-09-20 07:29: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 07:44:22','2021-09-20 07:29: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 07:44:22','2021-09-20 07:29: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 07:44:22','2021-09-20 07:29:53'),(15116,'sg','save_product','Jimat Produk','2021-02-09 07:44:22','2021-09-20 07:29:53'),(15117,'sg','product_has_been_inserted_successfully','Produk berjaya dimasukkan','2021-02-09 07:44:22','2021-09-20 07:29:53'),(15118,'sg','something_went_wrong','Ada yang tidak kena!','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15119,'sg','sorry_for_the_inconvenience_but_were_working_on_it','Maaf atas kesulitan ini, tetapi kami sedang mengusahakannya.','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15120,'sg','error_code','Kod salah','2021-02-09 07:44:23','2021-09-20 07:29: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 07:44:23','2021-09-20 07:29:53'),(15122,'sg','order','Pesanan','2021-02-09 07:44:23','2021-09-20 07:29: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 07:44:23','2021-09-20 07:29:53'),(15124,'sg','home_banner_3_max_3','Sepanduk Rumah 3 (Maksimum 3)','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15125,'sg','add_new_seller','Tambah Penjual Baru','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15126,'sg','filter_by_approval','Tapis mengikut Kelulusan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15127,'sg','nonapproved','Tidak Diluluskan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15128,'sg','type_name_or_email__enter','Taipkan nama atau e-mel & Masukkan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15129,'sg','due_to_seller','Kerana penjual','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15130,'sg','log_in_as_this_seller','Log masuk sebagai Penjual ini','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15131,'sg','go_to_payment','Pergi ke Pembayaran','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15132,'sg','ban_this_seller','Larang penjual ini','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15133,'sg','do_you_really_want_to_ban_this_seller','Adakah anda benar-benar mahu melarang penjual ini?','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15134,'sg','proceed','Teruskan!','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15135,'sg','approved_sellers_updated_successfully','Penjual yang diluluskan berjaya dikemas kini','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15136,'sg','seller_has_been_deleted_successfully','Penjual berjaya dipadamkan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15137,'sg','seller_information','Maklumat Penjual','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15138,'sg','seller_has_been_inserted_successfully','Penjual berjaya dimasukkan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15139,'sg','email_already_exists','E-mel sudah ada!','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15140,'sg','verify_your_email_address','Mengesahkan alamat e-mel anda','2021-02-09 07:44:23','2021-09-20 07:29: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 07:44:23','2021-09-20 07:29:53'),(15142,'sg','if_you_did_not_receive_the_email','Sekiranya anda tidak menerima e-mel.','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15143,'sg','click_here_to_request_another','Klik di sini untuk meminta yang lain','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15144,'sg','email_verification','pengesahan email','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15145,'sg','email_verification__','Pengesahan email -','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15146,'sg','https_activation','Pengaktifan HTTPS','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15147,'sg','maintenance_mode','Mod penyelenggaraan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15148,'sg','maintenance_mode_activation','Pengaktifan Mod Penyelenggaraan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15149,'sg','classified_product_activate','Produk Terkelaskan Diaktifkan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15150,'sg','classified_product','Produk Terkelaskan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15151,'sg','business_related','Berkaitan Perniagaan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15152,'sg','vendor_system_activation','Pengaktifan Sistem Vendor','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15153,'sg','wallet_system_activation','Pengaktifan Sistem Dompet','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15154,'sg','coupon_system_activation','Pengaktifan Sistem Kupon','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15155,'sg','pickup_point_activation','Pengaktifan Titik Pickup','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15156,'sg','conversation_activation','Pengaktifan Perbualan','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15157,'sg','guest_checkout_activation','Pengaktifan Checkout Tetamu','2021-02-09 07:44:23','2021-09-20 07:29:53'),(15158,'sg','categorybased_commission','Suruhanjaya berdasarkan kategori','2021-02-09 07:44:23','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15160,'sg','set_commisssion_now','Tetapkan Komisen Sekarang','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15161,'sg','payment_related','Berkaitan Pembayaran','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15162,'sg','paypal_payment_activation','Pengaktifan Pembayaran Paypal','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15164,'sg','stripe_payment_activation','Pengaktifan Pembayaran Stripe','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15165,'sg','sslcommerz_activation','Pengaktifan SSlCommerz','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15166,'sg','instamojo_payment_activation','Pengaktifan Pembayaran Instamojo','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15168,'sg','razor_pay_activation','Pengaktifan Bayar Cukur','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15170,'sg','paystack_activation','Pengaktifan PayStack','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15172,'sg','voguepay_activation','Pengaktifan VoguePay','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15174,'sg','payhere_activation','Pengaktifan Payhere','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15175,'sg','ngenius_activation','Pengaktifan Ngenius','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15177,'sg','iyzico_activation','Pengaktifan Iyzico','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15179,'sg','bkash_activation','Pengaktifan Bkash','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15181,'sg','nagad_activation','Pengaktifan Nagad','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15183,'sg','cash_payment_activation','Pengaktifan Pembayaran Tunai','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15184,'sg','social_media_login','Log Masuk Media Sosial','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15185,'sg','facebook_login','log masuk Facebook','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15187,'sg','google_login','Log masuk Google','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15189,'sg','twitter_login','Log masuk Twitter','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15191,'sg','shop_logo','Logo Kedai','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15192,'sg','shop_address','Alamat Kedai','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15193,'sg','banner_settings','Tetapan Sepanduk','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15194,'sg','banners','Sepanduk','2021-02-09 07:44:24','2021-09-20 07:29: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 07:44:24','2021-09-20 07:29:53'),(15196,'sg','insert_link_with_https_','Masukkan pautan dengan https','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15197,'sg','your_shop_has_been_updated_successfully','Kedai Anda berjaya dikemas kini!','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15198,'sg','search_result_for_','Hasil carian untuk','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15199,'sg','brand_has_been_inserted_successfully','Jenama telah berjaya dimasukkan','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15200,'sg','about','Mengenai','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15201,'sg','payout_info','Maklumat Pembayaran','2021-02-09 07:44:24','2021-09-20 07:29:53'),(15202,'sg','bank_acc_name','Nama Acc Bank','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15203,'sg','bank_acc_number','Nombor Acc Bank','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15204,'sg','total_products','Jumlah Produk','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15205,'sg','total_sold_amount','Jumlah Jualan','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15206,'sg','wallet_balance','Baki Dompet','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15207,'sg','cookies_agreement','Perjanjian Cookies','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15208,'sg','cookies_agreement_text','Teks Perjanjian Kuki','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15209,'sg','show_cookies_agreement','Tunjukkan Perjanjian Cookies?','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15210,'sg','custom_script','Skrip Tersuai','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15211,'sg','header_custom_script__before_head','Skrip tersuai tajuk - sebelum </head>','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15212,'sg','write_script_with_script_tag','Tulis skrip dengan tag <script>','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15213,'sg','footer_custom_script__before_body','Skrip khas footer - sebelum </body>','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15214,'sg','category_has_been_inserted_successfully','Kategori telah berjaya dimasukkan','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15215,'sg','all_flash_deals','Semua Tawaran Kilat','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15216,'sg','create_new_flash_deal','Buat Tawaran Kilat Baru','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15217,'sg','ffffff','#FFFFFF','2021-02-09 07:44:25','2021-09-20 07:29: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 07:44:25','2021-09-20 07:29:53'),(15219,'sg','flash_deal_has_been_inserted_successfully','Flash Deal berjaya dimasukkan','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15220,'sg','flash_deal_status_updated_successfully','Status perjanjian kilat berjaya dikemas kini','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15221,'sg','flash_deal_has_been_updated_successfully','Flash Deal berjaya dikemas kini','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15222,'sg','update_language_info','kemas kini Maklumat Bahasa','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15223,'sg','language_has_been_updated_successfully','Bahasa berjaya dikemas kini','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15224,'sg','type_key__enter','Taip kekunci & Enter','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15225,'sg','translations_updated_for_','Terjemahan dikemas kini untuk','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15226,'sg','language_has_been_inserted_successfully','Bahasa telah berjaya disisipkan','2021-02-09 07:44:25','2021-09-20 07:29:53'),(15227,'vn','all_category','T�Q%�t c�Q%� c%�c lo�Q%�i','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15228,'vn','all','T�Q%�t c�Q%�','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15229,'vn','flash_sale','Gi�Q%�m gi%� th�Q%�n t�W%�c','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15230,'vn','view_more','Xem th%�m','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15231,'vn','add_to_wishlist','Th%�m v%�o danh s%�ch y%�u th%�ch','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15232,'vn','add_to_compare','Th%�m v%�o %��W%� so s%�nh','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15233,'vn','add_to_cart','Th%�m v%�o gi�W%� h%�ng','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15234,'vn','club_point','%�i�W%�m c%�u l�Q%�c b�W%�','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15235,'vn','classified_ads','Qu�Q%�ng c%�o %�%� ph%�n lo�Q%�i','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15236,'vn','used','%�%� s�W%� d�W%�ng','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15237,'vn','top_10_categories','10 danh m�W%�c h%�ng %��Q%�u','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15238,'vn','view_all_categories','Xem t�Q%�t c�Q%� danh m�W%�c','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15239,'vn','top_10_brands','10 th^%�%^%�ng hi�W%�u h%�ng %��Q%�u','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15240,'vn','view_all_brands','Xem t�Q%�t c�Q%� c%�c th^%�%^%�ng hi�W%�u','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15241,'vn','terms__conditions','%�i�W%�u kho�Q%�n v%� %�i�W%�u ki�W%�n','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15242,'vn','best_selling','B%�n ch�Q%�y nh�Q%�t','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15243,'vn','top_20','20 h�Q%�ng %��Q%�u','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15244,'vn','featured_products','S�Q%�n ph�Q%#m n�W%�i b�Q%�t','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15245,'vn','best_sellers','B%�n ch�Q%�y nh�Q%�t','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15246,'vn','visit_store','Gh%# th%�m c�W%�a h%�ng','2021-02-09 07:47:34','2021-09-20 07:29:53'),(15247,'vn','popular_suggestions','%��W%� xu�Q%�t ph�W%� bi�Q%%n','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15248,'vn','category_suggestions','%��W%� xu�Q%�t danh m�W%�c','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15249,'vn','automobile__motorcycle','%� t%$% & Xe m%�y','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15250,'vn','price_range','Ph�Q%�m vi gi%�','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15251,'vn','filter_by_color','L�W%�c theo m%�u','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15252,'vn','home','Trang Ch�W%�','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15253,'vn','newest','M�W%�i nh�Q%�t','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15254,'vn','oldest','C<%# nh�Q%�t','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15255,'vn','price_low_to_high','Gi%� th�Q%�p %��Q%%n cao','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15256,'vn','price_high_to_low','Gi%� t�W%� cao %��Q%%n th�Q%�p','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15257,'vn','brands','Nh%�n hi�W%�u','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15258,'vn','all_brands','T�Q%�t c�Q%� c%�c th^%�%^%�ng hi�W%�u','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15259,'vn','all_sellers','T�Q%�t c�Q%� ng^%�%�W%�i b%�n','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15260,'vn','inhouse_product','S�Q%�n ph�Q%#m n�W%�i b�W%�','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15261,'vn','message_seller','Ng^%�%�W%�i b%�n tin nh�Q%�n','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15262,'vn','price','Gi%� b%�n','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15263,'vn','discount_price','Gi�Q%�m gi%�','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15264,'vn','color','M%�u s�Q%�c','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15265,'vn','quantity','%��W%�nh l^%�%�W%�ng','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15266,'vn','available','c%% s�Q%a%n','2021-02-09 07:47:35','2021-02-09 07:47:35'),(15267,'vn','total_price','T�W%�ng gi%�','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15268,'vn','out_of_stock','H�Q%%t h%�ng','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15269,'vn','refund','Ho%�n ti�W%�n','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15270,'vn','share','Chia s�Q%W%','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15271,'vn','sold_by','%�^%�%�W%�c b%�n b�W%�i','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15272,'vn','customer_reviews','Ph�Q%�n h�W%�i kh%�ch h%�ng','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15273,'vn','top_selling_products','S�Q%�n ph�Q%#m b%�n ch�Q%�y nh�Q%�t','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15274,'vn','description','S�W%�% mi%�u t�Q%�','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15275,'vn','video','Video','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15276,'vn','reviews','Nh�Q%�n x%#t','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15277,'vn','download','T�Q%�i xu�W%�ng','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15278,'vn','there_have_been_no_reviews_for_this_product_yet','Ch^%�%a c%% nh�Q%�n x%#t n%�o cho s�Q%�n ph�Q%#m n%�y.','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15279,'vn','related_products','Nh�W%�ng s�Q%�m ph�Q%#m t^%�%^%�ng t�W%�%','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15280,'vn','any_query_about_this_product','M�W%�i th�Q%�c m�Q%�c v�W%� s�Q%�n ph�Q%#m n%�y','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15281,'vn','product_name','t%�n s�Q%�n ph�Q%#m','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15282,'vn','your_question','C%�u h�W%�i c�W%�a b�Q%�n','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15283,'vn','send','G�W%�i','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15284,'vn','use_country_code_before_number','S�W%� d�W%�ng m%� qu�W%�c gia tr^%�%�W%�c s�W%�','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15285,'vn','remember_me','Nh�W%� t%$%i','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15286,'vn','dont_have_an_account','Kh%$%ng c%% t%�i kho�Q%�n?','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15287,'vn','register_now','%�%�ng k%\% ngay','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15288,'vn','or_login_with','Ho�Q%V%c %�%�ng nh�Q%�p b�Q%�%ng','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15289,'vn','oops','Gi%�o s^%�%..','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15290,'vn','this_item_is_out_of_stock','M�Q%V%t h%�ng n%�y %�%� h�Q%%t!','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15291,'vn','back_to_shopping','Quay l�Q%�i mua s�Q%�m','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15292,'vn','login_to_your_account','%�%�ng nh�Q%�p v%�o t%�i kho�Q%�n c�W%�a b�Q%�n.','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15293,'vn','purchase_history','L�W%�ch s�W%� thanh to%�n','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15294,'vn','new','M�W%�i','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15295,'vn','downloads','T�Q%�i xu�W%�ng','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15296,'vn','sent_refund_request','Y%�u c�Q%�u ho%�n l�Q%�i ti�W%�n %�%� g�W%�i','2021-02-09 07:47:35','2021-09-20 07:29:53'),(15297,'vn','product_bulk_upload','T�Q%�i l%�n h%�ng lo�Q%�t s�Q%�n ph�Q%#m','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15298,'vn','orders','%�^%�n h%�ng','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15299,'vn','recieved_refund_request','Y%�u c�Q%�u ho%�n l�Q%�i ti�W%�n %�%� nh�Q%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15300,'vn','shop_setting','C%�i %��Q%V%t c�W%�a h%�ng','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15301,'vn','payment_history','L�W%�ch s�W%� thanh to%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15302,'vn','money_withdraw','R%Q%t ti�W%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15303,'vn','conversations','Cu�W%�c tr%�% chuy�W%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15304,'vn','my_wallet','V%� c�W%�a t%$%i','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15305,'vn','earning_points','Ki�Q%%m %�^%�%�W%�c %�i�W%�m','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15306,'vn','support_ticket','V%# �W%�ng h�W%�','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15307,'vn','manage_profile','Qu�Q%�n l%\% h�W%� s^%�','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15308,'vn','sold_amount','S�W%� l^%�%�W%�ng %�%� b%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15309,'vn','your_sold_amount_current_month','S�W%� ti�W%�n %�%� b%�n c�W%�a b�Q%�n (th%�ng hi�W%�n t�Q%�i)','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15310,'vn','total_sold','T�W%�ng s�W%� %�%� b%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15311,'vn','last_month_sold','Th%�ng tr^%�%�W%�c %�%� b%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15312,'vn','total_sale','T�W%�ng doanh thu','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15313,'vn','total_earnings','T�W%�ng Thu Nh�Q%�p','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15314,'vn','successful_orders','%�^%�n h%�ng th%�nh c%$%ng','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15315,'vn','total_orders','T�W%�ng s�W%� %�^%�n %��Q%V%t h%�ng','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15316,'vn','pending_orders','C�Q%�p ph%�t %�^%�n %��Q%V%t h%�ng','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15317,'vn','cancelled_orders','%�^%�n %��Q%V%t h%�ng %�%� h�W%�y','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15318,'vn','product','S�Q%�n ph�Q%#m','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15319,'vn','purchased_package','G%%i %�%� mua','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15320,'vn','package_not_found','Kh%$%ng t%�m th�Q%�y g%%i','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15321,'vn','upgrade_package','G%%i n%�ng c�Q%�p','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15322,'vn','shop','c�W%�a ti�W%�m','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15323,'vn','manage__organize_your_shop','Qu�Q%�n l%\% v%� t�W%� ch�W%#c c�W%�a h%�ng c�W%�a b�Q%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15324,'vn','go_to_setting','%�i t�W%�i c%�i %��Q%V%t','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15325,'vn','payment','Thanh to%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15326,'vn','configure_your_payment_method','%��W%�nh c�Q%�u h%�nh ph^%�%^%�ng th�W%#c thanh to%�n c�W%�a b�Q%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15327,'vn','my_panel','B�Q%�ng %�i�W%�u khi�W%�n c�W%�a t%$%i','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15328,'vn','item_has_been_added_to_wishlist','M�W%�c %�%� %�^%�%�W%�c th%�m v%�o danh s%�ch y%�u th%�ch','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15329,'vn','my_points','%�i�W%�m c�W%�a t%$%i','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15330,'vn','_points','%�i�W%�m','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15331,'vn','wallet_money','V%� ti�W%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15332,'vn','exchange_rate','T�W%V% gi%�','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15333,'vn','point_earning_history','L�W%�ch s�W%� ki�Q%%m %�i�W%�m','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15334,'vn','date','Ng%�y','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15335,'vn','points','%�i�W%�m','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15336,'vn','converted','Chuy�W%�n %��W%�i','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15337,'vn','action','Ho�Q%�t %��W%�ng','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15338,'vn','no_history_found','Kh%$%ng t%�m th�Q%�y l�W%�ch s�W%�.','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15339,'vn','convert_has_been_done_successfully_check_your_wallets','Chuy�W%�n %��W%�i %�%� %�^%�%�W%�c th�W%�%c hi�W%�n th%�nh c%$%ng Ki�W%�m tra v%� c�W%�a b�Q%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15340,'vn','something_went_wrong','%�%� x�Q%�y ra l�W%�i','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15341,'vn','remaining_uploads','T�Q%�i l%�n c%�%n l�Q%�i','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15342,'vn','no_package_found','Kh%$%ng t%�m th�Q%�y g%%i n%�o','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15343,'vn','search_product','T%�m ki�Q%%m s�Q%�n ph�Q%#m','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15344,'vn','name','T%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15345,'vn','current_qty','S�W%� l^%�%�W%�ng hi�W%�n t�Q%�i','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15346,'vn','base_price','Gi%� c^%� b�Q%�n','2021-02-09 07:47:36','2021-09-20 07:29:53'),(15347,'vn','published','%�^%�%�W%�c ph%�t h%�nh','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15348,'vn','featured','%��Q%V%c s�Q%�c','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15349,'vn','options','T%c%y ch�W%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15350,'vn','edit','Bi%�n t�Q%�p','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15351,'vn','duplicate','B�Q%�n sao','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15352,'vn','1_download_the_skeleton_file_and_fill_it_with_data','1. T�Q%�i xu�W%�ng t�W%�p khung x^%�%^%�ng v%� %�i�W%�n v%�o n%% v�W%�i d�W%� li�W%�u.','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15353,'vn','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2. B�Q%�n c%% th�W%� t�Q%�i xu�W%�ng t�W%�p v%� d�W%� %��W%� hi�W%�u c%�ch d�W%� li�W%�u ph�Q%�i %�^%�%�W%�c %�i�W%�n.','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15354,'vn','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3. Khi b�Q%�n %�%� t�Q%�i xu�W%�ng v%� %�i�W%�n %��Q%�y %��W%� t�W%�p khung x^%�%^%�ng, h%�y t�Q%�i t�W%�p %�%% l%�n theo m�Q%�u b%�n d^%�%�W%�i v%� g�W%�i.','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15355,'vn','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4. Sau khi t�Q%�i l%�n s�Q%�n ph�Q%#m, b�Q%�n c�Q%�n ch�W%�nh s�W%�a ch%Q%ng v%� thi�Q%%t l�Q%�p h%�nh �Q%�nh s�Q%�n ph�Q%#m v%� l�W%�%a ch�W%�n.','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15356,'vn','download_csv','T�Q%�i xu�W%�ng CSV','2021-02-09 07:47:37','2021-09-20 07:29: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�Q%�i �W%� d�Q%�ng s�W%� id.','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15358,'vn','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. B�Q%�n c%% th�W%� t�Q%�i xu�W%�ng pdf %��W%� l�Q%�y Category, Sub category, Sub Category v%� Brand id.','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15359,'vn','download_category','T�Q%�i xu�W%�ng danh m�W%�c','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15360,'vn','download_sub_category','T�Q%�i xu�W%�ng danh m�W%�c ph�W%�','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15361,'vn','download_sub_sub_category','T�Q%�i xu�W%�ng danh m�W%�c Sub Sub','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15362,'vn','download_brand','T�Q%�i xu�W%�ng th^%�%^%�ng hi�W%�u','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15363,'vn','upload_csv_file','T�Q%�i l%�n t�W%�p CSV','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15364,'vn','csv','CSV','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15365,'vn','choose_csv_file','Ch�W%�n t�W%�p CSV','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15366,'vn','upload','T�Q%�i l%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15367,'vn','add_new_digital_product','Th%�m s�Q%�n ph�Q%#m k�W%c% thu�Q%�t s�W%� m�W%�i','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15368,'vn','available_status','T%�nh tr�Q%�ng c%% s�Q%a%n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15369,'vn','admin_status','Tr�Q%�ng th%�i qu�Q%�n tr�W%� vi%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15370,'vn','pending_balance','S�W%� d^%�% %�ang ch�W%� x�W%� l%\%','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15371,'vn','send_withdraw_request','G�W%�i y%�u c�Q%�u r%Q%t ti�W%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15372,'vn','withdraw_request_history','L�W%�ch s�W%� y%�u c�Q%�u r%Q%t ti�W%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15373,'vn','amount','S�W%� ti�W%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15374,'vn','status','Tr�Q%�ng th%�i','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15375,'vn','message','Th%$%ng %�i�W%�p','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15376,'vn','send_a_withdraw_request','G�W%�i y%�u c�Q%�u r%Q%t ti�W%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15377,'vn','basic_info','Th%$%ng tin c^%� b�Q%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15378,'vn','your_phone','%�i�W%�n tho�Q%�i c�W%�a b�Q%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15379,'vn','photo','t�Q%�m h%�nh','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15380,'vn','browse','Duy�W%�t qua','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15381,'vn','your_password','M�Q%�t kh�Q%#u c�W%�a b�Q%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15382,'vn','new_password','m�Q%�t kh�Q%#u m�W%�i','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15383,'vn','confirm_password','X%�c nh�Q%�n m�Q%�t kh�Q%#u','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15384,'vn','add_new_address','Th%�m %��W%�a ch�W%� m�W%�i','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15385,'vn','payment_setting','C%�i %��Q%V%t thanh to%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15386,'vn','cash_payment','Thanh to%�n b�Q%�%ng ti�W%�n m�Q%V%t','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15387,'vn','bank_payment','Thanh to%�n qua ng%�n h%�ng','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15388,'vn','bank_name','T%�n ng%�n h%�ng','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15389,'vn','bank_account_name','T%�n t%�i kho�Q%�n ng%�n h%�ng','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15390,'vn','bank_account_number','S�W%� t%�i kho�Q%�n ng%�n h%�ng','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15391,'vn','bank_routing_number','S�W%� %��W%�nh tuy�Q%%n ng%�n h%�ng','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15392,'vn','update_profile','C�Q%�p nh�Q%�t h�W%� s^%�','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15393,'vn','change_your_email','Thay %��W%�i email c�W%�a b�Q%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15394,'vn','your_email','Email c�W%�a b�Q%�n','2021-02-09 07:47:37','2021-09-20 07:29:53'),(15395,'vn','sending_email','G^%�%`%�i email...','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15396,'vn','verify','Ki�W%�m ch�W%#ng','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15397,'vn','update_email','C�Q%�p nh�Q%�t email','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15398,'vn','new_address','%��W%�a ch�W%� m�W%�i','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15399,'vn','your_address','%��W%�a ch�W%� c�W%�a b�Q%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15400,'vn','country','Qu�W%�c gia','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15401,'vn','select_your_country','Ch�W%�n %��Q%�t n^%�%�W%�c c�W%�a b�Q%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15402,'vn','city','Tp.','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15403,'vn','your_city','Th%�nh ph�W%� c�W%�a Ban','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15404,'vn','your_postal_code','M%� b^%�%u %�i�W%�n c�W%�a b�Q%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15405,'vn','880','+880','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15406,'vn','save','Ti�Q%%t ki�W%�m','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15407,'vn','received_refund_request','%�%� nh�Q%�n %�^%�%�W%�c y%�u c�Q%�u ho%�n l�Q%�i ti�W%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15408,'vn','delete_confirmation','x%%a x%�c nh�Q%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15409,'vn','are_you_sure_to_delete_this','B�Q%�n c%% ch�Q%�c ch�Q%�n x%%a c%�i n%�y kh%$%ng?','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15410,'vn','premium_packages_for_sellers','G%%i cao c�Q%�p d%�nh cho ng^%�%�W%�i b%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15411,'vn','product_upload','T�Q%�i l%�n s�Q%�n ph�Q%#m','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15412,'vn','digital_product_upload','T�Q%�i l%�n s�Q%�n ph�Q%#m k�W%c% thu�Q%�t s�W%�','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15413,'vn','purchase_package','Mua g%%i','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15414,'vn','select_payment_type','Ch�W%�n ph^%�%^%�ng th�W%#c thanh to%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15415,'vn','payment_type','H%�nh th�W%#c thanh to%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15416,'vn','select_one','Ch�W%�n m�W%�t','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15417,'vn','online_payment','Thanh to%�n tr�W%�%c tuy�Q%%n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15418,'vn','offline_payment','Thanh to%�n ngo�Q%�i tuy�Q%%n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15419,'vn','purchase_your_package','Mua g%%i c�W%�a b�Q%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15420,'vn','paypal','Paypal','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15421,'vn','stripe','Va`%�ch so`%�c','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15422,'vn','sslcommerz','sslcommerz','2021-02-09 07:47:38','2021-02-09 07:47:38'),(15423,'vn','confirm','X%�c nh�Q%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15424,'vn','offline_package_payment','Thanh to%�n g%%i ngo�Q%�i tuy�Q%%n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15425,'vn','transaction_id','ID giao d�W%�ch','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15426,'vn','choose_image','Ch�W%�n h%�nh �Q%�nh','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15427,'vn','code','M%�','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15428,'vn','delivery_status','T%�nh tr�Q%�ng giao h%�ng','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15429,'vn','payment_status','T%�nh tr�Q%�ng thanh to%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15430,'vn','paid','%�%� thanh to%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15431,'vn','order_details','Chi ti�Q%%t %�^%�n h%�ng','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15432,'vn','download_invoice','T�Q%�i xu�W%�ng h%%a %�^%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15433,'vn','unpaid','Ch^%�%a thanh to%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15434,'vn','order_placed','%�a %�%�`%�t hang','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15435,'vn','confirmed','%�%� x%�c nh�Q%�n','2021-02-09 07:47:38','2021-09-20 07:29:53'),(15436,'vn','on_delivery','Khi giao h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15437,'vn','delivered','%�%� giao h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15438,'vn','order_summary','T%%m t�Q%�t theo th�W%# t�W%�%','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15439,'vn','order_code','M%� %��Q%V%t h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15440,'vn','customer','kh%�ch h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15441,'vn','total_order_amount','T�W%�ng s�W%� ti�W%�n %��Q%V%t h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15442,'vn','shipping_metdod','Metdod v�Q%�n chuy�W%�n','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15443,'vn','flat_shipping_rate','T�W%V% l�W%� v�Q%�n chuy�W%�n c�W%� %��W%�nh','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15444,'vn','payment_metdod','Metdod thanh to%�n','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15445,'vn','variation','Bi�Q%%n th�W%�','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15446,'vn','delivery_type','Lo�Q%�i giao h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15447,'vn','home_delivery','Giao h%�ng t�Q%�n nh%�','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15448,'vn','order_ammount','%��Q%V%t h%�ng Ammount','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15449,'vn','subtotal','T�W%�ng ph�W%�','2021-02-09 07:47:39','2021-09-20 07:29:53'),(15450,'vn','shipping','%�ang chuy�W%�n h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15451,'vn','coupon_discount','Phi�Q%%u gi�Q%�m gi%�','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15452,'vn','na','N / A','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15453,'vn','in_stock','Trong kho','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15454,'vn','buy_now','Mua ngay','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15455,'vn','item_added_to_your_cart','M�W%�c %�^%�%�W%�c th%�m v%�o gi�W%� h%�ng c�W%�a b�Q%�n!','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15456,'vn','proceed_to_checkout','Ti�Q%%n h%�nh ki�W%�m tra','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15457,'vn','cart_items','C%�c m�Q%V%t h%�ng trong gi�W%� h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15458,'vn','1_my_cart','1. Gi�W%� h%�ng c�W%�a t%$%i','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15459,'vn','view_cart','Xem gi�W%� h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15460,'vn','2_shipping_info','2. Th%$%ng tin v�Q%�n chuy�W%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15461,'vn','checkout','Th�W%� t�W%�c thanh to%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15462,'vn','3_delivery_info','3. Th%$%ng tin giao h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15463,'vn','4_payment','4. Thanh to%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15464,'vn','5_confirmation','5. X%�c nh�Q%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15465,'vn','remove','T�Q%#y','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15466,'vn','return_to_shop','Quay l�Q%�i c�W%�a h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15467,'vn','continue_to_shipping','Ti�Q%%p t�W%�c v�Q%�n chuy�W%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15468,'vn','or','Ho�Q%V%c l%�','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15469,'vn','guest_checkout','Thanh to%�n c�W%�a kh%�ch','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15470,'vn','continue_to_delivery_info','Ti�Q%%p t�W%�c %��Q%%n th%$%ng tin giao h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15471,'vn','postal_code','M%� b^%�%u %�i�W%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15472,'vn','choose_delivery_type','Ch�W%�n lo�Q%�i giao h%�ng','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15473,'vn','local_pickup','Nh�Q%�n t�Q%�i %��W%�a ph^%�%^%�ng','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15474,'vn','select_your_nearest_pickup_point','Ch�W%�n %�i�W%�m %�%%n g�Q%�n nh�Q%�t c�W%�a b�Q%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15475,'vn','continue_to_payment','Ti�Q%%p t�W%�c thanh to%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15476,'vn','select_a_payment_option','Ch�W%�n m�W%�t t%c%y ch�W%�n thanh to%�n','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15477,'vn','razorpay','Razorpay','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15478,'vn','paystack','Paystack','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15479,'vn','voguepay','VoguePay','2021-02-09 07:47:39','2021-09-20 07:29:54'),(15480,'vn','payhere','thanh to%�n','2021-02-09 07:47:40','2021-02-09 07:47:40'),(15481,'vn','ngenius','ngenius','2021-02-09 07:47:40','2021-02-09 07:47:40'),(15482,'vn','paytm','Paytm','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15483,'vn','cash_on_delivery','thanh to%�n khi giao h%�ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15484,'vn','your_wallet_balance_','S�W%� d^%�% trong v%� c�W%�a b�Q%�n:','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15485,'vn','insufficient_balance','Thi�Q%%u c%�n b�Q%�%ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15486,'vn','i_agree_to_the','t%$%i %��W%�ng %\% v�W%�i','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15487,'vn','complete_order','K�Q%%t th%Q%c %��Q%V%t h%�ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15488,'vn','summary','T%%m l^%�%�W%�c','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15489,'vn','items','M�Q%V%t h%�ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15490,'vn','total_club_point','T�W%�ng %�i�W%�m C%�u l�Q%�c b�W%�','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15491,'vn','total_shipping','T�W%�ng s�W%� v�Q%�n chuy�W%�n','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15492,'vn','have_coupon_code_enter_here','C%% m%� phi�Q%%u gi�Q%�m gi%�? Nh�Q%�p v%�o %�%�y','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15493,'vn','apply','�W%�ng d�W%�ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15494,'vn','you_need_to_agree_with_our_policies','B�Q%�n c�Q%�n %��W%�ng %\% v�W%�i c%�c ch%�nh s%�ch c�W%�a ch%Q%ng t%$%i','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15495,'vn','forgot_password','Qu%�n m�Q%�t kh�Q%#u','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15496,'vn','seo_setting','C%�i %��Q%V%t SEO','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15497,'vn','system_update','C�Q%�p nh�Q%�t h�W%� th�W%�ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15498,'vn','add_new_payment_method','Th%�m ph^%�%^%�ng th�W%#c thanh to%�n m�W%�i','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15499,'vn','manual_payment_method','Ph^%�%^%�ng th�W%#c thanh to%�n th�W%� c%$%ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15500,'vn','heading','Ph�Q%�n m�W%� %��Q%�u','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15501,'vn','logo','Logo','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15502,'vn','manual_payment_information','Th%$%ng tin thanh to%�n th�W%� c%$%ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15503,'vn','type','Ki�W%�u','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15504,'vn','custom_payment','Thanh to%�n t%c%y ch�W%�nh','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15505,'vn','check_payment','Ki�W%�m tra thanh to%�n','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15506,'vn','checkout_thumbnail','H%�nh thu nh�W%� thanh to%�n','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15507,'vn','payment_instruction','H^%�%�W%�ng d�Q%�n thanh to%�n','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15508,'vn','bank_information','Th%$%ng tin ng%�n h%�ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15509,'vn','select_file','Ch�W%�n t�Q%�p tin','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15510,'vn','upload_new','T�Q%�i l%�n m�W%�i','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15511,'vn','sort_by_newest','S�Q%�p x�Q%%p theo m�W%�i nh�Q%�t','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15512,'vn','sort_by_oldest','S�Q%�p x�Q%%p theo th�W%# nh�Q%�t','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15513,'vn','sort_by_smallest','S�Q%�p x�Q%%p theo nh�W%� nh�Q%�t','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15514,'vn','sort_by_largest','S�Q%�p x�Q%%p theo l�W%�n nh�Q%�t','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15515,'vn','selected_only','Ch�W%� %�^%�%�W%�c ch�W%�n','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15516,'vn','no_files_found','Kh%$%ng t%�m th�Q%�y t�W%�p','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15517,'vn','0_file_selected','0 T�W%�p %�^%�%�W%�c ch�W%�n','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15518,'vn','clear','Th%$%ng tho%�ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15519,'vn','prev','Tr^%�%�W%�c %�%%','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15520,'vn','next','K�Q%% ti�Q%%p','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15521,'vn','add_files','Th%�m c%�c t�Q%�p tin','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15522,'vn','method_has_been_inserted_successfully','Ph^%�%^%�ng ph%�p %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 07:47:40','2021-09-20 07:29:54'),(15523,'vn','order_date','Ng%�y %��Q%V%t h%�ng','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15524,'vn','bill_to','Hoa %�^%�n %�%�`%�','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15525,'vn','sub_total','T�W%�ng ph�W%�','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15526,'vn','total_tax','T�W%�ng thu�Q%%','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15527,'vn','grand_total','T�W%�ng c�W%�ng','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15528,'vn','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','%�^%�n h%�ng c�W%�a b�Q%�n %�%� %�^%�%�W%�c %��Q%V%t th%�nh c%$%ng. Vui l%�%ng g�W%�i th%$%ng tin thanh to%�n t�W%� l�W%�ch s�W%� mua h%�ng','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15529,'vn','thank_you_for_your_order','C�Q%�m ^%�n b�Q%�n %�%� %��Q%V%t h%�ng c�W%�a b�Q%�n!','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15530,'vn','order_code','M%� %��Q%V%t h%�ng:','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15531,'vn','a_copy_or_your_order_summary_has_been_sent_to','M�W%�t b�Q%�n sao ho�Q%V%c b�Q%�n t%%m t�Q%�t %�^%�n %��Q%V%t h%�ng c�W%�a b�Q%�n %�%� %�^%�%�W%�c g�W%�i %��Q%%n','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15532,'vn','make_payment','Thanh to%�n','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15533,'vn','payment_screenshot','�Q%�nh ch�W%�p m%�n h%�nh thanh to%�n','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15534,'vn','paypal_credential','Th%$%ng tin x%�c th�W%�%c Paypal','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15535,'vn','paypal_client_id','ID kh%�ch h%�ng Paypal','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15536,'vn','paypal_client_secret','B%� m�Q%�t c�W%�a kh%�ch h%�ng Paypal','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15537,'vn','paypal_sandbox_mode','Ch�Q%% %��W%� h�W%�p c%�t Paypal','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15538,'vn','sslcommerz_credential','Th%$%ng tin %�%�ng nh�Q%�p c�W%�a Sslcommerz','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15539,'vn','sslcz_store_id','Id c�W%�a h%�ng Sslcz','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15540,'vn','sslcz_store_password','M�Q%�t kh�Q%#u c�W%�a h%�ng sslcz','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15541,'vn','sslcommerz_sandbox_mode','Ch�Q%% %��W%� h�W%�p c%�t Sslcommerz','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15542,'vn','stripe_credential','S�W%�c th%$%ng tin %�%�ng nh�Q%�p','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15543,'vn','stripe_key','KH%�A D%�Y CHUY�W%�N','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15544,'vn','stripe_secret','B%� QUY�Q%[%T D%�Y CHUY�W%�N','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15545,'vn','razorpay_credential','Th%$%ng tin %�%�ng nh�Q%�p RazorPay','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15546,'vn','razor_key','KH%�A RAZOR','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15547,'vn','razor_secret','B%� QUY�Q%[%T RAZOR','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15548,'vn','instamojo_credential','Th%$%ng tin %�%�ng nh�Q%�p Instamojo','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15549,'vn','api_key','M%� API','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15550,'vn','im_api_key','KH%�A API IM','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15551,'vn','auth_token','TOKEN AUTH','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15552,'vn','im_auth_token','NGAY L�Q%�P T�W%�C','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15553,'vn','instamojo_sandbox_mode','Ch�Q%% %��W%� h�W%�p c%�t Instamojo','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15554,'vn','paystack_credential','Th%$%ng tin %�%�ng nh�Q%�p PayStack','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15555,'vn','public_key','KH%�A C%�NG KHAI','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15556,'vn','secret_key','CH%�A KHO%� B%� M�Q%�T','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15557,'vn','merchant_email','EMAIL MERCHANT','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15558,'vn','voguepay_credential','Th%$%ng tin %�%�ng nh�Q%�p VoguePay','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15559,'vn','merchant_id','ID MERCHANT','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15560,'vn','sandbox_mode','ch�Q%% %��W%� sandbox','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15561,'vn','payhere_credential','Payhere Credential','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15562,'vn','payhere_merchant_id','PAYHERE MERCHANT ID','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15563,'vn','payhere_secret','PAYHERE B%� M�Q%�T','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15564,'vn','payhere_currency','TI�W%�N T�W%� PAYHERE','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15565,'vn','payhere_sandbox_mode','Ch�Q%% %��W%� h�W%�p c%�t Payhere','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15566,'vn','ngenius_credential','Ngenius Credential','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15567,'vn','ngenius_outlet_id','NGENIUS OUTLET ID','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15568,'vn','ngenius_api_key','KH%�A API NGENIUS','2021-02-09 07:47:41','2021-09-20 07:29:54'),(15569,'vn','ngenius_currency','TI�W%�N T�W%� NGENIUS','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15570,'vn','mpesa_credential','Th%$%ng tin %�%�ng nh�Q%�p Mpesa','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15571,'vn','mpesa_consumer_key','KH%�A TI%�U D%�NG MPESA','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15572,'vn','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15573,'vn','mpesa_consumer_secret','B%� QUY�Q%[%T TI%�U D%�NG C�W%�A MPESA','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15574,'vn','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15575,'vn','mpesa_short_code','M%� NG�Q%�N C�W%�A MPESA','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15576,'vn','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15577,'vn','mpesa_sandbox_activation','K%�CH HO�Q%�T SANDBOX MPESA','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15578,'vn','flutterwave_credential','Th%$%ng tin %�%�ng nh�Q%�p c�W%�a Flutterwave','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15579,'vn','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15580,'vn','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15581,'vn','rave_title','RAVE_TITLE','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15582,'vn','stagin_activation','K%�CH HO�Q%�T STAGIN','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15583,'vn','all_product','T�Q%�t c�Q%� s�Q%�n ph�Q%#m','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15584,'vn','sort_by','S�Q%�p x�Q%%p theo','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15585,'vn','rating_high__low','X�Q%%p h�Q%�ng (Cao> Th�Q%�p)','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15586,'vn','rating_low__high','X�Q%%p h�Q%�ng (Th�Q%�p> Cao)','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15587,'vn','num_of_sale_high__low','S�W%� l^%�%�W%�ng b%�n (Cao> Th�Q%�p)','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15588,'vn','num_of_sale_low__high','S�W%� l^%�%�W%�ng b%�n (Th�Q%�p> Cao)','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15589,'vn','base_price_high__low','Gi%� c^%� b�Q%�n (Cao> Th�Q%�p)','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15590,'vn','base_price_low__high','Gi%� c^%� b�Q%�n (Th�Q%�p> Cao)','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15591,'vn','type__enter','Nh�Q%�p & Nh�Q%�p','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15592,'vn','added_by','%�^%�%�W%�c th%�m b�W%�i','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15593,'vn','num_of_sale','S�W%� l^%�%�W%�ng gi�Q%�m gi%�','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15594,'vn','total_stock','T�W%�ng s�W%� c�W%� ph�Q%�n','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15595,'vn','todays_deal','Th�W%�a thu�Q%�n Todays','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15596,'vn','rating','X�Q%%p h�Q%�ng','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15597,'vn','times','l�Q%�n','2021-02-09 07:47:42','2021-02-09 07:47:42'),(15598,'vn','add_nerw_product','Th%�m s�Q%�n ph�Q%#m Nerw','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15599,'vn','product_information','Th%$%ng tin s�Q%�n ph�Q%#m','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15600,'vn','unit','%�^%�n v�W%�','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15601,'vn','unit_eg_kg_pc_etc','%�^%�n v�W%� (v%� d�W%�: KG, Pc, v.v.)','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15602,'vn','minimum_qty','S�W%� l^%�%�W%�ng t�W%�i thi�W%�u','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15603,'vn','tags','Th�Q%W%','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15604,'vn','type_and_hit_enter_to_add_a_tag','Nh�Q%�p v%� nh�Q%�n enter %��W%� th%�m th�Q%W%','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15605,'vn','barcode','M%� v�Q%�ch','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15606,'vn','refundable','C%% th�W%� ho%�n l�Q%�i','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15607,'vn','product_images','H%�nh �Q%�nh s�Q%�n ph�Q%#m','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15608,'vn','gallery_images','H%�nh �Q%�nh Th^%�% vi�W%�n','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15609,'vn','todays_deal_updated_successfully','%�%� c�Q%�p nh�Q%�t th%�nh c%$%ng Giao d�W%�ch trong ng%�y','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15610,'vn','published_products_updated_successfully','%�%� c�Q%�p nh�Q%�t s�Q%�n ph�Q%#m %�%� xu�Q%�t b�Q%�n th%�nh c%$%ng','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15611,'vn','thumbnail_image','H%�nh �Q%�nh thu nh�W%�','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15612,'vn','featured_products_updated_successfully','C%�c s�Q%�n ph�Q%#m n�W%�i b�Q%�t %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15613,'vn','product_videos','Video s�Q%�n ph�Q%#m','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15614,'vn','video_provider','Nh%� cung c�Q%�p video','2021-02-09 07:47:42','2021-09-20 07:29:54'),(15615,'vn','youtube','Youtube','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15616,'vn','dailymotion','H%�ng ng%�y','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15617,'vn','vimeo','Vimeo','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15618,'vn','video_link','Li%�n k%�t video','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15619,'vn','product_variation','Bi�Q%%n th�W%� s�Q%�n ph�Q%#m','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15620,'vn','colors','M%�u s�Q%�c','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15621,'vn','attributes','Thu�W%�c t%�nh','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15622,'vn','choose_attributes','Ch�W%�n thu�W%�c t%�nh','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15623,'vn','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','Ch�W%�n c%�c thu�W%�c t%�nh c�W%�a s�Q%�n ph�Q%#m n%�y, sau %�%% nh�Q%�p gi%� tr�W%� c�W%�a t�W%�ng thu�W%�c t%�nh','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15624,'vn','product_price__stock','Gi%� s�Q%�n ph�Q%#m + kho','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15625,'vn','unit_price','%�^%�n gi%�','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15626,'vn','purchase_price','Gi%� mua','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15627,'vn','flat','B�Q%�%ng ph�Q%%ng','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15628,'vn','percent','Ph�Q%�n tr%�m','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15629,'vn','discount','Gi�Q%�m gi%�','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15630,'vn','product_description','M%$% t�Q%� S�Q%�n ph�Q%#m','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15631,'vn','product_shipping_cost','Chi ph%� v�Q%�n chuy�W%�n s�Q%�n ph�Q%#m','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15632,'vn','free_shipping','Mi�W%�n ph%� v�Q%�n chuy�W%�n','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15633,'vn','flat_rate','T�W%V% l�W%� c�W%� %��W%�nh','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15634,'vn','shipping_cost','Gi%� v�Q%�n chuy�W%�n','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15635,'vn','pdf_specification','%��Q%V%c t�Q%� PDF','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15636,'vn','seo_meta_tags','Th�Q%W% meta SEO','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15637,'vn','meta_title','Ti%�u %��W%� meta','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15638,'vn','meta_image','H%�nh �Q%�nh meta','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15639,'vn','choice_title','Ti%�u %��W%� l�W%�%a ch�W%�n','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15640,'vn','enter_choice_values','Nh�Q%�p c%�c gi%� tr�W%� l�W%�%a ch�W%�n','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15641,'vn','all_categories','T�Q%�t c�Q%� danh m�W%�c','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15642,'vn','add_new_category','Th%�m danh m�W%�c m�W%�i','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15643,'vn','type_name__enter','Nh�Q%�p t%�n & Nh�Q%�p','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15644,'vn','banner','�Q%�nh b%�a','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15645,'vn','commission','U�W%V% ban','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15646,'vn','icon','bi�W%�u t^%�%�W%�ng','2021-02-09 07:47:43','2021-02-09 07:47:43'),(15647,'vn','featured_categories_updated_successfully','C%�c danh m�W%�c n�W%�i b�Q%�t %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15648,'vn','hot','N%%ng b�W%#c','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15649,'vn','filter_by_payment_status','L�W%�c theo Tr�Q%�ng th%�i Thanh to%�n','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15650,'vn','unpaid','Ch^%�%a thanh to%�n','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15651,'vn','filter_by_deliver_status','L�W%�c theo tr�Q%�ng th%�i ph%�n ph�W%�i','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15652,'vn','pending','%�ang ch�W%� x�W%� l%\%','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15653,'vn','type_order_code__hit_enter','Nh�Q%�p M%� %�^%�n h%�ng v%� nh�Q%�n Enter','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15654,'vn','num_of_products','Kh%$%ng. s�Q%�n ph�Q%#m','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15655,'vn','walk_in_customer','%�i trong kh%�ch h%�ng','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15656,'vn','qty','QTY','2021-02-09 07:47:43','2021-09-20 07:29:54'),(15657,'vn','without_shipping_charge','Kh%$%ng c%% ph%� v�Q%�n chuy�W%�n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15658,'vn','with_shipping_charge','V�W%�i ph%� v�Q%�n chuy�W%�n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15659,'vn','pay_with_cash','Thanh to%�n b�Q%�%ng ti�W%�n m�Q%V%t','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15660,'vn','shipping_address','%��W%�a ch�W%� giao h%�ng','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15661,'vn','close','%�%%ng','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15662,'vn','select_country','Ch�W%�n qu�W%�c gia','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15663,'vn','order_confirmation','X%�c nh�Q%�n %�^%�n h%�ng','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15664,'vn','are_you_sure_to_confirm_this_order','B�Q%�n c%% ch�Q%�c ch�Q%�n x%�c nh�Q%�n %�^%�n %��Q%V%t h%�ng n%�y kh%$%ng?','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15665,'vn','comfirm_order','X%�c nh�Q%�n %�^%�n h%�ng','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15666,'vn','personal_info','Th%$%ng tin c%� nh%�n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15667,'vn','repeat_password','L�Q%V%p l�Q%�i m�Q%�t kh�Q%#u','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15668,'vn','shop_name','T%�n c�W%�a h%�ng','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15669,'vn','register_your_shop','%�%�ng k%\% c�W%�a h%�ng c�W%�a b�Q%�n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15670,'vn','affiliate_informations','Th%$%ng tin li%�n k�Q%%t','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15671,'vn','affiliate','Chi nh%�nh','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15672,'vn','user_info','th%$%ng tin ng^%�%�W%�i d%c%ng','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15673,'vn','installed_addon','Addon %�%� c%�i %��Q%V%t','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15674,'vn','available_addon','Addon c%% s�Q%a%n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15675,'vn','install_new_addon','C%�i %��Q%V%t Addon m�W%�i','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15676,'vn','version','Phi%�n b�Q%�n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15677,'vn','activated','%�%� k%�ch ho�Q%�t','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15678,'vn','deactivated','%�%� h�W%�y k%�ch ho�Q%�t','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15679,'vn','activate_otp','K%�ch ho�Q%�t OTP','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15680,'vn','otp_will_be_used_for','OTP s�Q%\% %�^%�%�W%�c s�W%� d�W%�ng cho','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15681,'vn','settings_updated_successfully','%�%� c�Q%�p nh�Q%�t c%�i %��Q%V%t th%�nh c%$%ng','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15682,'vn','product_owner','Ch�W%� s�W%� h�W%�u s�Q%�n ph�Q%#m','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15683,'vn','point','%�i�W%�m','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15684,'vn','set_point_for_product_within_a_range','%��Q%V%t %�i�W%�m cho s�Q%�n ph�Q%#m trong ph�Q%�m vi','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15685,'vn','set_point_for_multiple_products','%��Q%V%t %�i�W%�m cho nhi�W%�u s�Q%�n ph�Q%#m','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15686,'vn','min_price','Gi%� t�W%�i thi�W%�u','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15687,'vn','max_price','Gi%� t�W%�i %�a','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15688,'vn','set_point_for_all_products','%��Q%V%t %�i�W%�m cho t�Q%�t c�Q%� c%�c s�Q%�n ph�Q%#m','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15689,'vn','set_point_for_','%��Q%V%t %�i�W%�m cho','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15690,'vn','convert_status','Chuy�W%�n %��W%�i tr�Q%�ng th%�i','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15691,'vn','earned_at','Ki�Q%%m %�^%�%�W%�c t�Q%�i','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15692,'vn','seller_based_selling_report','B%�o c%�o b%�n h%�ng d�W%�%a tr%�n ng^%�%�W%�i b%�n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15693,'vn','sort_by_verificarion_status','S�Q%�p x�Q%%p theo tr�Q%�ng th%�i x%�c minh','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15694,'vn','approved','T%�n th%�nh','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15695,'vn','non_approved','Kh%$%ng %�^%�%�W%�c ch�Q%�p thu�Q%�n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15696,'vn','filter','B�W%� l�W%�c','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15697,'vn','seller_name','T%�n ng^%�%�W%�i b%�n','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15698,'vn','number_of_product_sale','S�W%� l^%�%�W%�ng b%�n s�Q%�n ph�Q%#m','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15699,'vn','order_amount','S�W%� l^%�%�W%�ng %�^%�n %��Q%V%t h%�ng','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15700,'vn','facebook_chat_setting','C%�i %��Q%V%t tr%�% chuy�W%�n tr%�n Facebook','2021-02-09 07:47:44','2021-09-20 07:29:54'),(15701,'vn','facebook_page_id','ID trang Facebook','2021-02-09 07:47:44','2021-09-20 07:29: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�Q%#n th�Q%�n khi b�Q%�n %�ang %��W%�nh c�Q%�u h%�nh tr%�% chuy�W%�n Facebook. %��W%�i v�W%�i c�Q%�u h%�nh kh%$%ng ch%�nh x%�c, b�Q%�n s�Q%\% kh%$%ng nh�Q%�n %�^%�%�W%�c bi�W%�u t^%�%�W%�ng messenger tr%�n trang web ng^%�%�W%�i d%c%ng cu�W%�i c�W%�a m%�nh.','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15703,'vn','login_into_your_facebook_page','%�%�ng nh�Q%�p v%�o trang facebook c�W%�a b�Q%�n','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15704,'vn','find_the_about_option_of_your_facebook_page','T%�m t%c%y ch�W%�n Gi�W%�i thi�W%�u c�W%�a trang facebook c�W%�a b�Q%�n','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15705,'vn','at_the_very_bottom_you_can_find_the_facebook_page_id','�W%� d^%�%�W%�i c%c%ng, b�Q%�n c%% th�W%� t%�m th�Q%�y \\ ���ID Trang Facebook \\���','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15706,'vn','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','%�i t�W%�i C%�i %��Q%V%t c�W%�a trang c�W%�a b�Q%�n v%� t%�m t%c%y ch�W%�n c�W%�a \\ \"Nh�Q%�n tin tr^%�%�W%�c \\\"','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15707,'vn','scroll_down_that_page_and_you_will_get_white_listed_domain','Cu�W%�n xu�W%�ng trang %�%% v%� b�Q%�n s�Q%\% nh�Q%�n %�^%�%�W%�c \\ \"t%�n mi�W%�n %�^%�%�W%�c li�W%�t k%� tr�Q%�ng \\\"','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15708,'vn','set_your_website_domain_name','%��Q%V%t t%�n mi�W%�n trang web c�W%�a b�Q%�n','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15709,'vn','google_recaptcha_setting','C%�i %��Q%V%t reCAPTCHA c�W%�a Google','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15710,'vn','site_key','Ch%�a kho%� website','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15711,'vn','select_shipping_method','Ch�W%�n ph^%�%^%�ng th�W%#c v�Q%�n chuy�W%�n','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15712,'vn','product_wise_shipping_cost','Chi ph%� v�Q%�n chuy�W%�n s�Q%�n ph�Q%#m kh%$%n ngoan','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15713,'vn','flat_rate_shipping_cost','Ph%� v�Q%�n chuy�W%�n c�W%� %��W%�nh','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15714,'vn','seller_wise_flat_shipping_cost','Ng^%�%�W%�i b%�n kh%$%n ngoan Chi ph%� v�Q%�n chuy�W%�n c�W%� %��W%�nh','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15715,'vn','note','Ghi ch%Q%','2021-02-09 07:47:45','2021-09-20 07:29: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�Q%�n chuy�W%�n s�Q%�n ph�Q%#m kh%$%n ngoan: Chi ph%� v�Q%�n chuy�W%�n %�^%�%�W%�c t%�nh b�Q%�%ng c%�ch c�W%�ng v�W%�i chi ph%� v�Q%�n chuy�W%�n c�W%�a t�W%�ng s�Q%�n ph�Q%#m','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15717,'vn','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','T�W%V% l�W%� c�W%� %��W%�nh T%�nh to%�n chi ph%� v�Q%�n chuy�W%�n: Kh%�ch h%�ng mua bao nhi%�u s�Q%�n ph�Q%#m kh%$%ng quan tr�W%�ng. Chi ph%� v�Q%�n chuy�W%�n l%� c�W%� %��W%�nh','2021-02-09 07:47:45','2021-09-20 07:29: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^%�%�W%�i b%�n kh%$%n ngoan T%�nh to%�n chi ph%� v�Q%�n chuy�W%�n: T�W%V% l�W%� c�W%� %��W%�nh cho m�W%�i ng^%�%�W%�i b%�n. N�Q%%u m�W%�t kh%�ch h%�ng mua 2 s�Q%�n ph�Q%#m t�W%� hai ng^%�%�W%�i b%�n, chi ph%� v�Q%�n chuy�W%�n %�^%�%�W%�c t%�nh b�Q%�%ng c%�ch c�W%�ng chi ph%� v�Q%�n chuy�W%�n c�W%� %��W%�nh c�W%�a m�W%�i ng^%�%�W%�i b%�n','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15719,'vn','flat_rate_cost','Chi ph%� c�W%� %��W%�nh','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15720,'vn','shipping_cost_for_admin_products','Chi ph%� v�Q%�n chuy�W%�n cho c%�c s�Q%�n ph�Q%#m qu�Q%�n tr�W%�','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15721,'vn','countries','Qu�W%�c gia','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15722,'vn','showhide','Hi�W%�n an','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15723,'vn','country_status_updated_successfully','%�%� c�Q%�p nh�Q%�t tr�Q%�ng th%�i qu�W%�c gia th%�nh c%$%ng','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15724,'vn','all_subcategories','T�Q%�t c�Q%� c%�c danh m�W%�c ph�W%�','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15725,'vn','add_new_subcategory','Th%�m danh m�W%�c con m�W%�i','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15726,'vn','subcategories','Danh m�W%�c ph�W%�','2021-02-09 07:47:45','2021-09-20 07:29:54'),(15727,'vn','sub_category_information','Th%$%ng tin danh m�W%�c ph�W%�','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15728,'vn','slug','S%�n','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15729,'vn','all_sub_subcategories','T�Q%�t c�Q%� c%�c danh m�W%�c ph�W%�','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15730,'vn','add_new_sub_subcategory','Th%�m danh m�W%�c con m�W%�i','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15731,'vn','subsubcategories','Danh m�W%�c ph�W%�','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15732,'vn','make_this_default','%��Q%V%t %�i�W%�u n%�y l%�m m�Q%V%c %��W%�nh','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15733,'vn','shops','C�W%�a h%�ng','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15734,'vn','women_clothing__fashion','Qu�Q%�n %�o & Th�W%�i trang N�W%�','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15735,'vn','cellphones__tabs','%�i�W%�n tho�Q%�i di %��W%�ng & Tab','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15736,'vn','welcome_to','Ch%�o m�W%�ng b�Q%�n %��Q%%n','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15737,'vn','create_a_new_account','T�Q%�o t%�i kho�Q%�n m�W%�i','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15738,'vn','full_name','H�W%� v%� t%�n','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15739,'vn','password','m�Q%�t kh�Q%#u','2021-02-09 07:48:12','2021-02-09 07:48:12'),(15740,'vn','confrim_password','M�Q%�t kh�Q%#u t�Q%�m th�W%�i','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15741,'vn','i_agree_with_the','t%$%i %��W%�ng %\% v�W%�i','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15742,'vn','terms_and_conditions','C%�c %�i�W%�u kho�Q%�n v%� %�i�W%�u ki�W%�n','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15743,'vn','register','%�%�ng k%\%','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15744,'vn','already_have_an_account','Ba`%�n co s%�n san %�%�`%� ta`%�o m%$%`%�t tai khoa`%�n','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15745,'vn','sign_up_with','%�%�ng k%\% v�W%�i','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15746,'vn','i_agree_with_the_terms_and_conditions','T%$%i %��W%�ng %\% v�W%�i c%�c %�i�W%�u kho�Q%�n v%� %�i�W%�u ki�W%�n','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15747,'vn','all_role','T�Q%�t c�Q%� c%�c vai tr%�%','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15748,'vn','add_new_role','Th%�m vai tr%�% m�W%�i','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15749,'vn','roles','Vai tr%�%','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15750,'vn','add_new_staffs','Th%�m nh%�n vi%�n m�W%�i','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15751,'vn','role','Vai tr%�%','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15752,'vn','frontend_website_name','T%�n trang web giao di�W%�n ng^%�%�W%�i d%c%ng','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15753,'vn','website_name','T%�n trang web','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15754,'vn','site_motto','Ph^%�%^%�ng ch%�m trang web','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15755,'vn','best_ecommerce_website','Trang web th^%�%^%�ng m�Q%�i %�i�W%�n t�W%� t�W%�t nh�Q%�t','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15756,'vn','site_icon','Bi�W%�u t^%�%�W%�ng trang web','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15757,'vn','website_favicon_32x32_png','Bi�W%�u t^%�%�W%�ng trang web. 32x32 .png','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15758,'vn','website_base_color','M%�u n�W%�n c�W%�a trang web','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15759,'vn','hex_color_code','M%� m%�u Hex','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15760,'vn','website_base_hover_color','M%�u di chu�W%�t c^%� s�W%� c�W%�a trang web','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15761,'vn','update','C�Q%�p nh�Q%�t','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15762,'vn','global_seo','Seo to%�n c�Q%�u','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15763,'vn','meta_description','M%$% t�Q%� meta','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15764,'vn','keywords','T�W%� kh%%a','2021-02-09 07:48:12','2021-09-20 07:29:54'),(15765,'vn','separate_with_coma','T%�ch bi�W%�t v�W%�i h%$%n m%�','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15766,'vn','website_pages','Trang web','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15767,'vn','all_pages','T�Q%�t c�Q%� c%�c trang','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15768,'vn','add_new_page','Th%�m trang m�W%�i','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15769,'vn','url','URL','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15770,'vn','actions','H%�nh %��W%�ng','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15771,'vn','edit_page_information','Ch�W%�nh s�W%�a th%$%ng tin trang','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15772,'vn','page_content','N�W%�i dung trang','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15773,'vn','title','Ti%�u %��W%�','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15774,'vn','link','Li%�n k�Q%%t','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15775,'vn','use_character_number_hypen_only','Ch�W%� s�W%� d�W%�ng k%\% t�W%�%, s�W%�, g�Q%�ch n�W%�i','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15776,'vn','add_content','Th%�m n�W%�i dung','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15777,'vn','seo_fields','L%#nh v�W%�%c Seo','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15778,'vn','update_page','C�Q%�p nh�Q%�t trang','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15779,'vn','default_language','Ng%$%n ng�W%� m�Q%V%c %��W%�nh','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15780,'vn','add_new_language','Th%�m ng%$%n ng�W%� m�W%�i','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15781,'vn','rtl','RTL','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15782,'vn','translation','D�W%�ch','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15783,'vn','language_information','Th%$%ng tin ng%$%n ng�W%�','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15784,'vn','save_page','L^%�%u trang','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15785,'vn','home_page_settings','C%�i %��Q%V%t Trang ch�W%�','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15786,'vn','home_slider','Thanh tr^%�%�W%�t Trang ch�W%�','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15787,'vn','photos__links','�Q%�nh & Li%�n k�Q%%t','2021-02-09 07:48:13','2021-09-20 07:29:54'),(15788,'vn','add_new','Th%�m m�W%�i','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15789,'vn','home_categories','Danh m�W%�c nh%�','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15790,'vn','home_banner_1_max_3','Bi�W%�u ng�W%� Trang ch�W%� 1 (T�W%�i %�a 3)','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15791,'vn','banner__links','Bi�W%�u ng�W%� & Li%�n k�Q%%t','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15792,'vn','home_banner_2_max_3','Bi�W%�u ng�W%� Trang ch�W%� 2 (T�W%�i %�a 3)','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15793,'vn','top_10','T%$%p 10','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15794,'vn','top_categories_max_10','Danh m�W%�c h%�ng %��Q%�u (T�W%�i %�a 10)','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15795,'vn','top_brands_max_10','Th^%�%^%�ng hi�W%�u h%�ng %��Q%�u (T�W%�i %�a 10)','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15796,'vn','system_name','T%�n h�W%� th�W%�ng','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15797,'vn','system_logo__white','Logo H�W%� th�W%�ng - M%�u tr�Q%�ng','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15798,'vn','choose_files','Ch�W%�n t�W%�p','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15799,'vn','will_be_used_in_admin_panel_side_menu','S�Q%\% %�^%�%�W%�c s�W%� d�W%�ng trong menu b%�n c�W%�a b�Q%�ng qu�Q%�n tr�W%�','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15800,'vn','system_logo__black','Logo H�W%� th�W%�ng - M%�u %�en','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15801,'vn','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','S�Q%\% %�^%�%�W%�c s�W%� d�W%�ng trong thanh tr%�n c%c%ng c�W%�a b�Q%�ng qu�Q%�n tr�W%� trong trang %�%�ng nh�Q%�p d%�nh cho qu�Q%�n tr�W%� vi%�n + di %��W%�ng','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15802,'vn','system_timezone','M%Q%i gi�W%� h�W%� th�W%�ng','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15803,'vn','admin_login_page_background','N�W%�n trang %�%�ng nh�Q%�p qu�Q%�n tr�W%� vi%�n','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15804,'vn','website_header','Ti%�u %��W%� trang web','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15805,'vn','header_setting','C%�i %��Q%V%t ti%�u %��W%�','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15806,'vn','header_logo','Bi�W%�u tr^%�%ng ti%�u %��W%�','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15807,'vn','show_language_switcher','Hi�W%�n th�W%� Tr%�nh chuy�W%�n %��W%�i ng%$%n ng�W%�?','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15808,'vn','show_currency_switcher','Hi�W%�n th�W%� c%$%ng c�W%� chuy�W%�n %��W%�i ti�W%�n t�W%�?','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15809,'vn','enable_stikcy_header','B�Q%�t ti%�u %��W%� stikcy?','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15810,'vn','website_footer','Ch%�n trang trang web','2021-02-09 07:48:13','2021-09-20 07:29:55'),(15811,'vn','footer_widget','Ti�W%�n %�ch ch%�n trang','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15812,'vn','about_widget','Gi�W%�i thi�W%�u v�W%� Widget','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15813,'vn','footer_logo','Bi�W%�u tr^%�%ng ch%�n trang','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15814,'vn','about_description','V�W%� m%$% t�Q%�','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15815,'vn','contact_info_widget','Ti�W%�n %�ch Th%$%ng tin Li%�n h�W%�','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15816,'vn','footer_contact_address','%��W%�a ch�W%� li%�n h�W%� �W%� ch%�n trang','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15817,'vn','footer_contact_phone','%�i�W%�n tho�Q%�i li%�n h�W%� ch%�n trang','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15818,'vn','footer_contact_email','Email li%�n h�W%� �W%� ch%�n trang','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15819,'vn','link_widget_one','Li%�n k�Q%%t ti�W%�n %�ch con m�W%�t','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15820,'vn','links','Li%�n k�Q%%t','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15821,'vn','footer_bottom','Ch%�n trang d^%�%�W%�i c%c%ng','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15822,'vn','copyright_widget_','Ti�W%�n %�ch b�Q%�n quy�W%�n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15823,'vn','copyright_text','V%�n b�Q%�n B�Q%�n quy�W%�n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15824,'vn','social_link_widget_','Ti�W%�n %�ch li%�n k�Q%%t x%� h�W%�i','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15825,'vn','show_social_links','Hi�W%�n th�W%� c%�c li%�n k�Q%%t x%� h�W%�i?','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15826,'vn','social_links','%�^%�%�W%�ng li%�n k�Q%%t m�Q%�ng x%� h�W%�i','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15827,'vn','payment_methods_widget_','Ti�W%�n %�ch ph^%�%^%�ng th�W%#c thanh to%�n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15828,'vn','rtl_status_updated_successfully','%�%� c�Q%�p nh�Q%�t tr�Q%�ng th%�i RTL th%�nh c%$%ng','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15829,'vn','language_changed_to_','Ng%$%n ng�W%� %�%� thay %��W%�i th%�nh','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15830,'vn','inhouse_product_sale_report','B%�o c%�o b%�n s�Q%�n ph�Q%#m trong nh%�','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15831,'vn','sort_by_category','S�Q%�p x�Q%%p theo th�W%� lo�Q%�i','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15832,'vn','product_wise_stock_report','B%�o c%�o kho s�Q%�n ph�Q%#m kh%$%n ngoan','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15833,'vn','currency_changed_to_','Ti�W%�n t�W%� %�%� thay %��W%�i th%�nh','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15834,'vn','avatar','h%�nh %��Q%�i di�W%�n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15835,'vn','copy','Sao ch%#p','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15836,'vn','variant','Bi�Q%%n th�W%�','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15837,'vn','variant_price','Gi%� bi�Q%%n th�W%�','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15838,'vn','sku','SKU','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15839,'vn','key','Ch%�a kh%%a','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15840,'vn','value','Gi%� tr�W%�','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15841,'vn','copy_translations','Sao ch%#p b�Q%�n d�W%�ch','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15842,'vn','all_pickup_points','T�Q%�t c�Q%� c%�c %�i�W%�m %�%%n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15843,'vn','add_new_pickup_point','Th%�m %�i�W%�m %�%%n m�W%�i','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15844,'vn','manager','Gi%�m %��W%�c','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15845,'vn','location','V�W%� tr%�','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15846,'vn','pickup_station_contact','Li%�n h�W%� tr�Q%�m %�%%n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15847,'vn','open','M�W%�','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15848,'vn','pos_activation_for_seller','K%�ch ho�Q%�t POS cho Ng^%�%�W%�i b%�n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15849,'vn','order_completed_successfully','%�^%�n %��Q%V%t h%�ng %�%� ho%�n t�Q%�t th%�nh c%$%ng.','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15850,'vn','text_input','Nh�Q%�p v%�n b�Q%�n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15851,'vn','select','L�W%�%a ch�W%�n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15852,'vn','multiple_select','Nhi�W%�u l�W%�%a ch�W%�n','2021-02-09 07:48:14','2021-09-20 07:29:55'),(15853,'vn','radio','%�%�i','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15854,'vn','file','T�Q%�p tin','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15855,'vn','email_address','%�i`%�a chi`%� email','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15856,'vn','verification_info','Th%$%ng tin x%�c minh','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15857,'vn','approval','S�W%�% ch�Q%�p thu�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15858,'vn','due_amount','S�W%� ti�W%�n %��Q%%n h�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15859,'vn','show','Ch�W%�','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15860,'vn','pay_now','Thanh to%�n ngay','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15861,'vn','affiliate_user_verification','X%�c minh ng^%�%�W%�i d%c%ng li%�n k�Q%%t','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15862,'vn','reject','T�W%� ch�W%�i','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15863,'vn','accept','Ch�Q%�p nh�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15864,'vn','beauty_health__hair','L%�m %��Q%c%p, S�W%#c kh�W%�e & T%%c','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15865,'vn','comparison','So s%�nh','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15866,'vn','reset_compare_list','%��Q%V%t l�Q%�i danh s%�ch so s%�nh','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15867,'vn','your_comparison_list_is_empty','Danh s%�ch so s%�nh c�W%�a b�Q%�n tr�W%�ng','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15868,'vn','convert_point_to_wallet','Chuy�W%�n %��W%�i %�i�W%�m th%�nh v%�','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15869,'vn','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','L^%�%u %\%: B�Q%�n c�Q%�n k%�ch ho�Q%�t t%c%y ch�W%�n v%� tr^%�%�W%�c khi s�W%� d�W%�ng addon %�i�W%�m c%�u l�Q%�c b�W%�.','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15870,'vn','create_an_account','T�Q%�o m�W%�t t%�i kho�Q%�n.','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15871,'vn','use_email_instead','S�W%� d�W%�ng Email thay th�Q%%','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15872,'vn','by_signing_up_you_agree_to_our_terms_and_conditions','B�Q%�%ng c%�ch %�%�ng k%\%, b�Q%�n %��W%�ng %\% v�W%�i c%�c %�i�W%�u kho�Q%�n v%� %�i�W%�u ki�W%�n c�W%�a ch%Q%ng t%$%i.','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15873,'vn','create_account','T�Q%�o t%�i kho�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15874,'vn','or_join_with','Ho�Q%V%c tham gia v�W%�i','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15875,'vn','already_have_an_account','Ba`%�n co s%�n san %�%�`%� ta`%�o m%$%`%�t tai khoa`%�n?','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15876,'vn','log_in','%�%�ng nh�Q%�p','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15877,'vn','computer__accessories','Ph�W%� ki�W%�n m%�y t%�nh','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15878,'vn','products','C%�c s�Q%�n ph�Q%#m)','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15879,'vn','in_your_cart','trong gi�W%� h%�ng c�W%�a b�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15880,'vn','in_your_wishlist','trong danh s%�ch mong mu�W%�n c�W%�a b�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15881,'vn','you_ordered','b�Q%�n %��Q%V%t h%�ng','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15882,'vn','default_shipping_address','%��W%�a ch�W%� giao h%�ng m�Q%V%c %��W%�nh','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15883,'vn','sports__outdoor','Th�W%� thao & ngo%�i tr�W%�i','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15884,'vn','copied','%�%� sao ch%#p','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15885,'vn','copy_the_promote_link','Sao ch%#p Li%�n k�Q%%t Qu�Q%�ng c%�o','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15886,'vn','write_a_review','Vi�Q%%t nh�Q%�n x%#t','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15887,'vn','your_name','T%�n c�W%�a b�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15888,'vn','comment','B%�nh lu�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15889,'vn','your_review','%�%�nh gi%� c�W%�a b�Q%�n','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15890,'vn','submit_review','G�W%�i %�%�nh gi%�','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15891,'vn','claire_willis','Claire Willis','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15892,'vn','germaine_greene','Germaine Greene','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15893,'vn','product_file','T�W%�p s�Q%�n ph�Q%#m','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15894,'vn','choose_file','Ch�W%�n t�Q%�p tin','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15895,'vn','type_to_add_a_tag','Nh�Q%�p %��W%� th%�m th�Q%W%','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15896,'vn','images','H%�nh �Q%�nh','2021-02-09 07:48:15','2021-09-20 07:29:55'),(15897,'vn','main_images','H%�nh �Q%�nh ch%�nh','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15898,'vn','meta_tags','Th�Q%W% meta','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15899,'vn','digital_product_has_been_inserted_successfully','S�Q%�n ph�Q%#m k�W%c% thu�Q%�t s�W%� %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15900,'vn','edit_digital_product','Ch�W%�nh s�W%�a s�Q%�n ph�Q%#m k�W%c% thu�Q%�t s�W%�','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15901,'vn','select_an_option','Ch�W%�n m�W%�t t%c%y ch�W%�n','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15902,'vn','tax','Thu�Q%%','2021-02-09 07:48:16','2021-02-09 07:48:16'),(15903,'vn','any_question_about_this_product','B�Q%�t k�W%% c%�u h�W%�i v�W%� s�Q%�n ph�Q%#m n%�y?','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15904,'vn','sign_in','%�%�ng nh�Q%�p','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15905,'vn','login_with_google','%�%�ng nh�Q%�p v�W%�i Google','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15906,'vn','login_with_facebook','%�%�ng nh�Q%�p Facebook','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15907,'vn','login_with_twitter','%�%�ng nh�Q%�p b�Q%�%ng Twitter','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15908,'vn','click_to_show_phone_number','Nh�Q%�p %��W%� hi�W%�n th�W%� s�W%� %�i�W%�n tho�Q%�i','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15909,'vn','other_ads_of','C%�c qu�Q%�ng c%�o kh%�c c�W%�a','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15910,'vn','store_home','Trang ch�W%� c�W%�a h%�ng','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15911,'vn','top_selling','Ban cha`%�y nh%�t','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15912,'vn','shop_settings','C%�i %��Q%V%t c�W%�a h%�ng','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15913,'vn','visit_shop','Gh%# th%�m c�W%�a h%�ng','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15914,'vn','pickup_points','%�i�W%�m nh�Q%�n h%�ng','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15915,'vn','select_pickup_point','Ch�W%�n %�i�W%�m %�%%n','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15916,'vn','slider_settings','C%�i %��Q%V%t thanh tr^%�%�W%�t','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15917,'vn','social_media_link','Li%�n k�Q%%t truy�W%�n th%$%ng x%� h�W%�i','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15918,'vn','facebook','Facebook','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15919,'vn','twitter','Twitter','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15920,'vn','google','Google','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15921,'vn','new_arrival_products','S�Q%�n ph�Q%#m m�W%�i v�W%�','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15922,'vn','check_your_order_status','Ki�W%�m tra tr�Q%�ng th%�i %�^%�n h%�ng c�W%�a b�Q%�n','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15923,'vn','shipping_method','Ph^%�%^%�ng ph%�p v�Q%�n chuy�W%�n','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15924,'vn','shipped_by','V�Q%�n chuy�W%�n b�Q%�%ng','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15925,'vn','image','H%�nh �Q%�nh','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15926,'vn','sub_sub_category','H�Q%�ng m�W%�c ph�W%�','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15927,'vn','inhouse_products','S�Q%�n ph�Q%#m n�W%�i b�W%�','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15928,'vn','forgot_password','Qu%�n m�Q%�t kh�Q%#u?','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15929,'vn','enter_your_email_address_to_recover_your_password','Nh�Q%�p %��W%�a ch�W%� email c�W%�a b�Q%�n %��W%� kh%$%i ph�W%�c m�Q%�t kh�Q%#u c�W%�a b�Q%�n.','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15930,'vn','email_or_phone','Email ho�Q%V%c %�i�W%�n tho�Q%�i','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15931,'vn','send_password_reset_link','G�W%�i li%�n k�Q%%t %��Q%V%t l�Q%�i m�Q%�t kh�Q%#u','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15932,'vn','back_to_login','Quay l�Q%�i %�%�ng nh�Q%�p','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15933,'vn','index','m�W%�c l�W%�c','2021-02-09 07:48:16','2021-02-09 07:48:16'),(15934,'vn','download_your_product','T�Q%�i xu�W%�ng s�Q%�n ph�Q%#m c�W%�a b�Q%�n','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15935,'vn','option','L�W%�%a ch�W%�n','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15936,'vn','applied_refund_request','Y%�u c�Q%�u ho%�n l�Q%�i ti�W%�n %�%� %�p d�W%�ng','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15937,'vn','item_has_been_renoved_from_wishlist','M�W%�c %�%� %�^%�%�W%�c c�Q%�i ti�Q%%n kh�W%�i danh s%�ch y%�u th%�ch','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15938,'vn','bulk_products_upload','T�Q%�i l%�n h%�ng lo�Q%�t s�Q%�n ph�Q%#m','2021-02-09 07:48:16','2021-09-20 07:29:55'),(15939,'vn','upload_csv','T�Q%�i l%�n CSV','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15940,'vn','create_a_ticket','T�Q%�o v%#','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15941,'vn','tickets','V%#','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15942,'vn','ticket_id','ID v%#','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15943,'vn','sending_date','Ng%�y g�W%�i','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15944,'vn','subject','M%$%n h�W%�c','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15945,'vn','view_details','Xem chi ti�Q%%t','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15946,'vn','provide_a_detailed_description','Cung c�Q%�p m%$% t�Q%� chi ti�Q%%t','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15947,'vn','type_your_reply','Nh�Q%�p c%�u tr�Q%� l�W%�i c�W%�a b�Q%�n','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15948,'vn','send_ticket','G�W%�i v%#','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15949,'vn','load_more','T�Q%�i th%�m','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15950,'vn','jewelry__watches','Trang s�W%#c & %��W%�ng h�W%�','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15951,'vn','filters','B�W%� l�W%�c','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15952,'vn','contact_address','%��W%�a ch�W%� li%�n h�W%�','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15953,'vn','contact_phone','%�i�W%�n tho�Q%�i li%�n h�W%�','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15954,'vn','contact_email','%��W%�a ch�W%� email li%�n l�Q%�c','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15955,'vn','filter_by','L�W%�c b�W%�i','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15956,'vn','condition','%�i�W%�u ki�W%�n','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15957,'vn','all_type','T�Q%�t c�Q%� c%�c lo�Q%�i','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15958,'vn','pay_with_wallet','Thanh to%�n b�Q%�%ng v%�','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15959,'vn','select_variation','Ch�W%�n bi�Q%%n th�W%�','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15960,'vn','no_product_added','Kh%$%ng c%% s�Q%�n ph�Q%#m %�^%�%�W%�c th%�m v%�o','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15961,'vn','status_has_been_updated_successfully','Tr�Q%�ng th%�i %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15962,'vn','all_seller_packages','T�Q%�t c�Q%� c%�c g%%i ng^%�%�W%�i b%�n','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15963,'vn','add_new_package','Th%�m g%%i m�W%�i','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15964,'vn','package_logo','Bi�W%�u tr^%�%ng g%%i','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15965,'vn','days','ng%�y','2021-02-09 07:48:17','2021-02-09 07:48:17'),(15966,'vn','create_new_seller_package','T�Q%�o g%%i ng^%�%�W%�i b%�n m�W%�i','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15967,'vn','package_name','T%�n g%%i h%�ng','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15968,'vn','duration','Th�W%�i l^%�%�W%�ng','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15969,'vn','validity_in_number_of_days','Hi�W%�u l�W%�%c trong s�W%� ng%�y','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15970,'vn','update_package_information','C�Q%�p nh�Q%�t th%$%ng tin g%%i','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15971,'vn','package_has_been_inserted_successfully','G%%i %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15972,'vn','refund_request','Y%�u c�Q%�u ho%�n l�Q%�i ti�W%�n','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15973,'vn','reason','L%\% do','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15974,'vn','label','Nh%�n','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15975,'vn','select_label','Ch�W%�n nh%�n','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15976,'vn','multiple_select_label','Nhi�W%�u l�W%�%a ch�W%�n nh%�n','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15977,'vn','radio_label','Nh%�n %�%�i','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15978,'vn','pickup_point_orders','%�^%�n %��Q%V%t h%�ng t�Q%�i %�i�W%�m %�%%n','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15979,'vn','view','L^%�%�W%�t xem','2021-02-09 07:48:17','2021-09-20 07:29:55'),(15980,'vn','order_','%��Q%V%t h%�ng #','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15981,'vn','order_status','T%�nh tr�Q%�ng %��Q%V%t h%�ng','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15982,'vn','total_amount','T%$%`%�ng c%$%`%�ng','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15983,'vn','total','TO%�N B�W%�','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15984,'vn','delivery_status_has_been_updated','T%�nh tr�Q%�ng giao h%�ng %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15985,'vn','payment_status_has_been_updated','Tr�Q%�ng th%�i thanh to%�n %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15986,'vn','invoice','H%�A %�^%�N','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15987,'vn','set_refund_time','%��Q%V%t th�W%�i gian ho%�n l�Q%�i ti�W%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15988,'vn','set_time_for_sending_refund_request','%��Q%V%t th�W%�i gian %��W%� g�W%�i Y%�u c�Q%�u ho%�n l�Q%�i ti�W%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15989,'vn','set_refund_sticker','%��Q%V%t h%�nh d%�n ho%�n l�Q%�i ti�W%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15990,'vn','sticker','H%�nh d%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15991,'vn','refund_request_all','Y%�u c�Q%�u ho%�n l�Q%�i ti�W%�n T�Q%�t c�Q%�','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15992,'vn','order_id','M%� %�^%�n h%�ng','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15993,'vn','seller_approval','Ph%� duy�W%�t ng^%�%�W%�i b%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15994,'vn','admin_approval','Ph%� duy�W%�t c�W%�a qu�Q%�n tr�W%� vi%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15995,'vn','refund_status','Tr�Q%�ng th%�i ho%�n ti�W%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15996,'vn','no_refund','Kh%$%ng ho%�n l�Q%�i ti�W%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15997,'vn','status_updated_successfully','%�%� c�Q%�p nh�Q%�t tr�Q%�ng th%�i th%�nh c%$%ng','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15998,'vn','user_search_report','B%�o c%�o T%�m ki�Q%%m Ng^%�%�W%�i d%c%ng','2021-02-09 07:48:18','2021-09-20 07:29:55'),(15999,'vn','search_by','T%�m ki�Q%%m b�W%�i','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16000,'vn','number_searches','S�W%� l^%�%�W%�ng t%�m ki�Q%%m','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16001,'vn','sender','Ng^%�%�W%�i g�W%�i','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16002,'vn','receiver','Ng^%�%�W%�i nh�Q%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16003,'vn','verification_form_updated_successfully','%�%� c�Q%�p nh�Q%�t th%�nh c%$%ng bi�W%�u m�Q%�u x%�c minh','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16004,'vn','invalid_email_or_password','Email ho�Q%V%c m�Q%�t kh�Q%#u kh%$%ng h�W%�p l�W%�','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16005,'vn','all_coupons','T�Q%�t c�Q%� c%�c phi�Q%%u gi�Q%�m gi%�','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16006,'vn','add_new_coupon','Th%�m phi�Q%%u gi�Q%�m gi%� m�W%�i','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16007,'vn','coupon_information','Th%$%ng tin phi�Q%%u th^%�%�W%�ng','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16008,'vn','start_date','Ng%�y b�Q%�t %��Q%�u','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16009,'vn','end_date','Ng%�y cu�W%�i','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16010,'vn','product_base','C^%� s�W%� s�Q%�n ph�Q%#m','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16011,'vn','send_newsletter','G�W%�i b�Q%�n tin','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16012,'vn','mobile_users','Ng^%�%�W%�i d%c%ng di %��W%�ng','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16013,'vn','sms_subject','Ch�W%� %��W%� SMS','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16014,'vn','sms_content','N�W%�i dung SMS','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16015,'vn','all_flash_delas','T�Q%�t c�Q%� Flash Delas','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16016,'vn','create_new_flash_dela','T�Q%�o Flash Dela m�W%�i','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16017,'vn','page_link','trang li%�n k�Q%%t','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16018,'vn','flash_deal_information','Th%$%ng tin giao d�W%�ch nhanh','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16019,'vn','background_color','M%�u n�W%�n','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16020,'vn','0000ff','# 0000ff','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16021,'vn','text_color','V%�n b�Q%�n m%�u','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16022,'vn','white','tr�Q%�ng','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16023,'vn','dark','T�W%�i','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16024,'vn','choose_products','Ch�W%�n s�Q%�n ph�Q%#m','2021-02-09 07:48:18','2021-09-20 07:29:55'),(16025,'vn','discounts','Gi�Q%�m gi%�','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16026,'vn','discount_type','Lo�Q%�i gi�Q%�m gi%�','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16027,'vn','twillo_credential','Th%$%ng tin x%�c th�W%�%c Twillo','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16028,'vn','twilio_sid','TWILIO SID','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16029,'vn','twilio_auth_token','TWILIO AUTH TOKEN','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16030,'vn','twilio_verify_sid','TWILIO X%�C MINH SID','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16031,'vn','valid_twillo_number','S�W%� TWILLO H�W%�P L�W%�','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16032,'vn','nexmo_credential','Nexmo Credential','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16033,'vn','nexmo_key','NEXMO KEY','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16034,'vn','nexmo_secret','B%� QUY�Q%[%T NEXMO','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16035,'vn','ssl_wireless_credential','Ch�W%#ng ch�W%� kh%$%ng d%�y SSL','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16036,'vn','ssl_sms_api_token','API SMS SSL TOKEN','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16037,'vn','ssl_sms_sid','SSL SMS SID','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16038,'vn','ssl_sms_url','URL SMS SSL','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16039,'vn','fast2sms_credential','Th%$%ng tin %�%�ng nh�Q%�p Fast2SMS','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16040,'vn','auth_key','T�W%� KH%�A AUTH','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16041,'vn','route','%�^%��W%�NG %�I','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16042,'vn','promotional_use','S�W%� d�W%�ng khuy�Q%%n m�Q%�i','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16043,'vn','transactional_use','S�W%� d�W%�ng giao d�W%�ch','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16044,'vn','sender_id','G�W%�I ID','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16045,'vn','nexmo_otp','Nexmo OTP','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16046,'vn','twillo_otp','Twillo OTP','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16047,'vn','ssl_wireless_otp','SSL kh%$%ng d%�y OTP','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16048,'vn','fast2sms_otp','Fast2SMS OTP','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16049,'vn','order_placement','%��Q%V%t h%�ng','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16050,'vn','delivery_status_changing_time','Th�W%�i gian thay %��W%�i tr�Q%�ng th%�i giao h%�ng','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16051,'vn','paid_status_changing_time','Th�W%�i gian thay %��W%�i tr�Q%�ng th%�i tr�Q%� ti�W%�n','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16052,'vn','send_bulk_sms','G�W%�i tin nh�Q%�n SMS h%�ng lo�Q%�t','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16053,'vn','all_subscribers','T�Q%�t c�Q%� ng^%�%�W%�i %�%�ng k%\%','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16054,'vn','coupon_information_adding','Th%�m th%$%ng tin phi�Q%%u th^%�%�W%�ng','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16055,'vn','coupon_type','Lo�Q%�i phi�Q%%u gi�Q%�m gi%�','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16056,'vn','for_products','%��W%�i v�W%�i S�Q%�n ph�Q%#m','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16057,'vn','for_total_orders','%��W%�i v�W%�i t�W%�ng s�W%� %�^%�n %��Q%V%t h%�ng','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16058,'vn','add_your_product_base_coupon','Th%�m phi�Q%%u gi�Q%�m gi%� c^%� s�W%� s�Q%�n ph�Q%#m c�W%�a b�Q%�n','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16059,'vn','coupon_code','M%� gi�Q%�m gi%�','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16060,'vn','sub_category','H�Q%�ng m�W%�c ph�W%�','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16061,'vn','add_more','B�W%� sung th%�m','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16062,'vn','add_your_cart_base_coupon','Th%�m phi�Q%%u gi�Q%�m gi%� c^%� s�W%� gi�W%� h%�ng c�W%�a b�Q%�n','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16063,'vn','minimum_shopping','Mua s�Q%�m t�W%�i thi�W%�u','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16064,'vn','maximum_discount_amount','S�W%� ti�W%�n chi�Q%%t kh�Q%�u t�W%�i %�a','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16065,'vn','coupon_information_update','C�Q%�p nh�Q%�t th%$%ng tin phi�Q%%u th^%�%�W%�ng','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16066,'vn','please_configure_smtp_setting_to_work_all_email_sending_funtionality','Vui l%�%ng %��W%�nh c�Q%�u h%�nh C%�i %��Q%V%t SMTP %��W%� ho�Q%�t %��W%�ng t�Q%�t c�Q%� c%�c ch�W%#c n%�ng g�W%�i email','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16067,'vn','configure_now','%��W%�nh c�Q%�u h%�nh ngay','2021-02-09 07:48:19','2021-09-20 07:29:55'),(16068,'vn','total_published_products','T�W%�ng s�W%� s�Q%�n ph�Q%#m %�%� xu�Q%�t b�Q%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16069,'vn','total_sellers_products','T�W%�ng s�W%� ng^%�%�W%�i b%�n s�Q%�n ph�Q%#m','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16070,'vn','total_admin_products','T�W%�ng s�W%� s�Q%�n ph�Q%#m qu�Q%�n tr�W%� vi%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16071,'vn','manage_products','Qu�Q%�n l%\% s�Q%�n ph�Q%#m','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16072,'vn','total_product_category','T�W%�ng s�W%� lo�Q%�i s�Q%�n ph�Q%#m','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16073,'vn','create_category','T�Q%�o danh m�W%�c','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16074,'vn','total_product_sub_sub_category','T�W%�ng danh m�W%�c ph�W%� s�Q%�n ph�Q%#m ph�W%�','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16075,'vn','create_sub_sub_category','T�Q%�o danh m�W%�c ph�W%� ph�W%�','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16076,'vn','total_product_sub_category','T�W%�ng danh m�W%�c s�Q%�n ph�Q%#m ph�W%�','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16077,'vn','create_sub_category','T�Q%�o danh m�W%�c ph�W%�','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16078,'vn','total_product_brand','T�W%�ng s�Q%�n ph�Q%#m th^%�%^%�ng hi�W%�u','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16079,'vn','create_brand','T�Q%�o th^%�%^%�ng hi�W%�u','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16080,'vn','total_sellers','T�W%�ng s�W%� ng^%�%�W%�i b%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16081,'vn','total_approved_sellers','T�W%�ng s�W%� ng^%�%�W%�i b%�n %�^%�%�W%�c ch�Q%�p thu�Q%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16082,'vn','total_pending_sellers','T�W%�ng s�W%� ng^%�%�W%�i b%�n %�ang ch�W%� x�W%� l%\%','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16083,'vn','manage_sellers','Qu�Q%�n l%\% ng^%�%�W%�i b%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16084,'vn','category_wise_product_sale','Th�W%� lo�Q%�i b%�n s�Q%�n ph�Q%#m kh%$%n ngoan','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16085,'vn','sale','Gi�Q%�m gi%�','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16086,'vn','category_wise_product_stock','Danh m�W%�c kho s�Q%�n ph�Q%#m kh%$%n ngoan','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16087,'vn','category_name','t%�n danh m�W%�c','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16088,'vn','stock','c�W%� ph�Q%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16089,'vn','frontend','Giao di�W%�n ng^%�%�W%�i d%c%ng','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16090,'vn','home_page','Trang ch�W%�','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16091,'vn','setting','c%�i %��Q%V%t','2021-02-09 07:48:20','2021-02-09 07:48:20'),(16092,'vn','policy_page','Trang ch%�nh s%�ch','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16093,'vn','general','Chung','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16094,'vn','click_here','B�Q%�m v%�o %�%�y','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16095,'vn','useful_link','Li%�n k�Q%%t h�W%�u %�ch','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16096,'vn','activation','K%�ch ho�Q%�t','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16097,'vn','smtp','SMTP','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16098,'vn','payment_method','Ph^%�%^%�ng th�W%#c thanh to%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16099,'vn','social_media','Truy�W%�n th%$%ng x%� h�W%�i','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16100,'vn','business','Kinh doanh','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16101,'vn','seller_verification','X%�c minh ng^%�%�W%�i b%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16102,'vn','form_setting','thi�Q%%t l�Q%�p bi�W%�u m�Q%�u','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16103,'vn','language','Ng%$%n ng�W%�','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16104,'vn','dashboard','b�Q%�ng %�i�W%�u khi�W%�n','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16105,'vn','pos_system','H�W%� th�W%�ng POS','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16106,'vn','pos_manager','Qu�Q%�n l%\% POS','2021-02-09 07:48:20','2021-09-20 07:29:55'),(16107,'vn','pos_configuration','C�Q%�u h%�nh POS','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16108,'vn','products','C%�c s�Q%�n ph�Q%#m','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16109,'vn','add_new_product','Th%�m s�Q%�n ph�Q%#m m�W%�i','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16110,'vn','all_products','T�Q%�t c�Q%� s�Q%�n ph�Q%#m','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16111,'vn','in_house_products','S�Q%�n ph�Q%#m trong nh%�','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16112,'vn','seller_products','S�Q%�n ph�Q%#m c�W%�a Ng^%�%�W%�i b%�n','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16113,'vn','digital_products','Nh�W%�ng s%�n ph�Q%#m k%# thu�Q%�t s�W%�','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16114,'vn','bulk_import','Nh�Q%�p kh�Q%#u s�W%� l^%�%�W%�ng l�W%�n','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16115,'vn','bulk_export','Xu�Q%�t h%�ng lo�Q%�t','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16116,'vn','category','th�W%� lo�Q%�i','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16117,'vn','subcategory','Danh m�W%�c con','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16118,'vn','sub_subcategory','Danh m�W%�c con ph�W%�','2021-02-09 07:48:21','2021-09-20 07:29:55'),(16119,'vn','brand','Nh%�n hi�W%�u','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16120,'vn','attribute','Thu�W%�c t%�nh','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16121,'vn','product_reviews','%�%�nh gi%� s�Q%�n ph�Q%#m','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16122,'vn','sales','B%�n h%�ng','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16123,'vn','all_orders','T�Q%�t c�Q%� c%�c %�^%�n h%�ng','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16124,'vn','inhouse_orders','%�^%�n %��Q%V%t h%�ng n�W%�i b�W%�','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16125,'vn','seller_orders','%�^%�n %��Q%V%t h%�ng c�W%�a Ng^%�%�W%�i b%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16126,'vn','pickup_point_order','Th�W%# t�W%�% %�i�W%�m %�%%n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16127,'vn','refunds','Ti�W%�n ho%�n l�Q%�i','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16128,'vn','refund_requests','Y%�u c�Q%�u ho%�n l�Q%�i ti�W%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16129,'vn','approved_refund','Ho%�n l�Q%�i ti�W%�n %�^%�%�W%�c ch�Q%�p thu�Q%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16130,'vn','refund_configuration','C�Q%�u h%�nh ho%�n l�Q%�i ti�W%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16131,'vn','customers','Kh%�ch h%�ng','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16132,'vn','customer_list','Danh s%�ch kh%�ch h%�ng','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16133,'vn','classified_products','S�Q%�n ph�Q%#m %�^%�%�W%�c rao v�Q%V%t','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16134,'vn','classified_packages','C%�c g%%i %�^%�%�W%�c ph%�n lo�Q%�i','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16135,'vn','sellers','Ng^%�%�W%�i b%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16136,'vn','all_seller','T�Q%�t c�Q%� ng^%�%�W%�i b%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16137,'vn','payouts','C%�c kho�Q%�n thanh to%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16138,'vn','payout_requests','Y%�u c�Q%�u thanh to%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16139,'vn','seller_commission','Hoa h�W%�ng ng^%�%�W%�i b%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16140,'vn','seller_packages','G%%i ng^%�%�W%�i b%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16141,'vn','seller_verification_form','Bi�W%�u m�Q%�u x%�c minh ng^%�%�W%�i b%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16142,'vn','reports','B%�o c%�o','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16143,'vn','in_house_product_sale','B%�n s�Q%�n ph�Q%#m n�W%�i b�W%�','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16144,'vn','seller_products_sale','B%�n s�Q%�n ph�Q%#m c�W%�a ng^%�%�W%�i b%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16145,'vn','products_stock','S�Q%�n ph�Q%#m c%�%n h%�ng','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16146,'vn','products_wishlist','Danh s%�ch s�Q%�n ph�Q%#m mong mu�W%�n','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16147,'vn','user_searches','T%�m ki�Q%%m c�W%�a Ng^%�%�W%�i d%c%ng','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16148,'vn','marketing','Ti�Q%%p th�W%�','2021-02-09 07:48:21','2021-09-20 07:29:56'),(16149,'vn','flash_deals','Giao d�W%�ch nhanh','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16150,'vn','newsletters','B�Q%�n tin','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16151,'vn','bulk_sms','SMS h%�ng lo�Q%�t','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16152,'vn','subscribers','Ng^%�%�W%�i %�%�ng k%\%','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16153,'vn','coupon','Phi�Q%%u mua h%�ng','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16154,'vn','support','�W%�ng h�W%�','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16155,'vn','ticket','V%#','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16156,'vn','product_queries','Truy v�Q%�n s�Q%�n ph�Q%#m','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16157,'vn','website_setup','Thi�Q%%t l�Q%�p trang web','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16158,'vn','header','Ti%�u %��W%�','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16159,'vn','footer','Ch%�n trang','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16160,'vn','pages','C%�c trang','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16161,'vn','appearance','Xu�Q%�t hi�W%�n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16162,'vn','setup__configurations','Thi�Q%%t l�Q%�p v%� c�Q%�u h%�nh','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16163,'vn','general_settings','C%�i %��Q%V%t chung','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16164,'vn','features_activation','K%�ch ho�Q%�t t%�nh n%�ng','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16165,'vn','languages','Ng%$%n ng�W%�','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16166,'vn','currency','Ti�W%�n t�W%�','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16167,'vn','pickup_point','%�i�W%�m %�%%n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16168,'vn','smtp_settings','C%�i %��Q%V%t SMTP','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16169,'vn','payment_methods','Ph^%�%^%�ng th�W%#c thanh to%�n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16170,'vn','file_system_configuration','C�Q%�u h%�nh h�W%� th�W%�ng t�W%�p','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16171,'vn','social_media_logins','%�%�ng nh�Q%�p m�Q%�ng x%� h�W%�i','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16172,'vn','analytics_tools','C%$%ng c�W%� ph%�n t%�ch','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16173,'vn','facebook_chat','Tr%�% chuy�W%�n tr%�n Facebook','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16174,'vn','google_recaptcha','ReCAPTCHA c�W%�a Google','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16175,'vn','shipping_configuration','C�Q%�u h%�nh v�Q%�n chuy�W%�n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16176,'vn','shipping_countries','N^%�%�W%�c v�Q%�n chuy�W%�n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16177,'vn','affiliate_system','H�W%� th�W%�ng li%�n k�Q%%t','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16178,'vn','affiliate_registration_form','%�^%�n %�%�ng k%\% li%�n k�Q%%t','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16179,'vn','affiliate_configurations','C�Q%�u h%�nh chi nh%�nh','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16180,'vn','affiliate_users','Ng^%�%�W%�i d%c%ng li%�n k�Q%%t','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16181,'vn','referral_users','Ng^%�%�W%�i d%c%ng gi�W%�i thi�W%�u','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16182,'vn','affiliate_withdraw_requests','Y%�u c�Q%�u r%Q%t ti�W%�n c�W%�a %�^%�n v�W%� li%�n k�Q%%t','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16183,'vn','offline_payment_system','H�W%� th�W%�ng thanh to%�n ngo�Q%�i tuy�Q%%n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16184,'vn','manual_payment_methods','Ph^%�%^%�ng th�W%#c thanh to%�n th�W%� c%$%ng','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16185,'vn','offline_wallet_recharge','N�Q%�p ti�W%�n v%�o v%� ngo�Q%�i tuy�Q%%n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16186,'vn','offline_customer_package_payments','Thanh to%�n g%%i cho kh%�ch h%�ng ngo�Q%�i tuy�Q%%n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16187,'vn','offline_seller_package_payments','Thanh to%�n g%%i ng^%�%�W%�i b%�n ngo�Q%�i tuy�Q%%n','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16188,'vn','paytm_payment_gateway','C�W%�ng thanh to%�n Paytm','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16189,'vn','set_paytm_credentials','%��Q%V%t th%$%ng tin x%�c th�W%�%c Paytm','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16190,'vn','club_point_system','H�W%� th�W%�ng %�i�W%�m c%�u l�Q%�c b�W%�','2021-02-09 07:48:22','2021-09-20 07:29:56'),(16191,'vn','club_point_configurations','C�Q%�u h%�nh %�i�W%�m c%�u l�Q%�c b�W%�','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16192,'vn','set_product_point','%��Q%V%t %�i�W%�m s�Q%�n ph�Q%#m','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16193,'vn','user_points','%�i�W%�m ng^%�%�W%�i d%c%ng','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16194,'vn','otp_system','H�W%� th�W%�ng OTP','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16195,'vn','otp_configurations','C�Q%�u h%�nh OTP','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16196,'vn','set_otp_credentials','%��Q%V%t th%$%ng tin x%�c th�W%�%c OTP','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16197,'vn','staffs','Nh%�n vi%�n','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16198,'vn','all_staffs','T�Q%�t c�Q%� nh%�n vi%�n','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16199,'vn','staff_permissions','Quy�W%�n c�W%�a nh%�n vi%�n','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16200,'vn','addon_manager','Tr%�nh qu�Q%�n l%\% Addon','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16201,'vn','browse_website','Duy�W%�t trang web','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16202,'vn','pos','POS','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16203,'vn','notifications','Th%$%ng b%�o','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16204,'vn','new_orders','%�^%�n h%�ng m�W%�i','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16205,'vn','userimage','h%�nh �Q%�nh ng^%�%�W%�i d%c%ng','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16206,'vn','profile','H�W%� s^%�','2021-02-09 07:48:23','2021-09-20 07:29:56'),(16207,'vn','logout','%�%�ng xu�Q%�t','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16208,'vn','page_not_found','Kh%$%ng t%�m th�Q%�y trang!','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16209,'vn','the_page_you_are_looking_for_has_not_been_found_on_our_server','Trang b�Q%�n %�ang t%�m v�Q%�n ch^%�%a %�^%�%�W%�c t%�m th�Q%�y tr%�n m%�y ch�W%� c�W%�a ch%Q%ng t%$%i.','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16210,'vn','registration','%�%�ng k%\%','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16211,'vn','i_am_shopping_for','T%$%i %�ang t%�m mua...','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16212,'vn','compare','%��W%�i chi�Q%%u','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16213,'vn','wishlist','Danh s%�ch y%�u th%�ch','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16214,'vn','cart','xe %��Q%#y','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16215,'vn','your_cart_is_empty','Gi�W%� c�W%�a b�Q%�n tr�W%�ng tr^%�n','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16216,'vn','categories','Th�W%� lo�Q%�i','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16217,'vn','see_all','Nh%�n th�Q%�y t�Q%�t c�Q%�','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16218,'vn','seller_policy','Ch%�nh s%�ch ng^%�%�W%�i b%�n','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16219,'vn','return_policy','Ch%�nh s%�ch ho%�n tr�Q%�','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16220,'vn','support_policy','Ch%�nh s%�ch h�W%� tr�W%�','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16221,'vn','privacy_policy','Ch%�nh s%�ch b�Q%�o m�Q%�t','2021-02-09 08:05:49','2021-09-20 07:29:56'),(16222,'vn','your_email_address','%��W%�a ch�W%� email c�W%�a b�Q%�n','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16223,'vn','subscribe','%�%�ng k%\%','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16224,'vn','contact_info','Th%$%ng tin li%�n l�Q%�c','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16225,'vn','address','%��W%�a ch�W%�','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16226,'vn','phone','%�i�W%�n tho�Q%�i','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16227,'vn','email','E-mail','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16228,'vn','login','%�%�ng nh�Q%�p','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16229,'vn','my_account','T%�i kho�Q%�n c�W%�a t%$%i','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16230,'vn','order_history','l�W%�ch s�W%� %�^%�n h%�ng','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16231,'vn','my_wishlist','S�Q%�n ph�Q%#m y%�u th%�ch','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16232,'vn','track_order','Theo d%a%i th�W%# t�W%�%','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16233,'vn','be_an_affiliate_partner','L%� m�W%�t %��W%�i t%�c li%�n k�Q%%t','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16234,'vn','be_a_seller','L%� ng^%�%�W%�i b%�n','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16235,'vn','apply_now','%�p d�W%�ng ngay b%�y gi�W%�','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16236,'vn','confirmation','X%�c nh�Q%�n','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16237,'vn','delete_confirmation_message','X%%a tin nh�Q%�n x%�c nh�Q%�n','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16238,'vn','cancel','Hu�W%V% b�W%�','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16239,'vn','delete','X%%a b�W%�','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16240,'vn','item_has_been_added_to_compare_list','M�W%�c %�%� %�^%�%�W%�c th%�m v%�o danh s%�ch so s%�nh','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16241,'vn','please_login_first','Vui l%�%ng %�%�ng nh�Q%�p tr^%�%�W%�c','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16242,'vn','total_earnings_from','T�W%�ng thu nh�Q%�p t�W%�','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16243,'vn','client_subscription','%�%�ng k%\% Kh%�ch h%�ng','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16244,'vn','product_category','Danh m�W%�c s�Q%�n ph�Q%#m','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16245,'vn','product_sub_sub_category','Danh m�W%�c ph�W%� s�Q%�n ph�Q%#m ph�W%�','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16246,'vn','product_sub_category','Danh m�W%�c s�Q%�n ph�Q%#m ph�W%�','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16247,'vn','product_brand','Th^%�%^%�ng hi�W%�u s�Q%�n ph�Q%#m','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16248,'vn','top_client_packages','G%%i kh%�ch h%�ng h%�ng %��Q%�u','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16249,'vn','top_freelancer_packages','C%�c g%%i Freelancer h%�ng %��Q%�u','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16250,'vn','number_of_sale','S�W%� l^%�%�W%�ng b%�n','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16251,'vn','number_of_stock','S�W%� l^%�%�W%�ng h%�ng','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16252,'vn','top_10_products','10 s�Q%�n ph�Q%#m h%�ng %��Q%�u','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16253,'vn','top_12_products','12 s�Q%�n ph�Q%#m h%�ng %��Q%�u','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16254,'vn','admin_can_not_be_a_seller','Qu�Q%�n tr�W%� vi%�n kh%$%ng th�W%� l%� ng^%�%�W%�i b%�n','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16255,'vn','filter_by_rating','L�W%�c theo x�Q%%p h�Q%�ng','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16256,'vn','published_reviews_updated_successfully','%�%� c�Q%�p nh�Q%�t th%�nh c%$%ng c%�c b%�i %�%�nh gi%� %�%� xu�Q%�t b�Q%�n','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16257,'vn','refund_sticker_has_been_updated_successfully','H%�nh d%�n ho%�n ti�W%�n %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16258,'vn','edit_product','Ch�W%�nh s�W%�a s�Q%�n ph�Q%#m','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16259,'vn','meta_images','H%�nh �Q%�nh meta','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16260,'vn','update_product','C�Q%�p nh�Q%�t s�Q%�n ph�Q%#m','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16261,'vn','product_has_been_deleted_successfully','S�Q%�n ph�Q%#m %�%� %�^%�%�W%�c x%%a th%�nh c%$%ng','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16262,'vn','your_profile_has_been_updated_successfully','H�W%� s^%� c�W%�a b�Q%�n %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng!','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16263,'vn','upload_limit_has_been_reached_please_upgrade_your_package','%�%� %��Q%�t %��Q%%n gi�W%�i h�Q%�n t�Q%�i l%�n. Vui l%�%ng n%�ng c�Q%�p g%%i c�W%�a b�Q%�n.','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16264,'vn','add_your_product','Th%�m s�Q%�n ph�Q%#m c�W%�a b�Q%�n','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16265,'vn','select_a_category','Ch�W%�n m�W%�t danh m�W%�c','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16266,'vn','select_a_brand','Ch�W%�n m�W%�t th^%�%^%�ng hi�W%�u','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16267,'vn','product_unit','%�^%�n v�W%� s�Q%�n ph�Q%#m','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16268,'vn','minimum_qty','S�W%� l^%�%�W%�ng t�W%�i thi�W%�u.','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16269,'vn','product_tag','Th�Q%W% s�Q%�n ph�Q%#m','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16270,'vn','type__hit_enter','Nh�Q%�p v%� nh�Q%�n enter','2021-02-09 08:05:50','2021-09-20 07:29:56'),(16271,'vn','videos','Video','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16272,'vn','video_from','Video t�W%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16273,'vn','video_url','URL video','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16274,'vn','customer_choice','L�W%�%a ch�W%�n c�W%�a kh%�ch h%�ng','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16275,'vn','pdf','PDF','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16276,'vn','choose_pdf','Ch�W%�n PDF','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16277,'vn','select_category','Ch�W%�n lo�Q%�i','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16278,'vn','target_category','M�W%�c ti%�u','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16279,'vn','subsubcategory','danh m�W%�c con','2021-02-09 08:05:51','2021-02-09 08:05:51'),(16280,'vn','search_category','Danh m�W%�c T%�m ki�Q%%m','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16281,'vn','search_subcategory','T%�m ki�Q%%m Danh m�W%�c con','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16282,'vn','search_subsubcategory','T%�m ki�Q%%m SubSubCategory','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16283,'vn','update_your_product','C�Q%�p nh�Q%�t s�Q%�n ph�Q%#m c�W%�a b�Q%�n','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16284,'vn','product_has_been_updated_successfully','S�Q%�n ph�Q%#m %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16285,'vn','add_your_digital_product','Th%�m s�Q%�n ph�Q%#m k�W%c% thu�Q%�t s�W%� c�W%�a b�Q%�n','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16286,'vn','active_ecommerce_cms_update_process','Quy tr%�nh c�Q%�p nh�Q%�t CMS th^%�%^%�ng m�Q%�i %�i�W%�n t�W%� %�ang ho�Q%�t %��W%�ng','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16287,'vn','codecanyon_purchase_code','M%� mua h%�ng Codecanyon','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16288,'vn','database_name','T%�n c^%� s�W%� d�W%� li�W%�u','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16289,'vn','database_username','T%�n ng^%�%�W%�i d%c%ng c^%� s�W%� d�W%� li�W%�u','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16290,'vn','database_password','M�Q%�t kh�Q%#u c^%� s�W%� d�W%� li�W%�u','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16291,'vn','database_hostname','T%�n m%�y ch�W%� c^%� s�W%� d�W%� li�W%�u','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16292,'vn','update_now','C�Q%�p nh�Q%�t b%�y gi�W%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16293,'vn','congratulations','Xin ch%Q%c m�W%�ng','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16294,'vn','you_have_successfully_completed_the_updating_process_please_login_to_continue','B�Q%�n %�%� ho%�n th%�nh qu%� tr%�nh c�Q%�p nh�Q%�t th%�nh c%$%ng. L%�m ^%�n %�%�ng nh�Q%�p %��W%� ti�Q%%p t�W%�c','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16295,'vn','go_to_home','%�i v�W%� nh%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16296,'vn','login_to_admin_panel','%�%�ng nh�Q%�p v%�o b�Q%�ng qu�Q%�n tr�W%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16297,'vn','s3_file_system_credentials','Th%$%ng tin %�%�ng nh�Q%�p h�W%� th�W%�ng t�W%�p S3','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16298,'vn','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16299,'vn','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16300,'vn','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16301,'vn','aws_bucket','AWS_BUCKET','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16302,'vn','aws_url','AWS_URL','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16303,'vn','s3_file_system_activation','K%�ch ho�Q%�t h�W%� th�W%�ng t�W%�p S3','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16304,'vn','your_phone_number','S�W%� %�i�W%�n tho�Q%�i c�W%�a b�Q%�n','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16305,'vn','zip_file','T�W%�p zip','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16306,'vn','install','T�Q%�i v�W%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16307,'vn','this_version_is_not_capable_of_installing_addons_please_update','Phi%�n b�Q%�n n%�y kh%$%ng c%% kh�Q%� n%�ng c%�i %��Q%V%t Addon, Vui l%�%ng c�Q%�p nh�Q%�t.','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16308,'vn','search_in_menu','T%�m ki�Q%%m trong menu','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16309,'vn','uploaded_files','T�W%�p %�%� t�Q%�i l%�n','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16310,'vn','shipping_cities','Th%�nh ph�W%� v�Q%�n chuy�W%�n','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16311,'vn','system','H�W%� th�W%�ng','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16312,'vn','server_status','Tr�Q%�ng th%�i m%�y ch�W%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16313,'vn','nothing_found','Kh%$%ng k�Q%%t qu�Q%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16314,'vn','parent_category','Gia ph�Q%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16315,'vn','level','C�Q%�p %��W%�','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16316,'vn','category_information','Th%$%ng tin danh m�W%�c','2021-02-09 08:05:51','2021-09-20 07:29:56'),(16317,'vn','translatable','C%% th�W%� d�W%�ch','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16318,'vn','no_parent','Kh%$%ng c%% cha m�Q%c%','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16319,'vn','physical','V�Q%�t l%\%','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16320,'vn','digital','K�W%c% thu�Q%�t s�W%�','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16321,'vn','200x200','200x200','2021-02-09 08:05:52','2021-02-09 08:05:52'),(16322,'vn','32x32','32x32','2021-02-09 08:05:52','2021-02-09 08:05:52'),(16323,'vn','search_your_files','T%�m ki�Q%%m t�W%�p c�W%�a b�Q%�n','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16324,'vn','category_has_been_updated_successfully','Danh m�W%�c %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16325,'vn','all_uploaded_files','T�Q%�t c�Q%� c%�c t�W%�p %�%� t�Q%�i l%�n','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16326,'vn','upload_new_file','T�Q%�i l%�n t�W%�p m�W%�i','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16327,'vn','all_files','T�Q%�t c�Q%� c%�c t�W%�p','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16328,'vn','search','T%�m ki�Q%%m','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16329,'vn','details_info','Th%$%ng tin chi ti�Q%%t','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16330,'vn','copy_link','Sao ch%#p %�^%�%�W%�ng d�Q%�n','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16331,'vn','are_you_sure_to_delete_this_file','B�Q%�n c%% ch�Q%�c ch�Q%�n x%%a t�W%�p n%�y kh%$%ng?','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16332,'vn','file_info','N�W%�p th%$%ng tin','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16333,'vn','link_copied_to_clipboard','Li%�n k�Q%%t %�^%�%�W%�c sao ch%#p v%�o khay nh�W%� t�Q%�m','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16334,'vn','oops_unable_to_copy','R�Q%�t ti�Q%%c, kh%$%ng th�W%� sao ch%#p','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16335,'vn','file_deleted_successfully','%�%� x%%a t�W%�p th%�nh c%$%ng','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16336,'vn','add_new_brand','Th%�m th^%�%^%�ng hi�W%�u m�W%�i','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16337,'vn','120x80','120x80','2021-02-09 08:05:52','2021-02-09 08:05:52'),(16338,'vn','brand_information','Th%$%ng tin th^%�%^%�ng hi�W%�u','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16339,'vn','brand_has_been_updated_successfully','Th^%�%^%�ng hi�W%�u %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16340,'vn','brand_has_been_deleted_successfully','Th^%�%^%�ng hi�W%�u %�%� %�^%�%�W%�c x%%a th%�nh c%$%ng','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16341,'vn','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','%�i�W%�u n%�y %�^%�%�W%�c s�W%� d�W%�ng %��W%� t%�m ki�Q%%m. Nh�Q%�p nh�W%�ng t�W%� m%� kh%�ch h%�ng c%% th�W%� t%�m th�Q%�y s�Q%�n ph�Q%#m n%�y.','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16342,'vn','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','Nh�W%�ng h%�nh �Q%�nh n%�y c%% th�W%� nh%�n th�Q%�y trong th^%�% vi�W%�n trang chi ti�Q%%t s�Q%�n ph�Q%#m. S�W%� d�W%�ng h%�nh �Q%�nh k%�ch th^%�%�W%�c 600x600.','2021-02-09 08:05:52','2021-09-20 07:29: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 �Q%�nh n%�y c%% th�W%� nh%�n th�Q%�y trong t�Q%�t c�Q%� c%�c h�W%�p s�Q%�n ph�Q%#m. S�W%� d�W%�ng h%�nh �Q%�nh k%�ch th^%�%�W%�c 300x300. Gi�W%� m�W%�t s�W%� kh%$%ng gian tr�W%�ng xung quanh %��W%�i t^%�%�W%�ng ch%�nh c�W%�a h%�nh �Q%�nh c�W%�a b�Q%�n v%� ch%Q%ng t%$%i ph�Q%�i c�Q%�t m�W%�t s�W%� c�Q%�nh trong c%�c thi�Q%%t b�W%� kh%�c nhau %��W%� l%�m cho n%% ph�Q%�n h�W%�i.','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16344,'vn','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','S�W%� d�W%�ng li%�n k�Q%%t th%�ch h�W%�p m%� kh%$%ng c�Q%�n tham s�W%� ph�W%�. Kh%$%ng s�W%� d�W%�ng li%�n k�Q%%t chia s�Q%W% ng�Q%�n / m%� iframe %�^%�%�W%�c nh%Q%ng.','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16345,'vn','save_product','L^%�%u s�Q%�n ph�Q%#m','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16346,'vn','product_has_been_inserted_successfully','S�Q%�n ph�Q%#m %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16347,'vn','something_went_wrong','%�%� x�Q%�y ra l�W%�i!','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16348,'vn','sorry_for_the_inconvenience_but_were_working_on_it','Xin l�W%�i v%� s�W%�% b�Q%�t ti�W%�n n%�y, nh^%�%ng ch%Q%ng t%$%i %�ang gi�Q%�i quy�Q%%t v�Q%�n %��W%� n%�y.','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16349,'vn','error_code','M%� l�W%�i','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16350,'vn','please_configure_smtp_setting_to_work_all_email_sending_functionality','Vui l%�%ng %��W%�nh c�Q%�u h%�nh C%�i %��Q%V%t SMTP %��W%� ho�Q%�t %��W%�ng t�Q%�t c�Q%� ch�W%#c n%�ng g�W%�i email','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16351,'vn','order','%��Q%V%t h%�ng','2021-02-09 08:05:52','2021-09-20 07:29: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%Q%ng t%$%i gi�W%�i h�Q%�n chi�W%�u cao bi�W%�u ng�W%� %��W%� duy tr%� giao di�W%�n ng^%�%�W%�i d%c%ng. Ch%Q%ng t%$%i %�%� ph�Q%�i c�Q%�t t�W%� c�Q%� b%�n tr%�i v%� b%�n ph�Q%�i trong ch�Q%% %��W%� xem cho c%�c thi�Q%%t b�W%� kh%�c nhau %��W%� l%�m cho n%% ph�Q%�n h�W%�i. Tr^%�%�W%�c khi thi�Q%%t k�Q%% banner, h%�y ghi nh�W%� nh�W%�ng %�i�W%�m n%�y.','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16353,'vn','home_banner_3_max_3','Bi�W%�u ng�W%� Trang ch�W%� 3 (T�W%�i %�a 3)','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16354,'vn','add_new_seller','Th%�m ng^%�%�W%�i b%�n m�W%�i','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16355,'vn','filter_by_approval','L�W%�c theo ph%� duy�W%�t','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16356,'vn','nonapproved','Kh%$%ng %�^%�%�W%�c ch�Q%�p thu�Q%�n','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16357,'vn','type_name_or_email__enter','Nh�Q%�p t%�n ho�Q%V%c email & Enter','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16358,'vn','due_to_seller','Do ng^%�%�W%�i b%�n','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16359,'vn','log_in_as_this_seller','%�%�ng nh�Q%�p v�W%�i t^%�% c%�ch Ng^%�%�W%�i b%�n n%�y','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16360,'vn','go_to_payment','Chuy�W%�n %��Q%%n Thanh to%�n','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16361,'vn','ban_this_seller','C�Q%�m ng^%�%�W%�i b%�n n%�y','2021-02-09 08:05:52','2021-09-20 07:29:56'),(16362,'vn','do_you_really_want_to_ban_this_seller','B�Q%�n c%% th�W%�%c s�W%�% mu�W%�n c�Q%�m ng^%�%�W%�i b%�n n%�y kh%$%ng?','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16363,'vn','proceed','Ti�Q%%p t�W%�c!','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16364,'vn','approved_sellers_updated_successfully','Ng^%�%�W%�i b%�n %�^%�%�W%�c ch�Q%�p thu�Q%�n %�%� c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16365,'vn','seller_has_been_deleted_successfully','Ng^%�%�W%�i b%�n %�%� %�^%�%�W%�c x%%a th%�nh c%$%ng','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16366,'vn','seller_information','Th%$%ng tin ng^%�%�W%�i b%�n','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16367,'vn','seller_has_been_inserted_successfully','Ng^%�%�W%�i b%�n %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16368,'vn','email_already_exists','Email %�%� t�W%�n t�Q%�i!','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16369,'vn','verify_your_email_address','X%�c minh %��W%�a ch�W%� email c�W%�a b�Q%�n','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16370,'vn','before_proceeding_please_check_your_email_for_a_verification_link','Tr^%�%�W%�c khi ti�Q%%p t�W%�c, vui l%�%ng ki�W%�m tra email c�W%�a b�Q%�n %��W%� bi�Q%%t li%�n k�Q%%t x%�c minh.','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16371,'vn','if_you_did_not_receive_the_email','N�Q%%u b�Q%�n kh%$%ng nh�Q%�n %�^%�%�W%�c email.','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16372,'vn','click_here_to_request_another','B�Q%�m v%�o %�%�y %��W%� y%�u c�Q%�u kh%�c','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16373,'vn','email_verification','Email x%�c th�W%�%c','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16374,'vn','email_verification__','Email x%�c th�W%�%c -','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16375,'vn','https_activation','K%�ch ho�Q%�t HTTPS','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16376,'vn','maintenance_mode','Ch�Q%% %��W%� b�Q%�o tr%�','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16377,'vn','maintenance_mode_activation','K%�ch ho�Q%�t ch�Q%% %��W%� b�Q%�o tr%�','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16378,'vn','classified_product_activate','K%�ch ho�Q%�t s�Q%�n ph�Q%#m %�%� ph%�n lo�Q%�i','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16379,'vn','classified_product','S�Q%�n ph�Q%#m %�^%�%�W%�c ph%�n lo�Q%�i','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16380,'vn','business_related','Li%�n quan %��Q%%n Doanh nghi�W%�p','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16381,'vn','vendor_system_activation','K%�ch ho�Q%�t h�W%� th�W%�ng nh%� cung c�Q%�p','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16382,'vn','wallet_system_activation','K%�ch ho�Q%�t h�W%� th�W%�ng v%�','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16383,'vn','coupon_system_activation','K%�ch ho�Q%�t h�W%� th�W%�ng phi�Q%%u th^%�%�W%�ng','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16384,'vn','pickup_point_activation','K%�ch ho�Q%�t %�i�W%�m %�%%n','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16385,'vn','conversation_activation','K%�ch ho�Q%�t cu�W%�c tr%�% chuy�W%�n','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16386,'vn','guest_checkout_activation','K%�ch ho�Q%�t thanh to%�n c�W%�a kh%�ch','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16387,'vn','categorybased_commission','Hoa h�W%�ng d�W%�%a tr%�n danh m�W%�c','2021-02-09 08:05:53','2021-09-20 07:29: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�Q%�t t%c%y ch�W%�n n%�y Quy�W%�n �W%�y th%�c c�W%�a ng^%�%�W%�i b%�n s�Q%\% b�W%� v%$% hi�W%�u h%%a v%� B�Q%�n c�Q%�n %��Q%V%t hoa h�W%�ng cho t�W%�ng danh m�W%�c n�Q%%u kh%$%ng Qu�Q%�n tr�W%� vi%�n s�Q%\% kh%$%ng nh�Q%�n %�^%�%�W%�c b�Q%�t k�W%% �W%�y quy�W%�n n%�o','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16389,'vn','set_commisssion_now','%��Q%V%t Commisssion ngay','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16390,'vn','payment_related','Thanh to%�n li%�n quan','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16391,'vn','paypal_payment_activation','K%�ch ho�Q%�t thanh to%�n qua Paypal','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16392,'vn','you_need_to_configure_paypal_correctly_to_enable_this_feature','B�Q%�n c�Q%�n c�Q%�u h%�nh Paypal ch%�nh x%�c %��W%� k%�ch ho�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16393,'vn','stripe_payment_activation','K%�ch ho�Q%�t thanh to%�n b�Q%�%ng s�W%�c','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16394,'vn','sslcommerz_activation','K%�ch ho�Q%�t SSlCommerz','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16395,'vn','instamojo_payment_activation','K%�ch ho�Q%�t thanh to%�n Instamojo','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16396,'vn','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh Instamojo Payment ch%�nh x%�c %��W%� b�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16397,'vn','razor_pay_activation','K%�ch ho�Q%�t Razor Pay','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16398,'vn','you_need_to_configure_razor_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh Razor ch%�nh x%�c %��W%� k%�ch ho�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16399,'vn','paystack_activation','K%�ch ho�Q%�t PayStack','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16400,'vn','you_need_to_configure_paystack_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh PayStack m�W%�t c%�ch ch%�nh x%�c %��W%� b�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:53','2021-09-20 07:29:56'),(16401,'vn','voguepay_activation','K%�ch ho�Q%�t VoguePay','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16402,'vn','you_need_to_configure_voguepay_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh VoguePay m�W%�t c%�ch ch%�nh x%�c %��W%� b�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16403,'vn','payhere_activation','K%�ch ho�Q%�t Payhere','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16404,'vn','ngenius_activation','K%�ch ho�Q%�t Ngenius','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16405,'vn','you_need_to_configure_ngenius_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh Ngenius m�W%�t c%�ch ch%�nh x%�c %��W%� k%�ch ho�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16406,'vn','iyzico_activation','K%�ch ho�Q%�t Iyzico','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16407,'vn','you_need_to_configure_iyzico_correctly_to_enable_this_feature','B�Q%�n c�Q%�n c�Q%�u h%�nh iyzico ch%�nh x%�c %��W%� k%�ch ho�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16408,'vn','bkash_activation','K%�ch ho�Q%�t Bkash','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16409,'vn','you_need_to_configure_bkash_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh bkash ch%�nh x%�c %��W%� b�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16410,'vn','nagad_activation','K%�ch ho�Q%�t Nagad','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16411,'vn','you_need_to_configure_nagad_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh nagad m�W%�t c%�ch ch%�nh x%�c %��W%� b�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16412,'vn','cash_payment_activation','K%�ch ho�Q%�t thanh to%�n b�Q%�%ng ti�W%�n m�Q%V%t','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16413,'vn','social_media_login','%�%�ng nh�Q%�p m�Q%�ng x%� h�W%�i','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16414,'vn','facebook_login','%�%�ng nh�Q%�p Facebook','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16415,'vn','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh Facebook Client ch%�nh x%�c %��W%� b�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16416,'vn','google_login','%�%�ng nh�Q%�p Google','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16417,'vn','you_need_to_configure_google_client_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh Google Client ch%�nh x%�c %��W%� b�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16418,'vn','twitter_login','%�%�ng nh�Q%�p Twitter','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16419,'vn','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','B�Q%�n c�Q%�n %��W%�nh c�Q%�u h%�nh �W%�ng d�W%�ng kh%�ch Twitter m�W%�t c%�ch ch%�nh x%�c %��W%� b�Q%�t t%�nh n%�ng n%�y','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16420,'vn','shop_logo','Bi�W%�u tr^%�%ng c�W%�a h%�ng','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16421,'vn','shop_address','%��W%�a ch�W%� c�W%�a h%�ng','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16422,'vn','banner_settings','C%�i %��Q%V%t bi�W%�u ng�W%�','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16423,'vn','banners','B%�ng r%$%n','2021-02-09 08:05:54','2021-09-20 07:29: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%Q%ng t%$%i %�%� ph�Q%�i gi�W%�i h�Q%�n chi�W%�u cao %��W%� duy tr%� nh�Q%�t qu%�n. Trong m�W%�t s�W%� thi�Q%%t b�W%�, c�Q%� hai m�Q%V%t c�W%�a bi�W%�u ng�W%� c%% th�W%� b�W%� c�Q%�t %��W%� gi�W%�i h�Q%�n chi�W%�u cao.','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16425,'vn','insert_link_with_https_','Ch%�n li%�n k�Q%%t b�Q%�%ng https','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16426,'vn','your_shop_has_been_updated_successfully','Shop c�W%�a b�Q%�n %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng!','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16427,'vn','search_result_for_','t%�m k�Q%%t qu�Q%� cho','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16428,'vn','brand_has_been_inserted_successfully','Th^%�%^%�ng hi�W%�u %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16429,'vn','about','Trong kho�Q%�ng','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16430,'vn','payout_info','Th%$%ng tin thanh to%�n','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16431,'vn','bank_acc_name','T%�n t%�i kho�Q%�n ng%�n h%�ng','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16432,'vn','bank_acc_number','S�W%� Acc Ng%�n h%�ng','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16433,'vn','total_products','T�W%�ng s�W%� s�Q%�n ph�Q%#m','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16434,'vn','total_sold_amount','T�W%�ng s�W%� l^%�%�W%�ng %�%� b%�n','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16435,'vn','wallet_balance','S�W%� d^%�% tr%�n Wallet','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16436,'vn','cookies_agreement','Th�W%�a thu�Q%�n cookie','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16437,'vn','cookies_agreement_text','V%�n b�Q%�n Th�W%�a thu�Q%�n Cookie','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16438,'vn','show_cookies_agreement','Hi�W%�n th�W%� Th�W%�a thu�Q%�n Cookies?','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16439,'vn','custom_script','T�Q%�p l�W%�nh t%c%y ch�W%�nh','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16440,'vn','header_custom_script__before_head','T�Q%�p l�W%�nh t%c%y ch�W%�nh ti%�u %��W%� - tr^%�%�W%�c </head>','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16441,'vn','write_script_with_script_tag','Vi�Q%%t script v�W%�i th�Q%W% <script>','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16442,'vn','footer_custom_script__before_body','T�Q%�p l�W%�nh t%c%y ch�W%�nh ch%�n trang - tr^%�%�W%�c </body>','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16443,'vn','category_has_been_inserted_successfully','Danh m�W%�c %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 08:05:54','2021-09-20 07:29:56'),(16444,'vn','all_flash_deals','T�Q%�t c�Q%� c%�c ^%�%u %�%�i Flash','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16445,'vn','create_new_flash_deal','T�Q%�o giao d�W%�ch flash m�W%�i','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16446,'vn','ffffff','#FFFFFF','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16447,'vn','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','H%�nh �Q%�nh n%�y %�^%�%�W%�c hi�W%�n th�W%� d^%�%�W%�i d�Q%�ng bi�W%�u ng�W%� b%�a trong trang chi ti�Q%%t giao d�W%�ch flash.','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16448,'vn','flash_deal_has_been_inserted_successfully','Giao d�W%�ch Flash %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16449,'vn','flash_deal_status_updated_successfully','%�%� c�Q%�p nh�Q%�t th%�nh c%$%ng tr�Q%�ng th%�i giao d�W%�ch Flash','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16450,'vn','flash_deal_has_been_updated_successfully','Giao d�W%�ch Flash %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16451,'vn','update_language_info','c�Q%�p nh�Q%�t th%$%ng tin ng%$%n ng�W%�','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16452,'vn','language_has_been_updated_successfully','Ng%$%n ng�W%� %�%� %�^%�%�W%�c c�Q%�p nh�Q%�t th%�nh c%$%ng','2021-02-09 08:05:55','2021-09-20 07:29:56'),(16453,'vn','type_key__enter','G%a% ph%�m v%� Enter','2021-02-09 08:05:55','2021-09-20 07:29:57'),(16454,'vn','translations_updated_for_','B�Q%�n d�W%�ch %�^%�%�W%�c c�Q%�p nh�Q%�t cho','2021-02-09 08:05:55','2021-09-20 07:29:57'),(16455,'vn','language_has_been_inserted_successfully','Ng%$%n ng�W%� %�%� %�^%�%�W%�c ch%�n th%�nh c%$%ng','2021-02-09 08:05:55','2021-09-20 07:29:57'),(16456,'my','all_category','Semua Kategori','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16457,'my','all','Semua','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16458,'my','flash_sale','Jualan Kilat','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16459,'my','view_more','Lihat Lagi','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16460,'my','add_to_wishlist','Tambahkan ke senarai keinginan','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16461,'my','add_to_compare','Tambah untuk membandingkan','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16462,'my','add_to_cart','Tambah ke troli','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16463,'my','club_point','Titik Kelab','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16464,'my','classified_ads','Iklan','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16465,'my','used','Terpakai','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16466,'my','top_10_categories','10 Kategori Teratas','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16467,'my','view_all_categories','Lihat Semua Kategori','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16468,'my','top_10_brands','10 Jenama Teratas','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16469,'my','view_all_brands','Lihat Semua Jenama','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16470,'my','terms__conditions','Terma & Syarat','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16471,'my','best_selling','Terlaris','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16472,'my','top_20','20 teratas','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16473,'my','featured_products','Produk Pilihan','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16474,'my','best_sellers','Jualan paling laris','2021-02-09 08:09:39','2021-09-20 07:29:57'),(16475,'my','visit_store','Lawati Kedai','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16476,'my','popular_suggestions','Cadangan Popular','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16477,'my','category_suggestions','Cadangan Kategori','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16478,'my','automobile__motorcycle','Automobil & Motosikal','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16479,'my','price_range','Julat harga','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16480,'my','filter_by_color','Tapis mengikut warna','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16481,'my','home','Rumah','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16482,'my','newest','Terkini','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16483,'my','oldest','Tertua','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16484,'my','price_low_to_high','Harga rendah hingga tinggi','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16485,'my','price_high_to_low','Harga tinggi hingga rendah','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16486,'my','brands','Jenama','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16487,'my','all_brands','Semua Jenama','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16488,'my','all_sellers','Semua Penjual','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16489,'my','inhouse_product','Produk dalaman','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16490,'my','message_seller','Penjual Mesej','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16491,'my','price','Harga','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16492,'my','discount_price','Harga diskaun','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16493,'my','color','Warna','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16494,'my','quantity','Kuantiti','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16495,'my','available','ada','2021-02-09 08:09:40','2021-02-09 08:09:40'),(16496,'my','total_price','Harga keseluruhan','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16497,'my','out_of_stock','Kehabisan Stok','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16498,'my','refund','Bayaran balik','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16499,'my','share','Berkongsi','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16500,'my','sold_by','Dijual oleh','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16501,'my','customer_reviews','Maklumbalas Pelanggan','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16502,'my','top_selling_products','Produk Terlaris','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16503,'my','description','Penerangan','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16504,'my','video','Video','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16505,'my','reviews','Ulasan','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16506,'my','download','Muat turun','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16507,'my','there_have_been_no_reviews_for_this_product_yet','Belum ada ulasan untuk produk ini.','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16508,'my','related_products','Produk Berkaitan','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16509,'my','any_query_about_this_product','Sebarang pertanyaan mengenai produk ini','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16510,'my','product_name','Nama Produk','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16511,'my','your_question','Soalan anda','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16512,'my','send','Hantar','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16513,'my','use_country_code_before_number','Gunakan kod negara sebelum nombor','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16514,'my','remember_me','Ingatlah Aku','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16515,'my','dont_have_an_account','Tidak mempunyai akaun?','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16516,'my','register_now','Daftar sekarang','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16517,'my','or_login_with','Atau Log Masuk Dengan','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16518,'my','oops','Alamak ..','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16519,'my','this_item_is_out_of_stock','Item ini kehabisan stok!','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16520,'my','back_to_shopping','Kembali ke membeli-belah','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16521,'my','login_to_your_account','Log masuk ke akaun anda.','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16522,'my','purchase_history','Sejarah pembelian','2021-02-09 08:09:40','2021-09-20 07:29:57'),(16523,'my','new','Baru','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16524,'my','downloads','Muat turun','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16525,'my','sent_refund_request','Permintaan Bayaran Balik Dihantar','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16526,'my','product_bulk_upload','Muat Naik Pukal Produk','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16527,'my','orders','Pesanan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16528,'my','recieved_refund_request','Permintaan Bayaran Balik yang Diterima','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16529,'my','shop_setting','Kedai Kedai','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16530,'my','payment_history','sejarah pembayaran','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16531,'my','money_withdraw','Pengeluaran Wang','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16532,'my','conversations','Perbualan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16533,'my','my_wallet','Dompet saya','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16534,'my','earning_points','Memperoleh Mata','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16535,'my','support_ticket','Tiket Sokongan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16536,'my','manage_profile','Urus Profil','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16537,'my','sold_amount','Jumlah Dijual','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16538,'my','your_sold_amount_current_month','Jumlah jualan anda (bulan semasa)','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16539,'my','total_sold','Jumlah Dijual','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16540,'my','last_month_sold','Bulan Terakhir Dijual','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16541,'my','total_sale','Jumlah jualan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16542,'my','total_earnings','Jumlah pendapatan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16543,'my','successful_orders','Pesanan berjaya','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16544,'my','total_orders','Jumlah pesanan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16545,'my','pending_orders','Pesanan belum selesai','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16546,'my','cancelled_orders','Pesanan dibatalkan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16547,'my','product','Produk','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16548,'my','purchased_package','Pakej yang Dibeli','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16549,'my','package_not_found','Pakej Tidak Dijumpai','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16550,'my','upgrade_package','Pakej Naik Taraf','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16551,'my','shop','Kedai','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16552,'my','manage__organize_your_shop','Urus & atur kedai anda','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16553,'my','go_to_setting','Pergi ke tetapan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16554,'my','payment','Pembayaran','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16555,'my','configure_your_payment_method','Konfigurasikan kaedah pembayaran anda','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16556,'my','my_panel','Panel Saya','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16557,'my','item_has_been_added_to_wishlist','Item telah ditambahkan ke senarai keinginan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16558,'my','my_points','Mata Saya','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16559,'my','_points','Mata','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16560,'my','wallet_money','Wang Dompet','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16561,'my','exchange_rate','Kadar pertukaran','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16562,'my','point_earning_history','Sejarah Perolehan Mata','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16563,'my','date','Tarikh','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16564,'my','points','Mata','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16565,'my','converted','Ditukar','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16566,'my','action','Tindakan','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16567,'my','no_history_found','Tiada sejarah dijumpai.','2021-02-09 08:09:41','2021-09-20 07:29:57'),(16568,'my','convert_has_been_done_successfully_check_your_wallets','Penukaran telah berjaya dilakukan Periksa Dompet anda','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16569,'my','something_went_wrong','Ada yang tidak kena','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16570,'my','remaining_uploads','Sisa Muat Naik','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16571,'my','no_package_found','Tiada Pakej Dijumpai','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16572,'my','search_product','Cari produk','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16573,'my','name','Nama','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16574,'my','current_qty','Kuantiti Semasa','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16575,'my','base_price','Harga Asas','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16576,'my','published','Diterbitkan','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16577,'my','featured','Yang diketengahkan','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16578,'my','options','Pilihan','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16579,'my','edit','Edit','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16580,'my','duplicate','Gandakan','2021-02-09 08:09:42','2021-09-20 07:29: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 08:09:42','2021-09-20 07:29: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 08:09:42','2021-09-20 07:29: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 08:09:42','2021-09-20 07:29: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 08:09:42','2021-09-20 07:29:57'),(16585,'my','download_csv','Muat turun CSV','2021-02-09 08:09:42','2021-09-20 07:29: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 08:09:42','2021-09-20 07:29: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 08:09:42','2021-09-20 07:29:57'),(16588,'my','download_category','Kategori Muat turun','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16589,'my','download_sub_category','Muat turun Sub kategori','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16590,'my','download_sub_sub_category','Muat turun Sub Sub kategori','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16591,'my','download_brand','Muat turun Jenama','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16592,'my','upload_csv_file','Muat naik Fail CSV','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16593,'my','csv','CSV','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16594,'my','choose_csv_file','Pilih Fail CSV','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16595,'my','upload','Muat naik','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16596,'my','add_new_digital_product','Tambah Produk Digital Baru','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16597,'my','available_status','Status yang ada','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16598,'my','admin_status','Status Pentadbir','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16599,'my','pending_balance','Baki Belum Selesai','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16600,'my','send_withdraw_request','Hantar Permintaan Pengeluaran','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16601,'my','withdraw_request_history','Tarik balik sejarah Permintaan','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16602,'my','amount','Jumlah','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16603,'my','status','Status','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16604,'my','message','Mesej','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16605,'my','send_a_withdraw_request','Hantar Permintaan Pengeluaran','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16606,'my','basic_info','Info asas','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16607,'my','your_phone','Telefon awak','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16608,'my','photo','Foto','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16609,'my','browse','Semak imbas','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16610,'my','your_password','Kata laluan Awak','2021-02-09 08:09:42','2021-09-20 07:29:57'),(16611,'my','new_password','Kata laluan baharu','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16612,'my','confirm_password','Sahkan Kata Laluan','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16613,'my','add_new_address','Tambah Alamat Baru','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16614,'my','payment_setting','Tetapan Pembayaran','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16615,'my','cash_payment','Pembayaran tunai','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16616,'my','bank_payment','Bayaran Bank','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16617,'my','bank_name','Nama bank','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16618,'my','bank_account_name','Nama Akaun Bank','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16619,'my','bank_account_number','Nombor akaun bank','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16620,'my','bank_routing_number','Nombor Laluan Bank','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16621,'my','update_profile','Kemas kini Profil','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16622,'my','change_your_email','Tukar e-mel anda','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16623,'my','your_email','Emel anda','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16624,'my','sending_email','Menghantar E-mel ...','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16625,'my','verify','Sahkan','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16626,'my','update_email','Kemas kini E-mel','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16627,'my','new_address','Alamat Baru','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16628,'my','your_address','Alamat anda','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16629,'my','country','Negara','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16630,'my','select_your_country','Pilih negara anda','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16631,'my','city','Bandar','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16632,'my','your_city','Bandar anda','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16633,'my','your_postal_code','Poskod Anda','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16634,'my','880','+880','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16635,'my','save','Jimat','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16636,'my','received_refund_request','Permintaan Bayaran Balik yang Diterima','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16637,'my','delete_confirmation','Padamkan Pengesahan','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16638,'my','are_you_sure_to_delete_this','Adakah anda pasti memadamkannya?','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16639,'my','premium_packages_for_sellers','Pakej Premium untuk Penjual','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16640,'my','product_upload','Muat Naik Produk','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16641,'my','digital_product_upload','Muat Naik Produk Digital','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16642,'my','purchase_package','Pakej Pembelian','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16643,'my','select_payment_type','Pilih Jenis Pembayaran','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16644,'my','payment_type','Jenis pembayaran','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16645,'my','select_one','Pilih satu','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16646,'my','online_payment','Pembayaran dalam talian','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16647,'my','offline_payment','Pembayaran luar talian','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16648,'my','purchase_your_package','Beli Pakej Anda','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16649,'my','paypal','Paypal','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16650,'my','stripe','Jalur','2021-02-09 08:09:43','2021-09-20 07:29:57'),(16651,'my','sslcommerz','sslcommerz','2021-02-09 08:09:44','2021-02-09 08:09:44'),(16652,'my','confirm','Sahkan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16653,'my','offline_package_payment','Pembayaran Pakej Luar Talian','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16654,'my','transaction_id','ID Transaksi','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16655,'my','choose_image','Pilih gambar','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16656,'my','code','Kod','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16657,'my','delivery_status','Status penghantaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16658,'my','payment_status','Status bayaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16659,'my','paid','Dibayar','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16660,'my','order_details','Maklumat-maklumat Pesanan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16661,'my','download_invoice','Muat turun Invois','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16662,'my','unpaid','Tanpa Bayaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16663,'my','order_placed','Pesanan dibuat','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16664,'my','confirmed','Disahkan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16665,'my','on_delivery','Dalam penghantaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16666,'my','delivered','Dihantar','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16667,'my','order_summary','Ringkasan Pesanan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16668,'my','order_code','Kod Pesanan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16669,'my','customer','Pelanggan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16670,'my','total_order_amount','Jumlah jumlah pesanan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16671,'my','shipping_metdod','Metdod penghantaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16672,'my','flat_shipping_rate','Kadar penghantaran rata','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16673,'my','payment_metdod','Metod pembayaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16674,'my','variation','Variasi','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16675,'my','delivery_type','Jenis Penghantaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16676,'my','home_delivery','Penghantaran ke rumah','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16677,'my','order_ammount','Jumlah Pesanan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16678,'my','subtotal','jumlah kecil','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16679,'my','shipping','penghantaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16680,'my','coupon_discount','Potongan Kupon','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16681,'my','na','N / A','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16682,'my','in_stock','Dalam stok','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16683,'my','buy_now','Beli sekarang','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16684,'my','item_added_to_your_cart','Item ditambahkan ke troli anda!','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16685,'my','proceed_to_checkout','Teruskan ke Checkout','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16686,'my','cart_items','Item Troli','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16687,'my','1_my_cart','1. Troli Saya','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16688,'my','view_cart','Lihat troli','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16689,'my','2_shipping_info','2. Maklumat penghantaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16690,'my','checkout','Daftar keluar','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16691,'my','3_delivery_info','3. Maklumat penghantaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16692,'my','4_payment','4. Pembayaran','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16693,'my','5_confirmation','5. Pengesahan','2021-02-09 08:09:44','2021-09-20 07:29:57'),(16694,'my','remove','Keluarkan','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16695,'my','return_to_shop','Kembali ke kedai','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16696,'my','continue_to_shipping','Terus Penghantaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16697,'my','or','Atau','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16698,'my','guest_checkout','Daftar Keluar Tetamu','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16699,'my','continue_to_delivery_info','Terus ke Maklumat Penghantaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16700,'my','postal_code','Poskod','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16701,'my','choose_delivery_type','Pilih Jenis Penghantaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16702,'my','local_pickup','Pengambilan Tempatan','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16703,'my','select_your_nearest_pickup_point','Pilih tempat pengambilan terdekat anda','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16704,'my','continue_to_payment','Terus ke Pembayaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16705,'my','select_a_payment_option','Pilih pilihan pembayaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16706,'my','razorpay','Razorpay','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16707,'my','paystack','Paystack','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16708,'my','voguepay','VoguePay','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16709,'my','payhere','gaji','2021-02-09 08:09:45','2021-02-09 08:09:45'),(16710,'my','ngenius','ngenius','2021-02-09 08:09:45','2021-02-09 08:09:45'),(16711,'my','paytm','Bayaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16712,'my','cash_on_delivery','Tunai semasa Penghantaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16713,'my','your_wallet_balance_','Baki dompet anda:','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16714,'my','insufficient_balance','Baki tidak mencukupi','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16715,'my','i_agree_to_the','saya setuju dengan','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16716,'my','complete_order','Pesanan Lengkap','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16717,'my','summary','Ringkasan','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16718,'my','items','Barang','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16719,'my','total_club_point','Jumlah mata Kelab','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16720,'my','total_shipping','Jumlah Penghantaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16721,'my','have_coupon_code_enter_here','Ada kod kupon? Masuk ke sini','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16722,'my','apply','Memohon','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16723,'my','you_need_to_agree_with_our_policies','Anda perlu bersetuju dengan dasar kami','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16724,'my','forgot_password','Lupa kata laluan','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16725,'my','seo_setting','Tetapan SEO','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16726,'my','system_update','Kemas kini sistem','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16727,'my','add_new_payment_method','Tambahkan Kaedah Pembayaran Baru','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16728,'my','manual_payment_method','Kaedah Pembayaran Manual','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16729,'my','heading','Tajuk','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16730,'my','logo','Logo','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16731,'my','manual_payment_information','Maklumat Pembayaran Manual','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16732,'my','type','Jenis','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16733,'my','custom_payment','Pembayaran Tersuai','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16734,'my','check_payment','Cek Bayaran','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16735,'my','checkout_thumbnail','Gambar Kecil Checkout','2021-02-09 08:09:45','2021-09-20 07:29:57'),(16736,'my','payment_instruction','Arahan Pembayaran','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16737,'my','bank_information','Maklumat bank','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16738,'my','select_file','Pilih fail','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16739,'my','upload_new','Muat Naik Baru','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16740,'my','sort_by_newest','Susun mengikut yang terbaru','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16741,'my','sort_by_oldest','Susun mengikut yang tertua','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16742,'my','sort_by_smallest','Isih mengikut terkecil','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16743,'my','sort_by_largest','Susun mengikut yang terbesar','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16744,'my','selected_only','Dipilih Sahaja','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16745,'my','no_files_found','Fail tidak dijumpai','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16746,'my','0_file_selected','0 Fail dipilih','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16747,'my','clear','Jelas','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16748,'my','prev','Sebelumnya','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16749,'my','next','Seterusnya','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16750,'my','add_files','Menambah fail','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16751,'my','method_has_been_inserted_successfully','Kaedah telah berjaya dimasukkan','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16752,'my','order_date','Tarikh pesanan','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16753,'my','bill_to','Bil ke','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16754,'my','sub_total','Jumlah kecil','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16755,'my','total_tax','Jumlah Cukai','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16756,'my','grand_total','Jumlah keseluruhan','2021-02-09 08:09:46','2021-09-20 07:29: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 08:09:46','2021-09-20 07:29:57'),(16758,'my','thank_you_for_your_order','Terima kasih atas pesanan anda!','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16759,'my','order_code','Kod Pesanan:','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16760,'my','a_copy_or_your_order_summary_has_been_sent_to','Salinan atau ringkasan pesanan anda telah dihantar ke','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16761,'my','make_payment','Buat bayaran','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16762,'my','payment_screenshot','Tangkapan skrin pembayaran','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16763,'my','paypal_credential','Kelayakan Paypal','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16764,'my','paypal_client_id','ID Pelanggan Paypal','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16765,'my','paypal_client_secret','Rahsia Pelanggan Paypal','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16766,'my','paypal_sandbox_mode','Mod Kotak Pasir Paypal','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16767,'my','sslcommerz_credential','Kelayakan Sslcommerz','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16768,'my','sslcz_store_id','Id Kedai Sslcz','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16769,'my','sslcz_store_password','Kata laluan kedai Sslcz','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16770,'my','sslcommerz_sandbox_mode','Mod Kotak Pasir Sslcommerz','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16771,'my','stripe_credential','Kredensial Stripe','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16772,'my','stripe_key','KUNCI STRIPE','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16773,'my','stripe_secret','RAHSIA STRIPE','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16774,'my','razorpay_credential','Kelayakan RazorPay','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16775,'my','razor_key','KUNCI RAZOR','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16776,'my','razor_secret','RAHSIA RAZOR','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16777,'my','instamojo_credential','Kelayakan Instamojo','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16778,'my','api_key','KUNCI API','2021-02-09 08:09:46','2021-09-20 07:29:57'),(16779,'my','im_api_key','KUNCI API IM','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16780,'my','auth_token','TOKEN AUTH','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16781,'my','im_auth_token','TOKEN KEBENARAN IM','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16782,'my','instamojo_sandbox_mode','Mod Kotak Pasir Instamojo','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16783,'my','paystack_credential','Kelayakan PayStack','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16784,'my','public_key','KUNCI AWAM','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16785,'my','secret_key','KUNCI RAHSIA','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16786,'my','merchant_email','E-mel PEKERJA','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16787,'my','voguepay_credential','Kelayakan VoguePay','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16788,'my','merchant_id','ID PENGEDAR','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16789,'my','sandbox_mode','Mod Kotak Pasir','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16790,'my','payhere_credential','Kelayakan Payhere','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16791,'my','payhere_merchant_id','ID PEMBELI PAYHERE','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16792,'my','payhere_secret','RAHSIA PAYHERE','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16793,'my','payhere_currency','MATA WANG BAYARAN','2021-02-09 08:09:47','2021-09-20 07:29:57'),(16794,'my','payhere_sandbox_mode','Mod Kotak Pasir Payhere','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16795,'my','ngenius_credential','Kepujian Ngenius','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16796,'my','ngenius_outlet_id','ID NGENIUS OUTLET','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16797,'my','ngenius_api_key','KUNCI API NGENIUS','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16798,'my','ngenius_currency','MATA WANG NGENIUS','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16799,'my','mpesa_credential','Kepujian Mpesa','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16800,'my','mpesa_consumer_key','KUNCI PENGGUNA MPESA','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16801,'my','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16802,'my','mpesa_consumer_secret','RAHSIA PENGGUNA MPESA','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16803,'my','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16804,'my','mpesa_short_code','KOD PENDEK MPESA','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16805,'my','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16806,'my','mpesa_sandbox_activation','AKTIVITI SANDBOX MPESA','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16807,'my','flutterwave_credential','Kelayakan Flutterwave','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16808,'my','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16809,'my','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16810,'my','rave_title','RAVE_TITLE','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16811,'my','stagin_activation','PENGAKTIFAN STAGIN','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16812,'my','all_product','Semua Produk','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16813,'my','sort_by','Disusun mengikut','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16814,'my','rating_high__low','Penilaian (Tinggi> Rendah)','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16815,'my','rating_low__high','Penilaian (Rendah> Tinggi)','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16816,'my','num_of_sale_high__low','Jumlah Jualan (Tinggi> Rendah)','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16817,'my','num_of_sale_low__high','Jumlah Jualan (Rendah> Tinggi)','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16818,'my','base_price_high__low','Harga Asas (Tinggi> Rendah)','2021-02-09 08:09:47','2021-09-20 07:29:58'),(16819,'my','base_price_low__high','Harga Asas (Rendah> Tinggi)','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16820,'my','type__enter','Taip & Masukkan','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16821,'my','added_by','Ditambah Oleh','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16822,'my','num_of_sale','Jumlah Jualan','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16823,'my','total_stock','Jumlah Stok','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16824,'my','todays_deal','Tawaran Hari Ini','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16825,'my','rating','Penarafan','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16826,'my','times','kali','2021-02-09 08:09:48','2021-02-09 08:09:48'),(16827,'my','add_nerw_product','Tambah Produk Nerw','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16828,'my','product_information','informasi produk','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16829,'my','unit','Unit','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16830,'my','unit_eg_kg_pc_etc','Unit (contohnya KG, Pc dll)','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16831,'my','minimum_qty','Kuantiti minimum','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16832,'my','tags','Teg','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16833,'my','type_and_hit_enter_to_add_a_tag','Taip dan tekan enter untuk menambah teg','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16834,'my','barcode','Kod bar','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16835,'my','refundable','Dikembalikan','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16836,'my','product_images','Imej Produk','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16837,'my','gallery_images','Gambar Galeri','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16838,'my','todays_deal_updated_successfully','Tawaran Hari Ini berjaya dikemas kini','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16839,'my','published_products_updated_successfully','Produk yang diterbitkan berjaya dikemas kini','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16840,'my','thumbnail_image','Gambar Lakaran Kecil','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16841,'my','featured_products_updated_successfully','Produk unggulan berjaya dikemas kini','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16842,'my','product_videos','Video Produk','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16843,'my','video_provider','Penyedia Video','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16844,'my','youtube','Youtube','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16845,'my','dailymotion','Dailymotion','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16846,'my','vimeo','Vimeo','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16847,'my','video_link','Pautan Video','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16848,'my','product_variation','Variasi Produk','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16849,'my','colors','Warna','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16850,'my','attributes','Atribut','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16851,'my','choose_attributes','Pilih Atribut','2021-02-09 08:09:48','2021-09-20 07:29: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 08:09:48','2021-09-20 07:29:58'),(16853,'my','product_price__stock','Harga produk + stok','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16854,'my','unit_price','Harga seunit','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16855,'my','purchase_price','Harga pembelian','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16856,'my','flat','Rata','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16857,'my','percent','Peratus','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16858,'my','discount','Diskaun','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16859,'my','product_description','Penerangan Produk','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16860,'my','product_shipping_cost','Kos Penghantaran Produk','2021-02-09 08:09:48','2021-09-20 07:29:58'),(16861,'my','free_shipping','Penghantaran percuma','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16862,'my','flat_rate','Kadar rata','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16863,'my','shipping_cost','Kos penghantaran','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16864,'my','pdf_specification','Spesifikasi PDF','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16865,'my','seo_meta_tags','Teg Meta SEO','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16866,'my','meta_title','Tajuk Meta','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16867,'my','meta_image','Imej Meta','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16868,'my','choice_title','Tajuk Pilihan','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16869,'my','enter_choice_values','Masukkan nilai pilihan','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16870,'my','all_categories','Semua Kategori','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16871,'my','add_new_category','Tambah kategori Baru','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16872,'my','type_name__enter','Taipkan nama & Masukkan','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16873,'my','banner','Sepanduk','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16874,'my','commission','Suruhanjaya','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16875,'my','icon','ikon','2021-02-09 08:09:49','2021-02-09 08:09:49'),(16876,'my','featured_categories_updated_successfully','Kategori pilihan berjaya dikemas kini','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16877,'my','hot','Panas','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16878,'my','filter_by_payment_status','Tapis mengikut Status Pembayaran','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16879,'my','unpaid','Tanpa Bayaran','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16880,'my','filter_by_deliver_status','Tapis mengikut Status Penghantaran','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16881,'my','pending','Yang belum selesai','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16882,'my','type_order_code__hit_enter','Taipkan kod pesanan & tekan Enter','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16883,'my','num_of_products','Bil. Produk','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16884,'my','walk_in_customer','Berjalan di Pelanggan','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16885,'my','qty','QTY','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16886,'my','without_shipping_charge','Tanpa Caj Penghantaran','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16887,'my','with_shipping_charge','Dengan Caj Penghantaran','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16888,'my','pay_with_cash','Bayar Dengan Wang Tunai','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16889,'my','shipping_address','Alamat Penghantaran','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16890,'my','close','Tutup','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16891,'my','select_country','Pilih negara','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16892,'my','order_confirmation','Pengesahan pesanan','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16893,'my','are_you_sure_to_confirm_this_order','Adakah anda pasti mengesahkan pesanan ini?','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16894,'my','comfirm_order','Perintah Mematuhi','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16895,'my','personal_info','Maklumat peribadi','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16896,'my','repeat_password','Ulang kata laluan','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16897,'my','shop_name','Nama Kedai','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16898,'my','register_your_shop','Daftarkan Kedai Anda','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16899,'my','affiliate_informations','Maklumat Gabungan','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16900,'my','affiliate','Ahli gabungan','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16901,'my','user_info','Maklumat Pengguna','2021-02-09 08:09:49','2021-09-20 07:29:58'),(16902,'my','installed_addon','Addon dipasang','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16903,'my','available_addon','Addon yang ada','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16904,'my','install_new_addon','Pasang Addon Baru','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16905,'my','version','Versi','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16906,'my','activated','Diaktifkan','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16907,'my','deactivated','Nyahaktifkan','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16908,'my','activate_otp','Aktifkan OTP','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16909,'my','otp_will_be_used_for','OTP akan digunakan untuk','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16910,'my','settings_updated_successfully','Tetapan berjaya dikemas kini','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16911,'my','product_owner','Pemilik Produk','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16912,'my','point','Titik','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16913,'my','set_point_for_product_within_a_range','Tetapkan Titik untuk Produk Dalam Julat','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16914,'my','set_point_for_multiple_products','Tetapkan Titik untuk pelbagai produk','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16915,'my','min_price','Harga Min','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16916,'my','max_price','Harga Maksimum','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16917,'my','set_point_for_all_products','Tetapkan Titik untuk semua Produk','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16918,'my','set_point_for_','Tetapkan Titik Untuk','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16919,'my','convert_status','Tukar Status','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16920,'my','earned_at','Diperolehi Pada','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16921,'my','seller_based_selling_report','Laporan Jual Berdasarkan Penjual','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16922,'my','sort_by_verificarion_status','Isih mengikut status verifikasi','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16923,'my','approved','Diluluskan','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16924,'my','non_approved','Tidak Diluluskan','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16925,'my','filter','Tapis','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16926,'my','seller_name','Nama Penjual','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16927,'my','number_of_product_sale','Bilangan Jualan Produk','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16928,'my','order_amount','Jumlah Pesanan','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16929,'my','facebook_chat_setting','Tetapan Sembang Facebook','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16930,'my','facebook_page_id','ID Halaman Facebook','2021-02-09 08:09:50','2021-09-20 07:29: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 08:09:50','2021-09-20 07:29:58'),(16932,'my','login_into_your_facebook_page','Log masuk ke laman facebook anda','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16933,'my','find_the_about_option_of_your_facebook_page','Cari pilihan Tentang halaman facebook anda','2021-02-09 08:09:50','2021-09-20 07:29: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 08:09:50','2021-09-20 07:29: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 08:09:50','2021-09-20 07:29: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 08:09:50','2021-09-20 07:29:58'),(16937,'my','set_your_website_domain_name','Tetapkan nama domain laman web anda','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16938,'my','google_recaptcha_setting','Tetapan Google reCAPTCHA','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16939,'my','site_key','KUNCI laman web','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16940,'my','select_shipping_method','Pilih Kaedah Penghantaran','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16941,'my','product_wise_shipping_cost','Kos Penghantaran Produk','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16942,'my','flat_rate_shipping_cost','Kos Penghantaran Kadar Rata','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16943,'my','seller_wise_flat_shipping_cost','Kos Penghantaran Rata-rata Penjual','2021-02-09 08:09:50','2021-09-20 07:29:58'),(16944,'my','note','Catatan','2021-02-09 08:09:51','2021-09-20 07:29: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 08:09:51','2021-09-20 07:29: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 08:09:51','2021-09-20 07:29: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 08:09:51','2021-09-20 07:29:58'),(16948,'my','flat_rate_cost','Kos Kadar Rata','2021-02-09 08:09:51','2021-09-20 07:29:58'),(16949,'my','shipping_cost_for_admin_products','Kos Penghantaran untuk Produk Pentadbir','2021-02-09 08:09:51','2021-09-20 07:29:58'),(16950,'my','countries','Negara','2021-02-09 08:09:51','2021-09-20 07:29:58'),(16951,'my','showhide','Tunjukkan / Sembunyikan','2021-02-09 08:09:51','2021-09-20 07:29:58'),(16952,'my','country_status_updated_successfully','Status negara berjaya dikemas kini','2021-02-09 08:09:51','2021-09-20 07:29:58'),(16953,'my','all_subcategories','Semua Subkategori','2021-02-09 08:09:51','2021-09-20 07:29:58'),(16954,'my','add_new_subcategory','Tambah Subkategori Baru','2021-02-09 08:09:51','2021-09-20 07:29:58'),(16955,'my','subcategories','Sub-Kategori','2021-02-09 08:09:51','2021-09-20 07:29:58'),(16956,'my','sub_category_information','Maklumat Sub Kategori','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16957,'my','slug','Slug','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16958,'my','all_sub_subcategories','Semua Subkategori','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16959,'my','add_new_sub_subcategory','Tambah Subkategori Baru','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16960,'my','subsubcategories','Sub-sub-kategori','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16961,'my','make_this_default','Jadikan Lalai Ini','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16962,'my','shops','Kedai','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16963,'my','women_clothing__fashion','Pakaian & Fesyen Wanita','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16964,'my','cellphones__tabs','Telefon bimbit & Tab','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16965,'my','welcome_to','Selamat datang ke','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16966,'my','create_a_new_account','Buat Akaun Baru','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16967,'my','full_name','Nama penuh','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16968,'my','password','kata laluan','2021-02-09 08:10:38','2021-02-09 08:10:38'),(16969,'my','confrim_password','Konfirmasi Kata Laluan','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16970,'my','i_agree_with_the','Saya bersetuju dengan','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16971,'my','terms_and_conditions','Terma dan syarat','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16972,'my','register','Daftar','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16973,'my','already_have_an_account','Sudah mempunyai akaun','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16974,'my','sign_up_with','Daftar dengan','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16975,'my','i_agree_with_the_terms_and_conditions','Saya bersetuju dengan Terma dan Syarat','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16976,'my','all_role','Semua Peranan','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16977,'my','add_new_role','Tambah Peranan Baru','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16978,'my','roles','Peranan','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16979,'my','add_new_staffs','Tambah Kakitangan Baru','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16980,'my','role','Peranan','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16981,'my','frontend_website_name','Nama Laman Web Frontend','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16982,'my','website_name','Nama Laman Web','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16983,'my','site_motto','Moto Laman Web','2021-02-09 08:10:38','2021-09-20 07:29:58'),(16984,'my','best_ecommerce_website','Laman Web eCommerce Terbaik','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16985,'my','site_icon','Ikon Tapak','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16986,'my','website_favicon_32x32_png','Favicon laman web. 32x32 .png','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16987,'my','website_base_color','Warna Pangkalan Laman Web','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16988,'my','hex_color_code','Kod Warna Hex','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16989,'my','website_base_hover_color','Warna Hover Pangkalan Laman Web','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16990,'my','update','Kemas kini','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16991,'my','global_seo','Seo Global','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16992,'my','meta_description','Penerangan meta','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16993,'my','keywords','Kata kunci','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16994,'my','separate_with_coma','Pisahkan dengan koma','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16995,'my','website_pages','Halaman Laman Web','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16996,'my','all_pages','Semua Halaman','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16997,'my','add_new_page','Tambah Halaman Baru','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16998,'my','url','URL','2021-02-09 08:10:39','2021-09-20 07:29:58'),(16999,'my','actions','Tindakan','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17000,'my','edit_page_information','Edit Maklumat Halaman','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17001,'my','page_content','Kandungan Halaman','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17002,'my','title','Tajuk','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17003,'my','link','Pautan','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17004,'my','use_character_number_hypen_only','Gunakan watak, nombor, tanda hubung sahaja','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17005,'my','add_content','Tambah Kandungan','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17006,'my','seo_fields','Seo Fields','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17007,'my','update_page','Kemas kini Halaman','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17008,'my','default_language','Bahasa Lalai','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17009,'my','add_new_language','Tambah Bahasa Baru','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17010,'my','rtl','RTL','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17011,'my','translation','Terjemahan','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17012,'my','language_information','Maklumat Bahasa','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17013,'my','save_page','Simpan Halaman','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17014,'my','home_page_settings','Tetapan Halaman Utama','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17015,'my','home_slider','Gelangsar Rumah','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17016,'my','photos__links','Foto & Pautan','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17017,'my','add_new','Tambah baru','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17018,'my','home_categories','Kategori Rumah','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17019,'my','home_banner_1_max_3','Sepanduk Rumah 1 (Maksimum 3)','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17020,'my','banner__links','Sepanduk & Pautan','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17021,'my','home_banner_2_max_3','Sepanduk Rumah 2 (Maksimum 3)','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17022,'my','top_10','10 teratas','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17023,'my','top_categories_max_10','Kategori Teratas (Maksimum 10)','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17024,'my','top_brands_max_10','Jenama Teratas (Maksimum 10)','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17025,'my','system_name','Nama Sistem','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17026,'my','system_logo__white','Logo Sistem - Putih','2021-02-09 08:10:39','2021-09-20 07:29:58'),(17027,'my','choose_files','Pilih Fail','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17028,'my','will_be_used_in_admin_panel_side_menu','Akan digunakan dalam menu sisi panel pentadbir','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17029,'my','system_logo__black','Logo Sistem - Hitam','2021-02-09 08:10:40','2021-09-20 07:29: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 08:10:40','2021-09-20 07:29:58'),(17031,'my','system_timezone','Zon Waktu Sistem','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17032,'my','admin_login_page_background','Latar belakang halaman log masuk pentadbir','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17033,'my','website_header','Pengepala Laman Web','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17034,'my','header_setting','Penetapan Header','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17035,'my','header_logo','Logo Pengepala','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17036,'my','show_language_switcher','Tunjukkan Pengalih Bahasa?','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17037,'my','show_currency_switcher','Tunjukkan Penukar Mata Wang?','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17038,'my','enable_stikcy_header','Dayakan pengepala tegas?','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17039,'my','website_footer','Footer Laman Web','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17040,'my','footer_widget','Widget Kaki','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17041,'my','about_widget','Mengenai Widget','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17042,'my','footer_logo','Logo Footer','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17043,'my','about_description','Mengenai keterangan','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17044,'my','contact_info_widget','Widget Maklumat Perhubungan','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17045,'my','footer_contact_address','Alamat hubungan footer','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17046,'my','footer_contact_phone','Telefon kenalan footer','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17047,'my','footer_contact_email','E-mel hubungan footer','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17048,'my','link_widget_one','Pautan Widget Satu','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17049,'my','links','Pautan','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17050,'my','footer_bottom','Bahagian Bawah Kaki','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17051,'my','copyright_widget_','Widget Hak Cipta','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17052,'my','copyright_text','Teks Hak Cipta','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17053,'my','social_link_widget_','Widget Pautan Sosial','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17054,'my','show_social_links','Tunjukkan Pautan Sosial?','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17055,'my','social_links','Pautan Sosial','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17056,'my','payment_methods_widget_','Widget Kaedah Pembayaran','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17057,'my','rtl_status_updated_successfully','Status RTL berjaya dikemas kini','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17058,'my','language_changed_to_','Bahasa ditukar menjadi','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17059,'my','inhouse_product_sale_report','Laporan penjualan Produk Inhouse','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17060,'my','sort_by_category','Susun mengikut Kategori','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17061,'my','product_wise_stock_report','Laporan stok produk','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17062,'my','currency_changed_to_','Mata wang ditukar menjadi','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17063,'my','avatar','Avatar','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17064,'my','copy','Salinan','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17065,'my','variant','Pelbagai','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17066,'my','variant_price','Harga Bervariasi','2021-02-09 08:10:40','2021-09-20 07:29:58'),(17067,'my','sku','SKU','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17068,'my','key','Kunci','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17069,'my','value','Nilai','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17070,'my','copy_translations','Salin Terjemahan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17071,'my','all_pickup_points','Semua Mata Pengambilan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17072,'my','add_new_pickup_point','Tambah Titik Pengambilan Baru','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17073,'my','manager','Pengurus','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17074,'my','location','Lokasi','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17075,'my','pickup_station_contact','Hubungi Stesen Pickup','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17076,'my','open','Buka','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17077,'my','pos_activation_for_seller','Pengaktifan POS untuk Penjual','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17078,'my','order_completed_successfully','Pesanan Selesai Berjaya.','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17079,'my','text_input','Input Teks','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17080,'my','select','Pilih','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17081,'my','multiple_select','Pelbagai Pilihan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17082,'my','radio','Radio','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17083,'my','file','Fail','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17084,'my','email_address','Alamat emel','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17085,'my','verification_info','Maklumat Pengesahan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17086,'my','approval','Kelulusan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17087,'my','due_amount','Jumlah Hutang','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17088,'my','show','Tunjuk','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17089,'my','pay_now','Bayar sekarang','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17090,'my','affiliate_user_verification','Pengesahan Pengguna Gabungan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17091,'my','reject','Tolak','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17092,'my','accept','Terima','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17093,'my','beauty_health__hair','Kecantikan, Kesihatan & Rambut','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17094,'my','comparison','Perbandingan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17095,'my','reset_compare_list','Tetapkan semula Senarai Bandingkan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17096,'my','your_comparison_list_is_empty','Senarai perbandingan anda kosong','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17097,'my','convert_point_to_wallet','Tukar Titik Ke Dompet','2021-02-09 08:10:41','2021-09-20 07:29: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 08:10:41','2021-09-20 07:29:58'),(17099,'my','create_an_account','Buat akaun.','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17100,'my','use_email_instead','Gunakan E-mel Sebaliknya','2021-02-09 08:10:41','2021-09-20 07:29: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 08:10:41','2021-09-20 07:29:58'),(17102,'my','create_account','Buat akaun','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17103,'my','or_join_with','Atau Sertai Dengan','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17104,'my','already_have_an_account','Sudah mempunyai akaun?','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17105,'my','log_in','Log masuk','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17106,'my','computer__accessories','Aksesori komputer','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17107,'my','products','Produk','2021-02-09 08:10:41','2021-09-20 07:29:58'),(17108,'my','in_your_cart','di dalam troli anda','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17109,'my','in_your_wishlist','dalam senarai keinginan anda','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17110,'my','you_ordered','awak pesan','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17111,'my','default_shipping_address','Alamat Penghantaran Lalai','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17112,'my','sports__outdoor','Sukan & luaran','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17113,'my','copied','Disalin','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17114,'my','copy_the_promote_link','Salin Pautan Promosi','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17115,'my','write_a_review','Menulis ulasan','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17116,'my','your_name','Nama awak','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17117,'my','comment','Komen','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17118,'my','your_review','Ulasan anda','2021-02-09 08:10:42','2021-09-20 07:29:58'),(17119,'my','submit_review','Hantar semakan','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17120,'my','claire_willis','Claire Willis','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17121,'my','germaine_greene','Germaine Greene','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17122,'my','product_file','Fail Produk','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17123,'my','choose_file','Pilih fail','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17124,'my','type_to_add_a_tag','Taip untuk menambah teg','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17125,'my','images','Gambar','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17126,'my','main_images','Imej Utama','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17127,'my','meta_tags','Teg Meta','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17128,'my','digital_product_has_been_inserted_successfully','Produk Digital berjaya dimasukkan','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17129,'my','edit_digital_product','Edit Produk Digital','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17130,'my','select_an_option','Buat pilihan','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17131,'my','tax','cukai','2021-02-09 08:10:42','2021-02-09 08:10:42'),(17132,'my','any_question_about_this_product','Ada sebarang pertanyaan mengenai produk ini?','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17133,'my','sign_in','Log masuk','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17134,'my','login_with_google','Log masuk dengan Google','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17135,'my','login_with_facebook','Log masuk melalui Facebook','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17136,'my','login_with_twitter','Log masuk dengan Twitter','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17137,'my','click_to_show_phone_number','Klik untuk menunjukkan nombor telefon','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17138,'my','other_ads_of','Iklan lain dari','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17139,'my','store_home','Stor Rumah','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17140,'my','top_selling','Terlaris','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17141,'my','shop_settings','Tetapan Kedai','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17142,'my','visit_shop','Lawati Kedai','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17143,'my','pickup_points','Mata Pengambilan','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17144,'my','select_pickup_point','Pilih Pickup Point','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17145,'my','slider_settings','Tetapan Gelangsar','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17146,'my','social_media_link','Pautan Media Sosial','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17147,'my','facebook','Facebook','2021-02-09 08:10:42','2021-09-20 07:29:59'),(17148,'my','twitter','Twitter','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17149,'my','google','Google','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17150,'my','new_arrival_products','Produk Ketibaan Baru','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17151,'my','check_your_order_status','Periksa Status Pesanan Anda','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17152,'my','shipping_method','Cara penghantaran','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17153,'my','shipped_by','Dihantar oleh','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17154,'my','image','Imej','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17155,'my','sub_sub_category','Sub Sub Kategori','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17156,'my','inhouse_products','Produk Dalaman','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17157,'my','forgot_password','Lupa kata laluan?','2021-02-09 08:10:43','2021-09-20 07:29: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 08:10:43','2021-09-20 07:29:59'),(17159,'my','email_or_phone','Emel atau telefon','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17160,'my','send_password_reset_link','Hantar Pautan Tetapkan Semula Kata Laluan','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17161,'my','back_to_login','Kembali ke Log Masuk','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17162,'my','index','indeks','2021-02-09 08:10:43','2021-02-09 08:10:43'),(17163,'my','download_your_product','Muat turun Produk Anda','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17164,'my','option','Pilihan','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17165,'my','applied_refund_request','Permintaan Bayaran Balik Terpakai','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17166,'my','item_has_been_renoved_from_wishlist','Item telah ditukar dari senarai keinginan','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17167,'my','bulk_products_upload','Muat Naik Produk Pukal','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17168,'my','upload_csv','Muat naik CSV','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17169,'my','create_a_ticket','Buat Tiket','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17170,'my','tickets','Tiket','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17171,'my','ticket_id','ID tiket','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17172,'my','sending_date','Tarikh Penghantaran','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17173,'my','subject','Subjek','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17174,'my','view_details','Lihat butiran','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17175,'my','provide_a_detailed_description','Berikan penerangan terperinci','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17176,'my','type_your_reply','Taipkan jawapan anda','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17177,'my','send_ticket','Hantar Tiket','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17178,'my','load_more','Tambah lagi','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17179,'my','jewelry__watches','Perhiasan & Jam Tangan','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17180,'my','filters','Penapis','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17181,'my','contact_address','Alamat','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17182,'my','contact_phone','Telefon kenalan','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17183,'my','contact_email','E-mel hubungan','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17184,'my','filter_by','Tapis mengikut','2021-02-09 08:10:43','2021-09-20 07:29:59'),(17185,'my','condition','Keadaan','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17186,'my','all_type','Semua Jenis','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17187,'my','pay_with_wallet','Bayar dengan dompet','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17188,'my','select_variation','Pilih variasi','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17189,'my','no_product_added','Tiada Produk Ditambah','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17190,'my','status_has_been_updated_successfully','Status telah berjaya dikemas kini','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17191,'my','all_seller_packages','Semua Pakej Penjual','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17192,'my','add_new_package','Tambah Pakej Baru','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17193,'my','package_logo','Logo Pakej','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17194,'my','days','hari-hari','2021-02-09 08:10:44','2021-02-09 08:10:44'),(17195,'my','create_new_seller_package','Buat Pakej Penjual Baru','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17196,'my','package_name','Nama Pakej','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17197,'my','duration','Jangka masa','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17198,'my','validity_in_number_of_days','Kesahan dalam bilangan hari','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17199,'my','update_package_information','Kemas kini Maklumat Pakej','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17200,'my','package_has_been_inserted_successfully','Pakej telah berjaya dimasukkan','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17201,'my','refund_request','Permintaan Bayaran Balik','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17202,'my','reason','Sebab','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17203,'my','label','Label','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17204,'my','select_label','Pilih Label','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17205,'my','multiple_select_label','Pelbagai Pilih Label','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17206,'my','radio_label','Label Radio','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17207,'my','pickup_point_orders','Pesanan Pickup Point','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17208,'my','view','Pandangan','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17209,'my','order_','Pesanan #','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17210,'my','order_status','Status pesanan','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17211,'my','total_amount','Jumlah keseluruhan','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17212,'my','total','JUMLAH','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17213,'my','delivery_status_has_been_updated','Status penghantaran telah dikemas kini','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17214,'my','payment_status_has_been_updated','Status pembayaran telah dikemas kini','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17215,'my','invoice','INVOIS','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17216,'my','set_refund_time','Tetapkan Masa Bayaran Balik','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17217,'my','set_time_for_sending_refund_request','Tetapkan Masa untuk menghantar Permintaan Bayaran Balik','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17218,'my','set_refund_sticker','Tetapkan Pelekat Bayaran Balik','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17219,'my','sticker','Pelekat','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17220,'my','refund_request_all','Permintaan Bayaran Balik Semua','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17221,'my','order_id','Id Pesanan','2021-02-09 08:10:44','2021-09-20 07:29:59'),(17222,'my','seller_approval','Kelulusan Penjual','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17223,'my','admin_approval','Kelulusan Pentadbir','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17224,'my','refund_status','Status Bayaran Balik','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17225,'my','no_refund','Tanpa Bayaran Balik','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17226,'my','status_updated_successfully','Status berjaya dikemas kini','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17227,'my','user_search_report','Laporan Carian Pengguna','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17228,'my','search_by','Dicari oleh','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17229,'my','number_searches','Pencarian nombor','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17230,'my','sender','Penghantar','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17231,'my','receiver','Penerima','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17232,'my','verification_form_updated_successfully','Borang pengesahan berjaya dikemas kini','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17233,'my','invalid_email_or_password','emel dan kata laluan tidak sah','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17234,'my','all_coupons','Semua Kupon','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17235,'my','add_new_coupon','Tambah Kupon Baru','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17236,'my','coupon_information','Maklumat Kupon','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17237,'my','start_date','Tarikh mula','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17238,'my','end_date','Tarikh tamat','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17239,'my','product_base','Pangkalan Produk','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17240,'my','send_newsletter','Hantar Buletin','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17241,'my','mobile_users','Pengguna Mudah Alih','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17242,'my','sms_subject','Subjek SMS','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17243,'my','sms_content','Kandungan SMS','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17244,'my','all_flash_delas','Semua Flash Delas','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17245,'my','create_new_flash_dela','Buat Dela Flash Baru','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17246,'my','page_link','Pautan Halaman','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17247,'my','flash_deal_information','Maklumat Perjanjian Kilat','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17248,'my','background_color','Warna latar belakang','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17249,'my','0000ff','# 0000ff','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17250,'my','text_color','Warna Teks','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17251,'my','white','Putih','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17252,'my','dark','Gelap','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17253,'my','choose_products','Pilih Produk','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17254,'my','discounts','Potongan harga','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17255,'my','discount_type','Jenis Diskaun','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17256,'my','twillo_credential','Kepujian Twillo','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17257,'my','twilio_sid','TWILIO SID','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17258,'my','twilio_auth_token','TOKEN AUTH TWILIO','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17259,'my','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17260,'my','valid_twillo_number','NOMBOR DUA BIL','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17261,'my','nexmo_credential','Kelayakan Nexmo','2021-02-09 08:10:45','2021-09-20 07:29:59'),(17262,'my','nexmo_key','KUNCI NEXMO','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17263,'my','nexmo_secret','RAHSIA NEXMO','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17264,'my','ssl_wireless_credential','Kelayakan Tanpa Wayar SSL','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17265,'my','ssl_sms_api_token','TOKEN API SMS SSL','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17266,'my','ssl_sms_sid','SSL SMS SSL','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17267,'my','ssl_sms_url','URL SMS SSL','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17268,'my','fast2sms_credential','Kelayakan Fast2SMS','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17269,'my','auth_key','KUNCI AUTH','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17270,'my','route','JALAN','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17271,'my','promotional_use','Penggunaan Promosi','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17272,'my','transactional_use','Penggunaan Transaksional','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17273,'my','sender_id','ID PENGHANTAR','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17274,'my','nexmo_otp','Nexmo OTP','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17275,'my','twillo_otp','Twillo OTP','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17276,'my','ssl_wireless_otp','OTP Tanpa Wayar SSL','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17277,'my','fast2sms_otp','OTP Cepat2SMS','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17278,'my','order_placement','Penempatan Pesanan','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17279,'my','delivery_status_changing_time','Status Perubahan Waktu Penghantaran','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17280,'my','paid_status_changing_time','Masa Berubah Status Berbayar','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17281,'my','send_bulk_sms','Hantar SMS Pukal','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17282,'my','all_subscribers','Semua Pelanggan','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17283,'my','coupon_information_adding','Menambah Maklumat Kupon','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17284,'my','coupon_type','Jenis Kupon','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17285,'my','for_products','Untuk Produk','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17286,'my','for_total_orders','Untuk Jumlah Pesanan','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17287,'my','add_your_product_base_coupon','Tambahkan Kupon Pangkalan Produk Anda','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17288,'my','coupon_code','Kod Kupon','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17289,'my','sub_category','Sub Kategori','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17290,'my','add_more','Tambah Lagi','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17291,'my','add_your_cart_base_coupon','Tambahkan Kupon Pangkalan Troli Anda','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17292,'my','minimum_shopping','Belanja Minimum','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17293,'my','maximum_discount_amount','Amaun Diskaun Maksimum','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17294,'my','coupon_information_update','Kemas kini Maklumat Kupon','2021-02-09 08:10:46','2021-09-20 07:29: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 08:10:46','2021-09-20 07:29:59'),(17296,'my','configure_now','Konfigurasikan Sekarang','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17297,'my','total_published_products','Jumlah produk yang diterbitkan','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17298,'my','total_sellers_products','Jumlah produk penjual','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17299,'my','total_admin_products','Jumlah produk pentadbir','2021-02-09 08:10:46','2021-09-20 07:29:59'),(17300,'my','manage_products','Urus Produk','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17301,'my','total_product_category','Jumlah kategori produk','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17302,'my','create_category','Buat Kategori','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17303,'my','total_product_sub_sub_category','Jumlah subkategori produk','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17304,'my','create_sub_sub_category','Buat Sub Sub Kategori','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17305,'my','total_product_sub_category','Jumlah subkategori produk','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17306,'my','create_sub_category','Buat Sub Kategori','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17307,'my','total_product_brand','Jumlah jenama produk','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17308,'my','create_brand','Buat Jenama','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17309,'my','total_sellers','Jumlah penjual','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17310,'my','total_approved_sellers','Jumlah penjual yang diluluskan','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17311,'my','total_pending_sellers','Jumlah penjual belum selesai','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17312,'my','manage_sellers','Urus Penjual','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17313,'my','category_wise_product_sale','Penjualan produk berdasarkan kategori','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17314,'my','sale','Jualan','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17315,'my','category_wise_product_stock','Stok produk bijak kategori','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17316,'my','category_name','Nama kategori','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17317,'my','stock','Stok','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17318,'my','frontend','Bahagian depan','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17319,'my','home_page','Laman utama','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17320,'my','setting','tetapan','2021-02-09 08:10:47','2021-02-09 08:10:47'),(17321,'my','policy_page','Halaman dasar','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17322,'my','general','Am','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17323,'my','click_here','Tekan di sini','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17324,'my','useful_link','Pautan berguna','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17325,'my','activation','Pengaktifan','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17326,'my','smtp','SMTP','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17327,'my','payment_method','Kaedah pembayaran','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17328,'my','social_media','Media sosial','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17329,'my','business','Perniagaan','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17330,'my','seller_verification','Pengesahan penjual','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17331,'my','form_setting','penetapan borang','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17332,'my','language','Bahasa','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17333,'my','dashboard','Papan Pemuka','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17334,'my','pos_system','Sistem POS','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17335,'my','pos_manager','Pengurus POS','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17336,'my','pos_configuration','Konfigurasi POS','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17337,'my','products','Produk','2021-02-09 08:10:47','2021-09-20 07:29:59'),(17338,'my','add_new_product','Tambah produk Baru','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17339,'my','all_products','Semua produk','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17340,'my','in_house_products','Produk Rumah','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17341,'my','seller_products','Produk Penjual','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17342,'my','digital_products','Produk Digital','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17343,'my','bulk_import','Import Pukal','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17344,'my','bulk_export','Eksport Pukal','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17345,'my','category','Kategori','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17346,'my','subcategory','Subkategori','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17347,'my','sub_subcategory','Subkategori','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17348,'my','brand','Jenama','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17349,'my','attribute','Atribut','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17350,'my','product_reviews','Ulasan Produk','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17351,'my','sales','Jualan','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17352,'my','all_orders','Semua Pesanan','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17353,'my','inhouse_orders','Pesanan dalam rumah','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17354,'my','seller_orders','Pesanan Penjual','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17355,'my','pickup_point_order','Pesanan Titik Pick-up','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17356,'my','refunds','Bayaran Balik','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17357,'my','refund_requests','Permintaan Bayaran Balik','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17358,'my','approved_refund','Bayaran Balik yang Diluluskan','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17359,'my','refund_configuration','Konfigurasi Bayaran Balik','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17360,'my','customers','Pelanggan','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17361,'my','customer_list','Senarai pelanggan','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17362,'my','classified_products','Produk Terkelaskan','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17363,'my','classified_packages','Pakej Terkelaskan','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17364,'my','sellers','Penjual','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17365,'my','all_seller','Semua Penjual','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17366,'my','payouts','Bayaran','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17367,'my','payout_requests','Permintaan Pembayaran','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17368,'my','seller_commission','Suruhanjaya Penjual','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17369,'my','seller_packages','Pakej Penjual','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17370,'my','seller_verification_form','Borang Pengesahan Penjual','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17371,'my','reports','Laporan','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17372,'my','in_house_product_sale','Jualan Produk Dalam Rumah','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17373,'my','seller_products_sale','Penjualan Produk Penjual','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17374,'my','products_stock','Stok Produk','2021-02-09 08:10:48','2021-09-20 07:29:59'),(17375,'my','products_wishlist','Senarai harapan produk','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17376,'my','user_searches','Carian Pengguna','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17377,'my','marketing','Pemasaran','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17378,'my','flash_deals','Tawaran kilat','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17379,'my','newsletters','Surat berita','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17380,'my','bulk_sms','SMS pukal','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17381,'my','subscribers','Pelanggan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17382,'my','coupon','Kupon','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17383,'my','support','Sokongan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17384,'my','ticket','Tiket','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17385,'my','product_queries','Pertanyaan Produk','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17386,'my','website_setup','Persediaan Laman Web','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17387,'my','header','Kepala','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17388,'my','footer','Kaki','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17389,'my','pages','Halaman','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17390,'my','appearance','Penampilan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17391,'my','setup__configurations','Persediaan & Konfigurasi','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17392,'my','general_settings','Tetapan umum','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17393,'my','features_activation','Ciri pengaktifan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17394,'my','languages','Bahasa','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17395,'my','currency','Mata Wang','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17396,'my','pickup_point','Titik pengambilan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17397,'my','smtp_settings','Tetapan SMTP','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17398,'my','payment_methods','cara bayaran','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17399,'my','file_system_configuration','Konfigurasi Sistem Fail','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17400,'my','social_media_logins','Log masuk media sosial','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17401,'my','analytics_tools','Alat Analisis','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17402,'my','facebook_chat','Sembang Facebook','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17403,'my','google_recaptcha','Google reCAPTCHA','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17404,'my','shipping_configuration','Konfigurasi Penghantaran','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17405,'my','shipping_countries','Negara Penghantaran','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17406,'my','affiliate_system','Sistem Gabungan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17407,'my','affiliate_registration_form','Borang Pendaftaran Gabungan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17408,'my','affiliate_configurations','Konfigurasi Gabungan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17409,'my','affiliate_users','Pengguna Gabungan','2021-02-09 08:10:49','2021-09-20 07:29:59'),(17410,'my','referral_users','Pengguna Rujukan','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17411,'my','affiliate_withdraw_requests','Permintaan Pengeluaran Gabungan','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17412,'my','offline_payment_system','Sistem Pembayaran Luar Talian','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17413,'my','manual_payment_methods','Kaedah Pembayaran Manual','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17414,'my','offline_wallet_recharge','Isi Ulang Dompet Luar Talian','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17415,'my','offline_customer_package_payments','Pembayaran Pakej Pelanggan Luar Talian','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17416,'my','offline_seller_package_payments','Pembayaran Pakej Penjual Luar Talian','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17417,'my','paytm_payment_gateway','Gerbang Pembayaran Paytm','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17418,'my','set_paytm_credentials','Tetapkan Kelayakan Paytm','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17419,'my','club_point_system','Sistem Titik Kelab','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17420,'my','club_point_configurations','Konfigurasi Titik Kelab','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17421,'my','set_product_point','Tetapkan Titik Produk','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17422,'my','user_points','Mata Pengguna','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17423,'my','otp_system','Sistem OTP','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17424,'my','otp_configurations','Konfigurasi OTP','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17425,'my','set_otp_credentials','Tetapkan Kelayakan OTP','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17426,'my','staffs','Kakitangan','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17427,'my','all_staffs','Semua kakitangan','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17428,'my','staff_permissions','Kebenaran kakitangan','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17429,'my','addon_manager','Pengurus Addon','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17430,'my','browse_website','Layari Laman Web','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17431,'my','pos','POS','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17432,'my','notifications','Pemberitahuan','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17433,'my','new_orders','pesanan baru','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17434,'my','userimage','gambar pengguna','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17435,'my','profile','Profil','2021-02-09 08:10:50','2021-09-20 07:29:59'),(17436,'my','logout','Log keluar','2021-02-09 08:11:22','2021-09-20 07:29:59'),(17437,'my','page_not_found','Laman tidak dijumpai!','2021-02-09 08:11:22','2021-09-20 07:29: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 08:11:22','2021-09-20 07:29:59'),(17439,'my','registration','Pendaftaran','2021-02-09 08:11:22','2021-09-20 07:29:59'),(17440,'my','i_am_shopping_for','Saya membeli-belah untuk ...','2021-02-09 08:11:22','2021-09-20 07:29:59'),(17441,'my','compare','Bandingkan','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17442,'my','wishlist','Daftar Keinginan','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17443,'my','cart','Troli','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17444,'my','your_cart_is_empty','Troli anda kosong','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17445,'my','categories','Kategori','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17446,'my','see_all','Lihat semua','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17447,'my','seller_policy','Dasar Penjual','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17448,'my','return_policy','Syarat pengembalian','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17449,'my','support_policy','Dasar Sokongan','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17450,'my','privacy_policy','Dasar Privasi','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17451,'my','your_email_address','Alamat E-mel Anda','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17452,'my','subscribe','Langgan','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17453,'my','contact_info','Maklumat Perhubungan','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17454,'my','address','Alamat','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17455,'my','phone','Telefon','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17456,'my','email','E-mel','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17457,'my','login','Log masuk','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17458,'my','my_account','Akaun saya','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17459,'my','order_history','Sejarah Pesanan','2021-02-09 08:11:22','2021-09-20 07:30:00'),(17460,'my','my_wishlist','Permintaan Saya','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17461,'my','track_order','Susunan Jejak','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17462,'my','be_an_affiliate_partner','Jadilah rakan sekutu','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17463,'my','be_a_seller','Jadilah Penjual','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17464,'my','apply_now','Mohon sekarang','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17465,'my','confirmation','Pengesahan','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17466,'my','delete_confirmation_message','Padamkan mesej pengesahan','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17467,'my','cancel','Batal','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17468,'my','delete','Padam','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17469,'my','item_has_been_added_to_compare_list','Item telah ditambahkan untuk membandingkan senarai','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17470,'my','please_login_first','Sila log masuk dahulu','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17471,'my','total_earnings_from','Jumlah Pendapatan Dari','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17472,'my','client_subscription','Langganan Pelanggan','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17473,'my','product_category','Kategori Produk','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17474,'my','product_sub_sub_category','Subkategori produk','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17475,'my','product_sub_category','Subkategori produk','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17476,'my','product_brand','Jenama produk','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17477,'my','top_client_packages','Pakej Pelanggan Teratas','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17478,'my','top_freelancer_packages','Pakej Freelancer Teratas','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17479,'my','number_of_sale','Jumlah penjualan','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17480,'my','number_of_stock','Bilangan Stok','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17481,'my','top_10_products','10 Produk Teratas','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17482,'my','top_12_products','12 Produk Teratas','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17483,'my','admin_can_not_be_a_seller','Admin tidak boleh menjadi penjual','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17484,'my','filter_by_rating','Tapis mengikut Penarafan','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17485,'my','published_reviews_updated_successfully','Ulasan yang diterbitkan berjaya dikemas kini','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17486,'my','refund_sticker_has_been_updated_successfully','Refund Sticker berjaya dikemas kini','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17487,'my','edit_product','Edit Produk','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17488,'my','meta_images','Imej Meta','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17489,'my','update_product','Kemas kini Produk','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17490,'my','product_has_been_deleted_successfully','Produk berjaya dipadamkan','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17491,'my','your_profile_has_been_updated_successfully','Profil anda berjaya dikemas kini!','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17492,'my','upload_limit_has_been_reached_please_upgrade_your_package','Had muat naik telah dicapai. Sila tingkatkan pakej anda.','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17493,'my','add_your_product','Tambah Produk Anda','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17494,'my','select_a_category','Pilih kategori','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17495,'my','select_a_brand','Pilih jenama','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17496,'my','product_unit','Unit Produk','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17497,'my','minimum_qty','Kuantiti minimum.','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17498,'my','product_tag','Tag Produk','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17499,'my','type__hit_enter','Taip & tekan enter','2021-02-09 08:11:23','2021-09-20 07:30:00'),(17500,'my','videos','Video','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17501,'my','video_from','Video Dari','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17502,'my','video_url','URL video','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17503,'my','customer_choice','Pilihan Pelanggan','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17504,'my','pdf','PDF','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17505,'my','choose_pdf','Pilih PDF','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17506,'my','select_category','Pilih Kategori','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17507,'my','target_category','Kategori Sasaran','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17508,'my','subsubcategory','subkategori','2021-02-09 08:11:24','2021-02-09 08:11:24'),(17509,'my','search_category','Kategori Carian','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17510,'my','search_subcategory','Cari Subkategori','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17511,'my','search_subsubcategory','Cari SubSubKategori','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17512,'my','update_your_product','Kemas kini produk anda','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17513,'my','product_has_been_updated_successfully','Produk berjaya dikemas kini','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17514,'my','add_your_digital_product','Tambahkan Produk Digital Anda','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17515,'my','active_ecommerce_cms_update_process','Proses Kemas kini CMS eCommerce aktif','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17516,'my','codecanyon_purchase_code','Kod pembelian Codecanyon','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17517,'my','database_name','Nama Pangkalan Data','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17518,'my','database_username','Nama Pengguna Pangkalan Data','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17519,'my','database_password','Kata Laluan Pangkalan Data','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17520,'my','database_hostname','Nama Hos Pangkalan Data','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17521,'my','update_now','Mengemas kini sekarang','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17522,'my','congratulations','Selamat bertunang','2021-02-09 08:11:24','2021-09-20 07:30: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 08:11:24','2021-09-20 07:30:00'),(17524,'my','go_to_home','Pulang ke rumah','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17525,'my','login_to_admin_panel','Log masuk ke panel Pentadbir','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17526,'my','s3_file_system_credentials','Kelayakan Sistem Fail S3','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17527,'my','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17528,'my','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17529,'my','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17530,'my','aws_bucket','AWS_BUCKET','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17531,'my','aws_url','AWS_URL','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17532,'my','s3_file_system_activation','Pengaktifan Sistem Fail S3','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17533,'my','your_phone_number','Nombor telefon anda','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17534,'my','zip_file','Fail Zip','2021-02-09 08:11:24','2021-09-20 07:30:00'),(17535,'my','install','Pasang','2021-02-09 08:11:24','2021-09-20 07:30: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 08:11:24','2021-09-20 07:30:00'),(17537,'my','search_in_menu','Cari dalam menu','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17538,'my','uploaded_files','Fail yang dimuat naik','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17539,'my','shipping_cities','Bandar Penghantaran','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17540,'my','system','Sistem','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17541,'my','server_status','Status pelayan','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17542,'my','nothing_found','Tiada apa-apa Dijumpai','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17543,'my','parent_category','Kategori Ibu Bapa','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17544,'my','level','Tahap','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17545,'my','category_information','Maklumat Kategori','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17546,'my','translatable','Boleh dilayari','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17547,'my','no_parent','Tiada Ibu Bapa','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17548,'my','physical','Fizikal','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17549,'my','digital','Digital','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17550,'my','200x200','200x200','2021-02-09 08:11:25','2021-02-09 08:11:25'),(17551,'my','32x32','32x32','2021-02-09 08:11:25','2021-02-09 08:11:25'),(17552,'my','search_your_files','Cari fail anda','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17553,'my','category_has_been_updated_successfully','Kategori telah berjaya dikemas kini','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17554,'my','all_uploaded_files','Semua fail yang dimuat naik','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17555,'my','upload_new_file','Muat Naik Fail Baru','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17556,'my','all_files','Semua fail','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17557,'my','search','Cari','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17558,'my','details_info','Maklumat Perincian','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17559,'my','copy_link','Salin pautan','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17560,'my','are_you_sure_to_delete_this_file','Adakah anda pasti memadamkan fail ini?','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17561,'my','file_info','Maklumat Fail','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17562,'my','link_copied_to_clipboard','Pautan disalin ke papan keratan','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17563,'my','oops_unable_to_copy','Op, tidak dapat menyalin','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17564,'my','file_deleted_successfully','Fail berjaya dipadamkan','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17565,'my','add_new_brand','Tambah Jenama Baru','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17566,'my','120x80','120x80','2021-02-09 08:11:25','2021-02-09 08:11:25'),(17567,'my','brand_information','Maklumat Jenama','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17568,'my','brand_has_been_updated_successfully','Jenama telah berjaya dikemas kini','2021-02-09 08:11:25','2021-09-20 07:30:00'),(17569,'my','brand_has_been_deleted_successfully','Jenama berjaya dipadamkan','2021-02-09 08:11:25','2021-09-20 07:30: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 08:11:25','2021-09-20 07:30: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 08:11:25','2021-09-20 07:30: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 08:11:25','2021-09-20 07:30: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 08:11:26','2021-09-20 07:30:00'),(17574,'my','save_product','Save Product','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17575,'my','product_has_been_inserted_successfully','Product has been inserted successfully','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17576,'my','something_went_wrong','Something went wrong!','2021-02-09 08:11:26','2021-09-20 07:30: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 08:11:26','2021-09-20 07:30:00'),(17578,'my','error_code','Error code','2021-02-09 08:11:26','2021-09-20 07:30: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 08:11:26','2021-09-20 07:30:00'),(17580,'my','order','Order','2021-02-09 08:11:26','2021-09-20 07:30: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 08:11:26','2021-09-20 07:30:00'),(17582,'my','home_banner_3_max_3','Sepanduk Rumah 3 (Maksimum 3)','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17583,'my','add_new_seller','Tambah Penjual Baru','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17584,'my','filter_by_approval','Tapis mengikut Kelulusan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17585,'my','nonapproved','Tidak Diluluskan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17586,'my','type_name_or_email__enter','Taipkan nama atau e-mel & Masukkan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17587,'my','due_to_seller','Kerana penjual','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17588,'my','log_in_as_this_seller','Log masuk sebagai Penjual ini','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17589,'my','go_to_payment','Pergi ke Pembayaran','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17590,'my','ban_this_seller','Larang penjual ini','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17591,'my','do_you_really_want_to_ban_this_seller','Adakah anda benar-benar mahu melarang penjual ini?','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17592,'my','proceed','Teruskan!','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17593,'my','approved_sellers_updated_successfully','Penjual yang diluluskan berjaya dikemas kini','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17594,'my','seller_has_been_deleted_successfully','Penjual berjaya dipadamkan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17595,'my','seller_information','Maklumat Penjual','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17596,'my','seller_has_been_inserted_successfully','Penjual berjaya dimasukkan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17597,'my','email_already_exists','E-mel sudah ada!','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17598,'my','verify_your_email_address','Mengesahkan alamat e-mel anda','2021-02-09 08:11:26','2021-09-20 07:30: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 08:11:26','2021-09-20 07:30:00'),(17600,'my','if_you_did_not_receive_the_email','Sekiranya anda tidak menerima e-mel.','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17601,'my','click_here_to_request_another','Klik di sini untuk meminta yang lain','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17602,'my','email_verification','pengesahan email','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17603,'my','email_verification__','Pengesahan email -','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17604,'my','https_activation','Pengaktifan HTTPS','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17605,'my','maintenance_mode','Mod penyelenggaraan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17606,'my','maintenance_mode_activation','Pengaktifan Mod Penyelenggaraan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17607,'my','classified_product_activate','Produk Terkelaskan Diaktifkan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17608,'my','classified_product','Produk Terkelaskan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17609,'my','business_related','Berkaitan Perniagaan','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17610,'my','vendor_system_activation','Pengaktifan Sistem Vendor','2021-02-09 08:11:26','2021-09-20 07:30:00'),(17611,'my','wallet_system_activation','Pengaktifan Sistem Dompet','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17612,'my','coupon_system_activation','Pengaktifan Sistem Kupon','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17613,'my','pickup_point_activation','Pengaktifan Titik Pickup','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17614,'my','conversation_activation','Pengaktifan Perbualan','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17615,'my','guest_checkout_activation','Pengaktifan Checkout Tetamu','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17616,'my','categorybased_commission','Suruhanjaya berdasarkan kategori','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17618,'my','set_commisssion_now','Tetapkan Komisen Sekarang','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17619,'my','payment_related','Berkaitan Pembayaran','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17620,'my','paypal_payment_activation','Pengaktifan Pembayaran Paypal','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17622,'my','stripe_payment_activation','Pengaktifan Pembayaran Stripe','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17623,'my','sslcommerz_activation','Pengaktifan SSlCommerz','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17624,'my','instamojo_payment_activation','Pengaktifan Pembayaran Instamojo','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17626,'my','razor_pay_activation','Pengaktifan Bayar Cukur','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17628,'my','paystack_activation','Pengaktifan PayStack','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17630,'my','voguepay_activation','Pengaktifan VoguePay','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17632,'my','payhere_activation','Pengaktifan Payhere','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17633,'my','ngenius_activation','Pengaktifan Ngenius','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17635,'my','iyzico_activation','Pengaktifan Iyzico','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17637,'my','bkash_activation','Pengaktifan Bkash','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17639,'my','nagad_activation','Pengaktifan Nagad','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17641,'my','cash_payment_activation','Pengaktifan Pembayaran Tunai','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17642,'my','social_media_login','Log Masuk Media Sosial','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17643,'my','facebook_login','log masuk Facebook','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17645,'my','google_login','Log masuk Google','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17647,'my','twitter_login','Log masuk Twitter','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17649,'my','shop_logo','Logo Kedai','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17650,'my','shop_address','Alamat Kedai','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17651,'my','banner_settings','Tetapan Sepanduk','2021-02-09 08:11:27','2021-09-20 07:30:00'),(17652,'my','banners','Sepanduk','2021-02-09 08:11:27','2021-09-20 07:30: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 08:11:27','2021-09-20 07:30:00'),(17654,'my','insert_link_with_https_','Masukkan pautan dengan https','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17655,'my','your_shop_has_been_updated_successfully','Kedai Anda berjaya dikemas kini!','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17656,'my','search_result_for_','Hasil carian untuk','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17657,'my','brand_has_been_inserted_successfully','Jenama telah berjaya dimasukkan','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17658,'my','about','Mengenai','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17659,'my','payout_info','Maklumat Pembayaran','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17660,'my','bank_acc_name','Nama Acc Bank','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17661,'my','bank_acc_number','Nombor Acc Bank','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17662,'my','total_products','Jumlah Produk','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17663,'my','total_sold_amount','Jumlah Jualan','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17664,'my','wallet_balance','Baki Dompet','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17665,'my','cookies_agreement','Perjanjian Cookies','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17666,'my','cookies_agreement_text','Teks Perjanjian Kuki','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17667,'my','show_cookies_agreement','Tunjukkan Perjanjian Cookies?','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17668,'my','custom_script','Skrip Tersuai','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17669,'my','header_custom_script__before_head','Skrip tersuai tajuk - sebelum </head>','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17670,'my','write_script_with_script_tag','Tulis skrip dengan tag <script>','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17671,'my','footer_custom_script__before_body','Skrip khas footer - sebelum </body>','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17672,'my','category_has_been_inserted_successfully','Kategori telah berjaya dimasukkan','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17673,'my','all_flash_deals','Semua Tawaran Kilat','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17674,'my','create_new_flash_deal','Buat Tawaran Kilat Baru','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17675,'my','ffffff','#FFFFFF','2021-02-09 08:11:28','2021-09-20 07:30: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 08:11:28','2021-09-20 07:30:00'),(17677,'my','flash_deal_has_been_inserted_successfully','Flash Deal berjaya dimasukkan','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17678,'my','flash_deal_status_updated_successfully','Status perjanjian kilat berjaya dikemas kini','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17679,'my','flash_deal_has_been_updated_successfully','Flash Deal berjaya dikemas kini','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17680,'my','update_language_info','kemas kini Maklumat Bahasa','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17681,'my','language_has_been_updated_successfully','Bahasa berjaya dikemas kini','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17682,'my','type_key__enter','Taip kekunci & Enter','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17683,'my','translations_updated_for_','Terjemahan dikemas kini untuk','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17684,'my','language_has_been_inserted_successfully','Bahasa telah berjaya disisipkan','2021-02-09 08:11:28','2021-09-20 07:30:00'),(17685,'lk','all_category','�����#��������������� ��a%������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17686,'lk','all','�����#���������������������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17687,'lk','flash_sale','��������%��%��[%��V%��� ��a%��%���%��������#���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17688,'lk','view_more','���������%��������� �����[%���%������������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17689,'lk','add_to_wishlist','��a%��%���%��������������������������������%������%��%���%��� ���������%��������������a%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17690,'lk','add_to_compare','��������������%��� ���������%��������������a%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17691,'lk','add_to_cart','�����������������������������%���%��� ���������%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17692,'lk','club_point','�����%��%������ �����[%�����%������������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17693,'lk','classified_ads','��a%������������������������������������������������ ��a%��%��%������������%�����������%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17694,'lk','used','��������#���������������������������������������������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17695,'lk','top_10_categories','������������%��� 10 ��a%�����������%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17696,'lk','view_all_categories','������%������%��[% ��a%�����������%��������������� �����[%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17697,'lk','top_10_brands','�����%���%��������� 10 �����%���%��[%�����������������%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17698,'lk','view_all_brands','������%������%��[% �����%���%��[%�����������������%��������������� �����[%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17699,'lk','terms__conditions','��a%��%�����%���������%��������%��������� �����%��������������#��������%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17700,'lk','best_selling','�����%���%��������� ��a%��%���%��������#���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17701,'lk','top_20','������������%��� 20','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17702,'lk','featured_products','�����%���%������������ ��������[%���%��%�����������������%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17703,'lk','best_sellers','�����%���%��������� ��a%��%���%��������#��������[%��%���%��������%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17704,'lk','visit_store','��������������������������� ���������%������%��a%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17705,'lk','popular_suggestions','�����%���%������%�����[%��# ������%��%���������������%��������%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17706,'lk','category_suggestions','��a%������ ������%��%���������������%��������%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17707,'lk','automobile__motorcycle','������������������������������%��� & �����������������[%���%��� �����������������%��%���','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17708,'lk','price_range','��a%��%���%��� ��a%���%������������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17709,'lk','filter_by_color','��a%��������������������[%���%��� ��a%�����%��������������a%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17710,'lk','home','��a%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17711,'lk','newest','�����������%���������','2021-02-09 08:13:48','2021-09-20 07:30:00'),(17712,'lk','oldest','�����$%�����������[%��#','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17713,'lk','price_low_to_high','��a%��%���%��� ���������%������������ ������������%��� ��������%��������[%��#������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17714,'lk','price_high_to_low','��a%��%���%��� ���������%������������������ ������������%��� ���������%�����a%��[%��#������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17715,'lk','brands','�����%���%��[%�����������������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17716,'lk','all_brands','�����#��������������� �����%���%��[%�����������������%���������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17717,'lk','all_sellers','�����#��������������� ��a%��%���%��������#��������[%��%���%��������%���������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17718,'lk','inhouse_product','�����%��� ��������[%���%��%������������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17719,'lk','message_seller','�����������������% ��a%��%���%��������#��������[%��%���%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17720,'lk','price','��a%��%���%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17721,'lk','discount_price','�����%�����%�����������% ��a%��%���%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17722,'lk','color','�����%���%������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17723,'lk','quantity','�����%��a%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17724,'lk','available','�����%�����������������%���%������','2021-02-09 08:13:49','2021-02-09 08:13:49'),(17725,'lk','total_price','��������[%��������� ��a%��%���%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17726,'lk','out_of_stock','��������������� ������%������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17727,'lk','refund','������������������������ �����%���%������������������ ���������%��������������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17728,'lk','share','��������%���%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17729,'lk','sold_by','��a%��%���%������%��a%���%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17730,'lk','customer_reviews','��a%��[%�����%�����������������[%��%���%��� ��������%���������������%��������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17731,'lk','top_selling_products','�����%���%��������� ��a%��%���%��������#��������[%��# ��������[%���%��%�����������������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17732,'lk','description','��a%��%��%���������������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17733,'lk','video','��a%��������%��������[%','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17734,'lk','reviews','��a%��%������%��������#�����������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17735,'lk','download','��������%��a%��%���%��������� Tamil','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17736,'lk','there_have_been_no_reviews_for_this_product_yet','������������ ��������[%���%��%�����������������������[%��# ��������%���������������%��������%��� �����������a%���%��� ������%������%���.','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17737,'lk','related_products','��������[%������%������������������ ��������[%���%��%�����������������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17738,'lk','any_query_about_this_product','������������ ��������[%���%��%������������ ������%������%��%��� ������������ ��a%��%��#��a%���%���������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17739,'lk','product_name','��������[%���%�����%��%��#��� ������������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17740,'lk','your_question','��������������%��� ��������%�����a%��%','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17741,'lk','send','�����#������������������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17742,'lk','use_country_code_before_number','��������������������������� ��������#��� �����[%�����������%��#��� ���������%��%������������������������ ��������#�����������������������a%���������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17743,'lk','remember_me','�����#�����#��� �����%��#�����a%��%���%��� ��a%��������������������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17744,'lk','dont_have_an_account','������������������ ������%������%��������[%?','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17745,'lk','register_now','��������������������� ��������%��a%������������������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17746,'lk','or_login_with','������%������%������ �����%�����������$%������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17747,'lk','oops','������������������������ ..','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17748,'lk','this_item_is_out_of_stock','������������ ������%�����������������% �����������%���%��������������%���%��� ������%������%���!','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17749,'lk','back_to_shopping','��V%��[%�����������%�����������%���%��������������� �����%���%���������������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17750,'lk','login_to_your_account','��������������%��� �����������������%���%��� �����%�����������$%������.','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17751,'lk','purchase_history','��������[%��%���������������%��� ��a%���%���%��[%���%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17752,'lk','new','�����������%���������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17753,'lk','downloads','��������%��a%��%���%��������������������%���','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17754,'lk','sent_refund_request','������������������������ �����%���%���������������������������%��������� ���������%��%������������ �����#������������������������������������','2021-02-09 08:13:49','2021-09-20 07:30:00'),(17755,'lk','product_bulk_upload','��������[%���%��%������������ ��������������� ��������%��a%������%������%������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17756,'lk','orders','������%���������%��������%���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17757,'lk','recieved_refund_request','������������������������ �����%���%���������������������������%��������� ���������%��%������������ ���������%������������������������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17758,'lk','shop_setting','��������� ���������������������%���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17759,'lk','payment_history','��������������� ��a%���%���%��[%���%���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17760,'lk','money_withdraw','������������ �����%���%������������������ ���������%���������%���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17761,'lk','conversations','������%��������[%������%��������%���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17762,'lk','my_wallet','�����#��� ������������������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17763,'lk','earning_points','��������������[%�����%������������������ ��������%�����%��%�����%���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17764,'lk','support_ticket','���������%��a%��� �����%������������������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17765,'lk','manage_profile','�����������a%��%��a%���%������������ �����%���%�����a%�����%�����������a%���������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17766,'lk','sold_amount','��a%��%���%������������������������ ������������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17767,'lk','your_sold_amount_current_month','�����������������%��� ��a%��%���%������% ������������ (������������������ �����[%���������)','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17768,'lk','total_sold','��������������������� ��a%��%���%������������������������������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17769,'lk','last_month_sold','��������������� �����[%��������� ��a%��%���%������������������������������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17770,'lk','total_sale','��������������� ��a%��%���%��������#���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17771,'lk','total_earnings','��������������� ��a%���%�����a%��[%������','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17772,'lk','successful_orders','��a%������%������%��%������%�����[%��# ������%���������%��������%���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17773,'lk','total_orders','��������������� ������%���������%��������%���','2021-02-09 08:13:50','2021-09-20 07:30:00'),(17774,'lk','pending_orders','������%���������%��������%��� �����%���%�����a%��������%���%��� �����%�����%��#','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17775,'lk','cancelled_orders','���%������������ ��������������������������������� ������%���������%��������%���','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17776,'lk','product','��������[%���%��%������������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17777,'lk','purchased_package','��a%��[%�����������%��� ������������������������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17778,'lk','package_not_found','������������������������ �����%�����������������a%��%���%������%���','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17779,'lk','upgrade_package','������������������������ ��������������������������������a%���������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17780,'lk','shop','���������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17781,'lk','manage__organize_your_shop','��������������%��� ��������������� �����%���%�����a%�����%�����������a%��������� �����$%�����������������������������a%���������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17782,'lk','go_to_setting','��������������������%���%��������������� ���������%������%��a%���������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17783,'lk','payment','���������������������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17784,'lk','configure_your_payment_method','��������������%��� ��������������� ���������%��������� �����%�����%�����������������a%���������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17785,'lk','my_panel','�����#������ ��������$%���','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17786,'lk','item_has_been_added_to_wishlist','��a%��%���%��������������������������������%������%��%���%��� ������%�����������������% ���������%�����������������������������������%�����%������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17787,'lk','my_points','�����#������ ��������%�����%��%�����%���','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17788,'lk','_points','��������%�����%��%�����%���','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17789,'lk','wallet_money','Wallet Money','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17790,'lk','exchange_rate','������%��%�����[%���%������% ��a%������������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17791,'lk','point_earning_history','��������%�����%��% ��������������[%�����%������������������ ��a%���%���%��[%���%���','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17792,'lk','date','�����������%','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17793,'lk','points','��������%�����%��%�����%���','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17794,'lk','converted','�����[%���%������%������������������������','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17795,'lk','action','������������%���','2021-02-09 08:13:50','2021-09-20 07:30:01'),(17796,'lk','no_history_found','������������ ��a%���%���%��[%���%��������� �����%�����������������a%��%���%������%���.','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17797,'lk','convert_has_been_done_successfully_check_your_wallets','�����[%���%������%������ ��a%������%������%��%������%�����[%��� �����������%��������������� ��������������%��� ������������������������ ������%��%�����[%���%��������������a%���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17798,'lk','something_went_wrong','�����������[% �����a%���%��� ��������������������a%��%���������������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17799,'lk','remaining_uploads','�����������������%�����% ��������%��a%������%������%�����������%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17800,'lk','no_package_found','������������������������ �����������a%��������� �����%�����������������a%��%���%������%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17801,'lk','search_product','��������[%���%��%������������ ���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17802,'lk','name','������������%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17803,'lk','current_qty','������%������������������ Qty','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17804,'lk','base_price','��������%��������������� ��a%��%���%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17805,'lk','published','��a%�����%��%�����%���������������������������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17806,'lk','featured','�����%���%������������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17807,'lk','options','��a%��%���%�����������������������%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17808,'lk','edit','��������[%������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17809,'lk','duplicate','���������%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17810,'lk','1_download_the_skeleton_file_and_fill_it_with_data','1. ������%��������������������������������� ������������������ ��������%��a%��%���%��������������� ������������������ ������%��a%��� �����%���%�����������a%���������.','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17811,'lk','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2. ������%��a%��� �����a%�����a%��[%���%��� �����%���%��������������������� ��a%��������������������� �����#������������������ ���������%��%������������ ��������%�����% ��������[%���%��������� ������������������������ ��������%��a%��%���%������������%��[%������.','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17812,'lk','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3. �����������������%��� ������%��������������������������������� ������������������ ��������%��a%��%���%��������������� ������������������ ���������%��������������% �����������������a%��������#���, ��������� ��������$%��� �����%�����% ��������%��a%�����������%���%��� ��������%��a%������%������%��% ���������%��������������%�����������a%���������.','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17813,'lk','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4. ��������[%���%��%�����������������%��� ��������%��a%������%������%��%��� �����%���%������ �����������������%��� �����a%���%������%��������� �����%���%������������ ��a%��������������������� ������%������%��������� ��������[%���%��%�����������������%��%��#��� �����������������%��������������� ���������%�����a%��������%��������������� ������������������ ��a%���������������������.','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17814,'lk','download_csv','CSV ��� ��������%��a%��%���%�����������a%���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17815,'lk','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1. ��a%������, ������������ ��a%������, ������������ ������������ ��a%������ ������%������%��������� �����%���%��[%������������ ��������� ��������%�����%��%���%��� ������%������������ ��a%���������������������.','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17816,'lk','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. ��a%������, ������������ ��a%������, ������������ ������������ ��a%������ ������%������%��������� �����%���%��[%������������ ��������%������������ ���������% �����������������%��� PDF ��� ��������%��a%��%���%��������������� ������������������%��[%������.','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17817,'lk','download_category','��a%������������������ ��������%��a%��%���%���������������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17818,'lk','download_sub_category','������������ ��a%������������������ ��������%��a%��%���%���������������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17819,'lk','download_sub_sub_category','������������ ������������ ��a%������������ ��������%��a%��%���%�����������a%���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17820,'lk','download_brand','�����%���%��[%������������������ ��������%��a%��%���%���������������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17821,'lk','upload_csv_file','CSV ������������������ ��������%��a%������%������%��a%���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17822,'lk','csv','�����%.�����U%���.��a%��%.','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17823,'lk','choose_csv_file','CSV ������������������������ ���������%�����a%������������������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17824,'lk','upload','��������%��a%������%������%��a%���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17825,'lk','add_new_digital_product','�����������%��� �����%�����%������������%��� ��������[%���%��%������������ ���������%��������������a%���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17826,'lk','available_status','�����%������������������������ �����%���%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17827,'lk','admin_status','�����%���%�����a%��[%��� �����%���%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17828,'lk','pending_balance','�����%���%�����a%��� �����%���%�����a%��������%���%��� �����%�����%������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17829,'lk','send_withdraw_request','�����%���%������������������ ���������%���������%��� ���������%��%������������������ �����#��������������a%���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17830,'lk','withdraw_request_history','���������%��%������������ ��a%���%���%��[%���%������%��������� �����%���%������������������ ���������%��������������%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17831,'lk','amount','������������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17832,'lk','status','�����%���%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17833,'lk','message','�����������������%','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17834,'lk','send_a_withdraw_request','�����%���%������������������ ���������%��������� ���������%��%������������������ �����#��������������a%���������','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17835,'lk','basic_info','��������%��������������� ��������a%���%���','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17836,'lk','your_phone','��������������%��� ���������%��������������%','2021-02-09 08:13:51','2021-09-20 07:30:01'),(17837,'lk','photo','������������������������������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17838,'lk','browse','������%��[%��a%������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17839,'lk','your_password','��������������%������ ��������a%�����������������[%���%���','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17840,'lk','new_password','�����������%��� ��������a%�����������������[%���%���','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17841,'lk','confirm_password','��������a%������������������%������%��� ������%��������%��������������������������a%���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17842,'lk','add_new_address','�����������%��� �����������a%���%��%������������ ���������%��������������a%���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17843,'lk','payment_setting','��������������������� ���������������������%���','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17844,'lk','cash_payment','������ �����������������������#��a%���','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17845,'lk','bank_payment','��a%�����������% ���������������������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17846,'lk','bank_name','��a%�����������% ������������%���','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17847,'lk','bank_account_name','��a%�����������% ������������������ ������������%���','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17848,'lk','bank_account_number','��a%�����������% ������������������ ���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17849,'lk','bank_routing_number','��a%�����������% ���%��������������%������ ���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17850,'lk','update_profile','�����������a%��%��a%���%������������������ �����������������������%�����������a%���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17851,'lk','change_your_email','��������������%��� �����%��#�����#��� ���������%��� �����[%���%������%��a%���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17852,'lk','your_email','��������������%��� �����%��#�����#��� ���������%���','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17853,'lk','sending_email','�����%��#�����#��� ���������%��� �����#��������������������%���%������ ...','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17854,'lk','verify','������%��%�����[%���%��������������a%���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17855,'lk','update_email','�����%��#�����#��� ���������%��������� �����������������������%�����������a%���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17856,'lk','new_address','�����������%��� �����������a%���%��%','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17857,'lk','your_address','��������������%��� �����������a%���%��%','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17858,'lk','country','�����[%������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17859,'lk','select_your_country','�����#��� �����[%������������ ���������%�����a%��� ������������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17860,'lk','city','���������%������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17861,'lk','your_city','��������������%��� ���������%������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17862,'lk','your_postal_code','��������������%��� ������ ���������%��� ���������%��%������������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17863,'lk','880','+880','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17864,'lk','save','�����������%','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17865,'lk','received_refund_request','������������������������ �����%���%���������������������������%��������� ���������%��%������������ ���������%������������������������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17866,'lk','delete_confirmation','������%��������%���������������������������%��� ������������������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17867,'lk','are_you_sure_to_delete_this','��������� ��������������������a%������ ������%��������%?','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17868,'lk','premium_packages_for_sellers','��a%��%���%��������#��������[%��%���%��������%��������������[%��# �����%���%��������%��������� �����������������������������%���','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17869,'lk','product_upload','��������[%���%��%������������ ��������%��a%������%������%������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17870,'lk','digital_product_upload','�����%�����%������������%��� ��������[%���%��%������������ ��������%��a%������%������%������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17871,'lk','purchase_package','������������������������ ��a%��[%�����������a%���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17872,'lk','select_payment_type','��������������� ��a%������������������ ���������%��������������������������������a%���������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17873,'lk','payment_type','��������������������� ��a%������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17874,'lk','select_one','�����#������%��� ���������%���������������������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17875,'lk','online_payment','�����#������%�����#��� ���������������������','2021-02-09 08:13:52','2021-09-20 07:30:01'),(17876,'lk','offline_payment','���������������%�����#��� ���������������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17877,'lk','purchase_your_package','��������������%��� ������������������������ ��a%��[%�����������a%���������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17878,'lk','paypal','�����������[%���%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17879,'lk','stripe','������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17880,'lk','sslcommerz','sslcommerz','2021-02-09 08:13:53','2021-02-09 08:13:53'),(17881,'lk','confirm','������%��������%��������������������������a%���������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17882,'lk','offline_package_payment','���������������%�����#��� ������������������������ ���������������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17883,'lk','transaction_id','������%��%��a%���%��������������#��� ��������%','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17884,'lk','choose_image','������������������������ ���������%�����a%������������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17885,'lk','code','���������%��%������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17886,'lk','delivery_status','��a%��%�����%��������� �����%���%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17887,'lk','payment_status','��������������� �����%���%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17888,'lk','paid','���������������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17889,'lk','order_details','��������� ��a%��%��a%���%�����������%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17890,'lk','download_invoice','��a%��%���%�����������������������%������%��� ��������%��a%��%���%�����������a%���������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17891,'lk','unpaid','���������%��������������������������[%���������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17892,'lk','order_placed','������%���������%��� ��a%�����������������������������������%�����%������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17893,'lk','confirmed','������%��������%','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17894,'lk','on_delivery','��a%��%�����%��������[%��������������%���%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17895,'lk','delivered','��a%��$%���������������������������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17896,'lk','order_summary','������%���������%��� ���������%������������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17897,'lk','order_code','������%���������%��� ���������%��%������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17898,'lk','customer','��a%��[%�����%�����������������[%��%���%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17899,'lk','total_order_amount','��������������� ������%���������%��� ������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17900,'lk','shipping_metdod','��V%��%�����������%������ ������������������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17901,'lk','flat_shipping_rate','��������������������[%��# ���������������%��� ��a%������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17902,'lk','payment_metdod','��������������� ������������������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17903,'lk','variation','�����[%���%��������[%������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17904,'lk','delivery_type','���������%��%��a%���%��% ��a%������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17905,'lk','home_delivery','��a%��������������� ��a%��%�����%���������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17906,'lk','order_ammount','��������������a%��������������� ������%���������%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17907,'lk','subtotal','��������������������������������[%������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17908,'lk','shipping','���������������%��� ��������������������a%���%������������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17909,'lk','coupon_discount','�����������������#��� �����%�����%�����������%','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17910,'lk','na','��� / ���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17911,'lk','in_stock','�����������%���%��������������%���%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17912,'lk','buy_now','��������������������� ��a%��[%���������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17913,'lk','item_added_to_your_cart','��������������%��� ��a%�����������%�����%���%��� ������%�����������������% ���������%������������������������������������!','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17914,'lk','proceed_to_checkout','�����������������������%������������%��������������������� ���������%������%��a%���������','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17915,'lk','cart_items','��a%�����������% ���������%��������������%���','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17916,'lk','1_my_cart','1. �����#������ ��a%�����������%','2021-02-09 08:13:53','2021-09-20 07:30:01'),(17917,'lk','view_cart','��a%�����������%������������ �����[%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17918,'lk','2_shipping_info','2. ���������������%��� ��������a%���%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17919,'lk','checkout','������%��%�����[%���%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17920,'lk','3_delivery_info','3. ��a%��%�����%��������� ��������a%���%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17921,'lk','4_payment','4. ���������������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17922,'lk','5_confirmation','5. ������%��������%���������������������������%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17923,'lk','remove','���������%������%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17924,'lk','return_to_shop','��������������������������� �����%���%���������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17925,'lk','continue_to_shipping','���������������%��� ��������������������a%���%������������ ������������%��a%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17926,'lk','or','������%������%������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17927,'lk','guest_checkout','��a%��%���%��������������[%��%��% ��a%��%���������������%���%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17928,'lk','continue_to_delivery_info','���������%��%��a%���%��% ��������a%���%��������������������� ������������%��a%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17929,'lk','postal_code','������ ���������%��� ���������%��%������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17930,'lk','choose_delivery_type','���������%��%��a%���%��% ��a%������������������ ���������%�����a%������������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17931,'lk','local_pickup','�����%�����%������%��� ���������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17932,'lk','select_your_nearest_pickup_point','��������������%��� ������%��������%���%�����%�����% ��������������� ������������������������ ���������%��������������������������������a%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17933,'lk','continue_to_payment','��������������������� ���������%�����������������a%������������ ������������%��a%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17934,'lk','select_a_payment_option','��������������� ��a%��%���%������������������������������ ���������%��������������������������������a%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17935,'lk','razorpay','���%�����U%���%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17936,'lk','paystack','��������U%��������[%������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17937,'lk','voguepay','��a%��������� ������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17938,'lk','payhere','payhere','2021-02-09 08:13:54','2021-02-09 08:13:54'),(17939,'lk','ngenius','ngenius','2021-02-09 08:13:54','2021-02-09 08:13:54'),(17940,'lk','paytm','Paytm','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17941,'lk','cash_on_delivery','���������%��%��a%���%��% ��������[%������ ������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17942,'lk','your_wallet_balance_','��������������%��� ������������������ ������%���������������:','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17943,'lk','insufficient_balance','�����������������[%��# ������%���������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17944,'lk','i_agree_to_the','�����[%��#��� ��������#��� ������%������%��� ��������[%��%��������%���%�����#���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17945,'lk','complete_order','��������$%��������������[%��# ������%���������%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17946,'lk','summary','���������%������������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17947,'lk','items','��������[%���%��������������%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17948,'lk','total_club_point','��������������� �����%��%������ ��������%�����%��%','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17949,'lk','total_shipping','��������������� ���������������%��� ��������������������a%���%������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17950,'lk','have_coupon_code_enter_here','�����������������#��� ���������%��%������������ �����%�����%�����[%? ��������������� �����%�����%��%�����a%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17951,'lk','apply','��a%��%��������������������%�����������a%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17952,'lk','you_need_to_agree_with_our_policies','��������������%��� ��������%��������������%��������#��� �����������������%��� ��������#��������� ��a%���������������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17953,'lk','forgot_password','��������a%�����������������[%���%������%��� ������%��������������a%��%���������������%��������%��[%','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17954,'lk','seo_setting','�����U%��������%��� ���������������������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17955,'lk','system_update','��������%��#��% ���������������������������������%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17956,'lk','add_new_payment_method','�����������%��� ��������������� ���������%��������������� ���������%��������������a%���������','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17957,'lk','manual_payment_method','������������������ ���������%��������������������� ���������%���','2021-02-09 08:13:54','2021-09-20 07:30:01'),(17958,'lk','heading','������%���������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17959,'lk','logo','���%���������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17960,'lk','manual_payment_information','������������������ ���������%��������������������� ��������a%���%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17961,'lk','type','��a%������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17962,'lk','custom_payment','�����#��%��������������#��� ���������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17963,'lk','check_payment','��������������������������� ������%��%�����[%���%��������������a%���������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17964,'lk','checkout_thumbnail','�����������������������%������������ �����%���%���������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17965,'lk','payment_instruction','��������������� ��a%��$%��%���������%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17966,'lk','bank_information','��a%�����������% ��������a%���%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17967,'lk','select_file','������������������������ ���������%��������������������������������a%���������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17968,'lk','upload_new','�����������%��������������� ��������%��a%������%������%��������������%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17969,'lk','sort_by_newest','�����������%��������� ���������%������ ��a%���%��%���������������������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17970,'lk','sort_by_oldest','�����$%�����������[%��#��a%��[%���%��� ��a%���%��%���������������������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17971,'lk','sort_by_smallest','�����%��������������%���%��%��� ���������%��������%���%��� ��a%���%��%���������������������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17972,'lk','sort_by_largest','�����%������������������%��%��� �����%��a%��%���%��� ��a%���%��%���������������������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17973,'lk','selected_only','���������%��������������������������������������������������a%��� ���������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17974,'lk','no_files_found','�����������������������%��� �����������a%��������� �����%�����������������a%��%���%������%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17975,'lk','0_file_selected','0 ������������������ ���������%������������������������������������������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17976,'lk','clear','�����$%��%','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17977,'lk','prev','���������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17978,'lk','next','������������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17979,'lk','add_files','�����������������������%��������� ���������%��������������a%���������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17980,'lk','method_has_been_inserted_successfully','���������%��� ��a%������%������%��%������%�����[%��� ���������%������������������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17981,'lk','order_date','������%���������%��� �����������%','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17982,'lk','bill_to','�����%���%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17983,'lk','sub_total','��������������������������������[%������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17984,'lk','total_tax','��������������� ��a%���%��%','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17985,'lk','grand_total','���������������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17986,'lk','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','��������������%��� ������%���������%��� ��a%������%������%��%������%�����[%��� ��a%�����������������������������������%�����%������. ��������%���������������%��� ��a%���%���%��[%���%������%��%���%��%���%��������������� ��������������������� ��������a%���%��������� ���������%��������������%�����������a%���������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17987,'lk','thank_you_for_your_order','��������������%��� ������%���������%��������������� �����#������%��%!','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17988,'lk','order_code','������%���������%��� ���������%��%������������:','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17989,'lk','a_copy_or_your_order_summary_has_been_sent_to','������%��� ���������%��� ������%������%������ ��������������%��� ������%���������%��� ���������%������������������ �����#�����������������������������������%�����%������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17990,'lk','make_payment','������������ ���������������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17991,'lk','payment_screenshot','��������������� ��U%��������%���%�����#�����V%��[%������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17992,'lk','paypal_credential','�����������[%���%��� ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17993,'lk','paypal_client_id','�����������[%���%��� �����%��%������������������ ��������%','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17994,'lk','paypal_client_secret','�����������[%���%��� �����%��%������������������ ���%��������%���������','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17995,'lk','paypal_sandbox_mode','�����������[%���%��� �����[%�����������������[%��������U%��� ��������#������������%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17996,'lk','sslcommerz_credential','Sslcommerz ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17997,'lk','sslcz_store_id','Sslcz ��U%������������%��� ��������%','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17998,'lk','sslcz_store_password','Sslcz ��U%������������%��� ��������a%������������������%���','2021-02-09 08:13:55','2021-09-20 07:30:01'),(17999,'lk','sslcommerz_sandbox_mode','Sslcommerz �����[%�����������������[%��������U%��� ��������#������������%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18000,'lk','stripe_credential','������������ ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18001,'lk','stripe_key','��U%������������%��������� ������','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18002,'lk','stripe_secret','��U%������������%��������� ���%��������%���������','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18003,'lk','razorpay_credential','���%�����U%���%��������� ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18004,'lk','razor_key','���%�����U%���%��� ������','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18005,'lk','razor_secret','���%�����U%���%��� ���%��������%���������','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18006,'lk','instamojo_credential','Instamojo ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18007,'lk','api_key','API KEY','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18008,'lk','im_api_key','IM API KEY','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18009,'lk','auth_token','AUTH �����������������#���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18010,'lk','im_auth_token','IM AUTH �����������������#���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18011,'lk','instamojo_sandbox_mode','�����#�����U%��������[%������������ �����[%�����������������[%��������U%��� ��������#������������%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18012,'lk','paystack_credential','PayStack ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18013,'lk','public_key','������������ ��a%��%������','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18014,'lk','secret_key','���%��������%��� ��a%��%������','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18015,'lk','merchant_email','��a%�����%��� �����%��#�����#��� ���������%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18016,'lk','voguepay_credential','��a%��������� ������ ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18017,'lk','merchant_id','��a%�����%��� ��������%','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18018,'lk','sandbox_mode','�����[%�����������������[%��������U%��� ��������#������������%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18019,'lk','payhere_credential','Payhere ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18020,'lk','payhere_merchant_id','PAYHERE MERCHANT ��������%','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18021,'lk','payhere_secret','��������c%������%��� ���%��������%���������','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18022,'lk','payhere_currency','PAYHERE CURRENCY','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18023,'lk','payhere_sandbox_mode','Payhere �����[%�����������������[%��������U%��� ��������#������������%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18024,'lk','ngenius_credential','Ngenius ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18025,'lk','ngenius_outlet_id','NGENIUS OUTLET ��������%','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18026,'lk','ngenius_api_key','NGENIUS API KEY','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18027,'lk','ngenius_currency','NGENIUS CURRENCY','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18028,'lk','mpesa_credential','Mpesa ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18029,'lk','mpesa_consumer_key','MPESA CONSUMER KEY','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18030,'lk','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18031,'lk','mpesa_consumer_secret','MPESA CONSUMER SECRET','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18032,'lk','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18033,'lk','mpesa_short_code','MPESA ���������%��������%��� ���������%��%������������','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18034,'lk','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18035,'lk','mpesa_sandbox_activation','MPESA SANDBOX ACTIVATION','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18036,'lk','flutterwave_credential','Flutterwave ������%��������[%��#������%��%�����$%���','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18037,'lk','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 08:13:56','2021-09-20 07:30:01'),(18038,'lk','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18039,'lk','rave_title','RAVE_TITLE','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18040,'lk','stagin_activation','��U%��������������%��#��� ������������%��������[%������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18041,'lk','all_product','�����#��������������� ��������[%���%��%������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18042,'lk','sort_by','���������%������ ��a%���%��%���������������������������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18043,'lk','rating_high__low','��������%������������������ (���������%���> ���������%������������)','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18044,'lk','rating_low__high','��������%������������������ (���������%������������> ���������%���)','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18045,'lk','num_of_sale_high__low','��a%��%���%��������#��������%��#��� ��������������%������������ (���������%���> ���������%������������)','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18046,'lk','num_of_sale_low__high','��a%��%���%��������#��������%��#��� ��������������%������������ (���������%������������> ���������%���)','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18047,'lk','base_price_high__low','��������%��������������� ��a%��%���%��� (���������%���> ���������%������������)','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18048,'lk','base_price_low__high','��������%��������������� ��a%��%���%��� (���������%������������> ���������%���)','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18049,'lk','type__enter','������������������������ ������������������ �����%�����%��%�����a%���������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18050,'lk','added_by','���������%������ ���������%������������������������������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18051,'lk','num_of_sale','��a%��%���%��������#��� ���������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18052,'lk','total_stock','��������������� ���������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18053,'lk','todays_deal','�����#������%������ ���������������������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18054,'lk','rating','��������%������������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18055,'lk','times','���������%���','2021-02-09 08:13:57','2021-02-09 08:13:57'),(18056,'lk','add_nerw_product','���������%�����a%��� ��������[%���%��%������������ ���������%��������������a%���������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18057,'lk','product_information','�����������������������%��#��� ��a%��%������%�����������%���','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18058,'lk','unit','������%������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18059,'lk','unit_eg_kg_pc_etc','������%������ (���.�����[%. ������.�����%., �����%.�����% ��������#������%��a%���)','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18060,'lk','minimum_qty','���������%������������������������ Qty','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18061,'lk','tags','���������%��%��������������[%���%��������%���','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18062,'lk','type_and_hit_enter_to_add_a_tag','���������%��%���������������%������%��������� ���������%������������ Enter �����# ������������������������ ������������������ �����$%��������������a%���������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18063,'lk','barcode','�����[%���%���������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18064,'lk','refundable','�����%���%���������������������������%�����������������%���������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18065,'lk','product_images','��������[%���%��%������������ �����������������%���','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18066,'lk','gallery_images','���������%���%��% �����������������%���','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18067,'lk','todays_deal_updated_successfully','�����#������%������ ��������������������������� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18068,'lk','published_products_updated_successfully','��a%�����%��%�����%��������������������� ��������[%���%��%�����������������%��� ��a%������%������%��%������%�����[%��� �����������������������%�����������������������������#','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18069,'lk','thumbnail_image','�����%���%��� ������������','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18070,'lk','featured_products_updated_successfully','�����%���%������������ ��������[%���%��%�����������������%��� ��a%������%������%��%������%�����[%��� �����������������������%�����������������������������#','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18071,'lk','product_videos','��������[%���%��%������������ ��a%��������%�����������������%���','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18072,'lk','video_provider','��a%��������%������ ��a%��$%������������������%���','2021-02-09 08:13:57','2021-09-20 07:30:01'),(18073,'lk','youtube','��a%���%��������%��%','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18074,'lk','dailymotion','���������������%��%��������V%��#���','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18075,'lk','vimeo','��a%��%�����%������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18076,'lk','video_link','��a%��������%������ ���������������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18077,'lk','product_variation','��������[%���%��%������������ �����[%���%��������[%������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18078,'lk','colors','��a%��������������������%���','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18079,'lk','attributes','������������������������������%��������%���','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18080,'lk','choose_attributes','��������������������%��������� ���������%�����a%������������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18081,'lk','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','������������ ��������[%���%��%�����������%��#��� ��������������������%��������� ���������%�����a%��������������������� �����a%�����a%������%��� ��������������������%��%��#��� �����%�����%��������������� ��������%�����������������%��������������� ���������%�����a%��� �����������������a%���������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18082,'lk','product_price__stock','��������[%���%��%������������ ��a%��%���%��� + ���������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18083,'lk','unit_price','������%������ ��a%��%���%���','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18084,'lk','purchase_price','��������[%��%���������������%��� ��a%��%���%���','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18085,'lk','flat','�����%��%��[%������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18086,'lk','percent','��������a%������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18087,'lk','discount','�����%�����%�����������%','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18088,'lk','product_description','��������[%���%��%������������ ��a%��%��%���������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18089,'lk','product_shipping_cost','��������[%���%��%������������ ���������������%��� ���������%��a%���','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18090,'lk','free_shipping','������%��a%��� ���������������%��� ��������������������a%���%������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18091,'lk','flat_rate','�����%��%��[%������ ��a%������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18092,'lk','shipping_cost','���������������%��� ���������%��a%���','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18093,'lk','pdf_specification','PDF ��a%��%��a%���%���������������%��%������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18094,'lk','seo_meta_tags','�����U%��������%��� �����������������[% ���������%��%���������������%��������%���','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18095,'lk','meta_title','�����������������[% ������%���������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18096,'lk','meta_image','�����������������[% ������������','2021-02-09 08:13:58','2021-09-20 07:30:01'),(18097,'lk','choice_title','���������%�����a%��� ������%���������������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18098,'lk','enter_choice_values','���������%�����a%��� ��������%�����������������%��� �����%�����%��%�����a%���������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18099,'lk','all_categories','�����#��������������� ��a%�����������%���������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18100,'lk','add_new_category','�����������%��� ��a%������������������ ���������%��������������a%���������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18101,'lk','type_name__enter','������������%��������� ������������������������ ������������������ �����%�����%��%�����a%���������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18102,'lk','banner','��������[%������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18103,'lk','commission','������%������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18104,'lk','icon','��������[%��#���','2021-02-09 08:13:58','2021-02-09 08:13:58'),(18105,'lk','featured_categories_updated_successfully','�����%���%������������ �����%���%��%��a%��������%��� ��a%������%������%��%������%�����[%��� �����������������������%�����������������������������#','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18106,'lk','hot','�����������[%���','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18107,'lk','filter_by_payment_status','��������������� �����%���%��� ���������%������ ��a%�����%��������������a%���������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18108,'lk','unpaid','���������%��������������������������[%���������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18109,'lk','filter_by_deliver_status','�����%���%��������� ��a%��$%��������������a%�����#��� ���������%������ ��a%�����%��������������a%���������','2021-02-09 08:13:58','2021-09-20 07:30:02'),(18110,'lk','pending','�����%���%�����a%��������%���%��� �����%�����%������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18111,'lk','type_order_code__hit_enter','������%���������%��� ���������%��%������������������������ ������������������������ ������������������ Enter ��� �����$%��������������a%���������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18112,'lk','num_of_products','���������. ��������[%���%��%�����������������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18113,'lk','walk_in_customer','��a%��[%�����%�����������������[%��%���%��[%��� ������������������ ���������%������%��������������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18114,'lk','qty','QTY','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18115,'lk','without_shipping_charge','���������������%��� ��������������������� ������%������%��[%������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18116,'lk','with_shipping_charge','���������������%��� ��������������������������������#���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18117,'lk','pay_with_cash','�����������������������#��� ���������%��������������������������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18118,'lk','shipping_address','���������%��������� �����������a%���%��%','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18119,'lk','close','���������%�����������������[%��#','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18120,'lk','select_country','�����[%�����������%��#��� ���������%�����a%���������������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18121,'lk','order_confirmation','������%���������%��� ������%��������%���������������������������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18122,'lk','are_you_sure_to_confirm_this_order','������������ ������%���������%��� ������%��������%�����������������������������a%������ ������%��������%?','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18123,'lk','comfirm_order','���������������%��a%��� ������%��������%��������������������������a%���������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18124,'lk','personal_info','�����#��%������������������ ��������a%���%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18125,'lk','repeat_password','���%��������%��� ���������%��%������������������ �����%���%��������������������������[%���%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18126,'lk','shop_name','��������� ������������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18127,'lk','register_your_shop','��������������%��� ��������������� ��������%��a%��� �����������������������������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18128,'lk','affiliate_informations','��������������������� ��������a%���%��������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18129,'lk','affiliate','��������[%������%������������������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18130,'lk','user_info','��������#���%��� ��������a%���%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18131,'lk','installed_addon','�����%���%�����a%������������������ ��������[%��#���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18132,'lk','available_addon','�����%������������������������ Addon','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18133,'lk','install_new_addon','�����������%��� ������������ �����%���%���%��� �����%���%�����a%��a%���������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18134,'lk','version','��������%������������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18135,'lk','activated','������������%���������������������������������������������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18136,'lk','deactivated','������������%��%��$%���������������������������������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18137,'lk','activate_otp','OTP ��� ������������%�����������������������a%���������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18138,'lk','otp_will_be_used_for','OTP ���������%��������� ��������#������������������������������������������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18139,'lk','settings_updated_successfully','��������������������������%��� ��a%������%������%��%������%�����[%��� �����������������������%�����������������������������#','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18140,'lk','product_owner','��������[%���%��%������������ ������%��%�����������[%��%���%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18141,'lk','point','��������%�����%��%','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18142,'lk','set_point_for_product_within_a_range','������%��� ������%������%�����������������%��� ��������[%���%��%�����������������������[%��# ��������%�����%��% ��������������������a%���������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18143,'lk','set_point_for_multiple_products','������% ��������[%���%��%�����������������%��������������[%��# ��������%�����%��% ���������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18144,'lk','min_price','���������%������������������������ ��a%��%���%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18145,'lk','max_price','��������%��������������� ��a%��%���%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18146,'lk','set_point_for_all_products','�����#��������������� ��������[%���%��%�����������������%��������������������� ��������%�����%��% ��������������������a%���������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18147,'lk','set_point_for_','��������%�����%��% ��������������������a%���������','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18148,'lk','convert_status','�����%���%��������� �����[%���%������%���','2021-02-09 08:13:59','2021-09-20 07:30:02'),(18149,'lk','earned_at','������%��� ��������������[%�����%�����������[%���%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18150,'lk','seller_based_selling_report','��a%��%���%��������#��������[%��%���%��� ��������%��������������������%���%��[%��# ��a%��%���%��������#��� ������%��%������������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18151,'lk','sort_by_verificarion_status','������%��%�����[%���%��������������� �����%���%��� ���������%������ ��a%���%��%���������������������������������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18152,'lk','approved','���������������������%��%���������������������������������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18153,'lk','non_approved','���������������������%��%�����������������������a%��%���%������%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18154,'lk','filter','��a%�����%��������������%','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18155,'lk','seller_name','��a%��%���%��������#��������[%��%���%��� ������������%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18156,'lk','number_of_product_sale','��������[%���%��%������������ ��a%��%���%��������#��������%��#��� ��������������%������������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18157,'lk','order_amount','������%���������%��� ������������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18158,'lk','facebook_chat_setting','��������U%��������������� ������%������������ ���������������������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18159,'lk','facebook_page_id','��������U%��������������� ������������ ��������%','2021-02-09 08:14:00','2021-09-20 07:30: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','�����������������%��� ��������U%��������������� ������%������������������ �����%�����%������������������������������������ �����a%��#�����[%��� ������%��������������%���. �����a%���%��[%��# �����%�����%��������a%��������������� ��������������%��� ��������#���%��� ������%��������% �����%�����������%���%��� ������������ ���������%��� ��������[%��#��������� ���������% �����[%���������������%��������%���.','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18161,'lk','login_into_your_facebook_page','��������������%��� ������������������%��� �����������������������%���%��� �����%�����������$%������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18162,'lk','find_the_about_option_of_your_facebook_page','��������������%��� �����������U%��������������� �����������������������%��#��� ������%��%��������������� ��a%��%���%������������������������������ ���������������%��%�����a%���������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18163,'lk','at_the_very_bottom_you_can_find_the_facebook_page_id','�����%�����a%��������� ��������$%���, �����������������%��� Facebook �����������U%��������������� ������������ ��������% \\��� ��������� �����[%������%��[%������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18164,'lk','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','��������������%��� �����������������������%��#��� ��������������������������%��������������������� ��������#������%��� Adv \"�����������a%��[%��#�����U%��� �����������������%������ of\" ��a%��%���%������������������������������ ���������������%��%�����a%���������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18165,'lk','scroll_down_that_page_and_you_will_get_white_listed_domain','������������������ ������������������������ ������%��������������a%���������, �����������������%��� white \"��a%�����%�����%��� ��������������%������%��%��������������������� ��������������#��� get\" ���������%�����a%������%��������%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18166,'lk','set_your_website_domain_name','��������������%��� ��a%���%��������������% ��������������#��� ������������%��� ��������������������a%���������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18167,'lk','google_recaptcha_setting','Google reCAPTCHA ���������������������%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18168,'lk','site_key','�����% KEY','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18169,'lk','select_shipping_method','���������������%��� ���������%��� �����#������������������ ���������%��������������������������������a%���������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18170,'lk','product_wise_shipping_cost','��������[%���%��%������������ ��a%��%��a%�����������[%��# ���������������%��� ���������%��a%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18171,'lk','flat_rate_shipping_cost','�����%��%��[%������ ��a%������������ ���������������%��� ���������%��a%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18172,'lk','seller_wise_flat_shipping_cost','��a%��%���%��������#��������[%��%���%��� ��a%�����U%��� �����%��%��[%������ ��V%��%�����������%������ ���������%��a%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18173,'lk','note','���������%��%������������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18174,'lk','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','��������[%���%��%������������ ��a%��%��a%�����������[%��# ���������������%��� ���������%��a%��� ������������������������: �����a%�����a%������%��� ��������[%���%��%������������ ���������������%��� ���������%��a%��������������� ���������%��������������� ���������������%��� ���������%��a%��� �����������������%�����������������������%���%������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18175,'lk','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','�����%��%��[%������ ���%��������� ��V%��%�����������%������ ���������%��a%��� ������������������������: ��a%��[%�����%�����������������[%��%���%��� ��������������#��� ��������[%���%��%�����������������%��� ��a%��[%�����������������%���%��[%���%��� �����#������������ �����������������%���������%������%. ���������������%��� ���������%��a%��� �����%���%�����������%��������������������������������%�����%������','2021-02-09 08:14:00','2021-09-20 07:30: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','��a%��%���%��������#��������[%��%���%��� ��a%�����U%��� �����%��%��[%������ ��V%��%�����������%������ ���������%��a%��� ������������������������: �����a%�����a%������%��� ��a%��%���%��������#��������[%��%���%��������������������� �����%���%��������[%��# ��a%������������. ������%��� ��a%��[%�����%�����������������[%��%���%��� ������%������������ ��a%��%���%��������#��������[%��%���%��� ���������������%��� ���������%��a%��%���%��� ������%��������������� 2 ��������[%���%��%������������ ��a%��[%�����������%��#��[%���%���, �����a%�����a%������%��� ��a%��%���%��������#��������[%��%���%��%��#��� �����%��%��[%������ ��V%��%�����������%������ ���������%��a%��������������� ���������%��������������� �����������������%�����������������������%���%������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18177,'lk','flat_rate_cost','�����%��%��[%������ ��a%������ ���������%��a%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18178,'lk','shipping_cost_for_admin_products','�����%���%�����a%��[%��� ��������[%���%��%�����������������%��������������[%��# ���������������%��� ���������%��a%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18179,'lk','countries','�����[%�����������%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18180,'lk','showhide','�����[%������������ / ������%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18181,'lk','country_status_updated_successfully','�����[%�����������%��#��� �����%���%��� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18182,'lk','all_subcategories','�����#��������������� �����������������������%���%��%��a%��������%���������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18183,'lk','add_new_subcategory','�����������%��� �����������������������%���%��%��a%��������� ���������%��������������a%���������','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18184,'lk','subcategories','������������ ��a%�����������%���','2021-02-09 08:14:00','2021-09-20 07:30:02'),(18185,'lk','sub_category_information','������������ ��a%������ ��������a%���%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18186,'lk','slug','��U%������%������','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18187,'lk','all_sub_subcategories','�����#��������������� ������������ �����������������������%���%��%��a%��������%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18188,'lk','add_new_sub_subcategory','�����������%��� ������������ �����������������������%���%��%��a%��������� ���������%��������������a%���������','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18189,'lk','subsubcategories','������������ ������������ �����%���%��%��a%��������%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18190,'lk','make_this_default','��������� ���������%��������������%���%��������[%�����������������������%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18191,'lk','shops','��������������%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18192,'lk','women_clothing__fashion','�����������������%��� ��������� & �����������V%��#���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18193,'lk','cellphones__tabs','���������%�����������#��������%��� ������%������%��������� �����[%��a%���%��������%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18194,'lk','welcome_to','��a%���%��a%������%��������%���%�����[%������','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18195,'lk','create_a_new_account','�����������%��� ������������������ ��������a%������������','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18196,'lk','full_name','��������$%��� ������������%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18197,'lk','password','��������a%�����������������[%���%���','2021-02-09 08:14:40','2021-02-09 08:14:40'),(18198,'lk','confrim_password','��������a%������������������%������%��� ������%��������%��������������������������a%���������','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18199,'lk','i_agree_with_the','�����[%��#��� ��������#�����������������%���%�����#���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18200,'lk','terms_and_conditions','��a%��%�����%���������%��������%��� ������%������%��������� �����%��������������#��������%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18201,'lk','register','��������%��a%���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18202,'lk','already_have_an_account','������%��������#��a%��� ������%��� ������������������ �����%�����%�����[%','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18203,'lk','sign_up_with','��������#��� ��������%��a%������������%������','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18204,'lk','i_agree_with_the_terms_and_conditions','��a%��%�����%���������%��������%��� ������%������%��������� �����%��������������#��������%��������#��� �����[%��#��� ��������#�����������������%���%�����#���','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18205,'lk','all_role','�����#��������������� ���������������','2021-02-09 08:14:40','2021-09-20 07:30:02'),(18206,'lk','add_new_role','�����������%��� �����[%�����������%���%������������������ ���������%��������������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18207,'lk','roles','�����[%�����������%���%�����������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18208,'lk','add_new_staffs','�����������%��� ��������%�����[%��%���%��������%��������� ���������%��������������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18209,'lk','role','���������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18210,'lk','frontend_website_name','��������#��������������� ��a%���%��������������% ������������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18211,'lk','website_name','��a%���%��������������%�����������%��#��� ������������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18212,'lk','site_motto','�����% ���������%��%��������������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18213,'lk','best_ecommerce_website','�����%���%��������� ��������������a%��$%��% ��a%���%��������������%������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18214,'lk','site_icon','�����% ��������[%��#���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18215,'lk','website_favicon_32x32_png','��a%���%��������������%������ �����������a%��%�����[%��#���. 32x32 .png','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18216,'lk','website_base_color','��a%���%��������������% ��������%��������������� ��a%���������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18217,'lk','hex_color_code','��c%�����������U%��� ��a%��������� ���������%��%������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18218,'lk','website_base_hover_color','��a%���%��������������% ��������%��������������� ��c%�����a%���%��� ��a%���������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18219,'lk','update','�����������������������%������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18220,'lk','global_seo','������%�����%��[%��a%��%��� �����U%��������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18221,'lk','meta_description','�����������������[% ��a%��%��%���������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18222,'lk','keywords','�����������������%��� ��a%��[%���%��������������������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18223,'lk','separate_with_coma','�����������[%��a%��������#��� �����%���%��%�����������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18224,'lk','website_pages','��a%���%��������������% �����������������������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18225,'lk','all_pages','�����#��������������� �����������������������%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18226,'lk','add_new_page','�����������%��� ������������������������������ ���������%��������������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18227,'lk','url','URL','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18228,'lk','actions','������������%��������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18229,'lk','edit_page_information','������������������ ��������a%���%��������� �����%���%������������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18230,'lk','page_content','������������ �����%�����%������������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18231,'lk','title','������%���������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18232,'lk','link','���������������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18233,'lk','use_character_number_hypen_only','�����$%���������������, ���������, ��c%��������#��� ��������������������� ��������#�����������������������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18234,'lk','add_content','�����%�����%������������������������������ ���������%��������������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18235,'lk','seo_fields','�����U%��������%��� ���������%�����������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18236,'lk','update_page','������������������������������ �����������������������%�����������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18237,'lk','default_language','���������%��������������%���%��� ��������$%��%','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18238,'lk','add_new_language','�����������%��� ��������$%��%������������ ���������%��������������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18239,'lk','rtl','������%���.�����%.������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18240,'lk','translation','��������$%��%������������%���������������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18241,'lk','language_information','��������$%��% ��������a%���%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18242,'lk','save_page','������������������������������ �����������%�����������a%���������','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18243,'lk','home_page_settings','��������������������� ������������ ��������������������������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18244,'lk','home_slider','��������������������� ��U%������%���������%���','2021-02-09 08:14:41','2021-09-20 07:30:02'),(18245,'lk','photos__links','�����������������������������������%��� & ��������������������������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18246,'lk','add_new','�����������%�����[%��� ���������%��������������a%���������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18247,'lk','home_categories','��a%��������������� ��a%�����������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18248,'lk','home_banner_1_max_3','��������������������� ��������#���%��� 1 (��������%��������������������� 3)','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18249,'lk','banner__links','��������#���%��� & ��������������������������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18250,'lk','home_banner_2_max_3','��������������������� ��������#���%��� 2 (��������%��������������������� 3)','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18251,'lk','top_10','������������%��� 10','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18252,'lk','top_categories_max_10','�����%���%��������� ��a%�����������%��� (��������%��������������������� 10)','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18253,'lk','top_brands_max_10','�����%���%��������� �����%���%��[%�����������������%��� (��������%��������������������� 10)','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18254,'lk','system_name','��������%��#��% ������������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18255,'lk','system_logo__white','��������%��#��% ���%��������� - ��a%�����%�����%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18256,'lk','choose_files','�����������������������%��������� ���������%�����a%������������������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18257,'lk','will_be_used_in_admin_panel_side_menu','�����%���%�����a%��[%��� ��������$%��� ������������ ��������#�����a%��%���%��� ��������#������������������������������������������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18258,'lk','system_logo__black','��������%��#��% ���%��������� - ������%���������������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18259,'lk','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','���������������%��� + �����%���%�����a%��[%��� �����%�����������$%�����a%��� �����������������������%���%��� �����%���%�����a%��[%��� ��������$%��� �����[%�����������[%���%��%���%��� ��������#������������������������������������������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18260,'lk','system_timezone','��������%��#��% ���������% ���������������%������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18261,'lk','admin_login_page_background','�����%���%�����a%��[%�����% �����%�����������$%�����a%��� ������������ �����%��#�����#�����%','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18262,'lk','website_header','��a%���%��������������% ������%���������������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18263,'lk','header_setting','������%��������������� ���������������������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18264,'lk','header_logo','������%��������������� ���%���������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18265,'lk','show_language_switcher','��������$%��% �����[%���%������%��%������������ �����[%�����������%�����������a%��[%?','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18266,'lk','show_currency_switcher','�����[%������ �����[%���%������%��%������������ �����[%�����������%�����������a%��[%?','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18267,'lk','enable_stikcy_header','��U%��������%�����������% ������%��������������� �����������������a%��[%?','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18268,'lk','website_footer','��a%���%��������������% ��������%���������������%��%������������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18269,'lk','footer_widget','��������%���������������%��%������������ �����[%��%���%������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18270,'lk','about_widget','�����[%��%���%������ ������%������%��%','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18271,'lk','footer_logo','��������%���������������%��%������������ ���%���������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18272,'lk','about_description','��a%��%��%��������������� ������%������%��%','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18273,'lk','contact_info_widget','��������a%���%��� ��a%��%������������������������ ������������%��������� ��������%�����%��a%���������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18274,'lk','footer_contact_address','��������%���������������%��%������������ ������������%��������� �����������a%���%��%','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18275,'lk','footer_contact_phone','��������%���������������%��%������������ ������������%��������� ���������%��������������%','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18276,'lk','footer_contact_email','��������%���������������%��%������������ ������������%��������� �����%��#�����#��� ���������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18277,'lk','link_widget_one','��������������������� ��a%��%������������������ �����#������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18278,'lk','links','��������������������������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18279,'lk','footer_bottom','��������%���������������%��%������������ ��������$%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18280,'lk','copyright_widget_','��������%���������������%��%������ �����[%��%���%������','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18281,'lk','copyright_text','��������%���������������%��%������ ������%���','2021-02-09 08:14:42','2021-09-20 07:30:02'),(18282,'lk','social_link_widget_','������������ ��������������������� �����[%��%���%������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18283,'lk','show_social_links','������������ ��������������������������%��������� �����[%�����������%�����������a%��[%?','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18284,'lk','social_links','������������ ��������������������������%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18285,'lk','payment_methods_widget_','��������������� ���������%��������%��� ��a%��%������������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18286,'lk','rtl_status_updated_successfully','������%��������%������%��� �����%���%��� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18287,'lk','language_changed_to_','��������$%��% �����[%���%������%������������������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18288,'lk','inhouse_product_sale_report','�����%�����%��� ��������[%���%��%������������ ��a%��%���%��������#��� ������%��%������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18289,'lk','sort_by_category','��a%��������������������% ��a%���%��%���������������������������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18290,'lk','product_wise_stock_report','��������[%���%��%������������ ��a%��[%���%��%�����[%��� ��������������� ������%��%������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18291,'lk','currency_changed_to_','�����[%������������ �����[%���%������%������������������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18292,'lk','avatar','�����a%�����[%���%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18293,'lk','copy','���������%��������������������a%���������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18294,'lk','variant','�����[%���%��������[%������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18295,'lk','variant_price','�����[%���%��������[%������ ��a%��%���%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18296,'lk','sku','�����U%���.������.������.','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18297,'lk','key','��a%��%������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18298,'lk','value','��������%������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18299,'lk','copy_translations','��������$%��%������������%��������������������%��� ���������%��������������������a%���������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18300,'lk','all_pickup_points','�����#��������������� �����%������-��������� ��������%�����%��%�����%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18301,'lk','add_new_pickup_point','�����������%��� �����%������-��������� ��������%�����%��%������������ ���������%��������������a%���������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18302,'lk','manager','���������%��[%��%���%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18303,'lk','location','������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18304,'lk','pickup_station_contact','��������������� �����%���%������ ������������%���������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18305,'lk','open','�����%���%','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18306,'lk','pos_activation_for_seller','��a%��%���%��������#��������[%��%���%��������������[%��# �����%��������U%��� ������������%������������������������%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18307,'lk','order_completed_successfully','������%���������%��� ��a%������%������%��%������%�����[%��� �����������%���������������.','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18308,'lk','text_input','������%��� �����%�����%���������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18309,'lk','select','���������%���������������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18310,'lk','multiple_select','������% ���������%�����a%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18311,'lk','radio','��a%��[%��#������%��%','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18312,'lk','file','��������[%������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18313,'lk','email_address','�����%��#�����#��� ���������%��� �����������a%���%��%','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18314,'lk','verification_info','������%��%�����[%���%��������������� ��������a%���%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18315,'lk','approval','���������������������%���','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18316,'lk','due_amount','�����%���%�����a%��� ��������[%������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18317,'lk','show','�����[%������������','2021-02-09 08:14:43','2021-09-20 07:30:02'),(18318,'lk','pay_now','�����������������[%������ ���������%������������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18319,'lk','affiliate_user_verification','��������������������� ��������#���%��� ������%��%�����[%���%���������������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18320,'lk','reject','�����%���%��[%������%��%','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18321,'lk','accept','������%������%�����������������%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18322,'lk','beauty_health__hair','�����$%������, ���������%���������%������ ������%������%��������� �����������%','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18323,'lk','comparison','���������������������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18324,'lk','reset_compare_list','��������������%������%��� ��������������%��������� ���������������������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18325,'lk','your_comparison_list_is_empty','��������������%��� ��������������������������� ��������������%������%��� �����[%���%��%�����[%��� �����%�����%������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18326,'lk','convert_point_to_wallet','��������%�����%��%������ �����������������������[%��� �����[%���%������%��a%���������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18327,'lk','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','���������%��%������������: �����%��%������ �����[%�����%������������ �����������#��������� ��������#��������������������������a%������%��������� ��������#��������� �����������������%��� ������������%��%���%��� ������������������ ��a%��%���%������������������������ ������������%��������������������� ��a%���������������������.','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18328,'lk','create_an_account','������%��� ������������������ ������%�����a%��[%���������.','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18329,'lk','use_email_instead','���������%��������� ��������%���%��[%��� �����%��#�����#��� ���������%��� ��������#�����������������������a%���������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18330,'lk','by_signing_up_you_agree_to_our_terms_and_conditions','��������%��a%������������%�����a%�����#��� ���������%������ ��������������%��� ��a%��%�����%���������%��������%��������������� �����%��������������#��������%��������������� �����������������������������%��������%���%������%��������%���.','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18331,'lk','create_account','��������������%��� ������������������ ��������a%�����������������������%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18332,'lk','or_join_with','������%������%������ ���������%��a%���������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18333,'lk','already_have_an_account','������%��������#��a%��� ������%��� ������������������ �����%�����%�����[%?','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18334,'lk','log_in','�����%�����������$%������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18335,'lk','computer__accessories','��������%��#��% ������%������%��������� �����[%��������������%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18336,'lk','products','��������[%���%��%������������ (�����%���)','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18337,'lk','in_your_cart','��������������%��� ��a%�����������%�����%���%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18338,'lk','in_your_wishlist','��������������%��� ��a%��%���%��������������������������������%������%��%���%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18339,'lk','you_ordered','�����������������%��� ���������������%��a%��%���������������%��������%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18340,'lk','default_shipping_address','���������%��������������%���%��� ���������������%��� �����������a%���%��%','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18341,'lk','sports__outdoor','��a%��%��%��������[%������������ ������%������%��������� ��a%�����%��%���������������%������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18342,'lk','copied','���������%������������������������������������������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18343,'lk','copy_the_promote_link','��a%��%��%������������% ��������������������� ���������%��������������������a%���������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18344,'lk','write_a_review','������%��� ��a%��%������%��������#������ �����$%������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18345,'lk','your_name','��������������%��� ������������%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18346,'lk','comment','������%���������������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18347,'lk','your_review','��������������%��� ��a%��%������%��������#������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18348,'lk','submit_review','��a%��%������%��������#������������ ���������%��������������%�����������a%���������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18349,'lk','claire_willis','�����%��%��[%���%��% ��a%��%���%������%��%��U%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18350,'lk','germaine_greene','���������%�����������#��� �����%���%�����#���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18351,'lk','product_file','��������[%���%��%������������ ������������������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18352,'lk','choose_file','��������[%������������ ���������%��������������������������������%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18353,'lk','type_to_add_a_tag','���������%��%���������������%������%��������� ���������%������������ ������������������������ ���������������','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18354,'lk','images','�����������������%���','2021-02-09 08:14:44','2021-09-20 07:30:02'),(18355,'lk','main_images','�����������������%��� �����������������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18356,'lk','meta_tags','�����������������[% ���������%��%���������������%��������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18357,'lk','digital_product_has_been_inserted_successfully','�����%�����%������������%��� ��������[%���%��%������������ ��a%������%������%��%������%�����[%��� ���������%�����������������������������%�����%������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18358,'lk','edit_digital_product','�����%�����%������������%��� ��������[%���%��%������������������ �����%���%���������������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18359,'lk','select_an_option','������%��� ��a%��%���%������������������������������ ���������%��������������������������������a%���������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18360,'lk','tax','��a%���%��%','2021-02-09 08:14:45','2021-02-09 08:14:45'),(18361,'lk','any_question_about_this_product','������������ ��������[%���%��%������������ ������%������%��% �����������#��������� ��������%�����a%��% ������%��������������%���%�����[%?','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18362,'lk','sign_in','�����%�����������$%������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18363,'lk','login_with_google','Google ��������#��� �����%�����������$%������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18364,'lk','login_with_facebook','��������U%��������������� ���������%������ �����%�����������$%������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18365,'lk','login_with_twitter','��������a%��%������������%��%���%��� �����%�����������$%������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18366,'lk','click_to_show_phone_number','���������%��������������% ��������������������� �����[%��������� �����%��%��%������ ���������������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18367,'lk','other_ads_of','�����%���% ��a%��%��%������������%�����������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18368,'lk','store_home','��a%��������������%���%��� �����������%�����������a%���������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18369,'lk','top_selling','�����%���%��������� ��a%��%���%��������#���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18370,'lk','shop_settings','��������� ��������������������������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18371,'lk','visit_shop','��������������������������� ���������%������%��a%���������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18372,'lk','pickup_points','��������������� ��������%�����%��%�����%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18373,'lk','select_pickup_point','�����%��������������� �����[%�����%������������������ ���������%��������������������������������a%���������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18374,'lk','slider_settings','��U%������%���������%��� ��������������������������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18375,'lk','social_media_link','������������ ��������� ���������������������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18376,'lk','facebook','������������������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18377,'lk','twitter','��������a%��%������������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18378,'lk','google','�����������%��%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18379,'lk','new_arrival_products','�����������%��� ��a%���%��������� ��������[%���%��%�����������������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18380,'lk','check_your_order_status','��������������%��� ������%���������%��� �����%���%��������� ������%��%�����[%���%��������������a%���������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18381,'lk','shipping_method','���������������%��� ���������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18382,'lk','shipped_by','�����#������������������������������������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18383,'lk','image','������������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18384,'lk','sub_sub_category','������������ ������������ ��a%������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18385,'lk','inhouse_products','�����%��� ��������[%���%��%�����������������%���','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18386,'lk','forgot_password','��������a%�����������������[%���%������%��� ������%��������������a%��%���������������%��������%��[%?','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18387,'lk','enter_your_email_address_to_recover_your_password','��������������%��� ��������a%������������������%������%��� ��������������������������������� ��������������%��� �����%��#�����#��� ���������%��� �����������a%���%��%������ �����%�����%��%�����a%���������.','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18388,'lk','email_or_phone','�����%��#�����#��� ���������%��� ������%������%������ ���������%��������������%','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18389,'lk','send_password_reset_link','��������a%������������������%��� ��������������������������������� ��������������������� �����#��������������a%���������','2021-02-09 08:14:45','2021-09-20 07:30:02'),(18390,'lk','back_to_login','�����%�����������$%�����a%��������������������� �����%���%���������������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18391,'lk','index','���������%��%������������������','2021-02-09 08:14:46','2021-02-09 08:14:46'),(18392,'lk','download_your_product','��������������%��� ��������[%���%��%������������������ ��������%��a%��%���%�����������a%���������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18393,'lk','option','��a%��%���%������������������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18394,'lk','applied_refund_request','��������#��������[%������������ ������������������������ �����%���%���������������������������%���������%��� ���������%��%������������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18395,'lk','item_has_been_renoved_from_wishlist','��a%��%���%��������������������������������%������%��%���%��� ������%��������������� ������%�����������������% �����������������������%���������������������������������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18396,'lk','bulk_products_upload','��������������� ��������[%���%��%�����������������%��� ��������%��a%������%������%������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18397,'lk','upload_csv','CSV ��� ��������%��a%������%������%������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18398,'lk','create_a_ticket','������%��� �����%������������������������ ������%�����a%��[%�����������a%���������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18399,'lk','tickets','�����%������������������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18400,'lk','ticket_id','�����%������������������ ��������%','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18401,'lk','sending_date','�����#��������������������� �����������%','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18402,'lk','subject','���������%�����%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18403,'lk','view_details','��a%��%������%�����������%��� �����[%���%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18404,'lk','provide_a_detailed_description','��a%��%���%��%��a%��[%��# ��a%��%��%��������������������� ��a%��$%�����������a%���������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18405,'lk','type_your_reply','��������������%��� ��������%���%��������� ������������������������ ���������������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18406,'lk','send_ticket','�����%������������������ �����#���������������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18407,'lk','load_more','��������%��������[%��� ������%������%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18408,'lk','jewelry__watches','��������������%��� ������%������%��������� ��������%�����[%���%�����������%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18409,'lk','filters','��a%�����%�����������[%��#��������%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18410,'lk','contact_address','������������%��������� �����������a%���%��%','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18411,'lk','contact_phone','���������%��������������%������������ ������������%��������� ��������%�����%��������������%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18412,'lk','contact_email','������������%��������� �����%��#�����#��� ���������%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18413,'lk','filter_by','���������%������ ��a%�����%��������������a%���������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18414,'lk','condition','�����%���%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18415,'lk','all_type','�����#��������������� ��a%������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18416,'lk','pay_with_wallet','�����������������������������#��� ������������ ���������%��������������������������%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18417,'lk','select_variation','�����[%���%��������[%������������������ ���������%��������������������������������a%���������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18418,'lk','no_product_added','��������[%���%��%������������ �����������a%��������� ���������%��������������������������a%��%���%������%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18419,'lk','status_has_been_updated_successfully','�����%���%��� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18420,'lk','all_seller_packages','�����#��������������� ��a%��%���%��������#��������[%��%���%��� �����������������������������%���','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18421,'lk','add_new_package','�����������%��� ������������������������ ���������%��������������a%���������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18422,'lk','package_logo','������������������������ ���%���������','2021-02-09 08:14:46','2021-09-20 07:30:02'),(18423,'lk','days','�����[%�����������%���','2021-02-09 08:14:46','2021-02-09 08:14:46'),(18424,'lk','create_new_seller_package','�����������%��� ��a%��%���%��������#��������[%��%���%��� ������������������������ ������%�����a%��[%�����������a%���������','2021-02-09 08:14:47','2021-09-20 07:30:02'),(18425,'lk','package_name','������������������������ ������������%���','2021-02-09 08:14:47','2021-09-20 07:30:02'),(18426,'lk','duration','�����[%���%������','2021-02-09 08:14:47','2021-09-20 07:30:02'),(18427,'lk','validity_in_number_of_days','�����[%�����������%��%��#��� ���������%������%�����������%�����[%������������','2021-02-09 08:14:47','2021-09-20 07:30:02'),(18428,'lk','update_package_information','������������������������ ��������a%���%��������� �����������������������%�����������a%���������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18429,'lk','package_has_been_inserted_successfully','������������������������ ��a%������%������%��%������%�����[%��� ���������%�����������������������������%�����%������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18430,'lk','refund_request','������������������������ �����%���%���������������������������%���������%��� ���������%��%������������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18431,'lk','reason','�����[%���%���������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18432,'lk','label','���%��������%��%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18433,'lk','select_label','���%��������%��%��������� ���������%��������������������������������a%���������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18434,'lk','multiple_select_label','������% ���������%������������������������������������������������ ���%��������%��%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18435,'lk','radio_label','���%��������%������ ���%��������%��%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18436,'lk','pickup_point_orders','�����%��������������� �����[%�����%������������ ������%���������%��������%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18437,'lk','view','�����[%���������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18438,'lk','order_','������%���������%��� #','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18439,'lk','order_status','�����$%��������������� �����%���%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18440,'lk','total_amount','��������������� ������������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18441,'lk','total','��������[%���������������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18442,'lk','delivery_status_has_been_updated','��a%��%�����%��������� �����%���%��� �����������������������%���������������������������������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18443,'lk','payment_status_has_been_updated','��������������� �����%���%��� �����������������������%���������������������������������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18444,'lk','invoice','��a%��%���%�����������������������%������%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18445,'lk','set_refund_time','������������������������ �����%���%��������������%������ ���������%��������������������� ���������%������������ ��������������������a%���������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18446,'lk','set_time_for_sending_refund_request','������������������������ �����%���%���������������������������%�����a%������%��������[%��# ���������%��%������������������ �����#�����������������a%������%��������[%��# ���������%������������ ��������������������a%���������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18447,'lk','set_refund_sticker','������������������������ �����%���%���������������������������%��������� ��U%��������%������������%��� ��������������������a%���������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18448,'lk','sticker','��������������%','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18449,'lk','refund_request_all','�����#��������������������������� �����%���%���������������������������%���������%��� ���������%��%������������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18450,'lk','order_id','������%���������%��� ��������%','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18451,'lk','seller_approval','��a%��%���%��������#��������[%��%���%��� ���������������������%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18452,'lk','admin_approval','�����%���%�����a%��[%��� ���������������������%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18453,'lk','refund_status','������������������������ �����%���%���������������������������%���������%��� �����%���%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18454,'lk','no_refund','������������������������ �����%���%������������������ ���������% �����������%�����[%������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18455,'lk','status_updated_successfully','�����%���%��� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18456,'lk','user_search_report','��������#���%��� ������������%��� ������%��%������������','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18457,'lk','search_by','���������%������ �����������������������%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18458,'lk','number_searches','��������� ������������%��������%���','2021-02-09 08:14:47','2021-09-20 07:30:03'),(18459,'lk','sender','�����#���������������������%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18460,'lk','receiver','���������%���������%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18461,'lk','verification_form_updated_successfully','������%��%�����[%���%��������������� ��������%��a%������ ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18462,'lk','invalid_email_or_password','�����a%���%��[%��# �����%��#�����#��� ���������%��� ������%������%������ ��������a%�����������������[%���%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18463,'lk','all_coupons','�����#��������������� �����������������#��������%���������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18464,'lk','add_new_coupon','�����������%��� �����������������#��������� ���������%��������������a%���������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18465,'lk','coupon_information','�����������������#��� ��������a%���%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18466,'lk','start_date','������������������ �����������%','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18467,'lk','end_date','��������������% �����������%','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18468,'lk','product_base','��������[%���%��%������������ ��������%���������������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18469,'lk','send_newsletter','�����������������%���������%��� �����#��������������a%���������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18470,'lk','mobile_users','���������������%��� ��������#���%��������%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18471,'lk','sms_subject','�����U%�����������������U%��� ���������%�����%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18472,'lk','sms_content','�����U%�����������������U%��� �����%�����%������������������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18473,'lk','all_flash_delas','�����#��������������� �����������%��[%��V%��� ���������%��[%��U%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18474,'lk','create_new_flash_dela','�����������%��� �����������%��[%��V%��� ���������%��[%��a%��� ������%�����a%��[%�����������a%���������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18475,'lk','page_link','������������ ���������������������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18476,'lk','flash_deal_information','��������%��%��[%��V%��� ��������������������� ��������a%���%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18477,'lk','background_color','�����%��#�����#�����% �����%���%������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18478,'lk','0000ff','# 0000ff','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18479,'lk','text_color','������%��� ��a%���������������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18480,'lk','white','��a%�����%�����%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18481,'lk','dark','������%�����%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18482,'lk','choose_products','��������[%���%��%�����������������%��������� ���������%�����a%������������������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18483,'lk','discounts','�����%�����%�����������%�����%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18484,'lk','discount_type','�����%�����%�����������% ��a%������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18485,'lk','twillo_credential','��������a%��%���%��� ������%��������[%��#������%��%�����$%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18486,'lk','twilio_sid','��������a%��%���%��%������ �����%������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18487,'lk','twilio_auth_token','��������a%��%���%��%������ ��������� �����������������#���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18488,'lk','twilio_verify_sid','��������a%��%���%��%������ ������%��%�����[%���%��������������� �����%������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18489,'lk','valid_twillo_number','���������%������%�����������%�����[%������������ ��������a%��%���%��� ���������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18490,'lk','nexmo_credential','��������������U%��������� ������%��������[%��#������%��%�����$%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18491,'lk','nexmo_key','��������������U%��������� ������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18492,'lk','nexmo_secret','��������������U%��������� ���%��������%���������','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18493,'lk','ssl_wireless_credential','�����U%��������U%���������%��� ��a%������%������%�����U%��� ������%��������[%��#������%��%�����$%���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18494,'lk','ssl_sms_api_token','SSL SMS API �����������������#���','2021-02-09 08:14:48','2021-09-20 07:30:03'),(18495,'lk','ssl_sms_sid','�����U%��������U%���������%��� �����U%�����������������U%��� �����U%�����������%','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18496,'lk','ssl_sms_url','SSL SMS URL','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18497,'lk','fast2sms_credential','Fast2SMS ������%��������[%��#������%��%�����$%���','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18498,'lk','auth_key','AUTH KEY','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18499,'lk','route','�����[%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18500,'lk','promotional_use','��a%��%��%������������% ��������#��������[%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18501,'lk','transactional_use','������%��%��a%���%��������������#��� ��������#��������[%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18502,'lk','sender_id','SENDER ��������%','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18503,'lk','nexmo_otp','Nexmo OTP','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18504,'lk','twillo_otp','��������a%��%���%��� OTP','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18505,'lk','ssl_wireless_otp','SSL ��a%������%������%�����U%��� OTP','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18506,'lk','fast2sms_otp','Fast2SMS OTP','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18507,'lk','order_placement','������%���������%��� ��a%������%��� ��a%��[%������������������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18508,'lk','delivery_status_changing_time','���������%��%��a%���%��% �����%���%��� �����[%���%������%��������� ���������%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18509,'lk','paid_status_changing_time','��������������� �����%���%��� �����[%���%������%��������� ���������%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18510,'lk','send_bulk_sms','��������������� �����U%�����������������U%��� �����#��������������a%���������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18511,'lk','all_subscribers','�����#��������������� ��������������[%�����[%���%���%��������%���������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18512,'lk','coupon_information_adding','�����������������#��� ��������a%���%��� ���������%���������������%���','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18513,'lk','coupon_type','�����������������#��� ��a%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18514,'lk','for_products','��������[%���%��%�����������������%���������������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18515,'lk','for_total_orders','��������������� ������%���������%��������%���������������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18516,'lk','add_your_product_base_coupon','��������������%��� ��������[%���%��%������������ ��������%��������������� �����������������#��������� ���������%��������������a%���������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18517,'lk','coupon_code','�����������������#��� ���������%��%������������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18518,'lk','sub_category','������������ ��a%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18519,'lk','add_more','���������%��������� ���������%��������������a%���������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18520,'lk','add_your_cart_base_coupon','��������������%��� ��a%�����������% ��������%��������������� �����������������#��������� ���������%��������������a%���������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18521,'lk','minimum_shopping','���������%������������������������ ��V%��[%�����������%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18522,'lk','maximum_discount_amount','��������%��������������� �����%�����%�����������% ������������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18523,'lk','coupon_information_update','�����������������#��� ��������a%���%��� �����������������������%������������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18524,'lk','please_configure_smtp_setting_to_work_all_email_sending_funtionality','��������a%��������������������� �����%��#�����#��� ���������%��� �����#��������������������� �����#��������������� ������������%��������[%�����������%��������������� ������������%��������������������� SMTP ��������������������� �����%�����%�����������������a%���������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18525,'lk','configure_now','��������������������� �����%�����%�����������������a%���������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18526,'lk','total_published_products','��������������� ��a%�����%��%�����%��������������������� ��������[%���%��%�����������������%���','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18527,'lk','total_sellers_products','��������������� ��a%��%���%��������#��������[%��%���%��������%��� ��������[%���%��%�����������������%���','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18528,'lk','total_admin_products','��������������� �����%���%�����a%��[%��� ��������[%���%��%�����������������%���','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18529,'lk','manage_products','��������[%���%��%�����������������%��� �����%���%�����a%�����%�����������a%���������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18530,'lk','total_product_category','��������������� ��������[%���%��%������������ ��a%������','2021-02-09 08:14:49','2021-09-20 07:30:03'),(18531,'lk','create_category','��a%������������ ������%�����a%��[%�����������a%���������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18532,'lk','total_product_sub_sub_category','��������������� ��������[%���%��%������������ ������������ ������������ ��a%������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18533,'lk','create_sub_sub_category','������������ ������������ ��a%������������ ������%�����a%��[%�����������a%���������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18534,'lk','total_product_sub_category','��������������� ��������[%���%��%������������ ������������ ��a%������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18535,'lk','create_sub_category','������������ ��a%������������ ������%�����a%��[%�����������a%���������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18536,'lk','total_product_brand','��������������� ��������[%���%��%������������ �����%���%��[%������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18537,'lk','create_brand','�����%���%��[%������������ ������%�����a%��[%�����������a%���������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18538,'lk','total_sellers','��������������� ��a%��%���%��������#��������[%��%���%��������%���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18539,'lk','total_approved_sellers','��������������� ���������������������%��%��������������������������� ��a%��%���%��������#��������[%��%���%��������%���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18540,'lk','total_pending_sellers','��������������� ��a%��%���%��������#��������[%��%���%��������%��� �����%���%�����a%��������%���%��� �����%�����%��#���%���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18541,'lk','manage_sellers','��a%��%���%��������#��������[%��%���%��������%��� �����%���%�����a%�����%�����������a%���������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18542,'lk','category_wise_product_sale','��a%������ ��a%��[%���%��%�����[%��� ��������[%���%��%������������ ��a%��%���%��������#���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18543,'lk','sale','��a%��%���%��������#���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18544,'lk','category_wise_product_stock','��a%������ ��a%��[%���%��%�����[%��� ��������[%���%��%������������ ���������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18545,'lk','category_name','��a%������ ������������%���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18546,'lk','stock','���������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18547,'lk','frontend','��������%���%��[%��#�����������#���������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18548,'lk','home_page','��������������������� ������������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18549,'lk','setting','���������������������','2021-02-09 08:14:50','2021-02-09 08:14:50'),(18550,'lk','policy_page','��������%��������� ������������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18551,'lk','general','��������[%������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18552,'lk','click_here','��������������� �����%��%��%������ ���������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18553,'lk','useful_link','��������#�����%�����% ���������������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18554,'lk','activation','������������%������������������������%���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18555,'lk','smtp','SMTP','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18556,'lk','payment_method','��������������������� ���������%��������������������� ���������%���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18557,'lk','social_media','������������ ���������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18558,'lk','business','��a%�����%���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18559,'lk','seller_verification','��a%��%���%��������#��������[%��%���%��� ������%��%�����[%���%���������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18560,'lk','form_setting','��������%��a% ���������������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18561,'lk','language','��������$%��%','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18562,'lk','dashboard','�����[%��V%������������%���������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18563,'lk','pos_system','�����%��������U%��� ���������������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18564,'lk','pos_manager','�����%��������U%��� ���������%��[%��%���%���','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18565,'lk','pos_configuration','�����%��������U%��� ������������������������������','2021-02-09 08:14:50','2021-09-20 07:30:03'),(18566,'lk','products','��������[%���%��%�����������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18567,'lk','add_new_product','�����������%��� ��������[%���%��%������������ ���������%��������������a%���������','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18568,'lk','all_products','�����#��������������� ��������[%���%��%�����������������%���������','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18569,'lk','in_house_products','��c%��a%�����U%��� ��������[%���%��%�����������������%��%���%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18570,'lk','seller_products','��a%��%���%��������#��������[%��%���%��� ��������[%���%��%�����������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18571,'lk','digital_products','�����%�����%������������%��� ��������[%���%��%�����������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18572,'lk','bulk_import','��������������� ������%��������������������%','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18573,'lk','bulk_export','��������������� ������%������%�����������%','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18574,'lk','category','��a%������','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18575,'lk','subcategory','�����������������������%���%��%��a%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18576,'lk','sub_subcategory','������������ �����������������������%���%��%��a%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18577,'lk','brand','�����%���%��[%������������','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18578,'lk','attribute','���������������','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18579,'lk','product_reviews','��������[%���%��%������������ ��������%���������������%��������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18580,'lk','sales','��a%��%���%��������#���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18581,'lk','all_orders','�����#��������������� ������%���������%��������%���������','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18582,'lk','inhouse_orders','�����%�����%��� ������%���������%��������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18583,'lk','seller_orders','��a%��%���%��������#��������[%��%���%��� ��������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18584,'lk','pickup_point_order','�����%������-��������� �����[%�����%������������ ������%���������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18585,'lk','refunds','������������������������ �����%���%��������������%������ ������%��������%���%������','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18586,'lk','refund_requests','������������������������ �����%���%���������������������������%���������%��� ���������%��%�����������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18587,'lk','approved_refund','���������������������%��%��������������������������� ������������������������ �����%���%������������������ ���������%���������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18588,'lk','refund_configuration','������������������������ �����%���%���������������������������%���������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18589,'lk','customers','��a%��[%�����%�����������������[%��%���%��������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18590,'lk','customer_list','��a%��[%�����%�����������������[%��%���%��� ��������������%������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18591,'lk','classified_products','��a%������������������������������������������������ ��������[%���%��%�����������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18592,'lk','classified_packages','��a%������������������������������������������������ �����������������������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18593,'lk','sellers','��a%��%���%��������#��������[%��%���%��������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18594,'lk','all_seller','�����#��������������� ��a%��%���%��������#��������[%��%���%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18595,'lk','payouts','������������ ���������%���������������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18596,'lk','payout_requests','������������ ���������%��������������������� ���������%��%�����������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18597,'lk','seller_commission','��a%��%���%��������#��������[%��%���%��� ������������������','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18598,'lk','seller_packages','��a%��%���%��������#��������[%��%���%��� �����������������������������%���','2021-02-09 08:14:51','2021-09-20 07:30:03'),(18599,'lk','seller_verification_form','��a%��%���%��������#��������[%��%���%��� ������%��%�����[%���%��������������� ��������%��a%������','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18600,'lk','reports','������%��%�����������������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18601,'lk','in_house_product_sale','��a%��������������� ��������[%���%��%������������ ��a%��%���%��������#��������%���%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18602,'lk','seller_products_sale','��a%��%���%��������#��������[%��%���%��� ��������[%���%��%�����������������%��� ��a%��%���%��������#���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18603,'lk','products_stock','��������[%���%��%�����������������%��� ���������������','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18604,'lk','products_wishlist','��������[%���%��%�����������������%��� ��a%��%���%��������������������������������%������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18605,'lk','user_searches','��������#���%��� ������������%��������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18606,'lk','marketing','������������������������������������������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18607,'lk','flash_deals','��������%��%��[%��V%��� ��������������������������������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18608,'lk','newsletters','�����������������%���������%��������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18609,'lk','bulk_sms','��������������� �����U%���.���������.�����U%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18610,'lk','subscribers','��������������[%�����[%���%���%��������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18611,'lk','coupon','�����������������#���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18612,'lk','support','���������%��a%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18613,'lk','ticket','�����%������������������','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18614,'lk','product_queries','��������[%���%��%������������ ��a%��%��#��a%���%��������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18615,'lk','website_setup','��a%���%��������������% ���������������������','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18616,'lk','header','������%���������������','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18617,'lk','footer','��������%���������������%��%������������','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18618,'lk','pages','�����������������������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18619,'lk','appearance','���������%������%������','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18620,'lk','setup__configurations','�����������a%��� ������%������%��������� �����%�����%��������a%��������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18621,'lk','general_settings','��������[%������ ��������������������������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18622,'lk','features_activation','�����������������������%��� ������������%������������������������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18623,'lk','languages','��������$%��%�����%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18624,'lk','currency','�����[%������','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18625,'lk','pickup_point','��������������� ��������%�����%��%','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18626,'lk','smtp_settings','SMTP ��������������������������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18627,'lk','payment_methods','������������ ���������%��������������������� ���������%��������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18628,'lk','file_system_configuration','������������������ ���������%��������� �����%�����%��������a%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18629,'lk','social_media_logins','������������ ��������� �����%�����������$%�����a%��������%���','2021-02-09 08:14:52','2021-09-20 07:30:03'),(18630,'lk','analytics_tools','��������������������[%��������a%��� ������%�����a%��%�����%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18631,'lk','facebook_chat','��������U%��������������� ������%������������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18632,'lk','google_recaptcha','�����������%��%��� reCAPTCHA','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18633,'lk','shipping_configuration','���������������%��� ������������������������������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18634,'lk','shipping_countries','���������������%��� �����[%�����������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18635,'lk','affiliate_system','��������������������� ���������������������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18636,'lk','affiliate_registration_form','��������������������� ��������%��a%��� ��������%��a%������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18637,'lk','affiliate_configurations','��������������������� �����������������������������������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18638,'lk','affiliate_users','��������������������� ��������#���%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18639,'lk','referral_users','������%��%���������������%��� ��������#���%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18640,'lk','affiliate_withdraw_requests','�����%���%������������������ ���������%���������%��� ���������%��%�����������������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18641,'lk','offline_payment_system','���������������%�����#��� ��������������� ���������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18642,'lk','manual_payment_methods','������������������ ���������%��������������������� ���������%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18643,'lk','offline_wallet_recharge','���������������%�����#��� ��a%��[%���%������ ���%��������[%���%���������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18644,'lk','offline_customer_package_payments','���������������%�����#��� ��a%��[%�����%�����������������[%��%���%��� ������������������������ �����������������������#��a%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18645,'lk','offline_seller_package_payments','���������������%�����#��� ��a%��%���%��������#��������[%��%���%��� ������������������������ �����������������������#��a%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18646,'lk','paytm_payment_gateway','Paytm �����������������������#��a%��� ��������$%�����a%��[%�����%���%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18647,'lk','set_paytm_credentials','Paytm ������%��������[%��#������%��%�����$%��������%��� ��������������������a%���������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18648,'lk','club_point_system','�����%��%������ �����[%�����%������������ �����%��U%������������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18649,'lk','club_point_configurations','�����%��%������ �����[%�����%������������ �����%�����%��������a%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18650,'lk','set_product_point','��������[%���%��%������������ ��������%�����%��%������ ��������������������a%���������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18651,'lk','user_points','��������#���%��� ��������%�����%��%�����%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18652,'lk','otp_system','OTP ���������������������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18653,'lk','otp_configurations','OTP �����%�����%��������a%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18654,'lk','set_otp_credentials','OTP ������%��������[%��#������%��%�����$%��������%��� ��������������������a%���������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18655,'lk','staffs','��������%�����[%��%���%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18656,'lk','all_staffs','�����#��������������� �����$%��%������%��������%���������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18657,'lk','staff_permissions','��������%�����[%��%���%��������%��� �����#�����������%�����%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18658,'lk','addon_manager','��������[%��#��� ���������%��[%��%���%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18659,'lk','browse_website','��a%���%��������������%������������ ������%��[%��a%������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18660,'lk','pos','�����%��������U%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18661,'lk','notifications','������%��%��a%��%�����������������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18662,'lk','new_orders','�����������%��� ������%���������%��������%���','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18663,'lk','userimage','��������#���%��� ������������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18664,'lk','profile','�����������a%��%��a%���%������','2021-02-09 08:14:53','2021-09-20 07:30:03'),(18665,'lk','logout','��a%�����%��%���������%���','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18666,'lk','page_not_found','������������������ �����%�����������������a%��%���%������%���!','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18667,'lk','the_page_you_are_looking_for_has_not_been_found_on_our_server','�����������������%��� ������������������ ������������������ ��������������%��� ��������a%��������������������%���%��� �����[%�����������������a%��%���%������%���.','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18668,'lk','registration','��������%��a%���','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18669,'lk','i_am_shopping_for','�����[%��#��� ��V%��[%�����������%������ �����������������%���%�����#��� ...','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18670,'lk','compare','��������������%���������','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18671,'lk','wishlist','��a%��%���%��������������������������������%������%���','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18672,'lk','cart','��a%�����������%','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18673,'lk','your_cart_is_empty','��������������%��� ��a%�����������% �����[%���%��%�����[%��� �����%�����%������','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18674,'lk','categories','��a%�����������%���','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18675,'lk','see_all','�����#��������������������������� �����[%���%���','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18676,'lk','seller_policy','��a%��%���%��������#��������[%��%���%��� ��������%���������','2021-02-09 08:15:29','2021-09-20 07:30:03'),(18677,'lk','return_policy','��a%���%�����a%��[%������ ��������%���������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18678,'lk','support_policy','���������%��a%��� ��������%���������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18679,'lk','privacy_policy','�����#��%���������%��%������������ ��������%���������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18680,'lk','your_email_address','��������������%��� �����%��#�����#��� ���������%��� �����������a%���%��%','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18681,'lk','subscribe','��������%��a%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18682,'lk','contact_info','��������[%������%��������� ��������a%���%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18683,'lk','address','�����������a%���%��%','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18684,'lk','phone','���������%��������������%','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18685,'lk','email','�����%��#�����#��� ���������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18686,'lk','login','�����%�����������$%������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18687,'lk','my_account','�����#��� ������������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18688,'lk','order_history','�����$%��������������� ��a%���%���%��[%���%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18689,'lk','my_wishlist','�����#������ ��a%��%���%��������������������������������%������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18690,'lk','track_order','�����[%�����������%���%��� ��������[%���%���������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18691,'lk','be_an_affiliate_partner','������%��� ������������ ��������������[%��%��%�����[%��� ������%��������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18692,'lk','be_a_seller','��a%��%���%��������#��������[%��%���%��[%��� ������%��������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18693,'lk','apply_now','�����������������[%��$%��������� ��a%��%��������������������%�����������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18694,'lk','confirmation','������%��������%���������������������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18695,'lk','delete_confirmation_message','������%��������%���������������������������%��� �����������������%������ ������������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18696,'lk','cancel','���%������������������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18697,'lk','delete','�����$%��%','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18698,'lk','item_has_been_added_to_compare_list','��������������%������%��� ��������������%��������a%������%��������� ������%�����������������% ���������%�����������������������������������%�����%������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18699,'lk','please_login_first','��������a%��������������������� ������������%��%���%��� �����%�����������$%������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18700,'lk','total_earnings_from','��������������� ��a%���%�����a%��[%������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18701,'lk','client_subscription','��a%��[%�����%�����������������[%��%���%��� ��������������[%','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18702,'lk','product_category','��������[%���%��%������������ ��a%������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18703,'lk','product_sub_sub_category','��������[%���%��%������������ ������������ ������������ ��a%������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18704,'lk','product_sub_category','��������[%���%��%������������ ������������ ��a%������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18705,'lk','product_brand','��������[%���%��%������������ �����%���%��[%������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18706,'lk','top_client_packages','�����%���%��������� �����%��%��������#��������� �����������������������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18707,'lk','top_freelancer_packages','�����%���%��������� ������������%������%��[%��#�����U%���%��� �����������������������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18708,'lk','number_of_sale','��a%��%���%��������#��� ��������������%������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18709,'lk','number_of_stock','��������������� ��������������%������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18710,'lk','top_10_products','�����%���%��������� 10 ��������[%���%��%�����������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18711,'lk','top_12_products','�����%���%��������� 12 ��������[%���%��%�����������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18712,'lk','admin_can_not_be_a_seller','�����%���%�����a%��[%�����% ��a%��%���%��������#��������[%��%���%��[%��� ������%������������ �����������%�����[%������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18713,'lk','filter_by_rating','��������%������������������ ���������%������ ��a%�����%��������������a%���������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18714,'lk','published_reviews_updated_successfully','��a%�����%��%�����%��������������������� ��������%���������������%��������%��� ��a%������%������%��%������%�����[%��� �����������������������%�����������������������������#','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18715,'lk','refund_sticker_has_been_updated_successfully','������������������������ �����%���%���������������������������%��������� ��U%��������%������������%��� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18716,'lk','edit_product','��������[%���%��%������������������ �����%���%���������������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18717,'lk','meta_images','�����������������[% �����������������%���','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18718,'lk','update_product','��������[%���%��%������������ �����������������������%�����������a%���������','2021-02-09 08:15:30','2021-09-20 07:30:03'),(18719,'lk','product_has_been_deleted_successfully','��������[%���%��%������������ ��a%������%������%��%������%�����[%��� ���������������������������������������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18720,'lk','your_profile_has_been_updated_successfully','��������������%��� �����������a%��%��a%���%������ ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������!','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18721,'lk','upload_limit_has_been_reached_please_upgrade_your_package','��������%��a%������%������% ��a%���%������������ �����������������������������������%�����%������. ��������������%��� ������������������������ ��������������������������������a%���������.','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18722,'lk','add_your_product','��������������%��� ��������[%���%��%������������������ ���������%��������������a%���������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18723,'lk','select_a_category','������%��� ��a%������������%��[%��a%��� ���������%���������������������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18724,'lk','select_a_brand','������%��� �����%���%��[%������������������ ���������%��������������������������������a%���������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18725,'lk','product_unit','��������[%���%��%������������ ������%������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18726,'lk','minimum_qty','���������%������������������������ Qty.','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18727,'lk','product_tag','��������[%���%��%������������ ���������%��%���������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18728,'lk','type__hit_enter','������������������������ ������������������ �����%�����%��%�����a%���������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18729,'lk','videos','��a%��������%�����������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18730,'lk','video_from','��a%��������%������ ������%���������������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18731,'lk','video_url','��a%��������%������ URL','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18732,'lk','customer_choice','��a%��[%�����%�����������������[%��%���%��� ���������%�����a%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18733,'lk','pdf','PDF','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18734,'lk','choose_pdf','PDF ��������� ���������%�����a%������������������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18735,'lk','select_category','�����%���%��%��a%��� ���������%�����a%��� ���������������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18736,'lk','target_category','������%������������ ��a%������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18737,'lk','subsubcategory','�����������������������%���%��%��a%���','2021-02-09 08:15:31','2021-02-09 08:15:31'),(18738,'lk','search_category','������������%��� ��a%������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18739,'lk','search_subcategory','�����������������������%���%��%��a%��������� �����������������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18740,'lk','search_subsubcategory','������������ ������������ ��a%������������������ �����������������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18741,'lk','update_your_product','��������������%��� ��������[%���%��%������������������ �����������������������%�����������a%���������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18742,'lk','product_has_been_updated_successfully','��������[%���%��%������������ ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18743,'lk','add_your_digital_product','��������������%��� �����%�����%������������%��� ��������[%���%��%������������������ ���������%��������������a%���������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18744,'lk','active_ecommerce_cms_update_process','������������%��%���%��� ��������������a%��$%��% CMS �����������������������%������������ ������������%������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18745,'lk','codecanyon_purchase_code','�����������������#��%�����#��� ��������%���������������%��� ���������%��%������������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18746,'lk','database_name','������%��a%��������������% ������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18747,'lk','database_username','������%��a%��������������% ��������#���%���������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18748,'lk','database_password','������%��a%��������������% ��������a%������������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18749,'lk','database_hostname','������%��a%��������������% ��c%�����U%��������� ������������%���','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18750,'lk','update_now','�����������������[%��$%��������� ���������������������������������','2021-02-09 08:15:31','2021-09-20 07:30:03'),(18751,'lk','congratulations','��a%��[%��$%��������������������������%���','2021-02-09 08:15:31','2021-09-20 07:30:04'),(18752,'lk','you_have_successfully_completed_the_updating_process_please_login_to_continue','�����������������������%������������%��� ������������%������������%��������� ��a%������%������%��%������%�����[%��� �����������%��������������a%��%���������������%��������%���. ������������% �����%�����������$%������','2021-02-09 08:15:31','2021-09-20 07:30:04'),(18753,'lk','go_to_home','��a%��������������%���%��������� ��������[%','2021-02-09 08:15:31','2021-09-20 07:30:04'),(18754,'lk','login_to_admin_panel','�����%���%�����a%��[%��� ��������$%�����a%��������������� �����%�����������$%������','2021-02-09 08:15:31','2021-09-20 07:30:04'),(18755,'lk','s3_file_system_credentials','�����U%��� 3 ������������������ ���������%��������� ������%��������[%��#������%��%�����$%��������%���','2021-02-09 08:15:31','2021-09-20 07:30:04'),(18756,'lk','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 08:15:31','2021-09-20 07:30:04'),(18757,'lk','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 08:15:31','2021-09-20 07:30:04'),(18758,'lk','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18759,'lk','aws_bucket','AWS_BUCKET','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18760,'lk','aws_url','AWS_URL','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18761,'lk','s3_file_system_activation','�����U%��� 3 ������������������ ���������%��������� ������������%������������������������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18762,'lk','your_phone_number','��������������%��� ��������[%���%��������������% ���������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18763,'lk','zip_file','�����%������ ������������������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18764,'lk','install','�����%���%�����a%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18765,'lk','this_version_is_not_capable_of_installing_addons_please_update','������������ ��������%������������ Addons ��� �����%���%�����a%��������� �����%���%��#��� ������%������%���, ��������a%��������������������� �����������������������%�����������a%���������.','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18766,'lk','search_in_menu','��������#�����a%��%���%��� �����������������������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18767,'lk','uploaded_files','��������%��a%������%������%��%��� �����������������������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18768,'lk','shipping_cities','���������������%��� ���������%�����������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18769,'lk','system','���������������������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18770,'lk','server_status','��������a%��������� �����%���%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18771,'lk','nothing_found','�����������a%��������� �����%�����������������a%��%���%������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18772,'lk','parent_category','���������%������%������%��� ��a%������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18773,'lk','level','�����%���%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18774,'lk','category_information','��a%������ ��������a%���%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18775,'lk','translatable','��������$%��%������������%�����������������������������%���������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18776,'lk','no_parent','���������%������%������%��� ������%������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18777,'lk','physical','���������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18778,'lk','digital','�����%�����%������������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18779,'lk','200x200','200x200','2021-02-09 08:15:32','2021-02-09 08:15:32'),(18780,'lk','32x32','32x32','2021-02-09 08:15:32','2021-02-09 08:15:32'),(18781,'lk','search_your_files','��������������%��� �����������������������%��������� �����������������������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18782,'lk','category_has_been_updated_successfully','��a%������ ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18783,'lk','all_uploaded_files','��������%��a%������%������%��%��� �����������������������%��� �����#���������������������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18784,'lk','upload_new_file','�����������%��� ������������������������ ��������%��a%������%������%������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18785,'lk','all_files','�����#��������������� ��������[%�����������������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18786,'lk','search','������������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18787,'lk','details_info','��a%��%��a%���%�����������%��� ��������a%���%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18788,'lk','copy_link','��������������������� ���������%��������������������a%���������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18789,'lk','are_you_sure_to_delete_this_file','������������ ������������������ ��������������������a%������ ������%��������%?','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18790,'lk','file_info','������������������ ��������a%���%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18791,'lk','link_copied_to_clipboard','��������������������� �����%��%��%���������������%��������������������� ���������%������������������������������������������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18792,'lk','oops_unable_to_copy','������������������������, ���������%������������������ �����������%�����a%��%���%������%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18793,'lk','file_deleted_successfully','������������������ ��a%������%������%��%������%�����[%��� ���������������������������������������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18794,'lk','add_new_brand','�����������%��� �����%���%��[%������������������ ���������%��������������a%���������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18795,'lk','120x80','120x80','2021-02-09 08:15:32','2021-02-09 08:15:32'),(18796,'lk','brand_information','�����%���%��[%������������ ��������a%���%���','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18797,'lk','brand_has_been_updated_successfully','�����%���%��[%������������ ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:15:32','2021-09-20 07:30:04'),(18798,'lk','brand_has_been_deleted_successfully','�����%���%��[%������������ ��a%������%������%��%������%�����[%��� ���������������������������������������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18799,'lk','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','��������� ������������%��������������������� ��������#�����������������������������������������%���%������. ���������������������%��� ������������ ��������[%���%��%������������������ ��������������������%�����%��������������������������%��� ���������%��������%��� �����%�����%��%�����a%���������.','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18800,'lk','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','������������ �����������������%��� ��������[%���%��%������������ ��a%��%��a%���%�����������%��� ������������ ���������%���%��%�����%���%��� ���������%��%������������. 600x600 �����%��a%��%���%��[%��# �����������������%��������� ��������#�����������������������a%���������.','2021-02-09 08:15:33','2021-09-20 07:30: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 �����%��a%��%���%��[%��# ������������������������ ��������#�����������������������a%���������. ��������������%��� �����������������%��#��� �����������������%��� ���������%�����%��������� ���������%������%��% �����%���% ��a%������%������%��� ������������������ ��a%��������������%���%��������������%���, �����#�����#��%���%��� �����[%�����������%��� ��������� ��������%���%��%��%��������� ������%�����a%������%��� �����[%�����#�����������%��%���%��� �����%���% ��a%��%��%��%�����������������%��� ��������������������� ��a%��������������%�����%���%������������������.','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18802,'lk','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','������������������%��� �����%��a%������%��� ������%������%��[%������%��� ������%��%�����[%��# ��������������������������� ��������#�����������������������a%���������. ���������%��������%��� ��������������� ��������������������� / ��������������������%��������������������������� ���������������%��������� ���������%��%������������������������ ��������#��������������������� ��a%��������������[%������.','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18803,'lk','save_product','��������[%���%��%������������ �����������%�����������a%���������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18804,'lk','product_has_been_inserted_successfully','��������[%���%��%������������ ��a%������%������%��%������%�����[%��� ���������%������������������������������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18805,'lk','something_went_wrong','�����������[% �����a%���%��� ��������������������a%��%���������������!','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18806,'lk','sorry_for_the_inconvenience_but_were_working_on_it','�����%���%��������������%���%��������� �����#�����#��%�����������a%���������, �����#��[%���%��� �����[%�����������%��� ��������������� �����������������%���%���������.','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18807,'lk','error_code','�����%��$%��� ���������%��%������������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18808,'lk','please_configure_smtp_setting_to_work_all_email_sending_functionality','�����%��#�����#��� ���������%��� �����#��������������������� �����#��������������� ������������%��������[%�����������%��������������� ������������%��������������������� SMTP ��������������������� �����%�����%�����������������a%���������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18809,'lk','order','������%���������%���','2021-02-09 08:15:33','2021-09-20 07:30: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 ��� ������%��[%������%��%��������� ��������������%��%��������� ���������%������������ �����%��a%��� ��������#���%��� ���������%������ �����%�����%������. ��a%�����a%�����a%������%��� �����[%�����#�����������%��������������� ��������%���%��%��%��������������������������%��� ��a%�����������%���%��� ������������ ������%������%��������� ��a%���%������ �����������������������%���%��%���%��������������� ��������%���%��� ��������������� ��a%��������������%�����%���%������������������. ��������#���%��� ��a%�����%��a%���������������������%��������� ��������#��� ������������ ��a%��%��V%��������������%��� �����#�����%���%��� ��������%�����%��������������%���.','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18811,'lk','home_banner_3_max_3','��������������������� ��������#���%��� 3 (��������%��������������������� 3)','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18812,'lk','add_new_seller','�����������%��� ��a%��%���%��������#��������[%��%���%��������� ���������%��������������a%���������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18813,'lk','filter_by_approval','���������������������%��� ���������%������ ��a%�����%��������������a%���������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18814,'lk','nonapproved','���������������������%��%�����������������������[%���������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18815,'lk','type_name_or_email__enter','������������%��� ������%������%������ �����%��#�����#��� ���������%��� ������������������������ ������������������ �����%�����%��%�����a%���������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18816,'lk','due_to_seller','��a%��%���%��������#��������[%��%���%��� �����[%���%��������[%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18817,'lk','log_in_as_this_seller','������������ ��a%��%���%��������#��������[%��%���%��[%��� �����%�����������$%������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18818,'lk','go_to_payment','�����������������������#��a%��������������������� ���������%������%��a%���������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18819,'lk','ban_this_seller','������������ ��a%��%���%��������#��������[%��%���%��� ��������� �����������������������������%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18820,'lk','do_you_really_want_to_ban_this_seller','������������ ��a%��%���%��������#��������[%��%���%��� �����������������%��� ��������������������%���%��� ��������� ��������������� ��a%��%���%��������������������%���%������%��������%��[%?','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18821,'lk','proceed','������������%��a%���������!','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18822,'lk','approved_sellers_updated_successfully','���������������������%��%��������������������������� ��a%��%���%��������#��������[%��%���%��������%��� ��a%������%������%��%������%�����[%��� �����������������������%�����������������������������#���%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18823,'lk','seller_has_been_deleted_successfully','��a%��%���%��������#��������[%��%���%��� ��a%������%������%��%������%�����[%��� �����������������������������������[%���%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18824,'lk','seller_information','��a%��%���%��������#��������[%��%���%��� ��������a%���%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18825,'lk','seller_has_been_inserted_successfully','��a%��%���%��������#��������[%��%���%��� ��a%������%������%��%������%�����[%��� ���������%��������������������������[%���%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18826,'lk','email_already_exists','�����%��#�����#��� ���������%��� ��������#��������� ��������%��a%��%���%��� ������%��������������%���%������!','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18827,'lk','verify_your_email_address','��������������%��� �����%��#�����#��� ���������%��� �����������a%���%��%������ ������%��%�����[%���%��������������a%���������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18828,'lk','before_proceeding_please_check_your_email_for_a_verification_link','������������%�����a%������%��������� ��������#���, ������%��%�����[%���%��������������� ��������������������������������[%��� ��������������%��� �����%��#�����#��� ���������%��������� ������%��%�����[%���%��������������a%���������.','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18829,'lk','if_you_did_not_receive_the_email','�����������������%��� �����%��#�����#��� ���������%��� ���������%��a%��%���%������%��� �����#������%��[%���%���.','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18830,'lk','click_here_to_request_another','�����#�����#�����#������%��������� ���������% ��������������� �����%��%��%������ ���������������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18831,'lk','email_verification','�����%��#�����#��� ���������%��� ������%��%�����[%���%���������������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18832,'lk','email_verification__','�����%��#�����#��� ���������%��� ������%��%�����[%���%��������������� -','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18833,'lk','https_activation','HTTPS ������������%������������������������%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18834,'lk','maintenance_mode','������%��[%������%��%������������ ���������%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18835,'lk','maintenance_mode_activation','������%��[%������%��%������������ ���������%��� ������������%������������������������%���','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18836,'lk','classified_product_activate','��a%������������������������������������������������ ��������[%���%��%������������ ������������%������������������������','2021-02-09 08:15:33','2021-09-20 07:30:04'),(18837,'lk','classified_product','��a%������������������������������������������������ ��������[%���%��%������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18838,'lk','business_related','��a%�����%��������� ������������%��������[%��#������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18839,'lk','vendor_system_activation','��a%��%���%��������#��������[%��%���%��� ��������%��#��% ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18840,'lk','wallet_system_activation','Wallet ��������%��#��% ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18841,'lk','coupon_system_activation','�����������������#��� ��������%��#��% ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18842,'lk','pickup_point_activation','��������������� ��������%�����%��% ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18843,'lk','conversation_activation','������%��������[%������%��� ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18844,'lk','guest_checkout_activation','��a%��%���%��������������%��#���%��� �����������������������%������������ ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18845,'lk','categorybased_commission','��a%������ ��������%��������������������%���%��[%��# ������������������','2021-02-09 08:15:34','2021-09-20 07:30: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','������������ ��a%��%���%������������������������ ������������%�����������������������%��� �����%���%������ ��a%��%���%��������#��������[%��%���%��� ��������%��V%��#��� ���������������������������������������, ���������%��������� �����a%�����a%������%��� ��a%�����������%���%��������� �����������������%��� ��������%��V%��#��� ������������������ ��a%���������������������, ������%������%�����������#��%���%��� �����%���%�����a%��[%�����%������������ ������������ ��������%��V%��#��������� �����%�����������������[%������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18847,'lk','set_commisssion_now','��������%��V%��#��� ��������������������� ��������������������a%���������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18848,'lk','payment_related','��������������������� ������������%��������[%��#','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18849,'lk','paypal_payment_activation','�����������[%���%��� �����������������������#��a%��� ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18850,'lk','you_need_to_configure_paypal_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� �����������[%���%��� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18851,'lk','stripe_payment_activation','������������ �����������������������#��a%��� ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18852,'lk','sslcommerz_activation','SSlCommerz ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18853,'lk','instamojo_payment_activation','Instamojo �����������������������#��a%��� ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18854,'lk','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� �����#�����U%��������[%������������ ��������������������������� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18855,'lk','razor_pay_activation','���%�����U%���%��� ��������%��� ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18856,'lk','you_need_to_configure_razor_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� ���%�����U%���%��� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18857,'lk','paystack_activation','PayStack ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18858,'lk','you_need_to_configure_paystack_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� PayStack ��� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18859,'lk','voguepay_activation','��a%��������� ������ ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18860,'lk','you_need_to_configure_voguepay_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� ��a%�����������������a%��� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18861,'lk','payhere_activation','Payhere ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18862,'lk','ngenius_activation','Ngenius ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18863,'lk','you_need_to_configure_ngenius_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� Ngenius ��� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18864,'lk','iyzico_activation','��������%������ ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18865,'lk','you_need_to_configure_iyzico_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� iyzico ��� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18866,'lk','bkash_activation','Bkash ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18867,'lk','you_need_to_configure_bkash_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� bkash ��� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18868,'lk','nagad_activation','�����[%��������� ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18869,'lk','you_need_to_configure_nagad_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� �����[%��������������� ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18870,'lk','cash_payment_activation','������ �����������������������#��a%��� ������������%������������������������%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18871,'lk','social_media_login','������������ ��������� �����%�����������$%�����a%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18872,'lk','facebook_login','��������U%��������������� �����%�����������$%�����a%���','2021-02-09 08:15:34','2021-09-20 07:30:04'),(18873,'lk','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� ��������U%��������������� �����%��%������������������ ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18874,'lk','google_login','Google �����%�����������$%�����a%���','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18875,'lk','you_need_to_configure_google_client_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� Google �����%��%������������������ ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18876,'lk','twitter_login','��������a%��%������������%��� �����%�����������$%�����a%���','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18877,'lk','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','������������ ������������������������ ��������������� �����������������%��� ��������a%��%������������%��� �����%��%������������������ ������%��%�����[%��� �����%�����%��������������� ��a%���������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18878,'lk','shop_logo','��������� ���%���������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18879,'lk','shop_address','��������� �����������a%���%��%','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18880,'lk','banner_settings','��������#���%��� ��������������������������%���','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18881,'lk','banners','��������[%�����������%���','2021-02-09 08:15:35','2021-09-20 07:30: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','�����[%�����������%��� ���������%������������ �����������%��#��������%�����#��� �����%���%��������������#��������������������#��� ��������������������������������������� ��a%��������������%�����%���%������������������. �����%���% �����[%�����#�����������%��%���%���, ��������#���%��%��#��� ������%������������%������������ ���������% ��a%���%�����������������������[%��� ��a%���������������������������%��[%������.','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18883,'lk','insert_link_with_https_','Https ��������#��� ��������������������������� ���������%��������a%���������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18884,'lk','your_shop_has_been_updated_successfully','��������������%��� ��������� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������!','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18885,'lk','search_result_for_','�����������[%��# ������������%��� �����������%��a%���','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18886,'lk','brand_has_been_inserted_successfully','�����%���%��[%������������ ��a%������%������%��%������%�����[%��� ���������%�����������������������������%�����%������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18887,'lk','about','������%������%��%','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18888,'lk','payout_info','������������ ���������%��������������������� ��������a%���%���','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18889,'lk','bank_acc_name','��a%�����������% ��������� ������������%���','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18890,'lk','bank_acc_number','��a%�����������% ��������� ���������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18891,'lk','total_products','��������������� ��������[%���%��%�����������������%���','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18892,'lk','total_sold_amount','��������������� ��a%��%���%������������������������ ������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18893,'lk','wallet_balance','Wallet ������%���������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18894,'lk','cookies_agreement','�����������������������%��� ���������������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18895,'lk','cookies_agreement_text','�����������������������%��� ��������������������� ������%���','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18896,'lk','show_cookies_agreement','�����������������������%��� ��������������������������������������� �����[%�����������a%��[%?','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18897,'lk','custom_script','�����#��%��������������#��� ��U%��������%���%��%������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18898,'lk','header_custom_script__before_head','������%��������������� �����#��%��������������#��� ��U%��������%���%��%������������ - ��������#��� </ head>','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18899,'lk','write_script_with_script_tag','<script> ���������%��%���������������%������%��������#��� ��U%��������%���%��%������������ �����$%��������a%���������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18900,'lk','footer_custom_script__before_body','��������%���������������%��%������������ �����#��%��������������#��� ��U%��������%���%��%������������ - ��������#��� </ body>','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18901,'lk','category_has_been_inserted_successfully','��a%������ ��a%������%������%��%������%�����[%��� ���������%������������������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18902,'lk','all_flash_deals','�����#��������������� �����������%��[%��V%��� ��������������������������������%���������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18903,'lk','create_new_flash_deal','�����������%��� ��������%��%��[%��V%��� ��������������������������������� ������%�����a%��[%�����������a%���������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18904,'lk','ffffff','#FFFFFF','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18905,'lk','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','��������%��%��[%��V%��� ��������������������� ��a%��%��a%���%�����������%��� �����������������������%���%��� ������������ ������������ �����a%���%��� ��������#���%��[%��� �����[%��������������������������������%�����%������.','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18906,'lk','flash_deal_has_been_inserted_successfully','��������%��%��[%��V%��� ��������������������������� ��a%������%������%��%������%�����[%��� ���������%������������������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18907,'lk','flash_deal_status_updated_successfully','��������%��%��[%��V%��� ��������������������� �����%���%��� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18908,'lk','flash_deal_has_been_updated_successfully','��������%��%��[%��V%��� ��������������������������� ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18909,'lk','update_language_info','��������$%��%������ ��������a%���%��������� �����������������������%�����������a%���������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18910,'lk','language_has_been_updated_successfully','��������$%��% ��a%������%������%��%������%�����[%��� �����������������������%���������������������������������','2021-02-09 08:15:35','2021-09-20 07:30:04'),(18911,'lk','type_key__enter','��a%��%������������������ ������������������������ ������������������ �����%�����%��%�����a%���������','2021-02-09 08:15:36','2021-09-20 07:30:04'),(18912,'lk','translations_updated_for_','��������$%��%������������%��������������������%��� �����������������������%�����������������������������#','2021-02-09 08:15:36','2021-09-20 07:30:04'),(18913,'lk','language_has_been_inserted_successfully','��������$%��% ��a%������%������%��%������%�����[%��� ���������%�����������������������������%�����%������','2021-02-09 08:15:36','2021-09-20 07:30:04'),(18914,'ke','all_category','Jamii zote','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18915,'ke','all','Wote','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18916,'ke','flash_sale','Uuzaji wa Flash','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18917,'ke','view_more','Ona zaidi','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18918,'ke','add_to_wishlist','Ongeza kwenye orodha ya matamanio','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18919,'ke','add_to_compare','Ongeza kulinganisha','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18920,'ke','add_to_cart','Ongeza kwenye gari','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18921,'ke','club_point','Kiwango cha Klabu','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18922,'ke','classified_ads','Matangazo yaliyopangwa','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18923,'ke','used','Imetumika','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18924,'ke','top_10_categories','Jamii 10 za juu','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18925,'ke','view_all_categories','Tazama Jamii Zote','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18926,'ke','top_10_brands','Bidhaa 10 za juu','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18927,'ke','view_all_brands','Angalia Bidhaa Zote','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18928,'ke','terms__conditions','Sheria na Masharti','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18929,'ke','best_selling','Mauzo mazuri','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18930,'ke','top_20','Juu 20','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18931,'ke','featured_products','Bidhaa Zilizoangaziwa','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18932,'ke','best_sellers','Wauzaji bora','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18933,'ke','visit_store','Tembelea Duka','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18934,'ke','popular_suggestions','Mapendekezo Maarufu','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18935,'ke','category_suggestions','Mapendekezo ya Jamii','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18936,'ke','automobile__motorcycle','Magari na Pikipiki','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18937,'ke','price_range','Kiwango cha bei','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18938,'ke','filter_by_color','Chuja kwa rangi','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18939,'ke','home','Nyumbani','2021-02-09 08:19:19','2021-09-20 07:30:04'),(18940,'ke','newest','Mpya kabisa','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18941,'ke','oldest','Kongwe zaidi','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18942,'ke','price_low_to_high','Bei ya chini hadi juu','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18943,'ke','price_high_to_low','Bei ya juu hadi chini','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18944,'ke','brands','Bidhaa','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18945,'ke','all_brands','Bidhaa zote','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18946,'ke','all_sellers','Wauzaji wote','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18947,'ke','inhouse_product','Bidhaa ya ndani','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18948,'ke','message_seller','Muuzaji wa Ujumbe','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18949,'ke','price','Bei','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18950,'ke','discount_price','Bei ya punguzo','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18951,'ke','color','Rangi','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18952,'ke','quantity','Wingi','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18953,'ke','available','inapatikana','2021-02-09 08:19:20','2021-02-09 08:19:20'),(18954,'ke','total_price','Bei jumla','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18955,'ke','out_of_stock','Kati ya Hisa','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18956,'ke','refund','Marejesho','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18957,'ke','share','Shiriki','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18958,'ke','sold_by','Imeuzwa na','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18959,'ke','customer_reviews','hakiki za wateja','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18960,'ke','top_selling_products','Bidhaa za Kuuza Juu','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18961,'ke','description','Maelezo','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18962,'ke','video','Video','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18963,'ke','reviews','Mapitio','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18964,'ke','download','Pakua','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18965,'ke','there_have_been_no_reviews_for_this_product_yet','Kumekuwa hakuna hakiki za bidhaa hii bado.','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18966,'ke','related_products','Bidhaa zinazohusiana','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18967,'ke','any_query_about_this_product','Hoja yoyote kuhusu bidhaa hii','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18968,'ke','product_name','Jina la bidhaa','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18969,'ke','your_question','Swali lako','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18970,'ke','send','Tuma','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18971,'ke','use_country_code_before_number','Tumia nambari ya nchi kabla ya nambari','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18972,'ke','remember_me','Nikumbuke','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18973,'ke','dont_have_an_account','Je! Hauna akaunti?','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18974,'ke','register_now','Jiandikishe sasa','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18975,'ke','or_login_with','Au Ingia Na','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18976,'ke','oops','Lo ..','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18977,'ke','this_item_is_out_of_stock','Bidhaa hii imepotea!','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18978,'ke','back_to_shopping','Rudi kwa ununuzi','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18979,'ke','login_to_your_account','Ingia kwenye akaunti yako.','2021-02-09 08:19:20','2021-09-20 07:30:04'),(18980,'ke','purchase_history','Historia ya Ununuzi','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18981,'ke','new','Mpya','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18982,'ke','downloads','Vipakuzi','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18983,'ke','sent_refund_request','Ombi la Kurejeshewa pesa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18984,'ke','product_bulk_upload','Upakiaji wa Wingi wa Bidhaa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18985,'ke','orders','Maagizo','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18986,'ke','recieved_refund_request','Ombi la Kupokea Fedha','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18987,'ke','shop_setting','Kuweka Duka','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18988,'ke','payment_history','Historia ya Malipo','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18989,'ke','money_withdraw','Kuondoa Pesa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18990,'ke','conversations','Mazungumzo','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18991,'ke','my_wallet','Pochi yangu','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18992,'ke','earning_points','Pointi za Kupata','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18993,'ke','support_ticket','Tikiti ya Usaidizi','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18994,'ke','manage_profile','Dhibiti Profaili','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18995,'ke','sold_amount','Kiasi kilichouzwa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18996,'ke','your_sold_amount_current_month','Kiasi chako kilichouzwa (mwezi wa sasa)','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18997,'ke','total_sold','Jumla ya Kuuzwa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18998,'ke','last_month_sold','Mwezi uliopita Uliuzwa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(18999,'ke','total_sale','Uuzaji wa jumla','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19000,'ke','total_earnings','Jumla ya mapato','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19001,'ke','successful_orders','Mafanikio ya maagizo','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19002,'ke','total_orders','Jumla ya maagizo','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19003,'ke','pending_orders','Inasubiri maagizo','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19004,'ke','cancelled_orders','Imeghairi maagizo','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19005,'ke','product','Bidhaa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19006,'ke','purchased_package','Kifurushi kilichonunuliwa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19007,'ke','package_not_found','Kifurushi Haikupatikana','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19008,'ke','upgrade_package','Boresha Kifurushi','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19009,'ke','shop','Duka','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19010,'ke','manage__organize_your_shop','Dhibiti na upange duka lako','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19011,'ke','go_to_setting','Nenda kuweka','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19012,'ke','payment','Malipo','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19013,'ke','configure_your_payment_method','Sanidi njia yako ya kulipa','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19014,'ke','my_panel','Jopo langu','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19015,'ke','item_has_been_added_to_wishlist','Bidhaa imeongezwa kwenye orodha ya matamanio','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19016,'ke','my_points','Pointi Zangu','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19017,'ke','_points','Pointi','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19018,'ke','wallet_money','Pesa za Mkoba','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19019,'ke','exchange_rate','Kiwango cha ubadilishaji','2021-02-09 08:19:21','2021-09-20 07:30:04'),(19020,'ke','point_earning_history','Historia ya Kupata Uhakika','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19021,'ke','date','Tarehe','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19022,'ke','points','Pointi','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19023,'ke','converted','Imegeuzwa','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19024,'ke','action','Hatua','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19025,'ke','no_history_found','Hakuna historia iliyopatikana.','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19026,'ke','convert_has_been_done_successfully_check_your_wallets','Kubadilisha kumefanywa kwa mafanikio Angalia Pochi zako','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19027,'ke','something_went_wrong','Hitilafu imetokea','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19028,'ke','remaining_uploads','Vipakiwa vilivyobaki','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19029,'ke','no_package_found','Hakuna Kifurushi Kilichopatikana','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19030,'ke','search_product','Tafuta bidhaa','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19031,'ke','name','Jina','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19032,'ke','current_qty','Hivi sasa','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19033,'ke','base_price','Bei ya Msingi','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19034,'ke','published','Imechapishwa','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19035,'ke','featured','Iliyoangaziwa','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19036,'ke','options','Chaguzi','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19037,'ke','edit','Hariri','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19038,'ke','duplicate','Nakala','2021-02-09 08:19:22','2021-09-20 07:30: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 08:19:22','2021-09-20 07:30: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 08:19:22','2021-09-20 07:30: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 08:19:22','2021-09-20 07:30: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 08:19:22','2021-09-20 07:30:04'),(19043,'ke','download_csv','Pakua CSV','2021-02-09 08:19:22','2021-09-20 07:30: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 08:19:22','2021-09-20 07:30: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 08:19:22','2021-09-20 07:30:04'),(19046,'ke','download_category','Jamii ya Kupakua','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19047,'ke','download_sub_category','Pakua Jamii ndogo','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19048,'ke','download_sub_sub_category','Pakua sehemu ndogo','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19049,'ke','download_brand','Pakua Brand','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19050,'ke','upload_csv_file','Pakia faili ya CSV','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19051,'ke','csv','CSV','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19052,'ke','choose_csv_file','Chagua Faili ya CSV','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19053,'ke','upload','Pakia','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19054,'ke','add_new_digital_product','Ongeza Bidhaa Mpya ya Dijitali','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19055,'ke','available_status','Hali Inayopatikana','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19056,'ke','admin_status','Hali ya Usimamizi','2021-02-09 08:19:22','2021-09-20 07:30:04'),(19057,'ke','pending_balance','Mizani Inasubiri','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19058,'ke','send_withdraw_request','Tuma Ombi la Kuondoa','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19059,'ke','withdraw_request_history','Ondoa historia ya Ombi','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19060,'ke','amount','Kiasi','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19061,'ke','status','Hali','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19062,'ke','message','Ujumbe','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19063,'ke','send_a_withdraw_request','Tuma Ombi la Kuondoa','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19064,'ke','basic_info','Maelezo ya Msingi','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19065,'ke','your_phone','Simu yako','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19066,'ke','photo','Picha','2021-02-09 08:19:23','2021-09-20 07:30:04'),(19067,'ke','browse','Vinjari','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19068,'ke','your_password','Nenosiri lako','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19069,'ke','new_password','Nenosiri mpya','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19070,'ke','confirm_password','Thibitisha Nenosiri','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19071,'ke','add_new_address','Ongeza Anwani Mpya','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19072,'ke','payment_setting','Kuweka Malipo','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19073,'ke','cash_payment','Malipo ya Fedha','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19074,'ke','bank_payment','Malipo ya Benki','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19075,'ke','bank_name','Jina la benki','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19076,'ke','bank_account_name','Jina la Akaunti ya Benki','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19077,'ke','bank_account_number','Nambari ya Akaunti ya Benki','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19078,'ke','bank_routing_number','Nambari ya Kupitisha Benki','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19079,'ke','update_profile','Sasisha Profaili','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19080,'ke','change_your_email','Badilisha barua pepe yako','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19081,'ke','your_email','Barua pepe yako','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19082,'ke','sending_email','Inatuma Barua pepe ...','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19083,'ke','verify','Thibitisha','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19084,'ke','update_email','Sasisha Barua pepe','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19085,'ke','new_address','Anwani mpya','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19086,'ke','your_address','Anwani yako','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19087,'ke','country','Nchi','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19088,'ke','select_your_country','Chagua nchi yako','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19089,'ke','city','Jiji','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19090,'ke','your_city','Jiji Lako','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19091,'ke','your_postal_code','Nambari yako ya posta','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19092,'ke','880','+880','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19093,'ke','save','Okoa','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19094,'ke','received_refund_request','Ombi la Kurejeshewa pesa','2021-02-09 08:19:23','2021-09-20 07:30:05'),(19095,'ke','delete_confirmation','Futa Uthibitisho','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19096,'ke','are_you_sure_to_delete_this','Je, una uhakika wa kufuta hii?','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19097,'ke','premium_packages_for_sellers','Vifurushi vya Premium kwa Wauzaji','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19098,'ke','product_upload','Upakiaji wa Bidhaa','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19099,'ke','digital_product_upload','Upakiaji wa Bidhaa Dijitali','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19100,'ke','purchase_package','Kifurushi cha Ununuzi','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19101,'ke','select_payment_type','Chagua Aina ya Malipo','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19102,'ke','payment_type','Aina ya malipo','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19103,'ke','select_one','Chagua moja','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19104,'ke','online_payment','Malipo mkondoni','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19105,'ke','offline_payment','Malipo ya nje ya mtandao','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19106,'ke','purchase_your_package','Nunua kifurushi chako','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19107,'ke','paypal','Paypal','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19108,'ke','stripe','Mstari','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19109,'ke','sslcommerz','sslcommerz','2021-02-09 08:19:24','2021-02-09 08:19:24'),(19110,'ke','confirm','Thibitisha','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19111,'ke','offline_package_payment','Malipo ya Kifurushi cha nje ya mtandao','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19112,'ke','transaction_id','Kitambulisho cha Muamala','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19113,'ke','choose_image','Chagua picha','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19114,'ke','code','Kanuni','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19115,'ke','delivery_status','Hali ya Uwasilishaji','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19116,'ke','payment_status','Hali ya Malipo','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19117,'ke','paid','Imelipwa','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19118,'ke','order_details','Maelezo ya Agizo','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19119,'ke','download_invoice','Pakua ankara','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19120,'ke','unpaid','Hajalipwa','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19121,'ke','order_placed','Agizo limewekwa','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19122,'ke','confirmed','Imethibitishwa','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19123,'ke','on_delivery','Wakati wa kujifungua','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19124,'ke','delivered','Imewasilishwa','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19125,'ke','order_summary','Muhtasari wa Agizo','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19126,'ke','order_code','Nambari ya Agizo','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19127,'ke','customer','Mteja','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19128,'ke','total_order_amount','Jumla ya agizo kiasi','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19129,'ke','shipping_metdod','Usafirishaji wa metdod','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19130,'ke','flat_shipping_rate','Kiwango cha usafirishaji gorofa','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19131,'ke','payment_metdod','Metdod ya malipo','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19132,'ke','variation','Tofauti','2021-02-09 08:19:24','2021-09-20 07:30:05'),(19133,'ke','delivery_type','Aina ya Uwasilishaji','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19134,'ke','home_delivery','Utoaji wa Nyumba','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19135,'ke','order_ammount','Agiza Kiasi','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19136,'ke','subtotal','jumla ndogo','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19137,'ke','shipping','Usafirishaji','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19138,'ke','coupon_discount','Punguzo la Kuponi','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19139,'ke','na','N / A','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19140,'ke','in_stock','Katika hisa','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19141,'ke','buy_now','Nunua Sasa','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19142,'ke','item_added_to_your_cart','Kipengee kimeongezwa kwenye gari lako!','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19143,'ke','proceed_to_checkout','Endelea kwa Checkout','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19144,'ke','cart_items','Vitu vya Mkokoteni','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19145,'ke','1_my_cart','1. Kikapu changu','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19146,'ke','view_cart','Angalia gari','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19147,'ke','2_shipping_info','2. Usafirishaji wa habari','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19148,'ke','checkout','Angalia','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19149,'ke','3_delivery_info','3. Maelezo ya utoaji','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19150,'ke','4_payment','4. Malipo','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19151,'ke','5_confirmation','5. Uthibitisho','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19152,'ke','remove','Ondoa','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19153,'ke','return_to_shop','Rudi dukani','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19154,'ke','continue_to_shipping','Endelea Kusafirisha','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19155,'ke','or','Au','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19156,'ke','guest_checkout','Malipo ya Wageni','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19157,'ke','continue_to_delivery_info','Endelea na Maelezo ya Uwasilishaji','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19158,'ke','postal_code','Msimbo wa posta','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19159,'ke','choose_delivery_type','Chagua Aina ya Uwasilishaji','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19160,'ke','local_pickup','Kuchukua kwa Mitaa','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19161,'ke','select_your_nearest_pickup_point','Chagua eneo lako la karibu la kuchukua','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19162,'ke','continue_to_payment','Endelea kwa Malipo','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19163,'ke','select_a_payment_option','Chagua chaguo la malipo','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19164,'ke','razorpay','Razorpay','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19165,'ke','paystack','Malipo','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19166,'ke','voguepay','VoguePay','2021-02-09 08:19:25','2021-09-20 07:30:05'),(19167,'ke','payhere','payhere','2021-02-09 08:19:26','2021-02-09 08:19:26'),(19168,'ke','ngenius','ngenius','2021-02-09 08:19:26','2021-02-09 08:19:26'),(19169,'ke','paytm','Paytm','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19170,'ke','cash_on_delivery','Fedha kwenye Uwasilishaji','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19171,'ke','your_wallet_balance_','Salio lako la mkoba:','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19172,'ke','insufficient_balance','Usawa wa kutosha','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19173,'ke','i_agree_to_the','Ninakubali','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19174,'ke','complete_order','Amri kamili','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19175,'ke','summary','Muhtasari','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19176,'ke','items','Vitu','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19177,'ke','total_club_point','Jumla ya hatua ya Klabu','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19178,'ke','total_shipping','Usafirishaji wa Jumla','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19179,'ke','have_coupon_code_enter_here','Una nambari ya kuponi? Ingiza hapa','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19180,'ke','apply','Tumia','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19181,'ke','you_need_to_agree_with_our_policies','Unahitaji kukubaliana na sera zetu','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19182,'ke','forgot_password','Umesahau nywila','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19183,'ke','seo_setting','Kuweka SEO','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19184,'ke','system_update','Sasisho la Mfumo','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19185,'ke','add_new_payment_method','Ongeza Njia Mpya ya Malipo','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19186,'ke','manual_payment_method','Njia ya Malipo ya Mwongozo','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19187,'ke','heading','Kichwa','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19188,'ke','logo','Nembo','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19189,'ke','manual_payment_information','Habari ya Malipo ya Mwongozo','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19190,'ke','type','Andika','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19191,'ke','custom_payment','Malipo ya kawaida','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19192,'ke','check_payment','Angalia Malipo','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19193,'ke','checkout_thumbnail','Kijipicha cha Checkout','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19194,'ke','payment_instruction','Maagizo ya Malipo','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19195,'ke','bank_information','Habari za Benki','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19196,'ke','select_file','Chagua Faili','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19197,'ke','upload_new','Pakia Mpya','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19198,'ke','sort_by_newest','Panga kwa mpya zaidi','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19199,'ke','sort_by_oldest','Panga kulingana na kongwe','2021-02-09 08:19:26','2021-09-20 07:30:05'),(19200,'ke','sort_by_smallest','Panga kwa ndogo','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19201,'ke','sort_by_largest','Panga kwa ukubwa','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19202,'ke','selected_only','Imechaguliwa pekee','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19203,'ke','no_files_found','Hakuna faili zilizopatikana','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19204,'ke','0_file_selected','Faili 0 imechaguliwa','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19205,'ke','clear','Wazi','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19206,'ke','prev','Kabla','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19207,'ke','next','Ifuatayo','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19208,'ke','add_files','Ongeza faili','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19209,'ke','method_has_been_inserted_successfully','Njia imeingizwa kwa mafanikio','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19210,'ke','order_date','Tarehe ya Agizo','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19211,'ke','bill_to','Bili kwa','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19212,'ke','sub_total','Jumla ndogo','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19213,'ke','total_tax','Jumla ya Ushuru','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19214,'ke','grand_total','Jumla Jumla','2021-02-09 08:19:27','2021-09-20 07:30: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 08:19:27','2021-09-20 07:30:05'),(19216,'ke','thank_you_for_your_order','Asante kwa Agizo Lako!','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19217,'ke','order_code','Nambari ya Agizo:','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19218,'ke','a_copy_or_your_order_summary_has_been_sent_to','Nakala au muhtasari wa agizo lako umetumwa','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19219,'ke','make_payment','Fanya Malipo','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19220,'ke','payment_screenshot','Picha ya skrini ya malipo','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19221,'ke','paypal_credential','Utambulisho wa Paypal','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19222,'ke','paypal_client_id','Kitambulisho cha Mteja wa Paypal','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19223,'ke','paypal_client_secret','Siri ya Mteja wa Paypal','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19224,'ke','paypal_sandbox_mode','Njia ya Sandbox ya Paypal','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19225,'ke','sslcommerz_credential','Kitambulisho cha Sslcommerz','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19226,'ke','sslcz_store_id','Kitambulisho cha Duka la Sslcz','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19227,'ke','sslcz_store_password','Nenosiri la duka la Sslcz','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19228,'ke','sslcommerz_sandbox_mode','Njia ya Sandbox ya Sslcommerz','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19229,'ke','stripe_credential','Utambulisho wa Mstari','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19230,'ke','stripe_key','FUNGUO LA MUHIMU','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19231,'ke','stripe_secret','SIRI YA KIPANDE','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19232,'ke','razorpay_credential','Kitambulisho cha RazorPay','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19233,'ke','razor_key','KIWANGO CHA RISHA','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19234,'ke','razor_secret','SIRI YA RAZOR','2021-02-09 08:19:27','2021-09-20 07:30:05'),(19235,'ke','instamojo_credential','Utambulisho wa Instamojo','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19236,'ke','api_key','KIWANGO CHA API','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19237,'ke','im_api_key','IM API MUHIMU','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19238,'ke','auth_token','MWANDISHI ALIYEKIWA','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19239,'ke','im_auth_token','IM AUTH ACHUKULIWA','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19240,'ke','instamojo_sandbox_mode','Njia ya Sandbox ya Instamojo','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19241,'ke','paystack_credential','Kitambulisho cha PayStack','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19242,'ke','public_key','MUHIMU WA UMMA','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19243,'ke','secret_key','MUHIMU WA SIRI','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19244,'ke','merchant_email','Barua pepe ya mfanyabiashara','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19245,'ke','voguepay_credential','Utambulisho wa VoguePay','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19246,'ke','merchant_id','Kitambulisho cha mfanyabiashara','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19247,'ke','sandbox_mode','Njia ya Sandbox','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19248,'ke','payhere_credential','Kitambulisho cha Payhere','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19249,'ke','payhere_merchant_id','Kitambulisho cha mfanyabiashara wa ulipaji','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19250,'ke','payhere_secret','SIRI YA PAYHERE','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19251,'ke','payhere_currency','SALAMU ZA KULIPA','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19252,'ke','payhere_sandbox_mode','Njia ya Sandbox ya Payhere','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19253,'ke','ngenius_credential','Kitambulisho cha Ngenius','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19254,'ke','ngenius_outlet_id','Kitambulisho cha NGENIUS OUTLET','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19255,'ke','ngenius_api_key','NGENIUS API MUHIMU','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19256,'ke','ngenius_currency','SASA YA NGENIUS','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19257,'ke','mpesa_credential','Kitambulisho cha Mpesa','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19258,'ke','mpesa_consumer_key','MPESA CONSUMER KEY','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19259,'ke','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19260,'ke','mpesa_consumer_secret','SIRI YA MTUMIAJI WA MPESA','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19261,'ke','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19262,'ke','mpesa_short_code','KANUNI FUPI YA MPESA','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19263,'ke','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19264,'ke','mpesa_sandbox_activation','SHUGHULI YA MPESA SANDBOX','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19265,'ke','flutterwave_credential','Kitambulisho cha Flutterwave','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19266,'ke','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19267,'ke','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19268,'ke','rave_title','RAVE_TITLE','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19269,'ke','stagin_activation','SHUGHULI YA STAGIN','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19270,'ke','all_product','Bidhaa zote','2021-02-09 08:19:28','2021-09-20 07:30:05'),(19271,'ke','sort_by','Panga kwa','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19272,'ke','rating_high__low','Ukadiriaji (Juu> Chini)','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19273,'ke','rating_low__high','Ukadiriaji (Chini> Juu)','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19274,'ke','num_of_sale_high__low','Hisa ya Uuzaji (Juu> Chini)','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19275,'ke','num_of_sale_low__high','Hisa ya Uuzaji (Chini> Juu)','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19276,'ke','base_price_high__low','Bei ya Msingi (Juu> Chini)','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19277,'ke','base_price_low__high','Bei ya Msingi (Chini> Juu)','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19278,'ke','type__enter','Andika & Ingiza','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19279,'ke','added_by','Imeongezwa na','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19280,'ke','num_of_sale','Hesabu ya Uuzaji','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19281,'ke','total_stock','Jumla ya Hisa','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19282,'ke','todays_deal','Mpango wa leo','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19283,'ke','rating','Upimaji','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19284,'ke','times','nyakati','2021-02-09 08:19:29','2021-02-09 08:19:29'),(19285,'ke','add_nerw_product','Ongeza Bidhaa ya Nerw','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19286,'ke','product_information','Habari ya Bidhaa','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19287,'ke','unit','Kitengo','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19288,'ke','unit_eg_kg_pc_etc','Kitengo (km KG, PC nk)','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19289,'ke','minimum_qty','Kiwango cha chini cha Kiasi','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19290,'ke','tags','Vitambulisho','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19291,'ke','type_and_hit_enter_to_add_a_tag','Andika na gonga kuingia ili kuongeza lebo','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19292,'ke','barcode','Msimbo wa mwambaa','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19293,'ke','refundable','Inarejeshwa','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19294,'ke','product_images','Picha za Bidhaa','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19295,'ke','gallery_images','Picha za Matunzio','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19296,'ke','todays_deal_updated_successfully','Mpango wa leo umesasishwa kwa mafanikio','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19297,'ke','published_products_updated_successfully','Bidhaa zilizochapishwa zimesasishwa kwa mafanikio','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19298,'ke','thumbnail_image','Picha ndogo','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19299,'ke','featured_products_updated_successfully','Bidhaa zilizoangaziwa zimesasishwa kwa mafanikio','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19300,'ke','product_videos','Video za Bidhaa','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19301,'ke','video_provider','Mtoaji wa Video','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19302,'ke','youtube','Youtube','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19303,'ke','dailymotion','Uhuishaji','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19304,'ke','vimeo','Vimeo','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19305,'ke','video_link','Kiungo cha Video','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19306,'ke','product_variation','Tofauti ya Bidhaa','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19307,'ke','colors','Rangi','2021-02-09 08:19:29','2021-09-20 07:30:05'),(19308,'ke','attributes','Sifa','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19309,'ke','choose_attributes','Chagua Sifa','2021-02-09 08:19:30','2021-09-20 07:30: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 08:19:30','2021-09-20 07:30:05'),(19311,'ke','product_price__stock','Bei ya bidhaa + hisa','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19312,'ke','unit_price','Bei ya kitengo','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19313,'ke','purchase_price','Bei ya ununuzi','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19314,'ke','flat','Gorofa','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19315,'ke','percent','Asilimia','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19316,'ke','discount','Punguzo','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19317,'ke','product_description','Maelezo ya bidhaa','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19318,'ke','product_shipping_cost','Gharama ya Usafirishaji wa Bidhaa','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19319,'ke','free_shipping','Usafirishaji wa Bure','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19320,'ke','flat_rate','Kiwango cha gorofa','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19321,'ke','shipping_cost','Gharama ya usafirishaji','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19322,'ke','pdf_specification','Ufafanuzi wa PDF','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19323,'ke','seo_meta_tags','Lebo za Meta za SEO','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19324,'ke','meta_title','Kichwa cha Meta','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19325,'ke','meta_image','Picha ya Meta','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19326,'ke','choice_title','Kichwa cha Chaguo','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19327,'ke','enter_choice_values','Ingiza maadili ya chaguo','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19328,'ke','all_categories','Jamii zote','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19329,'ke','add_new_category','Ongeza kategoria Mpya','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19330,'ke','type_name__enter','Andika jina & Ingiza','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19331,'ke','banner','Bango','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19332,'ke','commission','Tume','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19333,'ke','icon','ikoni','2021-02-09 08:19:30','2021-02-09 08:19:30'),(19334,'ke','featured_categories_updated_successfully','Aina zilizoangaziwa zimesasishwa kwa mafanikio','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19335,'ke','hot','Moto','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19336,'ke','filter_by_payment_status','Chuja kwa Hali ya Malipo','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19337,'ke','unpaid','Isiyolipwa','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19338,'ke','filter_by_deliver_status','Chuja kwa Kutoa Hali','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19339,'ke','pending','Inasubiri','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19340,'ke','type_order_code__hit_enter','Andika Nambari ya Agizo na piga Enter','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19341,'ke','num_of_products','Hesabu. ya Bidhaa','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19342,'ke','walk_in_customer','Tembea kwa Wateja','2021-02-09 08:19:30','2021-09-20 07:30:05'),(19343,'ke','qty','QTY','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19344,'ke','without_shipping_charge','Bila Malipo ya Usafirishaji','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19345,'ke','with_shipping_charge','Na malipo ya Usafirishaji','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19346,'ke','pay_with_cash','Lipa Kwa Fedha','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19347,'ke','shipping_address','Anwani ya kusafirishia','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19348,'ke','close','Funga','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19349,'ke','select_country','Chagua nchi','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19350,'ke','order_confirmation','Uthibitisho wa Agizo','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19351,'ke','are_you_sure_to_confirm_this_order','Je! Una uhakika wa kuthibitisha agizo hili?','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19352,'ke','comfirm_order','Thibitisha Agizo','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19353,'ke','personal_info','Maelezo ya Kibinafsi','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19354,'ke','repeat_password','Rudia neno siri','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19355,'ke','shop_name','Jina la Duka','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19356,'ke','register_your_shop','Sajili Duka lako','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19357,'ke','affiliate_informations','Maelezo ya Ushirika','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19358,'ke','affiliate','Ushirika','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19359,'ke','user_info','Maelezo ya Mtumiaji','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19360,'ke','installed_addon','Imewekwa Addon','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19361,'ke','available_addon','Inapatikana Addon','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19362,'ke','install_new_addon','Sakinisha New Addon','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19363,'ke','version','Toleo','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19364,'ke','activated','Imeamilishwa','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19365,'ke','deactivated','Imelemazwa','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19366,'ke','activate_otp','Amilisha OTP','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19367,'ke','otp_will_be_used_for','OTP Itatumika Kwa','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19368,'ke','settings_updated_successfully','Mipangilio imesasishwa kwa mafanikio','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19369,'ke','product_owner','Mmiliki wa Bidhaa','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19370,'ke','point','Hatua','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19371,'ke','set_point_for_product_within_a_range','Weka Kiwango cha Bidhaa Ndani ya Mbalimbali','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19372,'ke','set_point_for_multiple_products','Weka Sehemu kwa bidhaa nyingi','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19373,'ke','min_price','Bei ndogo','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19374,'ke','max_price','Bei ya Juu','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19375,'ke','set_point_for_all_products','Weka Sehemu kwa Bidhaa zote','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19376,'ke','set_point_for_','Weka Sehemu kwa','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19377,'ke','convert_status','Badilisha Hali','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19378,'ke','earned_at','Imepatikana saa','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19379,'ke','seller_based_selling_report','Ripoti ya Uuzaji kulingana na muuzaji','2021-02-09 08:19:31','2021-09-20 07:30:05'),(19380,'ke','sort_by_verificarion_status','Panga kulingana na hali ya uthibitisho','2021-02-09 08:19:32','2021-09-20 07:30:05'),(19381,'ke','approved','Imeidhinishwa','2021-02-09 08:19:32','2021-09-20 07:30:05'),(19382,'ke','non_approved','Isiyoidhinishwa','2021-02-09 08:19:32','2021-09-20 07:30:05'),(19383,'ke','filter','Kichujio','2021-02-09 08:19:32','2021-09-20 07:30:05'),(19384,'ke','seller_name','Jina la muuzaji','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19385,'ke','number_of_product_sale','Idadi ya Uuzaji wa Bidhaa','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19386,'ke','order_amount','Kiasi cha Agizo','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19387,'ke','facebook_chat_setting','Kuweka Mazungumzo ya Facebook','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19388,'ke','facebook_page_id','Kitambulisho cha Ukurasa wa Facebook','2021-02-09 08:19:32','2021-09-20 07:30: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 08:19:32','2021-09-20 07:30:06'),(19390,'ke','login_into_your_facebook_page','Ingia kwenye ukurasa wako wa facebook','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19391,'ke','find_the_about_option_of_your_facebook_page','Pata chaguo la Kuhusu ukurasa wako wa facebook','2021-02-09 08:19:32','2021-09-20 07:30: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 08:19:32','2021-09-20 07:30: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 08:19:32','2021-09-20 07:30: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 08:19:32','2021-09-20 07:30:06'),(19395,'ke','set_your_website_domain_name','Weka jina la kikoa chako','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19396,'ke','google_recaptcha_setting','Mpangilio wa Google reCAPTCHA','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19397,'ke','site_key','Tovuti MUHIMU','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19398,'ke','select_shipping_method','Chagua Njia ya Usafirishaji','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19399,'ke','product_wise_shipping_cost','Bei ya Usafirishaji wa Hekima ya Bidhaa','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19400,'ke','flat_rate_shipping_cost','Kiwango Gharama cha Usafirishaji','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19401,'ke','seller_wise_flat_shipping_cost','Gharama ya Usafirishaji wa gorofa yenye busara','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19402,'ke','note','Kumbuka','2021-02-09 08:19:32','2021-09-20 07:30: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 08:19:32','2021-09-20 07:30: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 08:19:32','2021-09-20 07:30: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 08:19:32','2021-09-20 07:30:06'),(19406,'ke','flat_rate_cost','Kiwango cha gorofa','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19407,'ke','shipping_cost_for_admin_products','Gharama ya Usafirishaji wa Bidhaa za Usimamizi','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19408,'ke','countries','Nchi','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19409,'ke','showhide','Onyesha / Ficha','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19410,'ke','country_status_updated_successfully','Hali ya nchi imesasishwa kwa mafanikio','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19411,'ke','all_subcategories','Jamii zote','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19412,'ke','add_new_subcategory','Ongeza Kitongoji kipya','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19413,'ke','subcategories','Jamii Ndogo','2021-02-09 08:19:32','2021-09-20 07:30:06'),(19414,'ke','sub_category_information','Habari ya Jamii Ndogo','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19415,'ke','slug','Konokono','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19416,'ke','all_sub_subcategories','Vikundi vyote vidogo','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19417,'ke','add_new_sub_subcategory','Ongeza Kitongoji kipya kipya','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19418,'ke','subsubcategories','Vikundi vidogo','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19419,'ke','make_this_default','Fanya Chaguo-msingi Hiki','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19420,'ke','shops','Maduka','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19421,'ke','women_clothing__fashion','Mavazi ya Wanawake na Mitindo','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19422,'ke','cellphones__tabs','Simu za Mkononi & Tabo','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19423,'ke','welcome_to','Karibu','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19424,'ke','create_a_new_account','Unda Akaunti Mpya','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19425,'ke','full_name','Jina kamili','2021-02-09 08:22:56','2021-09-20 07:30:06'),(19426,'ke','password','nywila','2021-02-09 08:22:57','2021-02-09 08:22:57'),(19427,'ke','confrim_password','Hakikisha Nenosiri','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19428,'ke','i_agree_with_the','Nakubaliana na','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19429,'ke','terms_and_conditions','Sheria na Masharti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19430,'ke','register','Jisajili','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19431,'ke','already_have_an_account','Tayari una akaunti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19432,'ke','sign_up_with','Jisajili na','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19433,'ke','i_agree_with_the_terms_and_conditions','Ninakubaliana na Masharti na Masharti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19434,'ke','all_role','Wajibu Wote','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19435,'ke','add_new_role','Ongeza Jukumu Jipya','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19436,'ke','roles','Majukumu','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19437,'ke','add_new_staffs','Ongeza Wafanyikazi Wapya','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19438,'ke','role','Wajibu','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19439,'ke','frontend_website_name','Frontend Jina la Wavuti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19440,'ke','website_name','Jina la Wavuti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19441,'ke','site_motto','Wito wa Tovuti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19442,'ke','best_ecommerce_website','Tovuti bora ya Biashara za Kielektroniki','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19443,'ke','site_icon','Aikoni ya Tovuti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19444,'ke','website_favicon_32x32_png','Favicon ya tovuti. 32x32 .png','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19445,'ke','website_base_color','Rangi ya Msingi wa Tovuti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19446,'ke','hex_color_code','Nambari ya Rangi ya Hex','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19447,'ke','website_base_hover_color','Rangi ya Hover ya Msingi wa Tovuti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19448,'ke','update','Sasisha','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19449,'ke','global_seo','Global Seo','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19450,'ke','meta_description','Maelezo ya Meta','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19451,'ke','keywords','Maneno muhimu','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19452,'ke','separate_with_coma','Tenganisha na kukosa fahamu','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19453,'ke','website_pages','Kurasa za Wavuti','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19454,'ke','all_pages','Kurasa zote','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19455,'ke','add_new_page','Ongeza Ukurasa Mpya','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19456,'ke','url','URL','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19457,'ke','actions','Vitendo','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19458,'ke','edit_page_information','Hariri Habari za Ukurasa','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19459,'ke','page_content','Maudhui ya Ukurasa','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19460,'ke','title','Kichwa','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19461,'ke','link','Kiungo','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19462,'ke','use_character_number_hypen_only','Tumia tabia, nambari, hypen tu','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19463,'ke','add_content','Ongeza Yaliyomo','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19464,'ke','seo_fields','Mashamba ya Seo','2021-02-09 08:22:57','2021-09-20 07:30:06'),(19465,'ke','update_page','Sasisha Ukurasa','2021-02-09 08:22:57','2021-09-20 07:30:06'); INSERT INTO `translations` VALUES (19466,'ke','default_language','Lugha Mbadala','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19467,'ke','add_new_language','Ongeza Lugha Mpya','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19468,'ke','rtl','RTL','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19469,'ke','translation','Tafsiri','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19470,'ke','language_information','Habari ya Lugha','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19471,'ke','save_page','Hifadhi Ukurasa','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19472,'ke','home_page_settings','Mipangilio ya Ukurasa wa Nyumbani','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19473,'ke','home_slider','Slider ya nyumbani','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19474,'ke','photos__links','Picha na Viungo','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19475,'ke','add_new','Ongeza Mpya','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19476,'ke','home_categories','Jamii Jamii','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19477,'ke','home_banner_1_max_3','Bango la Nyumba 1 (Max 3)','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19478,'ke','banner__links','Bendera na Viungo','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19479,'ke','home_banner_2_max_3','Bango la Nyumba 2 (Upeo 3)','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19480,'ke','top_10','Juu 10','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19481,'ke','top_categories_max_10','Vitengo Vikuu (Max 10)','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19482,'ke','top_brands_max_10','Bidhaa za Juu (Max 10)','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19483,'ke','system_name','Jina la Mfumo','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19484,'ke','system_logo__white','Nembo ya Mfumo - Nyeupe','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19485,'ke','choose_files','Chagua Faili','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19486,'ke','will_be_used_in_admin_panel_side_menu','Itatumika katika menyu ya upande wa jopo la msimamizi','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19487,'ke','system_logo__black','Nembo ya Mfumo - Nyeusi','2021-02-09 08:22:58','2021-09-20 07:30: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 08:22:58','2021-09-20 07:30:06'),(19489,'ke','system_timezone','Wakati wa Mfumo','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19490,'ke','admin_login_page_background','Usuli wa ukurasa wa kuingia wa Msimamizi','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19491,'ke','website_header','Kichwa cha Tovuti','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19492,'ke','header_setting','Kuweka Kichwa','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19493,'ke','header_logo','Nembo ya kichwa','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19494,'ke','show_language_switcher','Onyesha Kibadilisha Lugha?','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19495,'ke','show_currency_switcher','Onyesha Kibadilishaji Fedha?','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19496,'ke','enable_stikcy_header','Washa kichwa cha stikcy?','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19497,'ke','website_footer','Kijachini cha Tovuti','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19498,'ke','footer_widget','Wijeti ya futi','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19499,'ke','about_widget','Kuhusu Wijeti','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19500,'ke','footer_logo','Nembo ya futa','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19501,'ke','about_description','Kuhusu maelezo','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19502,'ke','contact_info_widget','Wijeti ya Maelezo','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19503,'ke','footer_contact_address','Anwani ya anwani ya chini','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19504,'ke','footer_contact_phone','Nambari ya mawasiliano ya footer','2021-02-09 08:22:58','2021-09-20 07:30:06'),(19505,'ke','footer_contact_email','Anwani ya barua pepe ya mawasiliano','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19506,'ke','link_widget_one','Unganisha Widget One','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19507,'ke','links','Viungo','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19508,'ke','footer_bottom','Chini chini','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19509,'ke','copyright_widget_','Wijeti ya hakimiliki','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19510,'ke','copyright_text','Nakala ya hakimiliki','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19511,'ke','social_link_widget_','Wijeti ya Kiungo cha Jamii','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19512,'ke','show_social_links','Onyesha Viungo vya Kijamii?','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19513,'ke','social_links','Viungo vya Kijamii','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19514,'ke','payment_methods_widget_','Njia za Malipo Wijeti','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19515,'ke','rtl_status_updated_successfully','Hali ya RTL imesasishwa vyema','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19516,'ke','language_changed_to_','Lugha ilibadilishwa kuwa','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19517,'ke','inhouse_product_sale_report','Ripoti ya uuzaji wa Bidhaa ya ndani','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19518,'ke','sort_by_category','Panga kwa Jamii','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19519,'ke','product_wise_stock_report','Bidhaa busara ripoti ya hisa','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19520,'ke','currency_changed_to_','Fedha ilibadilishwa kuwa','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19521,'ke','avatar','Avatar','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19522,'ke','copy','Nakili','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19523,'ke','variant','Tofauti','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19524,'ke','variant_price','Bei Mbadala','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19525,'ke','sku','SKU','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19526,'ke','key','Muhimu','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19527,'ke','value','Thamani','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19528,'ke','copy_translations','Nakili Tafsiri','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19529,'ke','all_pickup_points','Pointi Zote za Kuchukua','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19530,'ke','add_new_pickup_point','Ongeza Sehemu mpya ya Kuchukua','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19531,'ke','manager','Meneja','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19532,'ke','location','Mahali','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19533,'ke','pickup_station_contact','Mawasiliano ya Kituo cha Kuchukua','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19534,'ke','open','Fungua','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19535,'ke','pos_activation_for_seller','Uanzishaji wa POS kwa Muuzaji','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19536,'ke','order_completed_successfully','Agizo Limekamilishwa Kwa Mafanikio.','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19537,'ke','text_input','Uingizaji wa Nakala','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19538,'ke','select','Chagua','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19539,'ke','multiple_select','Chagua Nyingi','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19540,'ke','radio','Redio','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19541,'ke','file','Faili','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19542,'ke','email_address','Barua pepe','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19543,'ke','verification_info','Maelezo ya Uthibitishaji','2021-02-09 08:22:59','2021-09-20 07:30:06'),(19544,'ke','approval','Ruhusa','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19545,'ke','due_amount','Kiasi cha malipo','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19546,'ke','show','Onyesha','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19547,'ke','pay_now','LIPA sasa','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19548,'ke','affiliate_user_verification','Uthibitishaji wa Mtumiaji','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19549,'ke','reject','Kataa','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19550,'ke','accept','Kubali','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19551,'ke','beauty_health__hair','Uzuri, Afya na Nywele','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19552,'ke','comparison','Kulinganisha','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19553,'ke','reset_compare_list','Weka upya Orodha ya Linganisha','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19554,'ke','your_comparison_list_is_empty','Orodha yako ya kulinganisha haina kitu','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19555,'ke','convert_point_to_wallet','Badilisha Sehemu Kuwa Mkoba','2021-02-09 08:23:00','2021-09-20 07:30: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 08:23:00','2021-09-20 07:30:06'),(19557,'ke','create_an_account','Fungua akaunti.','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19558,'ke','use_email_instead','Tumia Barua pepe Badala yake','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19559,'ke','by_signing_up_you_agree_to_our_terms_and_conditions','Kwa kujisajili unakubali sheria na masharti yetu.','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19560,'ke','create_account','Tengeneza akaunti','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19561,'ke','or_join_with','Au Jiunge na','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19562,'ke','already_have_an_account','Tayari una akaunti?','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19563,'ke','log_in','Ingia','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19564,'ke','computer__accessories','Kompyuta na Vifaa','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19565,'ke','products','Bidhaa (s)','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19566,'ke','in_your_cart','kwenye gari lako','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19567,'ke','in_your_wishlist','katika orodha yako ya matamanio','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19568,'ke','you_ordered','uliamuru','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19569,'ke','default_shipping_address','Anwani ya Usafirishaji chaguomsingi','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19570,'ke','sports__outdoor','Michezo na nje','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19571,'ke','copied','Imenakiliwa','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19572,'ke','copy_the_promote_link','Nakili Kiungo cha Kukuza','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19573,'ke','write_a_review','Andika ukaguzi','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19574,'ke','your_name','Jina lako','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19575,'ke','comment','Maoni','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19576,'ke','your_review','Ukaguzi wako','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19577,'ke','submit_review','Tuma ukaguzi','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19578,'ke','claire_willis','Claire Willis','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19579,'ke','germaine_greene','Germaine Greene','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19580,'ke','product_file','Faili ya Bidhaa','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19581,'ke','choose_file','Chagua faili','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19582,'ke','type_to_add_a_tag','Andika ili kuongeza lebo','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19583,'ke','images','Picha','2021-02-09 08:23:00','2021-09-20 07:30:06'),(19584,'ke','main_images','Picha kuu','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19585,'ke','meta_tags','Lebo za Meta','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19586,'ke','digital_product_has_been_inserted_successfully','Bidhaa ya dijiti imeingizwa kwa mafanikio','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19587,'ke','edit_digital_product','Hariri Bidhaa Dijitali','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19588,'ke','select_an_option','Chagua chaguo','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19589,'ke','tax','Kodi','2021-02-09 08:23:01','2021-02-09 08:23:01'),(19590,'ke','any_question_about_this_product','Swali lolote juu ya bidhaa hii?','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19591,'ke','sign_in','Weka sahihi','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19592,'ke','login_with_google','Ingia na Google','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19593,'ke','login_with_facebook','Ingia na Facebook','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19594,'ke','login_with_twitter','Ingia na Twitter','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19595,'ke','click_to_show_phone_number','Bonyeza kuonyesha nambari ya simu','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19596,'ke','other_ads_of','Matangazo mengine ya','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19597,'ke','store_home','Hifadhi Nyumba','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19598,'ke','top_selling','Uuzaji wa Juu','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19599,'ke','shop_settings','Mipangilio ya Duka','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19600,'ke','visit_shop','Tembelea Duka','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19601,'ke','pickup_points','Pointi za Kuchukua','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19602,'ke','select_pickup_point','Chagua Sehemu ya Kuchukua','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19603,'ke','slider_settings','Mipangilio ya Slider','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19604,'ke','social_media_link','Kiungo cha Media Jamii','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19605,'ke','facebook','Picha za','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19606,'ke','twitter','Twitter','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19607,'ke','google','Google','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19608,'ke','new_arrival_products','Bidhaa mpya za Kuwasili','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19609,'ke','check_your_order_status','Angalia Hali yako ya Agizo','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19610,'ke','shipping_method','Njia ya usafirishaji','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19611,'ke','shipped_by','Kusafirishwa Na','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19612,'ke','image','Picha','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19613,'ke','sub_sub_category','Jamii ndogo','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19614,'ke','inhouse_products','Bidhaa za ndani','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19615,'ke','forgot_password','Umesahau nywila?','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19616,'ke','enter_your_email_address_to_recover_your_password','Ingiza anwani yako ya barua pepe ili upate nenosiri lako.','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19617,'ke','email_or_phone','Barua pepe au Simu','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19618,'ke','send_password_reset_link','Tuma Kiungo Rudisha Nenosiri','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19619,'ke','back_to_login','Rudi kwenye Ingia','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19620,'ke','index','faharisi','2021-02-09 08:23:01','2021-02-09 08:23:01'),(19621,'ke','download_your_product','Pakua Bidhaa Yako','2021-02-09 08:23:01','2021-09-20 07:30:06'),(19622,'ke','option','Chaguo','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19623,'ke','applied_refund_request','Ombi la Kurejeshewa Fedha','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19624,'ke','item_has_been_renoved_from_wishlist','Kipengee kimebadilishwa kutoka orodha ya matamanio','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19625,'ke','bulk_products_upload','Bidhaa za Wingi Pakia','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19626,'ke','upload_csv','Pakia CSV','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19627,'ke','create_a_ticket','Unda Tiketi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19628,'ke','tickets','Tiketi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19629,'ke','ticket_id','Kitambulisho cha Tiketi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19630,'ke','sending_date','Tarehe ya kutuma','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19631,'ke','subject','Mada','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19632,'ke','view_details','Angalia Maelezo','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19633,'ke','provide_a_detailed_description','Toa maelezo ya kina','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19634,'ke','type_your_reply','Andika jibu lako','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19635,'ke','send_ticket','Tuma Tiketi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19636,'ke','load_more','Pakia Zaidi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19637,'ke','jewelry__watches','Vito vya mapambo na saa','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19638,'ke','filters','Vichungi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19639,'ke','contact_address','Anwani ya mawasiliano','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19640,'ke','contact_phone','Wasiliana na simu','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19641,'ke','contact_email','Wasiliana na barua pepe','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19642,'ke','filter_by','Chuja na','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19643,'ke','condition','Hali','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19644,'ke','all_type','Aina zote','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19645,'ke','pay_with_wallet','Lipa na mkoba','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19646,'ke','select_variation','Chagua tofauti','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19647,'ke','no_product_added','Hakuna Bidhaa Iliyoongezwa','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19648,'ke','status_has_been_updated_successfully','Hali imesasishwa kwa mafanikio','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19649,'ke','all_seller_packages','Vifurushi vyote vya muuzaji','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19650,'ke','add_new_package','Ongeza Kifurushi kipya','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19651,'ke','package_logo','Nembo ya Kifurushi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19652,'ke','days','siku','2021-02-09 08:23:02','2021-02-09 08:23:02'),(19653,'ke','create_new_seller_package','Unda Kifurushi kipya cha Muuzaji','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19654,'ke','package_name','Jina la Kifurushi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19655,'ke','duration','Muda','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19656,'ke','validity_in_number_of_days','Uhalali katika idadi ya siku','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19657,'ke','update_package_information','Sasisha Maelezo ya Kifurushi','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19658,'ke','package_has_been_inserted_successfully','Kifurushi kimeingizwa kwa mafanikio','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19659,'ke','refund_request','Ombi la Kurejeshewa pesa','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19660,'ke','reason','Sababu','2021-02-09 08:23:02','2021-09-20 07:30:06'),(19661,'ke','label','Lebo','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19662,'ke','select_label','Chagua Lebo','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19663,'ke','multiple_select_label','Lebo ya Chagua Nyingi','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19664,'ke','radio_label','Lebo ya Redio','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19665,'ke','pickup_point_orders','Maagizo ya Sehemu ya Kuchukua','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19666,'ke','view','Angalia','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19667,'ke','order_','Agizo #','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19668,'ke','order_status','Hali ya Agizo','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19669,'ke','total_amount','Jumla','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19670,'ke','total','JUMLA','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19671,'ke','delivery_status_has_been_updated','Hali ya uwasilishaji imesasishwa','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19672,'ke','payment_status_has_been_updated','Hali ya malipo imesasishwa','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19673,'ke','invoice','HAKI','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19674,'ke','set_refund_time','Weka Wakati wa Kurejesha','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19675,'ke','set_time_for_sending_refund_request','Weka Wakati wa kutuma Ombi la Kurejeshewa pesa','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19676,'ke','set_refund_sticker','Weka Kibandiko cha Kurejeshewa Fedha','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19677,'ke','sticker','Kibandiko','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19678,'ke','refund_request_all','Ombi la Kurejeshewa pesa zote','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19679,'ke','order_id','Kitambulisho cha Agizo','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19680,'ke','seller_approval','Idhini ya muuzaji','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19681,'ke','admin_approval','Idhini ya Usimamizi','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19682,'ke','refund_status','Hali ya Kurejeshewa Fedha','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19683,'ke','no_refund','Hakuna Marejesho','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19684,'ke','status_updated_successfully','Hali imesasishwa kwa mafanikio','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19685,'ke','user_search_report','Ripoti ya Utafutaji wa Mtumiaji','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19686,'ke','search_by','Tafuta Na','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19687,'ke','number_searches','Utafutaji wa nambari','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19688,'ke','sender','Mtumaji','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19689,'ke','receiver','Mpokeaji','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19690,'ke','verification_form_updated_successfully','Fomu ya uthibitishaji imesasishwa kwa mafanikio','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19691,'ke','invalid_email_or_password','Barua pepe au nywila batili','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19692,'ke','all_coupons','Kuponi zote','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19693,'ke','add_new_coupon','Ongeza Kuponi Mpya','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19694,'ke','coupon_information','Habari ya Kuponi','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19695,'ke','start_date','Tarehe ya Kuanza','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19696,'ke','end_date','Tarehe ya mwisho','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19697,'ke','product_base','Msingi wa Bidhaa','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19698,'ke','send_newsletter','Tuma Jarida','2021-02-09 08:23:03','2021-09-20 07:30:06'),(19699,'ke','mobile_users','Watumiaji wa rununu','2021-02-09 08:23:04','2021-09-20 07:30:06'),(19700,'ke','sms_subject','Mada ya SMS','2021-02-09 08:23:04','2021-09-20 07:30:06'),(19701,'ke','sms_content','Maudhui ya SMS','2021-02-09 08:23:04','2021-09-20 07:30:06'),(19702,'ke','all_flash_delas','Delas zote za Flash','2021-02-09 08:23:04','2021-09-20 07:30:06'),(19703,'ke','create_new_flash_dela','Unda Kiwango kipya cha Dela','2021-02-09 08:23:04','2021-09-20 07:30:06'),(19704,'ke','page_link','Kiungo cha Ukurasa','2021-02-09 08:23:04','2021-09-20 07:30:06'),(19705,'ke','flash_deal_information','Maelezo ya Deal Flash','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19706,'ke','background_color','Rangi ya Asili','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19707,'ke','0000ff','# 0000ff','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19708,'ke','text_color','Rangi ya Nakala','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19709,'ke','white','Nyeupe','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19710,'ke','dark','Giza','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19711,'ke','choose_products','Chagua Bidhaa','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19712,'ke','discounts','Punguzo','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19713,'ke','discount_type','Aina ya Punguzo','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19714,'ke','twillo_credential','Kitambulisho cha Twillo','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19715,'ke','twilio_sid','UPANDE WA TWILIO','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19716,'ke','twilio_auth_token','MWANDISHI WA TWILIO ACHUKULIWA','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19717,'ke','twilio_verify_sid','TWILIO Thibitisha SID','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19718,'ke','valid_twillo_number','NAMBA HALISI YA TWILLO','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19719,'ke','nexmo_credential','Kitambulisho cha Nexmo','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19720,'ke','nexmo_key','FUNGUO YA NEXMO','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19721,'ke','nexmo_secret','SIRI YA NEXMO','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19722,'ke','ssl_wireless_credential','Kitambulisho cha Wiki ya SSL','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19723,'ke','ssl_sms_api_token','API ya SMS ya SSL Imefutwa','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19724,'ke','ssl_sms_sid','SMS ya SID ya SSL','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19725,'ke','ssl_sms_url','URL ya SMS ya SSL','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19726,'ke','fast2sms_credential','Utambulisho wa Fast2SMS','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19727,'ke','auth_key','AUTH KEY','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19728,'ke','route','NJIA','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19729,'ke','promotional_use','Matumizi ya Uendelezaji','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19730,'ke','transactional_use','Matumizi ya shughuli','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19731,'ke','sender_id','Kitambulisho cha SENDER','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19732,'ke','nexmo_otp','Nexmo OTP','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19733,'ke','twillo_otp','Twillo OTP','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19734,'ke','ssl_wireless_otp','OTP isiyo na waya ya SSL','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19735,'ke','fast2sms_otp','Fast2SMS OTP','2021-02-09 08:23:04','2021-09-20 07:30:07'),(19736,'ke','order_placement','Kuweka Agizo','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19737,'ke','delivery_status_changing_time','Utoaji wa Hali ya Utoaji wa Hali','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19738,'ke','paid_status_changing_time','Hali ya Kulipa Kubadilisha Saa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19739,'ke','send_bulk_sms','Tuma SMS ya Wingi','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19740,'ke','all_subscribers','Wasajili wote','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19741,'ke','coupon_information_adding','Kuongeza Habari','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19742,'ke','coupon_type','Aina ya Coupon','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19743,'ke','for_products','Kwa Bidhaa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19744,'ke','for_total_orders','Kwa Agizo Jumla','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19745,'ke','add_your_product_base_coupon','Ongeza Bidhaa yako Msingi Coupon','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19746,'ke','coupon_code','Nambari ya kuponi','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19747,'ke','sub_category','Jamii Ndogo','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19748,'ke','add_more','Ongeza zaidi','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19749,'ke','add_your_cart_base_coupon','Ongeza Coupon Yako ya Msingi wa Cart','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19750,'ke','minimum_shopping','Kiwango cha chini cha Ununuzi','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19751,'ke','maximum_discount_amount','Kiwango cha juu cha Punguzo','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19752,'ke','coupon_information_update','Sasisho la Habari ya Kuponi','2021-02-09 08:23:05','2021-09-20 07:30: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 08:23:05','2021-09-20 07:30:07'),(19754,'ke','configure_now','Sanidi Sasa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19755,'ke','total_published_products','Jumla ya bidhaa zilizochapishwa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19756,'ke','total_sellers_products','Jumla ya wauzaji bidhaa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19757,'ke','total_admin_products','Jumla ya bidhaa za msimamizi','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19758,'ke','manage_products','Dhibiti Bidhaa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19759,'ke','total_product_category','Jamii ya bidhaa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19760,'ke','create_category','Unda Jamii','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19761,'ke','total_product_sub_sub_category','Jumla ya bidhaa ndogo ya kitengo','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19762,'ke','create_sub_sub_category','Unda Jamii Ndogo Ndogo','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19763,'ke','total_product_sub_category','Jumla ya kitengo cha bidhaa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19764,'ke','create_sub_category','Unda Jamii Ndogo','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19765,'ke','total_product_brand','Bidhaa ya jumla','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19766,'ke','create_brand','Unda Chapa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19767,'ke','total_sellers','Wauzaji wa jumla','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19768,'ke','total_approved_sellers','Jumla ya wauzaji walioidhinishwa','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19769,'ke','total_pending_sellers','Wauzaji wote wanaosubiri','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19770,'ke','manage_sellers','Dhibiti Wauzaji','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19771,'ke','category_wise_product_sale','Jamii kuuza bidhaa kwa busara','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19772,'ke','sale','Uuzaji','2021-02-09 08:23:05','2021-09-20 07:30:07'),(19773,'ke','category_wise_product_stock','Jamii hisa ya bidhaa yenye busara','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19774,'ke','category_name','Jina la Jamii','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19775,'ke','stock','Hisa','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19776,'ke','frontend','Mbele','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19777,'ke','home_page','Ukurasa wa nyumbani','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19778,'ke','setting','kuweka','2021-02-09 08:23:06','2021-02-09 08:23:06'),(19779,'ke','policy_page','Ukurasa wa sera','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19780,'ke','general','Mkuu','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19781,'ke','click_here','Bonyeza hapa','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19782,'ke','useful_link','Kiunga muhimu','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19783,'ke','activation','Uanzishaji','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19784,'ke','smtp','SMTP','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19785,'ke','payment_method','Njia ya malipo','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19786,'ke','social_media','Mtandao wa kijamii','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19787,'ke','business','Biashara','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19788,'ke','seller_verification','Uthibitishaji wa muuzaji','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19789,'ke','form_setting','mpangilio wa fomu','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19790,'ke','language','Lugha','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19791,'ke','dashboard','Dashibodi','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19792,'ke','pos_system','Mfumo wa POS','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19793,'ke','pos_manager','Meneja wa POS','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19794,'ke','pos_configuration','Usanidi wa POS','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19795,'ke','products','Bidhaa','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19796,'ke','add_new_product','Ongeza bidhaa mpya','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19797,'ke','all_products','Bidhaa zote','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19798,'ke','in_house_products','Katika Bidhaa za Nyumba','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19799,'ke','seller_products','Bidhaa za muuzaji','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19800,'ke','digital_products','Bidhaa za Dijitali','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19801,'ke','bulk_import','Uingizaji wa Wingi','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19802,'ke','bulk_export','Usafirishaji wa Wingi','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19803,'ke','category','Jamii','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19804,'ke','subcategory','Jamii ndogo','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19805,'ke','sub_subcategory','Kitongoji kidogo','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19806,'ke','brand','Chapa','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19807,'ke','attribute','Sifa','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19808,'ke','product_reviews','Mapitio ya Bidhaa','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19809,'ke','sales','Mauzo','2021-02-09 08:23:06','2021-09-20 07:30:07'),(19810,'ke','all_orders','Maagizo yote','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19811,'ke','inhouse_orders','Amri za ndani','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19812,'ke','seller_orders','Amri za muuzaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19813,'ke','pickup_point_order','Amri ya Kuokota ya Kuchukua','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19814,'ke','refunds','Marejesho','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19815,'ke','refund_requests','Maombi ya Kurejeshewa pesa','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19816,'ke','approved_refund','Marejesho Yaliyoidhinishwa','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19817,'ke','refund_configuration','Usanidi wa Marejesho','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19818,'ke','customers','Wateja','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19819,'ke','customer_list','Orodha ya Wateja','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19820,'ke','classified_products','Bidhaa Zilizoainishwa','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19821,'ke','classified_packages','Vifurushi vilivyoainishwa','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19822,'ke','sellers','Wauzaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19823,'ke','all_seller','Muuzaji wote','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19824,'ke','payouts','Malipo','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19825,'ke','payout_requests','Maombi ya Malipo','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19826,'ke','seller_commission','Tume ya muuzaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19827,'ke','seller_packages','Vifurushi vya muuzaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19828,'ke','seller_verification_form','Fomu ya Uthibitishaji wa muuzaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19829,'ke','reports','Ripoti','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19830,'ke','in_house_product_sale','Katika Uuzaji wa Bidhaa za Nyumba','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19831,'ke','seller_products_sale','Uuzaji wa Bidhaa za muuzaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19832,'ke','products_stock','Bidhaa Stock','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19833,'ke','products_wishlist','Orodha ya matamanio ya bidhaa','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19834,'ke','user_searches','Utafutaji wa Mtumiaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19835,'ke','marketing','Uuzaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19836,'ke','flash_deals','Kiwango cha mikataba','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19837,'ke','newsletters','Jarida','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19838,'ke','bulk_sms','Ujumbe mwingi','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19839,'ke','subscribers','Wafuatiliaji','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19840,'ke','coupon','Kuponi','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19841,'ke','support','Msaada','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19842,'ke','ticket','Tikiti','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19843,'ke','product_queries','Maswali ya Bidhaa','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19844,'ke','website_setup','Usanidi wa Tovuti','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19845,'ke','header','Kichwa','2021-02-09 08:23:07','2021-09-20 07:30:07'),(19846,'ke','footer','Kijachini','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19847,'ke','pages','Kurasa','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19848,'ke','appearance','Mwonekano','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19849,'ke','setup__configurations','Usanidi na Mipangilio','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19850,'ke','general_settings','Mipangilio ya Jumla','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19851,'ke','features_activation','Vipengele vya uanzishaji','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19852,'ke','languages','Lugha','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19853,'ke','currency','Sarafu','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19854,'ke','pickup_point','Sehemu ya kuchukua','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19855,'ke','smtp_settings','Mipangilio ya SMTP','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19856,'ke','payment_methods','Njia za Malipo','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19857,'ke','file_system_configuration','Usanidi wa Mfumo wa Faili','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19858,'ke','social_media_logins','Ingia vyombo vya habari vya kijamii','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19859,'ke','analytics_tools','Zana za Uchanganuzi','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19860,'ke','facebook_chat','Gumzo la Facebook','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19861,'ke','google_recaptcha','Google reCAPTCHA','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19862,'ke','shipping_configuration','Usanidi wa Usafirishaji','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19863,'ke','shipping_countries','Nchi za Usafirishaji','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19864,'ke','affiliate_system','Mfumo wa Ushirika','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19865,'ke','affiliate_registration_form','Fomu ya Usajili wa Ushirika','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19866,'ke','affiliate_configurations','Mipangilio ya Ushirika','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19867,'ke','affiliate_users','Watumiaji Washirika','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19868,'ke','referral_users','Watumiaji wa Rufaa','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19869,'ke','affiliate_withdraw_requests','Maombi ya Uondoaji wa Ushirika','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19870,'ke','offline_payment_system','Mfumo wa Malipo Nje ya Mtandao','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19871,'ke','manual_payment_methods','Njia za Malipo ya Mwongozo','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19872,'ke','offline_wallet_recharge','Uchaji wa mkoba wa nje ya mtandao','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19873,'ke','offline_customer_package_payments','Malipo ya Kifurushi cha Wateja wa Mtandaoni','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19874,'ke','offline_seller_package_payments','Malipo ya kifurushi cha muuzaji wa nje ya mtandao','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19875,'ke','paytm_payment_gateway','Lango la Malipo ya Paytm','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19876,'ke','set_paytm_credentials','Weka Hati za Paytm','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19877,'ke','club_point_system','Mfumo wa Club Point','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19878,'ke','club_point_configurations','Mipangilio ya Club Point','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19879,'ke','set_product_point','Weka Sehemu ya Bidhaa','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19880,'ke','user_points','Pointi za Mtumiaji','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19881,'ke','otp_system','Mfumo wa OTP','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19882,'ke','otp_configurations','Mipangilio ya OTP','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19883,'ke','set_otp_credentials','Weka Hati za OTP','2021-02-09 08:23:08','2021-09-20 07:30:07'),(19884,'ke','staffs','Wafanyikazi','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19885,'ke','all_staffs','Fimbo zote','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19886,'ke','staff_permissions','Ruhusa za wafanyikazi','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19887,'ke','addon_manager','Meneja wa Addon','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19888,'ke','browse_website','Vinjari Tovuti','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19889,'ke','pos','POS','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19890,'ke','notifications','Arifa','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19891,'ke','new_orders','amri mpya','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19892,'ke','userimage','picha ya mtumiaji','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19893,'ke','profile','Profaili','2021-02-09 08:23:09','2021-09-20 07:30:07'),(19894,'ke','logout','Kuondoka','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19895,'ke','page_not_found','Ukurasa Haukupatikana!','2021-02-09 08:23:59','2021-09-20 07:30: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 08:23:59','2021-09-20 07:30:07'),(19897,'ke','registration','Usajili','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19898,'ke','i_am_shopping_for','Ninanunua ...','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19899,'ke','compare','Linganisha','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19900,'ke','wishlist','Orodha ya matamanio','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19901,'ke','cart','Kikapu','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19902,'ke','your_cart_is_empty','Kikapu chako hakina kitu','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19903,'ke','categories','Jamii','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19904,'ke','see_all','Ona yote','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19905,'ke','seller_policy','Sera ya muuzaji','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19906,'ke','return_policy','Sera ya Kurudisha','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19907,'ke','support_policy','Sera ya Msaada','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19908,'ke','privacy_policy','Sera ya faragha','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19909,'ke','your_email_address','Anwani yako ya barua pepe','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19910,'ke','subscribe','Jisajili','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19911,'ke','contact_info','Maelezo ya Mawasiliano','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19912,'ke','address','Anwani','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19913,'ke','phone','Simu','2021-02-09 08:23:59','2021-09-20 07:30:07'),(19914,'ke','email','Barua pepe','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19915,'ke','login','Ingia','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19916,'ke','my_account','Akaunti yangu','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19917,'ke','order_history','Historia ya Agizo','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19918,'ke','my_wishlist','Orodha ya matamanio yangu','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19919,'ke','track_order','Fuatilia Agizo','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19920,'ke','be_an_affiliate_partner','Kuwa mshirika wa ushirika','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19921,'ke','be_a_seller','Kuwa muuzaji','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19922,'ke','apply_now','Tumia Sasa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19923,'ke','confirmation','Uthibitisho','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19924,'ke','delete_confirmation_message','Futa ujumbe wa uthibitisho','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19925,'ke','cancel','Ghairi','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19926,'ke','delete','Futa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19927,'ke','item_has_been_added_to_compare_list','Bidhaa imeongezwa kulinganisha orodha','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19928,'ke','please_login_first','Tafadhali ingia kwanza','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19929,'ke','total_earnings_from','Jumla ya Mapato Kutoka','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19930,'ke','client_subscription','Usajili wa Mteja','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19931,'ke','product_category','Jamii ya bidhaa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19932,'ke','product_sub_sub_category','Jamii ndogo ya bidhaa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19933,'ke','product_sub_category','Jamii ndogo ya bidhaa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19934,'ke','product_brand','Bidhaa chapa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19935,'ke','top_client_packages','Vifurushi vya Mteja wa Juu','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19936,'ke','top_freelancer_packages','Vifurushi vya Juu vya Freelancer','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19937,'ke','number_of_sale','Idadi ya mauzo','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19938,'ke','number_of_stock','Idadi ya Hisa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19939,'ke','top_10_products','Bidhaa 10 za juu','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19940,'ke','top_12_products','Bidhaa 12 za Juu','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19941,'ke','admin_can_not_be_a_seller','Usimamizi hauwezi kuwa muuzaji','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19942,'ke','filter_by_rating','Chuja kwa Ukadiriaji','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19943,'ke','published_reviews_updated_successfully','Maoni yaliyochapishwa yamesasishwa kwa mafanikio','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19944,'ke','refund_sticker_has_been_updated_successfully','Kibandiko cha Kurejeshewa pesa kimesasishwa kwa mafanikio','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19945,'ke','edit_product','Hariri Bidhaa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19946,'ke','meta_images','Picha za Meta','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19947,'ke','update_product','Sasisha Bidhaa','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19948,'ke','product_has_been_deleted_successfully','Bidhaa imefutwa kwa mafanikio','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19949,'ke','your_profile_has_been_updated_successfully','Profaili yako imesasishwa kwa mafanikio!','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19950,'ke','upload_limit_has_been_reached_please_upgrade_your_package','Kikomo cha kupakia kimefikiwa. Tafadhali sasisha kifurushi chako.','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19951,'ke','add_your_product','Ongeza Bidhaa Yako','2021-02-09 08:24:00','2021-09-20 07:30:07'),(19952,'ke','select_a_category','Chagua kitengo','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19953,'ke','select_a_brand','Chagua chapa','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19954,'ke','product_unit','Kitengo cha Bidhaa','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19955,'ke','minimum_qty','Kiwango cha chini cha Kiasi.','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19956,'ke','product_tag','Lebo ya Bidhaa','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19957,'ke','type__hit_enter','Andika & ingiza kuingia','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19958,'ke','videos','Video','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19959,'ke','video_from','Video Kutoka','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19960,'ke','video_url','URL ya Video','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19961,'ke','customer_choice','Chaguo la Wateja','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19962,'ke','pdf','PDF','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19963,'ke','choose_pdf','Chagua PDF','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19964,'ke','select_category','Chagua Jamii','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19965,'ke','target_category','Jamii inayolengwa','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19966,'ke','subsubcategory','jamii ndogo','2021-02-09 08:24:01','2021-02-09 08:24:01'),(19967,'ke','search_category','Jamii ya Utafutaji','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19968,'ke','search_subcategory','Tafuta Kijamii','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19969,'ke','search_subsubcategory','Tafuta SubSubCategory','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19970,'ke','update_your_product','Sasisha bidhaa yako','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19971,'ke','product_has_been_updated_successfully','Bidhaa imesasishwa kwa mafanikio','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19972,'ke','add_your_digital_product','Ongeza Bidhaa Yako ya Dijiti','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19973,'ke','active_ecommerce_cms_update_process','Mchakato wa Kusasisha wa eCommerce CMS','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19974,'ke','codecanyon_purchase_code','Nambari ya ununuzi wa Codecanyon','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19975,'ke','database_name','Jina la Hifadhidata','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19976,'ke','database_username','Jina la Mtumiaji la Hifadhidata','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19977,'ke','database_password','Nenosiri la Hifadhidata','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19978,'ke','database_hostname','Jina la mwenyeji wa Hifadhidata','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19979,'ke','update_now','Sasisha Sasa','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19980,'ke','congratulations','Hongera','2021-02-09 08:24:01','2021-09-20 07:30: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 08:24:01','2021-09-20 07:30:07'),(19982,'ke','go_to_home','Nenda nyumbani','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19983,'ke','login_to_admin_panel','Ingia kwenye jopo la Msimamizi','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19984,'ke','s3_file_system_credentials','S3 Kitambulisho cha Mfumo wa Faili','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19985,'ke','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19986,'ke','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19987,'ke','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19988,'ke','aws_bucket','AWS_BUCKET','2021-02-09 08:24:01','2021-09-20 07:30:07'),(19989,'ke','aws_url','AWS_URL','2021-02-09 08:24:02','2021-09-20 07:30:07'),(19990,'ke','s3_file_system_activation','Uanzishaji wa Mfumo wa Faili ya S3','2021-02-09 08:24:02','2021-09-20 07:30:07'),(19991,'ke','your_phone_number','Nambari yako ya simu','2021-02-09 08:24:02','2021-09-20 07:30:07'),(19992,'ke','zip_file','Faili ya Zip','2021-02-09 08:24:02','2021-09-20 07:30:07'),(19993,'ke','install','Sakinisha','2021-02-09 08:24:02','2021-09-20 07:30: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 08:24:02','2021-09-20 07:30:07'),(19995,'ke','search_in_menu','Tafuta kwenye menyu','2021-02-09 08:24:02','2021-09-20 07:30:07'),(19996,'ke','uploaded_files','Faili Zilizopakiwa','2021-02-09 08:24:02','2021-09-20 07:30:07'),(19997,'ke','shipping_cities','Miji ya Usafirishaji','2021-02-09 08:24:02','2021-09-20 07:30:07'),(19998,'ke','system','Mfumo','2021-02-09 08:24:02','2021-09-20 07:30:07'),(19999,'ke','server_status','Hali ya seva','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20000,'ke','nothing_found','Hakuna Kilichopatikana','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20001,'ke','parent_category','Jamii ya Mzazi','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20002,'ke','level','Kiwango','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20003,'ke','category_information','Habari ya Jamii','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20004,'ke','translatable','Inatafsiriwa','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20005,'ke','no_parent','Hakuna Mzazi','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20006,'ke','physical','Kimwili','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20007,'ke','digital','Digital','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20008,'ke','200x200','200x200','2021-02-09 08:24:02','2021-02-09 08:24:02'),(20009,'ke','32x32','32x32','2021-02-09 08:24:02','2021-02-09 08:24:02'),(20010,'ke','search_your_files','Tafuta faili zako','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20011,'ke','category_has_been_updated_successfully','Jamii imesasishwa kwa mafanikio','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20012,'ke','all_uploaded_files','Faili zote zilizopakiwa','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20013,'ke','upload_new_file','Pakia faili mpya','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20014,'ke','all_files','Faili zote','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20015,'ke','search','Tafuta','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20016,'ke','details_info','Maelezo ya Maelezo','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20017,'ke','copy_link','Nakili Kiungo','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20018,'ke','are_you_sure_to_delete_this_file','Je, una uhakika wa kufuta faili hii?','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20019,'ke','file_info','Maelezo ya Faili','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20020,'ke','link_copied_to_clipboard','Kiungo kimenakiliwa kwenye clipboard','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20021,'ke','oops_unable_to_copy','Lo, haiwezi kunakili','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20022,'ke','file_deleted_successfully','Faili imefutwa kwa mafanikio','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20023,'ke','add_new_brand','Ongeza Bidhaa Mpya','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20024,'ke','120x80','120x80','2021-02-09 08:24:02','2021-02-09 08:24:02'),(20025,'ke','brand_information','Maelezo ya Bidhaa','2021-02-09 08:24:02','2021-09-20 07:30:07'),(20026,'ke','brand_has_been_updated_successfully','Bidhaa imesasishwa kwa mafanikio','2021-02-09 08:24:03','2021-09-20 07:30:07'),(20027,'ke','brand_has_been_deleted_successfully','Chapa imefutwa kwa mafanikio','2021-02-09 08:24:03','2021-09-20 07:30: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 08:24:03','2021-09-20 07:30: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 08:24:03','2021-09-20 07:30: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 08:24:03','2021-09-20 07:30: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 08:24:03','2021-09-20 07:30:07'),(20032,'ke','save_product','Okoa Bidhaa','2021-02-09 08:24:03','2021-09-20 07:30:07'),(20033,'ke','product_has_been_inserted_successfully','Bidhaa imeingizwa kwa mafanikio','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20034,'ke','something_went_wrong','Hitilafu imetokea!','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20035,'ke','sorry_for_the_inconvenience_but_were_working_on_it','Samahani kwa usumbufu, lakini tunashughulikia.','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20036,'ke','error_code','Nambari ya hitilafu','2021-02-09 08:24:03','2021-09-20 07:30: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 08:24:03','2021-09-20 07:30:08'),(20038,'ke','order','Agizo','2021-02-09 08:24:03','2021-09-20 07:30: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 08:24:03','2021-09-20 07:30:08'),(20040,'ke','home_banner_3_max_3','Bango la Nyumba 3 (Upeo 3)','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20041,'ke','add_new_seller','Ongeza Muuzaji Mpya','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20042,'ke','filter_by_approval','Chuja kwa Idhini','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20043,'ke','nonapproved','Isiyoidhinishwa','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20044,'ke','type_name_or_email__enter','Andika jina au barua pepe & Enter','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20045,'ke','due_to_seller','Kutokana na muuzaji','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20046,'ke','log_in_as_this_seller','Ingia kama Muuzaji huyu','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20047,'ke','go_to_payment','Nenda kwa Malipo','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20048,'ke','ban_this_seller','Piga marufuku muuzaji huyu','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20049,'ke','do_you_really_want_to_ban_this_seller','Je! Kweli unataka kupiga marufuku muuzaji huyu?','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20050,'ke','proceed','Endelea!','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20051,'ke','approved_sellers_updated_successfully','Wauzaji walioidhinishwa walisasishwa kwa mafanikio','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20052,'ke','seller_has_been_deleted_successfully','Muuzaji amefutwa kwa mafanikio','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20053,'ke','seller_information','Habari za muuzaji','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20054,'ke','seller_has_been_inserted_successfully','Muuzaji ameingizwa vizuri','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20055,'ke','email_already_exists','Barua pepe tayari ipo!','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20056,'ke','verify_your_email_address','Thibitisha Anwani yako ya Barua pepe','2021-02-09 08:24:03','2021-09-20 07:30: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 08:24:03','2021-09-20 07:30:08'),(20058,'ke','if_you_did_not_receive_the_email','Ikiwa haukupokea barua pepe.','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20059,'ke','click_here_to_request_another','Bonyeza hapa kuomba mwingine','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20060,'ke','email_verification','Uthibitishaji wa Barua pepe','2021-02-09 08:24:03','2021-09-20 07:30:08'),(20061,'ke','email_verification__','Uthibitishaji wa Barua pepe -','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20062,'ke','https_activation','Uanzishaji wa HTTPS','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20063,'ke','maintenance_mode','Njia ya Matengenezo','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20064,'ke','maintenance_mode_activation','Uanzishaji wa Njia ya Matengenezo','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20065,'ke','classified_product_activate','Bidhaa Zilizoainishwa Washa','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20066,'ke','classified_product','Bidhaa Iliyoainishwa','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20067,'ke','business_related','Biashara Kuhusiana','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20068,'ke','vendor_system_activation','Uanzishaji wa Mfumo wa Wauzaji','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20069,'ke','wallet_system_activation','Uanzishaji wa Mfumo wa Mkoba','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20070,'ke','coupon_system_activation','Uanzishaji wa Mfumo wa Kuponi','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20071,'ke','pickup_point_activation','Uanzishaji wa Sehemu ya Kuchukua','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20072,'ke','conversation_activation','Uanzishaji wa Mazungumzo','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20073,'ke','guest_checkout_activation','Uanzishaji wa Malipo ya Wageni','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20074,'ke','categorybased_commission','Tume inayotegemea jamii','2021-02-09 08:24:04','2021-09-20 07:30: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 08:24:04','2021-09-20 07:30:08'),(20076,'ke','set_commisssion_now','Weka Commisssion Sasa','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20077,'ke','payment_related','Malipo yanahusiana','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20078,'ke','paypal_payment_activation','Uanzishaji wa Malipo ya Paypal','2021-02-09 08:24:04','2021-09-20 07:30: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 08:24:04','2021-09-20 07:30:08'),(20080,'ke','stripe_payment_activation','Uanzishaji wa Malipo ya Mistari','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20081,'ke','sslcommerz_activation','Uanzishaji wa SSlCommerz','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20082,'ke','instamojo_payment_activation','Uanzishaji wa Malipo ya Instamojo','2021-02-09 08:24:04','2021-09-20 07:30: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 08:24:04','2021-09-20 07:30:08'),(20084,'ke','razor_pay_activation','Uamilishaji wa Kulipa Razor','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20085,'ke','you_need_to_configure_razor_correctly_to_enable_this_feature','Unahitaji kusanidi Razor kwa usahihi kuwezesha huduma hii','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20086,'ke','paystack_activation','Uanzishaji wa PayStack','2021-02-09 08:24:04','2021-09-20 07:30: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 08:24:04','2021-09-20 07:30:08'),(20088,'ke','voguepay_activation','Uanzishaji wa VoguePay','2021-02-09 08:24:04','2021-09-20 07:30: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 08:24:04','2021-09-20 07:30:08'),(20090,'ke','payhere_activation','Uamilishaji wa Payhere','2021-02-09 08:24:04','2021-09-20 07:30:08'),(20091,'ke','ngenius_activation','Uanzishaji wa Ngenius','2021-02-09 08:24:04','2021-09-20 07:30: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 08:24:04','2021-09-20 07:30:08'),(20093,'ke','iyzico_activation','Uanzishaji wa Iyzico','2021-02-09 08:24:04','2021-09-20 07:30: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 08:24:05','2021-09-20 07:30:08'),(20095,'ke','bkash_activation','Uanzishaji wa Bkash','2021-02-09 08:24:05','2021-09-20 07:30: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 08:24:05','2021-09-20 07:30:08'),(20097,'ke','nagad_activation','Uanzishaji wa Nagad','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20098,'ke','you_need_to_configure_nagad_correctly_to_enable_this_feature','Unahitaji kusanidi nagad kwa usahihi kuwezesha huduma hii','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20099,'ke','cash_payment_activation','Uanzishaji wa Malipo ya Fedha','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20100,'ke','social_media_login','Ingia Media ya Jamii','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20101,'ke','facebook_login','Kuingia kwenye Facebook','2021-02-09 08:24:05','2021-09-20 07:30: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 08:24:05','2021-09-20 07:30:08'),(20103,'ke','google_login','Ingia kwenye Google','2021-02-09 08:24:05','2021-09-20 07:30: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 08:24:05','2021-09-20 07:30:08'),(20105,'ke','twitter_login','Kuingia kwa Twitter','2021-02-09 08:24:05','2021-09-20 07:30: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 08:24:05','2021-09-20 07:30:08'),(20107,'ke','shop_logo','Nembo ya Duka','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20108,'ke','shop_address','Anwani ya Duka','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20109,'ke','banner_settings','Mipangilio ya Bango','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20110,'ke','banners','Mabango','2021-02-09 08:24:05','2021-09-20 07:30: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 08:24:05','2021-09-20 07:30:08'),(20112,'ke','insert_link_with_https_','Ingiza kiunga na https','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20113,'ke','your_shop_has_been_updated_successfully','Duka lako limesasishwa kwa mafanikio!','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20114,'ke','search_result_for_','Matokeo ya utaftaji wa','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20115,'ke','brand_has_been_inserted_successfully','Chapa imeingizwa kwa mafanikio','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20116,'ke','about','Kuhusu','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20117,'ke','payout_info','Maelezo ya Malipo','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20118,'ke','bank_acc_name','Jina la Benki','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20119,'ke','bank_acc_number','Nambari ya Acc ya Benki','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20120,'ke','total_products','Jumla ya Bidhaa','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20121,'ke','total_sold_amount','Jumla ya Kiasi Kilichouzwa','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20122,'ke','wallet_balance','Mizani ya Mkoba','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20123,'ke','cookies_agreement','Makubaliano ya Vidakuzi','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20124,'ke','cookies_agreement_text','Nakala ya Mkataba wa Vidakuzi','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20125,'ke','show_cookies_agreement','Onyesha Mkataba wa Vidakuzi?','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20126,'ke','custom_script','Hati maalum','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20127,'ke','header_custom_script__before_head','Hati ya desturi ya kichwa - kabla ya </head>','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20128,'ke','write_script_with_script_tag','Andika hati na lebo ya <script>','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20129,'ke','footer_custom_script__before_body','Hati maalum ya kijachini - kabla ya </body>','2021-02-09 08:24:05','2021-09-20 07:30:08'),(20130,'ke','category_has_been_inserted_successfully','Jamii imeingizwa kwa mafanikio','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20131,'ke','all_flash_deals','Ofa Zote za Kiwango','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20132,'ke','create_new_flash_deal','Unda Mpango Mpya wa Kiwango','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20133,'ke','ffffff','#MAFANIKIO','2021-02-09 08:24:06','2021-09-20 07:30: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 08:24:06','2021-09-20 07:30:08'),(20135,'ke','flash_deal_has_been_inserted_successfully','Mpango wa Flash umeingizwa kwa mafanikio','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20136,'ke','flash_deal_status_updated_successfully','Hali ya mpango wa Flash imesasishwa vizuri','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20137,'ke','flash_deal_has_been_updated_successfully','Mpango wa Flash umesasishwa kwa mafanikio','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20138,'ke','update_language_info','sasisha Maelezo ya Lugha','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20139,'ke','language_has_been_updated_successfully','Lugha imesasishwa kwa mafanikio','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20140,'ke','type_key__enter','Andika kitufe & Ingiza','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20141,'ke','translations_updated_for_','Tafsiri zimesasishwa kwa','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20142,'ke','language_has_been_inserted_successfully','Lugha imeingizwa kwa mafanikio','2021-02-09 08:24:06','2021-09-20 07:30:08'),(20143,'th','all_category','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20144,'th','all','�U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20145,'th','flash_sale','�U%��U%�%�U%��c%��U%��U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20146,'th','view_more','�U%��U%c%�c%��U%� �U%$%�c%��U%��c%��U%��U%$%�U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20147,'th','add_to_wishlist','�c%��U%� �U%$%�c%��U%��c%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%a%�c%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20148,'th','add_to_compare','�c%��U%� �U%$%�c%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%��U%a%�U%��U%��c%��U%��U%a%�U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20149,'th','add_to_cart','�U%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��c%��U%�%','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20150,'th','club_point','�U%��U%��U%�%�U%��U%� �U%��U%��U%��c%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20151,'th','classified_ads','�c%��U%��U%#�U%��U%�%�c%��U%��U%��U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20152,'th','used','�c%��U%��c%��c%��U%��c%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20153,'th','top_10_categories','10 �U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20154,'th','view_all_categories','�U%��U%c%�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20155,'th','top_10_brands','10 �U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%��U%��c%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20156,'th','view_all_brands','�U%��U%c%�c%��U%��U%��U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20157,'th','terms__conditions','�U%��c%��U%��U%��U%��U%��U%��c%��U%��U%�%�c%��U%��U%V%�c%��U%��U%��c%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20158,'th','best_selling','�U%��U%�%�U%��U%��U%a%�U%��U%a%�c%��U%��U%U%�U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20159,'th','top_20','20 �U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20160,'th','featured_products','�U%��U%$%�U%��U%��c%��U%�%�c%��U%��U%�%�U%��U%%','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20161,'th','best_sellers','�U%��U%�%�U%��U%��U%a%','2021-02-09 08:26:15','2021-09-20 07:30:08'),(20162,'th','visit_store','�c%��U%��U%a%�c%��U%��U%��U%��U%��U%��c%��U%�%�U%��U%��c%��U%�%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20163,'th','popular_suggestions','�U%��U%%�c%��U%��U%�%�U%��U%%�U%��U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20164,'th','category_suggestions','�U%��U%%�c%��U%��U%�%�U%��U%%�U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20165,'th','automobile__motorcycle','�U%��U%��U%��U%��U%��c%��c%��U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%��U%��c%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20166,'th','price_range','�U%��c%��U%��U%��U%��U%�%�U%��U%�%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20167,'th','filter_by_color','�U%��U%��U%��U%��U%��U%�%�U%��U%��U%a%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20168,'th','home','�U%��c%��U%�%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20169,'th','newest','�c%��U%��U%��c%��U%��c%��U%�%�U%��U%U%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20170,'th','oldest','�c%��U%��c%��U%�%�U%��U%a%�c%��U%��U%U%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20171,'th','price_low_to_high','�U%��U%�%�U%��U%�%�U%��c%��U%%�c%��U%��U%��U%c%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20172,'th','price_high_to_low','�U%��U%�%�U%��U%�%�U%��U%c%�U%��c%��U%��U%��c%��U%%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20173,'th','brands','�c%��U%��U%��U%��U%��c%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20174,'th','all_brands','�U%��U%U%�U%��U%��U%a%�c%��U%��c%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20175,'th','all_sellers','�U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20176,'th','inhouse_product','�U%��U%$%�U%��U%��c%��U%�%�c%��U%��U%��c%��U%�%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20177,'th','message_seller','�U%��U%c%�c%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20178,'th','price','�U%��U%�%�U%��U%�%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20179,'th','discount_price','�U%��U%��U%��U%�%�U%��U%�%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20180,'th','color','�U%��U%a%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20181,'th','quantity','�U%��U%��U%$%�U%��U%�%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20182,'th','available','�c%��U%��c%��c%��U%��c%�','2021-02-09 08:26:16','2021-02-09 08:26:16'),(20183,'th','total_price','�U%��U%�%�U%��U%�%�U%��U%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20184,'th','out_of_stock','�U%��U%$%�U%��U%��c%��U%�%�U%��U%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20185,'th','refund','�U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20186,'th','share','�c%��U%��c%��U%��U%��U%�%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20187,'th','sold_by','�U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20188,'th','customer_reviews','�U%��U%��U%�%�U%��U%��U%$%�U%��c%��U%��c%��U%��U%��U%��U%��U%��U%c%�U%��U%��c%��U%�%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20189,'th','top_selling_products','�U%��U%$%�U%��U%��c%��U%�%�U%��U%�%�U%��U%��U%a%','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20190,'th','description','�U%��U%%�U%��U%��U%$%�U%��U%�%�U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20191,'th','video','�U%��U%$%�U%��U%a%�c%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20192,'th','reviews','�U%��U%��U%��U%$%�U%��U%�%�U%��U%��c%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20193,'th','download','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20194,'th','there_have_been_no_reviews_for_this_product_yet','�U%��U%�%�U%��c%��U%��c%��U%��U%a%�U%��U%�%�U%��U%��U%a%�U%��U%$%�U%��U%��U%%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20195,'th','related_products','�U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%��c%��U%��U%a%�c%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:16','2021-09-20 07:30:08'),(20196,'th','any_query_about_this_product','�U%��U%%�U%��U%�%�U%��c%��U%� �c%� �c%��U%��U%a%�c%��U%��U%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%a%�c%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20197,'th','product_name','�U%��U%V%�c%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20198,'th','your_question','�U%��U%%�U%��U%�%�U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20199,'th','send','�U%��c%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20200,'th','use_country_code_before_number','�c%��U%��c%��U%��U%��U%�%�U%��U%��U%��U%�%�c%��U%��U%��U%��c%��U%��U%��U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20201,'th','remember_me','�U%��U%��U%��U%%�U%��U%�%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20202,'th','dont_have_an_account','�c%��U%��c%��U%��U%a%�U%��U%�%�U%��U%��U%a%?','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20203,'th','register_now','�U%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%a%�c%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20204,'th','or_login_with','�U%��U%��U%V%�U%��c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20205,'th','oops','�c%��U%��c%��U%�% ..','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20206,'th','this_item_is_out_of_stock','�U%��U%�%�U%��U%��U%�%�U%��U%��U%a%�c%��U%��U%��U%�!','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20207,'th','back_to_shopping','�U%��U%��U%�%�U%��c%��U%��U%��c%��U%��U%��U%��U%$%�c%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20208,'th','login_to_your_account','�U%��U%��U%��U%V%�c%��U%��c%��U%��c%��U%�%�c%��U%��c%��U%��U%�%�U%��U%��U%a%�U%��U%��U%��U%��U%U%�U%�.','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20209,'th','purchase_history','�U%��U%��U%�%�U%��U%�%�U%��U%$%�U%��U%�%�U%��U%��U%V%�c%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20210,'th','new','�c%��U%��U%��c%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20211,'th','downloads','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20212,'th','sent_refund_request','�U%��c%��U%��U%��U%%�U%��U%��U%��U%V%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20213,'th','product_bulk_upload','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20214,'th','orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20215,'th','recieved_refund_request','�c%��U%��c%��U%��U%�%�U%��U%��U%%�U%��U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20216,'th','shop_setting','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��c%��U%�%�U%��U%��c%��U%�%','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20217,'th','payment_history','�U%��U%��U%�%�U%��U%�%�U%��U%$%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20218,'th','money_withdraw','�U%��U%��U%��c%��U%��U%$%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20219,'th','conversations','�U%��U%�%�U%��U%��U%��U%��U%��U%�%','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20220,'th','my_wallet','�U%��U%��U%�%�c%��U%��c%��U%�%�c%��U%��U%$%�U%��U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20221,'th','earning_points','�U%��U%�%�U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20222,'th','support_ticket','�U%��U%�%�c%��U%��U%��U%��U%�%�U%��U%��U%��U%U%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20223,'th','manage_profile','�U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20224,'th','sold_amount','�U%��U%�%�U%��U%��U%%�U%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20225,'th','your_sold_amount_current_month','�U%��U%��U%��U%��U%�%�U%��U%��U%��U%��U%��U%U%�U%� (�c%��U%��U%V%�U%��U%��U%��U%�%�U%��U%��U%U%�U%��U%�%�U%�)','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20226,'th','total_sold','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20227,'th','last_month_sold','�U%��U%�%�U%��c%��U%��U%V%�c%��U%��c%��U%��U%V%�U%��U%��U%��U%a%�c%��c%��U%��c%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20228,'th','total_sale','�U%��U%��U%��U%��U%�%�U%��U%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20229,'th','total_earnings','�U%��U%�%�U%��c%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20230,'th','successful_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%a%�c%��U%��U%��U%�%�U%��U%��U%��U%��U%�%�U%��U%��U%%�c%��U%��c%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20231,'th','total_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20232,'th','pending_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%a%�c%��U%��U%��U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%�','2021-02-09 08:26:17','2021-09-20 07:30:08'),(20233,'th','cancelled_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%a%�c%��U%��U%c%�U%��U%��U%��c%��U%��U%$%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20234,'th','product','�U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20235,'th','purchased_package','�c%��U%� �c%��U%��c%��U%��U%��U%��U%a%�c%��U%��U%V%�c%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20236,'th','package_not_found','�c%��U%��c%��U%� �U%��c%��U%� �c%��U%��c%��U%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20237,'th','upgrade_package','�U%��U%�%�U%� �c%��U%��U%��U%��c%��U%� �c%��U%��c%��U%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20238,'th','shop','�U%��c%��U%�%�U%��U%��c%��U%�%','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20239,'th','manage__organize_your_shop','�U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%�%�U%��U%�%�U%��U%��U%�%�c%��U%��U%a%�U%��U%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20240,'th','go_to_setting','�c%��U%��U%��U%a%�c%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20241,'th','payment','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20242,'th','configure_your_payment_method','�U%��U%%�U%��U%��U%��U%��c%��U%�%�U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20243,'th','my_panel','�c%��U%��U%��U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20244,'th','item_has_been_added_to_wishlist','�c%��U%� �U%$%�c%��U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%$%�c%��U%��U%��U%a%�c%��U%��U%��U%�%�U%��c%��U%��c%��c%��U%��c%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20245,'th','my_points','�U%��U%�%�c%��U%��U%��U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20246,'th','_points','�U%��U%�%�c%��U%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20247,'th','wallet_money','�U%��U%��U%�%�c%��U%��c%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20248,'th','exchange_rate','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%��U%��U%a%�c%��U%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20249,'th','point_earning_history','�U%��U%��U%�%�U%��U%�%�U%��U%$%�U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20250,'th','date','�U%��U%�%�U%��U%��U%a%�c%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20251,'th','points','�U%��U%�%�c%��U%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20252,'th','converted','�c%��U%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20253,'th','action','�U%��U%��U%�%�U%��U%��U%c%�c%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20254,'th','no_history_found','�c%��U%��c%��U%� �U%��U%��U%��U%�%�U%��U%�%�U%��U%$%','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20255,'th','convert_has_been_done_successfully_check_your_wallets','�U%��U%�%�U%��c%��U%��U%��U%��c%��U%��U%��c%��U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%��U%��U%��U%��U%��U%�%�c%��U%��c%��U%�%�c%��U%��U%$%�U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20256,'th','something_went_wrong','�U%��U%�%�c%��U%��U%��U%�%�U%��U%��U%��c%��U%�%�U%��U%��U%$%�U%��U%��U%��U%��U%$%','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20257,'th','remaining_uploads','�U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%��U%��U%a%�c%��c%��U%��U%��U%V%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20258,'th','no_package_found','�c%��U%��c%��U%� �U%��c%��U%� �c%��U%��c%��U%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20259,'th','search_product','�U%��c%��U%��U%��U%�%�U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20260,'th','name','�U%��U%V%�c%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20261,'th','current_qty','�U%��U%%�U%��U%��U%��U%��U%�%�U%��U%��U%U%�U%��U%�%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20262,'th','base_price','�U%��U%�%�U%��U%�%�U%� �U%V%�c%��U%��U%��U%�%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20263,'th','published','�c%��U%��U%��c%��U%� �U%��c%��c%��U%��c%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20264,'th','featured','�c%��U%��U%�%�U%��U%%','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20265,'th','options','�U%��U%�%�U%��c%��U%��U%V%�U%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20266,'th','edit','�c%��U%��c%��c%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20267,'th','duplicate','�U%��U%%�U%��c%��U%%','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20268,'th','1_download_the_skeleton_file_and_fill_it_with_data','1. �U%��U%�%�U%��U%��c%��c%��U%��U%��U%��c%��U%��U%��c%��c%��U%��U%��U%��U%��U%��U%�%�U%��U%c%�U%��c%��U%��U%�%�U%��U%��U%��U%��U%��c%��U%��U%��U%c%�U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20269,'th','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2. �U%��U%U%�U%��U%��U%�%�U%��U%�%�U%��U%��U%��U%�%�U%��U%��c%��c%��U%��U%��U%��c%��U%��U%��c%��U%��U%�%�U%��U%��U%��c%��U%�%�U%��c%��U%� �U%V%�c%��U%��U%��U%%�U%��U%��U%�%�U%��c%��U%��c%��U%�%�c%��U%��U%��c%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%��U%��c%��U%��U%��U%c%�U%��U%��U%��c%��U%�%�U%��c%��U%�','2021-02-09 08:26:18','2021-09-20 07:30:08'),(20270,'th','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3. �c%��U%��U%V%�c%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��c%��c%��U%��U%��U%��c%��U%��U%�%�U%��U%��U%��U%��c%��U%��U%��c%��c%��U%��U%��U%��U%��U%��U%�%�U%��U%c%�U%��c%��U%��c%��U%��c%��U%��c%��U%��U%�%�U%��c%��U%��U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��c%��U%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%�%�U%��c%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20271,'th','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4. �U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%U%�U%��U%��U%�%�U%��c%��U%��U%��c%��U%��c%��c%��U%��c%��U%��U%�%�U%��U%%�U%��U%��U%��U%��U%c%�U%��U%��U%�%�U%� �c%��U%��U%�%�U%��U%�%�U%��c%��U%��U%V%�U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20272,'th','download_csv','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%� CSV','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20273,'th','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1. �U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%$%�U%��U%��c%��U%�%�U%��U%��U%��U%��U%��U%c%�c%��c%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20274,'th','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. �U%��U%U%�U%��U%��U%�%�U%��U%�%�U%��U%��U%��U%�%�U%��U%��c%��c%��U%��U%��U%� pdf �c%��U%� �U%V%�c%��U%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%��U%��U%��U%��c%��U%��U%��U%��U%��U%��U%��U%��c%��U%��U%��U%��c%��U%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%��U%��c%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20275,'th','download_category','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20276,'th','download_sub_category','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%��U%��U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20277,'th','download_sub_sub_category','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%��U%��U%��U%��U%��U%��c%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20278,'th','download_brand','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%� Brand','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20279,'th','upload_csv_file','�U%��U%�%�U%��c%��U%��U%��U%��c%��U%��U%��c%� CSV','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20280,'th','csv','CSV','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20281,'th','choose_csv_file','�c%��U%��U%V%�U%��U%��c%��U%��U%��c%� CSV','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20282,'th','upload','�U%��U%a%�c%��U%��U%�%�U%� �c%��U%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20283,'th','add_new_digital_product','�c%��U%� �U%$%�c%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%$%�U%��U%$%�U%��U%�%�U%��c%��U%��U%��c%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20284,'th','available_status','�U%��U%��U%�%�U%��U%�%�U%��U%a%�c%��U%��U%a%�U%��U%��U%c%�c%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20285,'th','admin_status','�U%��U%��U%�%�U%��U%�%�U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20286,'th','pending_balance','�U%��U%��U%��U%��c%��U%�%�U%��U%��U%%�U%��U%�%','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20287,'th','send_withdraw_request','�U%��c%��U%��U%��U%%�U%��U%��U%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20288,'th','withdraw_request_history','�U%��U%��U%��U%��U%��U%�%�U%��U%�%�U%��U%$%�U%��U%�%�U%��U%��c%��U%��U%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20289,'th','amount','�U%��U%%�U%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20290,'th','status','�U%��U%��U%�%�U%��U%�%','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20291,'th','message','�U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20292,'th','send_a_withdraw_request','�U%��c%��U%��U%��U%%�U%��U%��U%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20293,'th','basic_info','�U%��c%��U%��U%��U%c%�U%��U%� �U%V%�c%��U%��U%��U%�%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20294,'th','your_phone','�c%��U%��U%��U%��U%�%�U%� �U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20295,'th','photo','�U%��U%�%�U%� �U%��c%��U%�%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20296,'th','browse','�c%��U%��U%a%�U%��U%��U%��U%c%','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20297,'th','your_password','�U%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20298,'th','new_password','�U%��U%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%��c%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20299,'th','confirm_password','�U%��U%V%�U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20300,'th','add_new_address','�c%��U%� �U%$%�c%��U%��U%��U%a%�c%��U%��U%��U%c%�c%��c%��U%��U%��c%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20301,'th','payment_setting','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20302,'th','cash_payment','�U%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%$%�U%��U%��U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20303,'th','bank_payment','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��c%��U%�%�U%��U%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20304,'th','bank_name','�U%��U%V%�c%��U%��U%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20305,'th','bank_account_name','�U%��U%V%�c%��U%��U%��U%�%�U%��U%��U%a%�U%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:26:19','2021-09-20 07:30:08'),(20306,'th','bank_account_number','�U%��U%��U%�%�U%��c%��U%��U%��U%��U%�%�U%��U%��U%a%�U%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20307,'th','bank_routing_number','�U%��U%��U%�%�U%��c%��U%��U%��c%��U%��c%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20308,'th','update_profile','�U%��U%�%�U%��c%��U%��U%��c%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20309,'th','change_your_email','�c%��U%��U%��U%a%�c%��U%��U%��U%��U%a%�c%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20310,'th','your_email','�U%��U%a%�c%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20311,'th','sending_email','�U%��U%�%�U%��U%��c%��U%��U%��U%a%�c%��U%��U%� ...','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20312,'th','verify','�U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20313,'th','update_email','�U%��U%�%�U%��c%��U%��U%��U%��U%a%�c%��U%��U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20314,'th','new_address','�U%��U%a%�c%��U%��U%��U%c%�c%��c%��U%��U%��c%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20315,'th','your_address','�U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20316,'th','country','�U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20317,'th','select_your_country','�c%��U%��U%V%�U%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20318,'th','city','�c%��U%��U%V%�U%��U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20319,'th','your_city','�c%��U%��U%V%�U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20320,'th','your_postal_code','�U%��U%��U%�%�U%��c%��U%��U%��U%#�U%��U%a%�U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20321,'th','880','+880','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20322,'th','save','�U%��U%�%�U%��U%��U%b%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20323,'th','received_refund_request','�c%��U%��c%��U%��U%�%�U%��U%��U%%�U%��U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20324,'th','delete_confirmation','�U%��U%��U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20325,'th','are_you_sure_to_delete_this','�c%��U%��c%��c%��U%��c%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��U%��U%$%�c%��U%��U%��U%a%�c%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20326,'th','premium_packages_for_sellers','�c%��U%� �c%��U%��c%��U%��U%��U%� �U%��U%a%�c%��U%��U%a%�U%��U%��U%��U%%�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20327,'th','product_upload','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20328,'th','digital_product_upload','�U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%$%�U%��U%$%�U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20329,'th','purchase_package','�U%��U%V%�c%��U%��c%��U%� �c%��U%��c%��U%��U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20330,'th','select_payment_type','�c%��U%��U%V%�U%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20331,'th','payment_type','�U%��U%��U%�%�c%��U%��U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20332,'th','select_one','�c%��U%��U%V%�U%��U%��U%��U%��U%b%�c%��U%��U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20333,'th','online_payment','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20334,'th','offline_payment','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��c%��U%��U%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20335,'th','purchase_your_package','�U%��U%V%�c%��U%��c%��U%� �c%��U%��c%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20336,'th','paypal','Paypal','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20337,'th','stripe','�U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20338,'th','sslcommerz','sslcommerz','2021-02-09 08:26:20','2021-02-09 08:26:20'),(20339,'th','confirm','�U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20340,'th','offline_package_payment','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��c%��U%��U%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20341,'th','transaction_id','�U%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20342,'th','choose_image','�c%��U%��U%V%�U%��U%��U%��U%�%�U%� ','2021-02-09 08:26:20','2021-09-20 07:30:08'),(20343,'th','code','�U%��U%��U%�%�U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20344,'th','delivery_status','�U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20345,'th','payment_status','�U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20346,'th','paid','�U%��c%��U%�%�U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20347,'th','order_details','�U%��U%�%�U%��U%��U%�%�c%��U%��U%a%�U%��U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20348,'th','download_invoice','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%��c%��U%��c%��U%��c%��U%��U%��U%��U%a%�c%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20349,'th','unpaid','�U%��U%�%�U%��c%��U%��c%��c%��U%��c%��U%��U%%�U%��U%�%','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20350,'th','order_placed','�U%��U%�%�c%��U%��U%��U%V%�c%��U%��c%��U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20351,'th','confirmed','�c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20352,'th','on_delivery','�U%��U%%�U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20353,'th','delivered','�U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20354,'th','order_summary','�U%��U%��U%U%�U%��U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20355,'th','order_code','�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20356,'th','customer','�U%��U%c%�U%��U%��c%��U%�%','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20357,'th','total_order_amount','�U%��U%��U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20358,'th','shipping_metdod','�U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%� metdod','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20359,'th','flat_shipping_rate','�U%��U%�%�U%��U%��U%�%�U%��c%��U%�%�U%��U%��U%��c%��U%��U%��U%��U%��U%a%�c%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20360,'th','payment_metdod','�U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20361,'th','variation','�U%��U%c%�U%��c%��U%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:08'),(20362,'th','delivery_type','�U%��U%��U%�%�c%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20363,'th','home_delivery','�U%��c%��U%��U%��U%b%�U%��U%��c%��U%�%�U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20364,'th','order_ammount','�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%%�U%��U%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20365,'th','subtotal','�U%��U%��U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20366,'th','shipping','�U%��U%�%�U%��U%��c%��U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20367,'th','coupon_discount','�U%��c%��U%��U%��U%��U%��U%��U%c%�U%��U%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20368,'th','na','�c%��U%��c%��U%��U%a%','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20369,'th','in_stock','�U%��U%a%�U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20370,'th','buy_now','�U%��U%V%�c%��U%��c%��U%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20371,'th','item_added_to_your_cart','�c%��U%� �U%$%�c%��U%��U%��U%$%�U%��U%��c%��U%�%�c%��U%��U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%U%�U%��c%��U%��c%��U%�!','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20372,'th','proceed_to_checkout','�U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20373,'th','cart_items','�U%��U%�%�U%��U%��U%�%�U%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20374,'th','1_my_cart','1. �U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20375,'th','view_cart','�U%��U%c%�U%��U%��c%��U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20376,'th','2_shipping_info','2. �U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20377,'th','checkout','�c%��U%��c%��U%��c%��U%��U%�%�U%��c%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20378,'th','3_delivery_info','3. �U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:21','2021-09-20 07:30:09'),(20379,'th','4_payment','4. �U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20380,'th','5_confirmation','5. �U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20381,'th','remove','�U%��U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20382,'th','return_to_shop','�U%��U%��U%�%�U%��c%��U%��U%��U%a%�c%��U%��c%��U%�%�U%��U%��c%��U%�%','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20383,'th','continue_to_shipping','�U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��c%��U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20384,'th','or','�U%��U%��U%V%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20385,'th','guest_checkout','�c%��U%��U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20386,'th','continue_to_delivery_info','�c%��U%��U%��U%a%�c%��U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20387,'th','postal_code','�U%��U%��U%�%�U%��c%��U%��U%��U%#�U%��U%a%�U%��c%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20388,'th','choose_delivery_type','�c%��U%��U%V%�U%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20389,'th','local_pickup','�U%��U%��U%��U%��U%�%�U%��U%�%�U%��c%��U%��U%��U%��U%$%�c%��U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20390,'th','select_your_nearest_pickup_point','�c%��U%��U%V%�U%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%a%�c%��c%��U%��U%��c%��U%��U%a%�c%��U%��U%U%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20391,'th','continue_to_payment','�U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��c%��U%� �U%V%�c%��U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20392,'th','select_a_payment_option','�c%��U%��U%V%�U%��U%��U%��U%�%�U%��c%��U%��U%V%�U%��U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20393,'th','razorpay','�U%��U%�%�c%��U%��c%��U%� �U%��c%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20394,'th','paystack','Paystack','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20395,'th','voguepay','�c%��U%��c%��U%��c%��U%� �U%��c%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20396,'th','payhere','�U%��c%��U%�%�U%��U%��U%a%�c%��U%��U%a%�c%�','2021-02-09 08:26:22','2021-02-09 08:26:22'),(20397,'th','ngenius','ngenius','2021-02-09 08:26:22','2021-02-09 08:26:22'),(20398,'th','paytm','Paytm','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20399,'th','cash_on_delivery','�c%��U%��c%��U%��c%��U%��U%$%�U%��U%��U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20400,'th','your_wallet_balance_','�U%��U%��U%��c%��U%��U%$%�U%��c%��U%��U%��U%��U%�%�c%��U%��c%��U%�%�U%��U%��U%��U%��U%U%�U%�:','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20401,'th','insufficient_balance','�U%��U%��U%��U%��U%��c%��U%��U%��U%V%�U%��c%��U%��c%��c%��U%� �U%a%�U%��U%��U%� �U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20402,'th','i_agree_to_the','�U%��U%�%�U%��c%��U%��c%��U%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20403,'th','complete_order','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%a%�c%��U%��U%��U%��U%c%�U%��U%��c%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20404,'th','summary','�U%��U%��U%U%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20405,'th','items','�U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20406,'th','total_club_point','�U%��U%�%�c%��U%��U%��U%��U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20407,'th','total_shipping','�U%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20408,'th','have_coupon_code_enter_here','�U%��U%a%�U%��U%��U%�%�U%��U%��U%c%�U%��U%��U%�? �c%��U%��c%��U%�%�U%��U%a%�c%��U%��U%a%�c%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20409,'th','apply','�U%��U%��U%�%�U%��U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20410,'th','you_need_to_agree_with_our_policies','�U%��U%U%�U%��U%��c%��U%��U%��c%��U%��c%��U%��U%��c%��U%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%�%�U%��U%��U%��U%��c%��U%��U%�%','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20411,'th','forgot_password','�U%��U%V%�U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20412,'th','seo_setting','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�% SEO','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20413,'th','system_update','�U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%��U%�%�U%��U%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20414,'th','add_new_payment_method','�c%��U%� �U%$%�c%��U%��U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��c%��U%��U%��c%�','2021-02-09 08:26:22','2021-09-20 07:30:09'),(20415,'th','manual_payment_method','�U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��c%��U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20416,'th','heading','�U%��U%�%�U%��c%��U%��U%V%�c%��U%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20417,'th','logo','�c%��U%��c%��U%��c%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20418,'th','manual_payment_information','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��c%��U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20419,'th','type','�U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20420,'th','custom_payment','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��U%a%�c%��U%��U%%�U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20421,'th','check_payment','�U%��U%��U%��U%��U%��U%��U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20422,'th','checkout_thumbnail','�U%��U%�%�U%� �U%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20423,'th','payment_instruction','�U%��U%%�c%��U%��U%�%�U%��U%%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20424,'th','bank_information','�U%��c%��U%��U%��U%c%�U%��U%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20425,'th','select_file','�c%��U%��U%V%�U%��U%��c%��U%��U%��c%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20426,'th','upload_new','�U%��U%�%�U%��c%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20427,'th','sort_by_newest','�c%��U%��U%a%�U%��U%��U%��U%�%�U%��c%��U%��U%��c%��U%��c%��U%�%�U%��U%U%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20428,'th','sort_by_oldest','�c%��U%��U%a%�U%��U%��U%��U%�%�U%��c%��U%��c%��U%�%�U%��U%a%�c%��U%��U%U%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20429,'th','sort_by_smallest','�c%��U%��U%a%�U%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%a%�c%��U%��U%U%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20430,'th','sort_by_largest','�c%��U%��U%a%�U%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%a%�c%��U%��U%U%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20431,'th','selected_only','�c%��U%��U%V%�U%��U%��c%��U%��c%��U%�%�U%��U%�%�c%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20432,'th','no_files_found','�c%��U%��c%��U%� �U%��c%��U%��U%��c%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20433,'th','0_file_selected','0 �c%��U%��U%��c%��U%��U%a%�c%��c%��U%��U%V%�U%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20434,'th','clear','�U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20435,'th','prev','�U%��c%��U%��U%��U%��U%��c%��U%�%','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20436,'th','next','�U%��c%��U%��c%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20437,'th','add_files','�c%��U%� �U%$%�c%��U%��c%��U%��U%��c%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20438,'th','method_has_been_inserted_successfully','�c%��U%��c%��U%��U%$%�U%��U%a%�U%��U%%�c%��U%��c%��U%��c%��U%��c%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20439,'th','order_date','�U%��U%�%�U%��U%��U%�%�c%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20440,'th','bill_to','�U%��c%��U%��c%��U%��U%$%�U%��c%��U%��U%��U%a%�c%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20441,'th','sub_total','�U%��U%��U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20442,'th','total_tax','�U%��U%��U%��U%��U%�%�U%#�U%a%','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20443,'th','grand_total','�U%��U%��U%��U%��U%��U%��U%�%�c%��U%��U%��U%$%�c%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20444,'th','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','�U%��c%��U%��U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%��U%��U%��U%U%�U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%� �U%��U%��U%U%�U%��U%�%�U%��c%��U%��U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%�%�U%��U%$%�U%��U%�%�U%��U%��U%V%�c%��U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20445,'th','thank_you_for_your_order','�U%��U%��U%��U%��U%��U%��U%U%�U%��U%��U%%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%��U%��U%��U%U%�U%�!','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20446,'th','order_code','�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�:','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20447,'th','a_copy_or_your_order_summary_has_been_sent_to','�U%��U%%�c%��U%��U%�%�U%��U%��U%V%�U%��U%��U%��U%U%�U%��U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%��U%��U%��U%U%�U%��U%��U%c%�U%��U%��c%��U%��c%��U%��U%��U%a%�c%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20448,'th','make_payment','�U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20449,'th','payment_screenshot','�U%��U%�%�U%� �U%��U%��c%��U%�%�U%��U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20450,'th','paypal_credential','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� Paypal','2021-02-09 08:26:23','2021-09-20 07:30:09'),(20451,'th','paypal_client_id','�U%��U%��U%�%�U%��U%��U%c%�U%��U%��c%��U%�% Paypal','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20452,'th','paypal_client_secret','�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%��U%��U%c%�U%��U%��c%��U%�% Paypal','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20453,'th','paypal_sandbox_mode','�c%��U%��U%��U%� Paypal Sandbox','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20454,'th','sslcommerz_credential','Sslcommerz Credential','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20455,'th','sslcz_store_id','�U%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��c%��U%�% Sslcz','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20456,'th','sslcz_store_password','�U%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��U%��c%��U%�% Sslcz','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20457,'th','sslcommerz_sandbox_mode','�c%��U%��U%��U%� Sslcommerz Sandbox','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20458,'th','stripe_credential','Stripe Credential','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20459,'th','stripe_key','STRIPE KEY','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20460,'th','stripe_secret','STRIPE SECRET','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20461,'th','razorpay_credential','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� RazorPay','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20462,'th','razor_key','�U%��U%U%�U%��c%��U%��U%��U%a%�U%��c%��U%��U%�','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20463,'th','razor_secret','�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%��U%��U%a%�U%��c%��U%��U%�','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20464,'th','instamojo_credential','�U%��c%��U%��U%��U%c%�U%��U%��U%��U%�%�U%��U%%�U%��U%�%�U%� Instamojo','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20465,'th','api_key','�U%��U%a%�U%��c%� API','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20466,'th','im_api_key','�U%��U%a%�U%��c%� IM API','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20467,'th','auth_token','�c%��U%��c%��U%��c%��U%� AUTH','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20468,'th','im_auth_token','IM AUTH TOKEN','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20469,'th','instamojo_sandbox_mode','Instamojo �c%��U%��U%��U%� Sandbox','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20470,'th','paystack_credential','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� PayStack','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20471,'th','public_key','�U%��U%a%�U%��c%��U%��U%�%�U%��U%�%�U%��U%��U%�%','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20472,'th','secret_key','�U%��U%a%�U%��c%��U%��U%�%�U%�','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20473,'th','merchant_email','�U%��U%a%�c%��U%��U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20474,'th','voguepay_credential','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� VoguePay','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20475,'th','merchant_id','�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20476,'th','sandbox_mode','�c%��U%��U%��U%� Sandbox','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20477,'th','payhere_credential','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� Payhere','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20478,'th','payhere_merchant_id','�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%��U%� PayHERE','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20479,'th','payhere_secret','�U%��c%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%��U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20480,'th','payhere_currency','�U%��U%��U%U%�U%��c%��U%��U%$%�U%��U%��U%a%�c%��U%��c%��U%�%�U%�','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20481,'th','payhere_sandbox_mode','�c%��U%��U%��U%� Payhere Sandbox','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20482,'th','ngenius_credential','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� Ngenius','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20483,'th','ngenius_outlet_id','�U%��U%��U%�%�U%� OUTLET NGENIUS','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20484,'th','ngenius_api_key','�U%��U%a%�U%��c%� API �U%��U%��U%� NGENIUS','2021-02-09 08:26:24','2021-09-20 07:30:09'),(20485,'th','ngenius_currency','�U%��U%��U%U%�U%��c%��U%��U%$%�U%� NGENIUS','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20486,'th','mpesa_credential','Mpesa Credential','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20487,'th','mpesa_consumer_key','�U%��U%a%�U%��c%��U%��U%c%�c%��U%��U%��U%$%�c%��U%��U%� MPESA','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20488,'th','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20489,'th','mpesa_consumer_secret','�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%��U%��U%c%�c%��U%��U%��U%$%�c%��U%��U%� MPESA','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20490,'th','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20491,'th','mpesa_short_code','�U%��U%��U%�%�U%��U%��U%�%�c%��U%� MPESA','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20492,'th','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20493,'th','mpesa_sandbox_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� MPESA SANDBOX','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20494,'th','flutterwave_credential','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� Flutterwave','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20495,'th','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20496,'th','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20497,'th','rave_title','RAVE_TITLE','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20498,'th','stagin_activation','STAGIN �c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20499,'th','all_product','�U%��U%$%�U%��U%��c%��U%�%�U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20500,'th','sort_by','�c%��U%��U%a%�U%��U%��U%��U%�%�U%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20501,'th','rating_high__low','�U%��U%�%�c%��U%��U%� (�U%��U%c%�U%�> �U%��c%��U%%)','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20502,'th','rating_low__high','�U%��U%�%�c%��U%��U%� (�U%��c%��U%%> �U%��U%c%�U%�)','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20503,'th','num_of_sale_high__low','�U%��U%%�U%��U%��U%��U%��U%�%�U%� (�U%��U%c%�U%�> �U%��c%��U%%)','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20504,'th','num_of_sale_low__high','�U%��U%%�U%��U%��U%��U%��U%�%�U%� (�U%��c%��U%%> �U%��U%c%�U%�)','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20505,'th','base_price_high__low','�U%��U%�%�U%��U%�%�U%� �U%V%�c%��U%��U%��U%�%�U%� (�U%��U%c%�U%�> �U%��c%��U%%)','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20506,'th','base_price_low__high','�U%��U%�%�U%��U%�%�U%� �U%V%�c%��U%��U%��U%�%�U%� (�U%��c%��U%%> �U%��U%c%�U%�)','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20507,'th','type__enter','�U%� �U%$%�U%��U%� �c%� & Enter','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20508,'th','added_by','�c%��U%� �U%$%�c%��U%��c%��U%��U%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20509,'th','num_of_sale','�U%��U%%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20510,'th','total_stock','�U%��U%U%�c%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20511,'th','todays_deal','�U%��c%��U%��U%��U%��U%��U%��U%��U%�%�U%��U%��U%a%�c%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20512,'th','rating','�U%��U%�%�c%��U%��U%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20513,'th','times','�U%��U%��U%�%�c%��U%�','2021-02-09 08:26:25','2021-02-09 08:26:25'),(20514,'th','add_nerw_product','�c%��U%� �U%$%�c%��U%� Nerw Product','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20515,'th','product_information','�U%��c%��U%��U%��U%c%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20516,'th','unit','�U%��U%��c%��U%��U%�','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20517,'th','unit_eg_kg_pc_etc','�U%��U%��c%��U%��U%� (�c%��U%��c%��U%� KG, Pc �c%��U%��c%��U%��U%��c%��U%�)','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20518,'th','minimum_qty','�U%��U%%�U%��U%��U%��U%��U%�%�c%��U%��U%��c%��U%%','2021-02-09 08:26:25','2021-09-20 07:30:09'),(20519,'th','tags','�c%��U%��c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20520,'th','type_and_hit_enter_to_add_a_tag','�U%� �U%$%�U%��U%� �c%��c%��U%��U%�%�U%��U%� Enter �c%��U%� �U%V%�c%��U%��c%��U%� �U%$%�c%��U%��c%��U%��c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20521,'th','barcode','�U%��U%�%�U%��c%��c%��U%��c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20522,'th','refundable','�U%��U%V%�U%��c%��U%��U%$%�U%��c%��U%��c%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20523,'th','product_images','�U%��U%c%�U%��U%��U%�%�U%� �U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20524,'th','gallery_images','�U%��U%c%�U%��U%��U%�%�U%� �c%��U%��U%��c%��U%��U%��U%��U%a%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20525,'th','todays_deal_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%a%�U%��U%��U%�%�U%��U%��U%a%�c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20526,'th','published_products_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%a%�c%��c%��U%��U%��c%��U%� �U%��c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20527,'th','thumbnail_image','�U%��U%�%�U%� �U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20528,'th','featured_products_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%a%�c%��c%��U%��U%��c%��U%��c%��U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20529,'th','product_videos','�U%��U%$%�U%��U%a%�c%��U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20530,'th','video_provider','�U%��U%c%�c%��c%��U%��c%��U%��U%��U%$%�U%��U%�%�U%��U%��U%$%�U%��U%a%�c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20531,'th','youtube','Youtube','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20532,'th','dailymotion','Dailymotion','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20533,'th','vimeo','Vimeo','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20534,'th','video_link','�U%��U%$%�U%��U%��c%��U%��U%$%�U%��U%a%�c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20535,'th','product_variation','�U%��U%c%�U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20536,'th','colors','�U%��U%a%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20537,'th','attributes','�U%��U%U%�U%��U%��U%�%�U%��U%#�U%��U%�%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20538,'th','choose_attributes','�c%��U%��U%V%�U%��U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20539,'th','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','�c%��U%��U%V%�U%��U%��c%��U%��U%��U%��U%��U%$%�U%��U%$%�U%��U%��c%��U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%a%�c%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%��U%��U%��c%��U%�%�U%��U%��U%��c%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%��U%$%�U%��U%$%�U%��U%��c%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20540,'th','product_price__stock','�U%��U%�%�U%��U%�%�U%��U%$%�U%��U%��c%��U%�% + �U%��U%��c%��U%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20541,'th','unit_price','�U%��U%�%�U%��U%�%�U%��c%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20542,'th','purchase_price','�U%��U%�%�U%��U%�%�U%��U%V%�c%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20543,'th','flat','�c%��U%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20544,'th','percent','�c%��U%��U%��U%��c%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20545,'th','discount','�U%��c%��U%��U%��U%��U%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20546,'th','product_description','�U%��U%�%�U%��U%��U%�%�c%��U%��U%a%�U%��U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20547,'th','product_shipping_cost','�U%��c%��U%�%�U%��U%��U%��c%��U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20548,'th','free_shipping','�U%��U%�%�U%��U%��c%��U%��U%��U%��U%a%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20549,'th','flat_rate','�U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%a%�c%�','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20550,'th','shipping_cost','�U%��c%��U%�%�c%��U%��c%��U%��c%��U%�%�U%��c%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20551,'th','pdf_specification','�U%��c%��U%��U%��U%%�U%��U%��U%� PDF','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20552,'th','seo_meta_tags','�c%��U%��U%��U%�%�c%��U%��c%��U%� SEO','2021-02-09 08:26:26','2021-09-20 07:30:09'),(20553,'th','meta_title','�U%��U%V%�c%��U%��c%��U%��U%��U%�%','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20554,'th','meta_image','�U%��U%�%�U%� Meta','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20555,'th','choice_title','�U%��U%V%�c%��U%��U%��U%�%�U%��c%��U%��U%V%�U%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20556,'th','enter_choice_values','�U%��c%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��c%��U%��U%V%�U%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20557,'th','all_categories','�U%��U%U%�U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20558,'th','add_new_category','�c%��U%� �U%$%�c%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%��c%��U%��U%��c%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20559,'th','type_name__enter','�U%� �U%$%�U%��U%� �c%��U%��U%V%�c%��U%� & Enter','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20560,'th','banner','�c%��U%��U%��c%��U%��U%��U%��c%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20561,'th','commission','�U%��c%��U%�%�U%��U%��U%��U%��U%$%�U%��U%��U%�%�c%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20562,'th','icon','�c%��U%��U%��U%��U%�','2021-02-09 08:26:27','2021-02-09 08:26:27'),(20563,'th','featured_categories_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%��c%��U%��c%��U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20564,'th','hot','�U%��c%��U%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20565,'th','filter_by_payment_status','�U%��U%��U%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20566,'th','unpaid','�U%��U%�%�U%��c%��U%��c%��c%��U%��c%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20567,'th','filter_by_deliver_status','�U%��U%��U%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20568,'th','pending','�U%��U%��U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20569,'th','type_order_code__hit_enter','�U%� �U%$%�U%��U%� �c%��U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��c%��U%��U%�%�U%��U%� Enter','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20570,'th','num_of_products','Num. �U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20571,'th','walk_in_customer','�c%��U%��U%$%�U%��c%��U%��c%��U%�%�c%��U%��U%��U%�%�U%��U%c%�U%��U%��c%��U%�%','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20572,'th','qty','�U%��U%%�U%��U%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20573,'th','without_shipping_charge','�c%��U%��c%��U%��U%a%�U%��c%��U%�%�U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20574,'th','with_shipping_charge','�U%� �U%��c%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20575,'th','pay_with_cash','�U%��U%%�U%��U%�%�U%��c%��U%��U%��c%��U%��U%$%�U%��U%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20576,'th','shipping_address','�U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20577,'th','close','�U%��U%$%�U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20578,'th','select_country','�c%��U%��U%V%�U%��U%��U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20579,'th','order_confirmation','�U%��U%V%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20580,'th','are_you_sure_to_confirm_this_order','�U%��U%U%�U%��c%��U%��c%��c%��U%��U%��U%��U%V%�U%��c%��U%��c%��U%��c%��U%�%�U%��U%�%�U%��U%V%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%a%�c%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20581,'th','comfirm_order','�U%��U%V%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20582,'th','personal_info','�U%��c%��U%��U%��U%c%�U%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20583,'th','repeat_password','�c%��U%��c%��U%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��c%��U%%','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20584,'th','shop_name','�U%��U%V%�c%��U%��U%��c%��U%�%�U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20585,'th','register_your_shop','�U%��U%��U%��U%�%�c%��U%��U%a%�U%��U%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20586,'th','affiliate_informations','�U%��c%��U%��U%��U%c%�U%��U%� �U%�%�U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:26:27','2021-09-20 07:30:09'),(20587,'th','affiliate','�U%� �U%�%�U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20588,'th','user_info','�U%��c%��U%��U%��U%c%�U%��U%��U%c%�c%��c%��U%��c%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20589,'th','installed_addon','�U%��U%$%�U%��U%��U%�%�c%��U%� Addon �c%��U%��c%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20590,'th','available_addon','Addon �U%��U%a%�c%��U%��U%a%�U%��U%%�U%��U%��c%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20591,'th','install_new_addon','�U%��U%$%�U%��U%��U%�%�c%��U%� Addon �c%��U%��U%��c%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20592,'th','version','�c%��U%��U%��U%��c%��U%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20593,'th','activated','�c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��c%��U%��c%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20594,'th','deactivated','�U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��c%��U%��c%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20595,'th','activate_otp','�c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� OTP','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20596,'th','otp_will_be_used_for','OTP �U%��U%�%�c%��U%��c%��U%��U%%�U%��U%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20597,'th','settings_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��U%%�c%��U%��c%��U%��c%��U%��c%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20598,'th','product_owner','�c%��U%��c%��U%�%�U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20599,'th','point','�U%��U%U%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20600,'th','set_point_for_product_within_a_range','�U%��U%%�U%��U%��U%��U%��U%U%�U%��U%��U%%�U%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�U%��c%��U%��U%��c%��U%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20601,'th','set_point_for_multiple_products','�U%��U%%�U%��U%��U%��U%��U%U%�U%��U%��U%%�U%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20602,'th','min_price','�U%��U%�%�U%��U%�%�U%��U%�%�c%��U%��U%��c%��U%%','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20603,'th','max_price','�U%��U%�%�U%��U%�%�U%��U%c%�U%��U%��U%U%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20604,'th','set_point_for_all_products','�U%��U%%�U%��U%��U%��U%��U%U%�U%��U%��U%%�U%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20605,'th','set_point_for_','�U%��U%%�U%��U%��U%��U%��U%U%�U%��U%��U%%�U%��U%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20606,'th','convert_status','�c%��U%��U%��U%��U%��U%��U%�%�U%��U%�%','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20607,'th','earned_at','�U%��U%�%�U%��U%��U%a%�c%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20608,'th','seller_based_selling_report','�U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20609,'th','sort_by_verificarion_status','�c%��U%��U%a%�U%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20610,'th','approved','�c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20611,'th','non_approved','�c%��U%��c%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20612,'th','filter','�U%��U%��U%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20613,'th','seller_name','�U%��U%V%�c%��U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20614,'th','number_of_product_sale','�U%��U%%�U%��U%��U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%��U%��U%�%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20615,'th','order_amount','�U%��U%%�U%��U%��U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20616,'th','facebook_chat_setting','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��U%�%�U%��c%��U%��U%��U%��U%� Facebook','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20617,'th','facebook_page_id','ID �c%��U%� �U%� Facebook','2021-02-09 08:26:28','2021-09-20 07:30: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','�c%��U%��U%��U%��U%��U%�%�U%��U%�%�U%��U%��U%�%�U%��U%�%�U%��c%��U%��U%V%�c%��U%��U%��U%U%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��c%��U%��U%��U%��U%� Facebook �U%��U%%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�%�U%��U%a%�c%��c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��U%��U%U%�U%��U%��U%�%�c%��U%��c%��c%��U%��c%��U%��U%�%�U%��c%��U%��U%��U%��U%� Messenger �U%��U%��c%��U%��U%��c%��U%��U%c%�c%��c%��U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20619,'th','login_into_your_facebook_page','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%��c%��U%�% Facebook �U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20620,'th','find_the_about_option_of_your_facebook_page','�U%��c%��U%��U%��U%�%�U%��U%�%�U%��c%��U%��U%V%�U%��U%��c%��U%��U%a%�c%��U%��U%��U%��U%�%�U%��U%��U%��c%��U%�% Facebook �U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20621,'th','at_the_very_bottom_you_can_find_the_facebook_page_id','�U%��U%a%�c%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��U%��U%U%�U%��U%��U%U%�U%��U%��U%�%�U%� �U%� \\��� ID �c%��U%� �U%� Facebook \\���','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20622,'th','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','�c%��U%��U%��U%a%�c%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��U%��U%��c%��U%� �U%��U%��U%��U%��U%��U%U%�U%��c%��U%��U%�%�U%��c%��U%��U%��U%�%�U%��U%�%�U%��c%��U%��U%V%�U%��U%��U%��U%��U%� \\ \"Advance Messaging \\\"','2021-02-09 08:26:28','2021-09-20 07:30:09'),(20623,'th','scroll_down_that_page_and_you_will_get_white_listed_domain','�c%��U%��U%V%�c%��U%��U%��U%��U%��c%��U%��U%��U%��c%��U%�%�U%��U%�%�c%��U%��c%��U%��U%�%�U%��U%U%�U%��U%��U%�%�c%��U%��c%��U%��U%�%�U%� \\ \"�c%��U%��c%��U%��U%��U%��U%��U%��U%�%�c%��U%��U%a%�U%��U%��U%��U%a%�U%��U%�%�U%� \\\"','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20624,'th','set_your_website_domain_name','�U%��U%�%�c%��U%��U%��U%V%�c%��U%��c%��U%��c%��U%��U%��c%��U%��c%��U%��c%��U%��U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20625,'th','google_recaptcha_setting','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�% reCAPTCHA �U%��U%��U%� Google','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20626,'th','site_key','�U%��U%a%�U%��c%��c%��U%��U%��c%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20627,'th','select_shipping_method','�c%��U%��U%V%�U%��U%��U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20628,'th','product_wise_shipping_cost','�U%��c%��U%�%�U%��U%��U%��c%��U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%��U%��U%�%�U%��U%��U%��U%�%�U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20629,'th','flat_rate_shipping_cost','�U%��c%��U%�%�U%��U%��U%��c%��U%��c%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%a%�c%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20630,'th','seller_wise_flat_shipping_cost','�U%��U%c%�c%��U%��U%�%�U%� Wise Flat �U%��c%��U%�%�U%��U%��U%��c%��U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20631,'th','note','�U%��U%�%�U%��U%��U%b%�U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20632,'th','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%��U%��U%�%�U%��U%��U%��U%�%�U%�: �U%��c%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%%�U%��U%��U%��c%��U%��U%��U%��U%�%�U%��U%��U%��U%��U%��c%��U%�%�U%��U%��U%��c%��U%��U%��U%$%�U%��U%��c%��U%�%�c%��U%��c%��U%��U%�%�U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20633,'th','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��c%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%a%�c%�: �U%��U%%�U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%a%�c%��U%��U%c%�U%��U%��c%��U%�%�U%��U%V%�c%��U%��c%��U%��c%��U%��U%%�U%��U%�%�U%� �U%��c%��U%�%�U%��U%��U%��c%��U%��U%��U%��U%��U%a%�c%�','2021-02-09 08:26:29','2021-09-20 07:30: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','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%a%�c%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�U%�: �U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%a%�c%��U%��U%%�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%��c%��U%��c%��U%��U%�%�U%��U%�%�U%� �U%��U%�%�U%��U%��U%c%�U%��U%��c%��U%�%�U%��U%V%�c%��U%��U%��U%$%�U%��U%��c%��U%�% 2 �U%��U%$%�c%��U%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��U%��c%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�U%� 2 �U%��U%�%�U%��U%��U%�%�U%��U%%�U%��U%��U%��c%��U%��U%��U%��U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%a%�c%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��c%��U%��c%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20635,'th','flat_rate_cost','�U%��c%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%a%�c%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20636,'th','shipping_cost_for_admin_products','�U%��c%��U%�%�U%��U%��U%��c%��U%��U%��U%%�U%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20637,'th','countries','�U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20638,'th','showhide','�c%��U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20639,'th','country_status_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20640,'th','all_subcategories','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20641,'th','add_new_subcategory','�c%��U%� �U%$%�c%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20642,'th','subcategories','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%�','2021-02-09 08:26:29','2021-09-20 07:30:09'),(20643,'th','sub_category_information','�U%��c%��U%��U%��U%c%�U%��U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%�','2021-02-09 08:27:11','2021-09-20 07:30:09'),(20644,'th','slug','�U%��U%��U%�%�U%��U%U%�U%�','2021-02-09 08:27:11','2021-09-20 07:30:09'),(20645,'th','all_sub_subcategories','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:11','2021-09-20 07:30:09'),(20646,'th','add_new_sub_subcategory','�c%��U%� �U%$%�c%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:11','2021-09-20 07:30:09'),(20647,'th','subsubcategories','�U%��U%��U%��U%��U%��c%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:27:11','2021-09-20 07:30:09'),(20648,'th','make_this_default','�U%��U%%�c%��U%��c%��c%��U%��c%��U%��U%��c%��U%�%�c%��U%��U%$%�c%��U%��U%��c%��U%�','2021-02-09 08:27:11','2021-09-20 07:30:09'),(20649,'th','shops','�U%��c%��U%�%�U%��U%��c%��U%�%','2021-02-09 08:27:11','2021-09-20 07:30:09'),(20650,'th','women_clothing__fashion','�c%��U%��U%V%�c%��U%��U%��c%��U%�%�c%��U%��U%�%�c%��U%��U%��U%�%�c%��U%��U%��U%c%�c%��U%��U%��U%$%�U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20651,'th','cellphones__tabs','�c%��U%��U%��U%��U%�%�U%� �U%��c%��U%��U%V%�U%��U%��U%V%�U%��c%��U%��U%�%�c%��U%��c%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20652,'th','welcome_to','�U%��U%$%�U%��U%��U%a%�U%��c%��U%��U%��U%��U%�%�U%��U%��U%c%�c%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20653,'th','create_a_new_account','�U%��U%��c%��U%�%�U%��U%��U%�%�U%��U%��U%a%�c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20654,'th','full_name','�U%��U%V%�c%��U%��c%��U%��c%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20655,'th','password','�U%��U%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:27:12','2021-02-09 08:27:12'),(20656,'th','confrim_password','Confrim �U%��U%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20657,'th','i_agree_with_the','�U%��U%�%�U%��c%��U%��c%��U%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20658,'th','terms_and_conditions','�U%��c%��U%��U%��U%%�U%��U%��U%��c%��U%��U%�%�c%��U%��U%V%�c%��U%��U%��c%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20659,'th','register','�U%��U%��U%��U%�%�c%��U%��U%a%�U%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20660,'th','already_have_an_account','�U%��U%a%�U%��U%�%�U%��U%��U%a%�U%��U%��U%c%�c%��c%��U%��c%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20661,'th','sign_up_with','�U%��U%��U%�%�U%��U%��U%��c%��U%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20662,'th','i_agree_with_the_terms_and_conditions','�U%��U%�%�U%��c%��U%��c%��U%��U%��c%��U%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%%�U%��U%��U%��c%��U%��U%�%�c%��U%��U%V%�c%��U%��U%��c%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20663,'th','all_role','�U%��U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20664,'th','add_new_role','�c%��U%� �U%$%�c%��U%��U%��U%��U%��U%�%�U%��c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20665,'th','roles','�U%��U%��U%��U%�%�U%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20666,'th','add_new_staffs','�c%��U%� �U%$%�c%��U%��U%� �U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:09'),(20667,'th','role','�U%��U%��U%��U%�%�U%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20668,'th','frontend_website_name','�U%��U%V%�c%��U%��c%��U%��c%��U%��c%��U%��U%��c%��U%��c%��U%��U%��U%��U%��c%��U%�%','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20669,'th','website_name','�U%��U%V%�c%��U%��c%��U%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20670,'th','site_motto','�U%��U%%�U%��U%��U%�%�U%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20671,'th','best_ecommerce_website','�c%��U%��c%��U%��c%��U%��U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%$%�U%��c%��U%��U%��U%a%�c%��U%��U%a%�U%��U%a%�c%��U%��U%U%�U%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20672,'th','site_icon','�c%��U%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20673,'th','website_favicon_32x32_png','Favicon �c%��U%��c%��U%��c%��U%��U%��c%� 32x32 .png','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20674,'th','website_base_color','�U%��U%a%�U%��U%�%�U%��U%��U%��U%��c%��U%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20675,'th','hex_color_code','�U%��U%��U%�%�U%��U%��U%a% Hex','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20676,'th','website_base_hover_color','�U%��U%a%�U%��U%�%�U%��c%��U%��c%��U%��U%��U%��c%��U%��U%��U%��c%��U%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20677,'th','update','�U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20678,'th','global_seo','Global Seo','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20679,'th','meta_description','�U%��U%%�U%��U%��U%$%�U%��U%�%�U%��c%��U%��U%��U%�%','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20680,'th','keywords','�U%��U%%�U%��U%��U%�%�U%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20681,'th','separate_with_coma','�c%��U%��U%��U%��U%�%�U%��c%��U%��U%��c%��U%�%','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20682,'th','website_pages','�U%��U%��c%��U%�%�c%��U%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20683,'th','all_pages','�U%��U%U%�U%��U%��U%��c%��U%�%','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20684,'th','add_new_page','�c%��U%� �U%$%�c%��U%��U%��U%��c%��U%�%�c%��U%��U%��c%�','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20685,'th','url','URL','2021-02-09 08:27:12','2021-09-20 07:30:10'),(20686,'th','actions','�U%��U%�%�U%��U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20687,'th','edit_page_information','�c%��U%��c%��c%��U%��U%��c%��U%��U%��U%c%�U%��c%��U%� �U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20688,'th','page_content','�c%��U%��U%V%�c%��U%��U%��U%�%�U%��U%��U%��U%��U%��c%��U%�%','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20689,'th','title','�U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20690,'th','link','�U%��U%$%�U%��U%��c%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20691,'th','use_character_number_hypen_only','�c%��U%��c%��U%��U%�%�U%��U%��U%��U%�%�U%��U%�%�U%��c%��U%��U%��U%��U%a%�U%��U%��U%��U%�%�U%��c%��U%��c%��U%�%�U%��U%�%�c%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20692,'th','add_content','�c%��U%� �U%$%�c%��U%��c%��U%��U%V%�c%��U%��U%��U%�%','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20693,'th','seo_fields','�c%��U%��U%��U%��c%��U%��U%��U%c%�U%� Seo','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20694,'th','update_page','�U%��U%�%�U%��c%��U%��U%��U%��U%��c%��U%�%','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20695,'th','default_language','�U%��U%�%�U%#�U%�%�c%��U%��U%$%�c%��U%��U%��c%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20696,'th','add_new_language','�c%��U%� �U%$%�c%��U%��U%��U%�%�U%#�U%�%�c%��U%��U%��c%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20697,'th','rtl','RTL','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20698,'th','translation','�U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20699,'th','language_information','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%#�U%�%','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20700,'th','save_page','�U%��U%�%�U%��U%��U%b%�U%��U%��U%��c%��U%�%','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20701,'th','home_page_settings','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��U%��c%��U%�%�c%��U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20702,'th','home_slider','�U%��c%��U%�%�U%��c%��U%��U%V%�c%��U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20703,'th','photos__links','�U%��U%c%�U%��U%��U%�%�U%� �c%��U%��U%�%�U%��U%$%�U%��U%��c%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20704,'th','add_new','�c%��U%� �U%$%�c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20705,'th','home_categories','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%�%�U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20706,'th','home_banner_1_max_3','�c%��U%��U%��c%��U%��U%��U%��c%��U%��U%��c%��U%�%�c%��U%��U%� 1 (�U%��U%c%�U%��U%��U%U%�U%� 3)','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20707,'th','banner__links','�c%��U%��U%��c%��U%��U%��U%��c%��c%��U%��U%�%�U%��U%$%�U%��U%��c%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20708,'th','home_banner_2_max_3','�c%��U%��U%��c%��U%��U%��U%��c%��U%��U%��c%��U%�%�c%��U%��U%� 2 (�U%��U%c%�U%��U%��U%U%�U%� 3)','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20709,'th','top_10','10 �U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20710,'th','top_categories_max_10','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%��U%��U%��U%$%�U%��U%� (�U%��U%c%�U%��U%��U%U%�U%� 10)','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20711,'th','top_brands_max_10','�c%��U%��U%��U%��U%��c%��U%��U%�%�c%��U%��U%��U%% (�U%��U%c%�U%��U%��U%U%�U%� 10)','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20712,'th','system_name','�U%��U%V%�c%��U%��U%��U%�%�U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20713,'th','system_logo__white','�c%��U%��c%��U%��c%��U%��U%�%�U%��U%� - �U%��U%a%�U%��U%�%�U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20714,'th','choose_files','�c%��U%��U%V%�U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20715,'th','will_be_used_in_admin_panel_side_menu','�U%��U%�%�c%��U%��c%��c%��U%��c%��U%��U%��U%c%�U%��c%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%��U%�%�U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20716,'th','system_logo__black','�c%��U%��c%��U%��c%��U%��U%�%�U%��U%� - �U%��U%a%�U%��U%%','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20717,'th','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','�U%��U%�%�U%��U%c%�U%��c%��U%��c%��c%��U%��c%��U%��U%��U%��c%��U%�%�U%��U%��U%��U%��U%��U%��c%��U%��U%��U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%��c%��U%�%�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��U%��U%V%�U%��U%��U%V%�U%� + �U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20718,'th','system_timezone','�c%��U%��U%��c%��U%��U%��U%�%�U%��U%��U%��U%��U%�%�U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20719,'th','admin_login_page_background','�U%� �U%V%�c%��U%��U%��U%��U%�%�U%��U%��U%��c%��U%�%�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20720,'th','website_header','�U%��c%��U%��U%��U%��U%�%�U%��U%��U%��U%��c%��U%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20721,'th','header_setting','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:13','2021-09-20 07:30:10'),(20722,'th','header_logo','�c%��U%��c%��U%��c%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20723,'th','show_language_switcher','�c%��U%��U%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%�%�U%#�U%�%?','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20724,'th','show_currency_switcher','�c%��U%��U%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%��U%U%�U%��c%��U%��U%$%�U%�?','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20725,'th','enable_stikcy_header','�c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%�%�U%� stikcy �c%��U%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20726,'th','website_footer','�U%��c%��U%��U%��U%��c%��U%�%�U%��U%��U%��U%��c%��U%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20727,'th','footer_widget','�U%��U%$%�U%��c%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20728,'th','about_widget','�c%��U%��U%a%�c%��U%��U%��U%��U%�%�U%� Widget','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20729,'th','footer_logo','�c%��U%��c%��U%��c%��U%��c%��U%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20730,'th','about_description','�c%��U%��U%a%�c%��U%��U%��U%��U%�%�U%��U%��U%%�U%��U%��U%$%�U%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20731,'th','contact_info_widget','�U%��U%$%�U%��c%��U%��c%��U%��U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20732,'th','footer_contact_address','�U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%$%�U%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20733,'th','footer_contact_phone','�c%��U%��U%��U%��U%�%�U%� �U%��c%��U%��U%$%�U%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20734,'th','footer_contact_email','�U%��U%a%�c%��U%��U%��U%��U%$%�U%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20735,'th','link_widget_one','�U%��U%$%�U%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%��U%��U%b%�c%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20736,'th','links','�U%��U%$%�U%��U%��c%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20737,'th','footer_bottom','�U%��c%��U%��U%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20738,'th','copyright_widget_','�U%��U%$%�U%��c%��U%��c%��U%��U%��U%$%�U%��U%��U%$%�U%��U%��U%$%�c%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20739,'th','copyright_text','�U%��c%��U%��U%��U%��U%�%�U%��U%��U%$%�U%��U%��U%$%�U%��U%��U%$%�c%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20740,'th','social_link_widget_','�U%��U%$%�U%��c%��U%��c%��U%��U%��U%$%�U%��U%��c%��c%��U%��c%��U%��U%a%�U%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20741,'th','show_social_links','�c%��U%��U%��U%��U%��U%$%�U%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�?','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20742,'th','social_links','�U%��U%$%�U%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20743,'th','payment_methods_widget_','�U%��U%$%�U%��c%��U%��c%��U%��U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20744,'th','rtl_status_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�U%��U%�% RTL �c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20745,'th','language_changed_to_','�c%��U%��U%��U%a%�c%��U%��U%��U%��U%�%�U%#�U%�%�c%��U%��c%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20746,'th','inhouse_product_sale_report','�U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%�%�U%��c%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20747,'th','sort_by_category','�U%��U%�%�U%��c%��U%��U%a%�U%��U%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20748,'th','product_wise_stock_report','�U%��U%�%�U%��U%��U%�%�U%��U%��U%��c%��U%��U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%��U%��U%�%�U%��U%��U%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20749,'th','currency_changed_to_','�c%��U%��U%��U%a%�c%��U%��U%��U%��U%��U%U%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20750,'th','avatar','�U%��U%�%�U%��U%��U%�%�U%��U%#�U%��c%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20751,'th','copy','�U%��U%%�c%��U%��U%�%','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20752,'th','variant','�U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20753,'th','variant_price','�U%��U%�%�U%��U%�%�U%��U%a%�c%��c%��U%��U%��U%��c%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20754,'th','sku','SKU','2021-02-09 08:27:14','2021-09-20 07:30:10'),(20755,'th','key','�U%��U%%�U%��U%�%�U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20756,'th','value','�U%��U%c%�U%��U%��c%��U%�%','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20757,'th','copy_translations','�U%��U%�%�U%��U%��U%��U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20758,'th','all_pickup_points','�U%��U%U%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20759,'th','add_new_pickup_point','�c%��U%� �U%$%�c%��U%��U%��U%U%�U%��U%��U%�%�U%��c%��U%��U%��c%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20760,'th','manager','�U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20761,'th','location','�U%��U%��U%�%�U%��U%��U%a%�c%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20762,'th','pickup_station_contact','�U%��U%$%�U%��U%��c%��U%��U%��U%��U%�%�U%��U%a%�U%��U%��U%��U%��U%�%�U%��U%�%','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20763,'th','open','�c%��U%��U%$%�U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20764,'th','pos_activation_for_seller','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� POS �U%��U%%�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20765,'th','order_completed_successfully','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��c%��U%��U%��c%��U%��U%��U%��U%��U%c%�U%��U%��c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20766,'th','text_input','�U%��U%�%�U%��U%��c%��U%��U%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20767,'th','select','�c%��U%��U%V%�U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20768,'th','multiple_select','�c%��U%��U%V%�U%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20769,'th','radio','�U%��U%$%�U%��U%��U%U%','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20770,'th','file','�c%��U%��U%��c%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20771,'th','email_address','�U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%a%�c%��U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20772,'th','verification_info','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20773,'th','approval','�U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20774,'th','due_amount','�U%��U%%�U%��U%��U%��c%��U%��U%$%�U%��U%��U%a%�c%��U%��U%��U%��U%��U%%�U%��U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20775,'th','show','�c%��U%��U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20776,'th','pay_now','�U%��c%��U%�%�U%��U%��U%��U%��U%��U%a%�c%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20777,'th','affiliate_user_verification','�U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%��U%��U%c%�c%��c%��U%��c%� Affiliate','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20778,'th','reject','�U%��U%��U%$%�c%��U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20779,'th','accept','�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20780,'th','beauty_health__hair','�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%U%�U%��U%��U%�%�U%� �c%��U%��U%�%�c%��U%��c%��U%��U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20781,'th','comparison','�U%��U%�%�U%��c%��U%��U%��U%a%�U%��U%��c%��U%��U%a%�U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20782,'th','reset_compare_list','�U%��U%a%�c%��U%��c%��U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%a%�U%��U%��c%��U%��U%a%�U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20783,'th','your_comparison_list_is_empty','�U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%a%�U%��U%��c%��U%��U%a%�U%��U%��U%��U%��U%��U%��U%U%�U%��U%��c%��U%�%�U%��c%��U%��U%��c%��U%�%','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20784,'th','convert_point_to_wallet','�c%��U%��U%��U%� Point �c%��U%��c%��U%� Wallet','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20785,'th','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','�U%��U%��U%�%�U%��c%��U%��U%��U%U%: �U%��U%U%�U%��U%��c%��U%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%V%�U%��U%��U%��U%��U%�%�c%��U%��c%��U%�%�c%��U%��U%$%�U%��U%��c%��U%��U%��U%��U%b%�U%��U%��U%�%�c%��U%��c%��U%��c%��U%��U%��c%��U%��U%��U%$%�U%��U%��U%�%�c%��U%��U%��U%��U%��U%�%�U%��c%��U%��c%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20786,'th','create_an_account','�U%��U%��c%��U%�%�U%��U%��U%�%�U%��U%��U%a%.','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20787,'th','use_email_instead','�c%��U%��c%��U%��U%a%�c%��U%��U%��c%��U%��U%�','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20788,'th','by_signing_up_you_agree_to_our_terms_and_conditions','�U%��U%�%�U%��U%��U%��U%��U%�%�c%��U%��U%a%�U%��U%��c%��U%��U%��U%��U%��c%��U%�%�U%��U%U%�U%��U%��U%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%%�U%��U%��U%��c%��U%��U%�%�c%��U%��U%V%�c%��U%��U%��c%��U%��U%��U%��U%��c%��U%��U%�%','2021-02-09 08:27:15','2021-09-20 07:30:10'),(20789,'th','create_account','�U%��U%��c%��U%�%�U%��U%��U%�%�U%��U%��U%a%','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20790,'th','or_join_with','�U%��U%��U%V%�U%��c%��U%��c%��U%�%�U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20791,'th','already_have_an_account','�U%��U%a%�U%��U%�%�U%��U%��U%a%�U%��U%��U%c%�c%��c%��U%��c%��U%�?','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20792,'th','log_in','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20793,'th','computer__accessories','�U%��U%U%�U%��U%��U%��U%��c%��U%��U%��U%��U%� �U%$%�U%��c%��U%��U%��U%��c%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20794,'th','products','�U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20795,'th','in_your_cart','�c%��U%��U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20796,'th','in_your_wishlist','�c%��U%��U%��U%$%�c%��U%��U%��U%a%�c%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20797,'th','you_ordered','�U%��U%U%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20798,'th','default_shipping_address','�U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��c%��U%��c%��U%��U%$%�c%��U%��U%��c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20799,'th','sports__outdoor','�U%��U%a%�U%��U%�%�c%��U%��U%�%�U%��U%$%�U%��U%��U%��U%��U%��U%��U%��U%�%�U%��c%��U%��c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20800,'th','copied','�U%��U%�%�U%��U%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20801,'th','copy_the_promote_link','�U%��U%�%�U%��U%��U%��U%��U%��U%$%�U%��U%��c%��c%��U%��U%��c%��U%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20802,'th','write_a_review','�c%��U%��U%��U%��U%��U%��U%�%�U%��U%��U%$%�U%��c%��U%��c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20803,'th','your_name','�U%��U%V%�c%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20804,'th','comment','�c%��U%��U%��U%��U%��U%��U%�%�U%��U%��U%$%�U%��c%��U%��c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20805,'th','your_review','�U%��U%��U%��U%$%�U%��U%�%�U%��U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20806,'th','submit_review','�U%��c%��U%��U%��U%��U%��U%$%�U%��U%�%�U%��U%��c%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20807,'th','claire_willis','�c%��U%��U%��U%��c%��U%��U%$%�U%��U%��U%$%�U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20808,'th','germaine_greene','Germaine Greene','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20809,'th','product_file','�c%��U%��U%��c%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20810,'th','choose_file','�c%��U%��U%V%�U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20811,'th','type_to_add_a_tag','�U%� �U%$%�U%��U%� �c%��c%��U%� �U%V%�c%��U%��c%��U%� �U%$%�c%��U%��c%��U%��c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20812,'th','images','�U%��U%c%�U%��U%��U%�%�U%� ','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20813,'th','main_images','�U%��U%�%�U%� �U%��U%��U%�%�U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20814,'th','meta_tags','�c%��U%��U%��U%�%�c%��U%��c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20815,'th','digital_product_has_been_inserted_successfully','�c%��U%��c%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%$%�U%��U%$%�U%��U%�%�U%��U%��U%%�c%��U%��c%��U%��c%��U%��c%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20816,'th','edit_digital_product','�c%��U%��c%��c%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%$%�U%��U%$%�U%��U%�%�U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20817,'th','select_an_option','�c%��U%��U%V%�U%��U%��U%��U%�%�U%��c%��U%��U%V%�U%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20818,'th','tax','�U%��U%�%�U%#�U%a%','2021-02-09 08:27:16','2021-02-09 08:27:16'),(20819,'th','any_question_about_this_product','�U%��U%%�U%��U%�%�U%��c%��U%� �c%� �c%��U%��U%a%�c%��U%��U%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%a%�c%�?','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20820,'th','sign_in','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%�','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20821,'th','login_with_google','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��U%��c%��U%��U%� Google','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20822,'th','login_with_facebook','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��U%��c%��U%��U%� Facebook','2021-02-09 08:27:16','2021-09-20 07:30:10'),(20823,'th','login_with_twitter','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��U%��c%��U%��U%� Twitter','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20824,'th','click_to_show_phone_number','�U%��U%��U%$%�U%��c%��U%� �U%V%�c%��U%��c%��U%��U%��U%��U%��U%��U%�%�U%��c%��U%��U%��c%��U%��U%��U%��U%�%�U%� �U%��c%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20825,'th','other_ads_of','�c%��U%��U%#�U%��U%�%�U%��U%V%�c%��U%� �c%� �U%��U%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20826,'th','store_home','�U%��U%�%�U%��c%��U%��c%��U%��U%��U%��c%��U%�%�c%��U%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20827,'th','top_selling','�U%��U%a%�U%��U%��U%��U%��U%�%�U%��U%��U%c%�U%��U%��U%U%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20828,'th','shop_settings','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��c%��U%�%�U%��U%��c%��U%�%','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20829,'th','visit_shop','�c%��U%��U%a%�c%��U%��U%��U%��U%��U%��c%��U%�%�U%��U%��c%��U%�%','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20830,'th','pickup_points','�U%��U%U%�U%��U%��U%�%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20831,'th','select_pickup_point','�c%��U%��U%V%�U%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20832,'th','slider_settings','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��U%�%�U%��c%��U%��U%V%�c%��U%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20833,'th','social_media_link','�U%��U%$%�U%��U%��c%��c%��U%��c%��U%��U%a%�U%��U%��U%��U%a%�c%��U%��U%a%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20834,'th','facebook','�c%��U%��U%��U%��U%U%�c%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20835,'th','twitter','�U%��U%��U%$%�U%��c%��U%��U%��U%��c%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20836,'th','google','Google','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20837,'th','new_arrival_products','�U%��U%$%�U%��U%��c%��U%�%�U%��U%�%�c%��U%��U%��c%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20838,'th','check_your_order_status','�U%��U%��U%��U%��U%��U%��U%��U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20839,'th','shipping_method','�U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20840,'th','shipped_by','�U%��U%�%�U%��U%��c%��U%��c%��U%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20841,'th','image','�U%��U%�%�U%� ','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20842,'th','sub_sub_category','�U%��U%��U%��U%��U%��c%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20843,'th','inhouse_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��c%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20844,'th','forgot_password','�U%��U%V%�U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%�?','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20845,'th','enter_your_email_address_to_recover_your_password','�U%��c%��U%��U%��U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%a%�c%��U%��U%��U%��U%��U%��U%��U%U%�U%��c%��U%� �U%V%�c%��U%��U%��U%c%�c%��U%��U%V%�U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20846,'th','email_or_phone','�U%��U%a%�c%��U%��U%��U%��U%��U%V%�U%��c%��U%��U%��U%��U%�%�U%� �U%��c%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20847,'th','send_password_reset_link','�U%��c%��U%��U%��U%$%�U%��U%��c%��U%��U%a%�c%��U%��c%��U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20848,'th','back_to_login','�U%��U%��U%�%�U%��c%��U%��U%��U%a%�c%��U%��U%�%�U%��c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20849,'th','index','�U%��U%�%�U%��U%��U%a%','2021-02-09 08:27:17','2021-02-09 08:27:17'),(20850,'th','download_your_product','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20851,'th','option','�U%��U%�%�U%��c%��U%��U%V%�U%��U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20852,'th','applied_refund_request','�c%��U%��c%��U%��U%%�U%��U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20853,'th','item_has_been_renoved_from_wishlist','�U%��U%�%�U%��U%��U%�%�U%��U%��U%c%�U%��U%��U%��c%��U%��U%$%�U%��U%��U%�%�U%��U%��U%$%�c%��U%��U%��U%a%�c%��U%��U%��U%�%�U%��c%��U%��c%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20854,'th','bulk_products_upload','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:17','2021-09-20 07:30:10'),(20855,'th','upload_csv','�U%��U%�%�U%��c%��U%��U%��U%� CSV','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20856,'th','create_a_ticket','�U%��U%��c%��U%�%�U%��U%��U%�%�c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20857,'th','tickets','�U%��U%�%�c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20858,'th','ticket_id','�U%��U%��U%�%�U%��U%��U%�%�c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20859,'th','sending_date','�U%��U%�%�U%��U%��U%a%�c%��U%��c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20860,'th','subject','�c%��U%��U%V%�c%��U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20861,'th','view_details','�U%��U%c%�U%��U%�%�U%��U%��U%�%�c%��U%��U%a%�U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20862,'th','provide_a_detailed_description','�c%��U%��c%��U%��U%%�U%��U%��U%$%�U%��U%�%�U%��c%��U%��U%��U%��U%�%�c%��U%��U%a%�U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20863,'th','type_your_reply','�U%� �U%$%�U%��U%� �c%��U%��U%%�U%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20864,'th','send_ticket','�U%��c%��U%��U%��U%�%�c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20865,'th','load_more','�c%��U%��U%��U%��c%��U%� �U%$%�c%��U%��c%��U%��U%$%�U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20866,'th','jewelry__watches','�c%��U%��U%��U%V%�c%��U%��U%��U%��U%��U%�%�U%��U%�%�U%��c%��U%��U%�%�U%��U%�%�U%��U%$%�U%��U%�%','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20867,'th','filters','�U%��U%$%�U%��c%��U%��U%��U%��c%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20868,'th','contact_address','�U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%$%�U%��U%��c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20869,'th','contact_phone','�c%��U%��U%��U%��U%�%�U%� �U%��c%��U%��U%$%�U%��U%��c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20870,'th','contact_email','�U%��U%a%�c%��U%��U%��U%��U%$%�U%��U%��c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20871,'th','filter_by','�U%��U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20872,'th','condition','�c%��U%��U%V%�c%��U%��U%��c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20873,'th','all_type','�U%��U%U%�U%��U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20874,'th','pay_with_wallet','�U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��c%��U%��U%��U%��U%��U%�%�c%��U%��c%��U%�%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20875,'th','select_variation','�c%��U%��U%V%�U%��U%��U%��U%c%�U%��c%��U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20876,'th','no_product_added','�c%��U%��c%��U%��U%a%�U%��U%�%�U%��c%��U%� �U%$%�c%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20877,'th','status_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�U%��U%�%�c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20878,'th','all_seller_packages','�c%��U%� �c%��U%��c%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20879,'th','add_new_package','�c%��U%� �U%$%�c%��U%��c%��U%� �c%��U%��c%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20880,'th','package_logo','�c%��U%��c%��U%��c%��c%��U%� �c%��U%��c%��U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20881,'th','days','�U%��U%�%�U%�','2021-02-09 08:27:18','2021-02-09 08:27:18'),(20882,'th','create_new_seller_package','�U%��U%��c%��U%�%�U%��c%��U%� �c%��U%��c%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��c%��U%��U%��c%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20883,'th','package_name','�U%��U%V%�c%��U%��c%��U%� �c%��U%��c%��U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20884,'th','duration','�U%��U%�%�U%��U%�%�c%��U%��U%��U%�%','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20885,'th','validity_in_number_of_days','�U%��U%�%�U%��U%U%�U%��U%�%�U%��c%��U%��c%��U%��U%�%�U%��c%��U%��c%��U%��U%��U%%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20886,'th','update_package_information','�U%��U%�%�U%��c%��U%��U%��U%��c%��U%��U%��U%c%�U%��c%��U%� �c%��U%��c%��U%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20887,'th','package_has_been_inserted_successfully','�c%��U%��c%��c%��U%� �c%��U%��c%��U%��U%��U%��U%%�c%��U%��c%��U%��c%��U%��c%��U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20888,'th','refund_request','�U%��U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:18','2021-09-20 07:30:10'),(20889,'th','reason','�c%��U%��U%��U%U%�U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20890,'th','label','�U%��U%��U%�%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20891,'th','select_label','�c%��U%��U%V%�U%��U%��U%��c%��U%�%�U%��U%��U%%�U%��U%�%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20892,'th','multiple_select_label','�U%��U%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%V%�U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20893,'th','radio_label','�U%��c%��U%�%�U%��U%��U%$%�U%��U%��U%U%','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20894,'th','pickup_point_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20895,'th','view','�U%��U%c%','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20896,'th','order_','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%� #','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20897,'th','order_status','�U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20898,'th','total_amount','�U%��U%%�U%��U%��U%��c%��U%��U%$%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20899,'th','total','�U%��U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20900,'th','delivery_status_has_been_updated','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��c%��U%��c%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20901,'th','payment_status_has_been_updated','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��c%��U%��c%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20902,'th','invoice','�c%��U%��c%��U%��c%��U%��U%��U%��U%a%�c%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20903,'th','set_refund_time','�U%��U%%�U%��U%��U%��c%��U%��U%��U%�%�U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20904,'th','set_time_for_sending_refund_request','�U%��U%%�U%��U%��U%��c%��U%��U%��U%�%�c%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%%�U%��U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20905,'th','set_refund_sticker','�U%��U%�%�c%��U%��U%��U%��U%$%�U%��c%��U%��U%��U%��c%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20906,'th','sticker','�U%��U%��U%$%�c%��U%��c%��U%��U%��U%��c%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20907,'th','refund_request_all','�U%��U%��U%��U%V%�U%��c%��U%��U%$%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20908,'th','order_id','�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20909,'th','seller_approval','�U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%�U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20910,'th','admin_approval','�U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%�U%��U%��U%��U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20911,'th','refund_status','�U%��U%��U%�%�U%��U%�%�U%��U%�%�U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20912,'th','no_refund','�c%��U%��c%��U%��U%a%�U%��U%�%�U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20913,'th','status_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�U%��U%�%�c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20914,'th','user_search_report','�U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%�%�U%��U%c%�c%��c%��U%��c%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20915,'th','search_by','�U%��c%��U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20916,'th','number_searches','�U%��U%�%�U%��U%��c%��U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20917,'th','sender','�U%��U%c%�c%��U%��c%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20918,'th','receiver','�U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20919,'th','verification_form_updated_successfully','�U%��U%�%�U%��c%��U%��U%��c%��U%��U%��U%��U%��U%��c%��U%��U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20920,'th','invalid_email_or_password','�U%��U%a%�c%��U%��U%��U%��U%��U%V%�U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%�','2021-02-09 08:27:19','2021-09-20 07:30:10'),(20921,'th','all_coupons','�U%��U%c%�U%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20922,'th','add_new_coupon','�c%��U%� �U%$%�c%��U%��U%��U%c%�U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20923,'th','coupon_information','�U%��c%��U%��U%��U%c%�U%��U%��U%c%�U%��U%��U%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20924,'th','start_date','�U%��U%�%�U%��U%��U%a%�c%��c%��U%��U%$%�c%��U%��U%��c%��U%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20925,'th','end_date','�U%��U%�%�U%��U%��U%a%�c%��U%��U%$%�c%��U%��U%��U%U%�U%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20926,'th','product_base','�U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20927,'th','send_newsletter','�U%��c%��U%��U%��U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20928,'th','mobile_users','�U%��U%c%�c%��c%��U%��c%��U%��U%V%�U%��U%��U%V%�U%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20929,'th','sms_subject','�c%��U%��U%V%�c%��U%��U%� SMS','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20930,'th','sms_content','�c%��U%��U%V%�c%��U%��U%��U%�% SMS','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20931,'th','all_flash_delas','Flash Delas �U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20932,'th','create_new_flash_dela','�U%��U%��c%��U%�%�U%� Flash Dela �c%��U%��U%��c%�','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20933,'th','page_link','�U%��U%$%�U%��U%��c%��U%��U%��c%��U%�%','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20934,'th','flash_deal_information','Flash Deal Information','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20935,'th','background_color','Background Color','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20936,'th','0000ff','#0000ff','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20937,'th','text_color','Text Color','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20938,'th','white','White','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20939,'th','dark','Dark','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20940,'th','choose_products','Choose Products','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20941,'th','discounts','Discounts','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20942,'th','discount_type','Discount Type','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20943,'th','twillo_credential','Twillo Credential','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20944,'th','twilio_sid','TWILIO SID','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20945,'th','twilio_auth_token','TWILIO AUTH TOKEN','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20946,'th','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20947,'th','valid_twillo_number','VALID TWILLO NUMBER','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20948,'th','nexmo_credential','Nexmo Credential','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20949,'th','nexmo_key','NEXMO KEY','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20950,'th','nexmo_secret','NEXMO SECRET','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20951,'th','ssl_wireless_credential','SSL Wireless Credential','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20952,'th','ssl_sms_api_token','SSL SMS API TOKEN','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20953,'th','ssl_sms_sid','SSL SMS SID','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20954,'th','ssl_sms_url','SSL SMS URL','2021-02-09 08:27:20','2021-09-20 07:30:10'),(20955,'th','fast2sms_credential','Fast2SMS Credential','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20956,'th','auth_key','AUTH KEY','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20957,'th','route','ROUTE','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20958,'th','promotional_use','Promotional Use','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20959,'th','transactional_use','Transactional Use','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20960,'th','sender_id','SENDER ID','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20961,'th','nexmo_otp','Nexmo OTP','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20962,'th','twillo_otp','Twillo OTP','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20963,'th','ssl_wireless_otp','SSL Wireless OTP','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20964,'th','fast2sms_otp','Fast2SMS OTP','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20965,'th','order_placement','Order Placement','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20966,'th','delivery_status_changing_time','Delivery Status Changing Time','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20967,'th','paid_status_changing_time','Paid Status Changing Time','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20968,'th','send_bulk_sms','Send Bulk SMS','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20969,'th','all_subscribers','All Subscribers','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20970,'th','coupon_information_adding','Coupon Information Adding','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20971,'th','coupon_type','Coupon Type','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20972,'th','for_products','For Products','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20973,'th','for_total_orders','For Total Orders','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20974,'th','add_your_product_base_coupon','Add Your Product Base Coupon','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20975,'th','coupon_code','Coupon code','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20976,'th','sub_category','Sub Category','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20977,'th','add_more','Add More','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20978,'th','add_your_cart_base_coupon','Add Your Cart Base Coupon','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20979,'th','minimum_shopping','Minimum Shopping','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20980,'th','maximum_discount_amount','Maximum Discount Amount','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20981,'th','coupon_information_update','Coupon Information Update','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20982,'th','please_configure_smtp_setting_to_work_all_email_sending_funtionality','�c%��U%��U%��U%��U%��U%%�U%��U%��U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�% SMTP �c%��U%� �U%V%�c%��U%��c%��U%��c%��U%��U%�%�U%��U%�%�U%��U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%a%�c%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%��c%��U%��c%�','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20983,'th','configure_now','�U%��U%%�U%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��U%a%','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20984,'th','total_published_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%a%�c%��c%��U%��U%��c%��U%� �U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20985,'th','total_sellers_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20986,'th','total_admin_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%%�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20987,'th','manage_products','�U%��U%�%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20988,'th','total_product_category','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:21','2021-09-20 07:30:10'),(20989,'th','create_category','�U%��U%��c%��U%�%�U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20990,'th','total_product_sub_sub_category','�U%��U%��U%��U%��U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20991,'th','create_sub_sub_category','�U%��U%��c%��U%�%�U%��U%��U%��U%��U%��U%��c%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20992,'th','total_product_sub_category','�U%��U%��U%��U%��U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20993,'th','create_sub_category','�U%��U%��c%��U%�%�U%��U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20994,'th','total_product_brand','�c%��U%��U%��U%��U%��c%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20995,'th','create_brand','�U%��U%��c%��U%�%�U%��c%��U%��U%��U%��U%��c%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20996,'th','total_sellers','�U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20997,'th','total_approved_sellers','�U%��U%c%�c%��U%��U%�%�U%��U%��U%a%�c%��c%��U%��c%��U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%�U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:10'),(20998,'th','total_pending_sellers','�U%��U%c%�c%��U%��U%�%�U%��U%��U%a%�c%��U%��U%��U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(20999,'th','manage_sellers','�U%��U%�%�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21000,'th','category_wise_product_sale','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%��U%��U%�%�U%��U%��U%��U%�%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21001,'th','sale','�U%��U%�%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21002,'th','category_wise_product_stock','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%��c%��U%��U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%��U%��U%�%�U%��U%��U%��U%�%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21003,'th','category_name','�U%��U%V%�c%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21004,'th','stock','�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21005,'th','frontend','�U%��c%��U%��U%��U%��U%��c%��U%�%','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21006,'th','home_page','�U%��U%��c%��U%�%�c%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21007,'th','setting','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%','2021-02-09 08:27:22','2021-02-09 08:27:22'),(21008,'th','policy_page','�U%��U%��c%��U%�%�U%��c%��U%��U%��U%�%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21009,'th','general','�U%��U%�%�c%��U%��c%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21010,'th','click_here','�U%��U%��U%$%�U%��U%��U%a%�c%��U%��U%a%�c%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21011,'th','useful_link','�U%��U%$%�U%��U%��c%��U%��U%a%�c%��c%��U%��c%��U%��U%��U%��U%�%�c%��U%��U%��U%��c%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21012,'th','activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21013,'th','smtp','SMTP','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21014,'th','payment_method','�U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21015,'th','social_media','�U%��U%V%�c%��U%��U%��U%�%�U%��U%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21016,'th','business','�U%��U%U%�U%��U%��U%$%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21017,'th','seller_verification','�U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21018,'th','form_setting','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�c%��U%��U%��U%��U%��U%��c%��U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21019,'th','language','�U%��U%�%�U%#�U%�%','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21020,'th','dashboard','�c%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21021,'th','pos_system','�U%��U%�%�U%��U%� POS','2021-02-09 08:27:22','2021-09-20 07:30:11'),(21022,'th','pos_manager','�U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�U%� POS','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21023,'th','pos_configuration','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�% POS','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21024,'th','products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21025,'th','add_new_product','�c%��U%� �U%$%�c%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��c%��U%��U%��c%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21026,'th','all_products','�U%��U%$%�U%��U%��c%��U%�%�U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21027,'th','in_house_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��c%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21028,'th','seller_products','�U%��U%c%�c%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21029,'th','digital_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%$%�U%��U%$%�U%��U%�%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21030,'th','bulk_import','�U%��U%%�c%��U%��c%��U%�%�U%��U%%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21031,'th','bulk_export','�U%��c%��U%��U%��U%��U%��U%��U%%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21032,'th','category','�U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21033,'th','subcategory','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21034,'th','sub_subcategory','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21035,'th','brand','�U%��U%a%�c%��U%��c%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21036,'th','attribute','�c%��U%��U%��U%��U%��U%$%�U%��U%$%�U%��U%��c%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21037,'th','product_reviews','�U%��U%��U%��U%$%�U%��U%�%�U%��U%��c%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21038,'th','sales','�U%��c%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21039,'th','all_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21040,'th','inhouse_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%�%�U%��c%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21041,'th','seller_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21042,'th','pickup_point_order','�U%��U%U%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21043,'th','refunds','�U%��U%�%�U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21044,'th','refund_requests','�U%��U%%�U%��U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21045,'th','approved_refund','�U%��U%��U%U%�U%��U%�%�U%��U%$%�U%��U%�%�U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21046,'th','refund_configuration','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��U%V%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21047,'th','customers','�U%��U%c%�U%��U%��c%��U%�%','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21048,'th','customer_list','�U%��U%�%�U%��U%��U%V%�c%��U%��U%��U%c%�U%��U%��c%��U%�%','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21049,'th','classified_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��c%��U%��U%��U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21050,'th','classified_packages','�c%��U%� �c%��U%��c%��U%��U%��c%��U%��U%��U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21051,'th','sellers','�U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21052,'th','all_seller','�U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21053,'th','payouts','�U%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21054,'th','payout_requests','�U%��U%%�U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21055,'th','seller_commission','�U%��c%��U%�%�U%��U%��U%��U%��U%$%�U%��U%��U%�%�c%��U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:23','2021-09-20 07:30:11'),(21056,'th','seller_packages','�c%��U%� �c%��U%��c%��U%��U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21057,'th','seller_verification_form','�c%��U%��U%��U%��U%��U%��c%��U%��U%��U%V%�U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21058,'th','reports','�U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21059,'th','in_house_product_sale','�U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%�c%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21060,'th','seller_products_sale','�U%��U%c%�c%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21061,'th','products_stock','�U%��U%��c%��U%��U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21062,'th','products_wishlist','�U%��U%�%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%�U%��U%a%�c%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21063,'th','user_searches','�U%��U%�%�U%��U%��c%��U%��U%��U%�%�U%��U%c%�c%��c%��U%��c%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21064,'th','marketing','�U%��U%�%�U%��U%��U%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21065,'th','flash_deals','�U%��c%��U%��c%��U%��U%��U%��c%��U%��U%��U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21066,'th','newsletters','�U%��U%��U%��U%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21067,'th','bulk_sms','SMS �U%��U%%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21068,'th','subscribers','�U%��U%��U%�%�U%��U%$%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21069,'th','coupon','�U%��U%c%�U%��U%��U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21070,'th','support','�U%��U%��U%�%�U%��U%��U%��U%U%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21071,'th','ticket','�U%��U%�%�c%��U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21072,'th','product_queries','�U%��U%%�U%��U%�%�U%��c%��U%��U%a%�c%��U%��U%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21073,'th','website_setup','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�c%��U%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21074,'th','header','�U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21075,'th','footer','�U%��c%��U%��U%��U%��c%��U%�%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21076,'th','pages','�U%��U%��c%��U%�%','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21077,'th','appearance','�U%��U%�%�U%��U%#�U%��U%�%','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21078,'th','setup__configurations','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�c%��U%��U%�%�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�%','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21079,'th','general_settings','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��U%�%�c%��U%��c%��U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21080,'th','features_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21081,'th','languages','�U%��U%�%�U%#�U%�%','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21082,'th','currency','�U%��U%��U%U%�U%��c%��U%��U%$%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21083,'th','pickup_point','�U%��U%U%�U%��U%��U%�%�U%��U%��U%��U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21084,'th','smtp_settings','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�% SMTP','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21085,'th','payment_methods','�U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21086,'th','file_system_configuration','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21087,'th','social_media_logins','�U%��U%�%�U%��c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��c%��U%��c%��U%��U%a%�U%��U%��U%��U%a%�c%��U%��U%a%�U%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21088,'th','analytics_tools','�c%��U%��U%��U%V%�c%��U%��U%��U%��U%V%�U%��U%��U%$%�c%��U%��U%��U%�%�U%�%�U%��c%�','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21089,'th','facebook_chat','�c%��U%��U%� Facebook','2021-02-09 08:27:24','2021-09-20 07:30:11'),(21090,'th','google_recaptcha','Google reCAPTCHA','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21091,'th','shipping_configuration','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21092,'th','shipping_countries','�U%��U%��U%�%�c%��U%��U%��U%��U%a%�c%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21093,'th','affiliate_system','�U%��U%�%�U%��U%��U%� �U%�%�U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21094,'th','affiliate_registration_form','�c%��U%��U%��U%��U%��U%��c%��U%��U%��U%�%�U%��U%��U%��U%��U%�%�c%��U%��U%a%�U%��U%��U%� �U%�%�U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21095,'th','affiliate_configurations','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�%�U%� �U%�%�U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21096,'th','affiliate_users','�U%��U%c%�c%��c%��U%��c%��U%� �U%�%�U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21097,'th','referral_users','�U%��U%c%�c%��c%��U%��c%��U%��c%��U%�%�U%��U%��U%$%�U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21098,'th','affiliate_withdraw_requests','�U%� �U%�%�U%��U%��U%��U%$%�U%��U%��U%��U%��U%��U%��U%%�U%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21099,'th','offline_payment_system','�U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21100,'th','manual_payment_methods','�U%��U%$%�U%��U%a%�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��c%��U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21101,'th','offline_wallet_recharge','�c%��U%��U%$%�U%��c%��U%��U%$%�U%� Wallet �c%��U%��U%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21102,'th','offline_customer_package_payments','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��c%��U%� �U%��c%��U%��U%��U%��U%c%�U%��U%��c%��U%�%�U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21103,'th','offline_seller_package_payments','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��c%��U%� �c%��U%��c%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21104,'th','paytm_payment_gateway','Paytm Payment Gateway','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21105,'th','set_paytm_credentials','�U%��U%�%�c%��U%��U%��c%��U%�%�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� Paytm','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21106,'th','club_point_system','�U%��U%�%�U%��U%� Club Point','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21107,'th','club_point_configurations','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�% Club Point','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21108,'th','set_product_point','�U%��U%%�U%��U%��U%��U%��U%U%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21109,'th','user_points','�U%��U%�%�c%��U%��U%��U%��U%��U%��U%��U%c%�c%��c%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21110,'th','otp_system','�U%��U%�%�U%��U%� OTP','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21111,'th','otp_configurations','�U%��U%�%�U%��U%��U%%�U%��U%��U%��U%��c%��U%�% OTP','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21112,'th','set_otp_credentials','�U%��U%�%�c%��U%��U%��c%��U%�%�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%��U%� OTP','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21113,'th','staffs','�U%� �U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21114,'th','all_staffs','�U%� �U%��U%�%�U%��U%��U%�%�U%��U%��U%U%�U%��U%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21115,'th','staff_permissions','�U%��U%$%�U%��U%��U%$%�c%��U%��U%��U%��c%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��U%a%�c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21116,'th','addon_manager','�U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�U%� Addon','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21117,'th','browse_website','�c%��U%��U%a%�U%��U%��U%��U%c%�c%��U%��c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21118,'th','pos','POS','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21119,'th','notifications','�U%��U%�%�U%��c%��U%��c%��U%��c%��U%��U%V%�U%��U%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21120,'th','new_orders','�U%��U%%�U%��U%�%�c%��U%��U%��U%V%�c%��U%��c%��U%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21121,'th','userimage','�U%��U%�%�U%� �U%��U%c%�c%��c%��U%��c%�','2021-02-09 08:27:25','2021-09-20 07:30:11'),(21122,'th','profile','�U%��c%��U%��U%��U%c%�U%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:27:26','2021-09-20 07:30:11'),(21123,'th','logout','�U%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��U%�','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21124,'th','page_not_found','�c%��U%��c%��U%� �U%��U%��U%��c%��U%�%�U%��U%a%�c%�!','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21125,'th','the_page_you_are_looking_for_has_not_been_found_on_our_server','�c%��U%��c%��U%� �U%��U%��U%��c%��U%�%�U%��U%a%�c%��U%��U%U%�U%��U%��U%%�U%��U%�%�U%��U%��c%��U%��U%��U%�%�U%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%��U%��c%��U%��U%��U%��c%��U%��U%�%','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21126,'th','registration','�U%��U%�%�U%��U%��U%��U%��U%�%�c%��U%��U%a%�U%��U%�','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21127,'th','i_am_shopping_for','�U%��U%�%�U%��U%��U%%�U%��U%�%�U%��U%��U%V%�c%��U%��U%��U%��U%� ...','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21128,'th','compare','�c%��U%��U%��U%a%�U%��U%��c%��U%��U%a%�U%��U%�','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21129,'th','wishlist','Wishlist','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21130,'th','cart','�U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21131,'th','your_cart_is_empty','�U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%U%�U%��U%��c%��U%�%�U%��c%��U%��U%��c%��U%�%','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21132,'th','categories','�U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21133,'th','see_all','�U%��U%c%�U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:28:01','2021-09-20 07:30:11'),(21134,'th','seller_policy','�U%��c%��U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21135,'th','return_policy','�U%��c%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%V%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21136,'th','support_policy','�U%��c%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%��U%U%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21137,'th','privacy_policy','�U%��c%��U%��U%��U%�%�U%��U%��U%��U%�%�U%��c%��U%��c%��U%��U%��c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21138,'th','your_email_address','�U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%a%�c%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21139,'th','subscribe','�U%��U%$%�U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21140,'th','contact_info','�U%��c%��U%��U%��U%c%�U%��U%��U%$%�U%��U%��c%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21141,'th','address','�U%��U%a%�c%��U%��U%��U%c%�c%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21142,'th','phone','�c%��U%��U%��U%��U%�%�U%� �U%��c%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21143,'th','email','�U%��U%a%�c%��U%��U%��c%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21144,'th','login','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21145,'th','my_account','�U%��U%�%�U%��U%��U%a%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21146,'th','order_history','�U%��U%��U%�%�U%��U%�%�U%��U%$%�U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21147,'th','my_wishlist','�U%��U%$%�c%��U%��U%��U%a%�c%��U%��U%��U%�%�U%��c%��U%��c%��U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21148,'th','track_order','�U%��U%$%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%V%�c%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21149,'th','be_an_affiliate_partner','�c%��U%��c%��U%��U%� �U%�%�U%��U%��U%��U%$%�U%��U%��c%��U%��c%��U%��U%��U%V%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21150,'th','be_a_seller','�c%��U%��c%��U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21151,'th','apply_now','�U%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%a%�c%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21152,'th','confirmation','�U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21153,'th','delete_confirmation_message','�U%��U%��U%��c%��U%��U%��U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21154,'th','cancel','�U%��U%��c%��U%��U%$%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21155,'th','delete','�U%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21156,'th','item_has_been_added_to_compare_list','�c%��U%� �U%$%�c%��U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%� �U%V%�c%��U%��c%��U%��U%��U%a%�U%��U%��c%��U%��U%a%�U%��U%��U%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21157,'th','please_login_first','�U%��U%��U%U%�U%��U%�%�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��U%��c%��U%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21158,'th','total_earnings_from','�U%��U%�%�U%��c%��U%��c%��U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21159,'th','client_subscription','�U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%��U%��U%�%�U%��U%$%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21160,'th','product_category','�U%��U%��U%�%�c%��U%��U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21161,'th','product_sub_sub_category','�U%��U%��U%��U%��U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21162,'th','product_sub_category','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%��U%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21163,'th','product_brand','�c%��U%��U%��U%��U%��c%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21164,'th','top_client_packages','�c%��U%� �c%��U%��c%��U%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%��U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21165,'th','top_freelancer_packages','�c%��U%� �c%��U%��c%��U%��U%� Freelancer �U%��U%��U%��U%��U%$%�U%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21166,'th','number_of_sale','�U%��U%%�U%��U%��U%��U%��U%�%�U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21167,'th','number_of_stock','�U%��U%%�U%��U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:28:02','2021-09-20 07:30:11'),(21168,'th','top_10_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%� 10 �U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21169,'th','top_12_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%� 12 �U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21170,'th','admin_can_not_be_a_seller','�c%��U%��U%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%�%�U%��U%��c%��U%��c%��U%��U%��U%c%�c%��U%��U%�%�U%��c%��U%��c%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21171,'th','filter_by_rating','�U%��U%��U%��U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21172,'th','published_reviews_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%$%�U%��U%�%�U%��U%��c%��U%��U%a%�c%��c%��U%��U%��c%��U%� �U%��c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21173,'th','refund_sticker_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%$%�U%��c%��U%��U%��U%��c%��U%��U%�%�U%��U%��U%V%�U%��c%��U%��U%$%�U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21174,'th','edit_product','�c%��U%��c%��c%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21175,'th','meta_images','�U%��U%c%�U%��U%��U%�%�U%� Meta','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21176,'th','update_product','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21177,'th','product_has_been_deleted_successfully','�U%��U%��U%��U%$%�U%��U%��c%��U%�%�c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21178,'th','your_profile_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��c%��U%��U%��c%��U%��U%��c%��U%��U%��U%��U%��U%U%�U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�!','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21179,'th','upload_limit_has_been_reached_please_upgrade_your_package','�U%��U%b%�U%��U%��U%a%�U%� �U%��U%%�U%��U%�%�U%� �U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��U%��c%��U%��c%��U%� �c%��U%��U%��U%��U%��U%�%�U%��c%��U%��U%��U%��c%��U%� �c%��U%��c%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21180,'th','add_your_product','�c%��U%� �U%$%�c%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21181,'th','select_a_category','�c%��U%��U%V%�U%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21182,'th','select_a_brand','�c%��U%��U%V%�U%��U%��c%��U%��U%��U%��U%��c%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21183,'th','product_unit','�U%��U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21184,'th','minimum_qty','�U%��U%%�U%��U%��U%��U%��U%�%�c%��U%��U%��c%��U%%','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21185,'th','product_tag','�c%��U%��c%��U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21186,'th','type__hit_enter','�U%� �U%$%�U%��U%� �c%��c%��U%��U%�%�U%��U%� Enter','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21187,'th','videos','�U%��U%$%�U%��U%a%�c%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21188,'th','video_from','�U%��U%$%�U%��U%a%�c%��U%��U%��U%�%�U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21189,'th','video_url','URL �U%��U%��U%��U%��U%$%�U%��U%a%�c%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21190,'th','customer_choice','�U%��U%�%�U%��c%��U%��U%V%�U%��U%��U%��U%��U%��U%��U%c%�U%��U%��c%��U%�%','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21191,'th','pdf','�c%��U%��U%��c%� PDF','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21192,'th','choose_pdf','�c%��U%��U%V%�U%��U%� PDF','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21193,'th','select_category','�c%��U%��U%V%�U%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21194,'th','target_category','�U%��U%��U%��U%��U%��U%��U%c%�c%��c%��U%��c%��U%�%�U%��U%��U%�%�U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21195,'th','subsubcategory','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%�','2021-02-09 08:28:03','2021-02-09 08:28:03'),(21196,'th','search_category','�U%��c%��U%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21197,'th','search_subcategory','�U%��c%��U%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��c%��U%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21198,'th','search_subsubcategory','�U%��c%��U%��U%��U%�% SubSubCategory','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21199,'th','update_your_product','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21200,'th','product_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21201,'th','add_your_digital_product','�c%��U%� �U%$%�c%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%$%�U%��U%$%�U%��U%�%�U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:28:03','2021-09-20 07:30:11'),(21202,'th','active_ecommerce_cms_update_process','�U%��U%��U%�%�U%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%� CMS �U%��U%a%�U%��U%��U%��c%��U%��U%$%�U%��c%��U%��U%��U%a%�c%��c%��U%��c%��U%��U%�%�U%��U%��U%��U%c%�c%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21203,'th','codecanyon_purchase_code','�U%��U%��U%�%�U%��U%��U%V%�c%��U%� Codecanyon','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21204,'th','database_name','�U%��U%V%�c%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%c%�U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21205,'th','database_username','�U%��U%V%�c%��U%��U%��U%c%�c%��c%��U%��c%��U%��U%�%�U%��U%��c%��U%��U%��U%c%�U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21206,'th','database_password','�U%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%c%�U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21207,'th','database_hostname','�U%��U%V%�c%��U%��c%��U%��U%��U%��c%��U%��U%�%�U%��U%��c%��U%��U%��U%c%�U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21208,'th','update_now','�U%��U%�%�U%��c%��U%��U%��U%��U%�%�U%��U%��U%a%','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21209,'th','congratulations','�U%��U%$%�U%��U%��U%a%�U%��c%��U%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21210,'th','you_have_successfully_completed_the_updating_process_please_login_to_continue','�U%��U%U%�U%��c%��U%��U%��c%��U%��U%��U%$%�c%��U%��U%��U%��U%�%�U%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%� �c%��U%��U%��U%��c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��c%��U%� �U%V%�c%��U%��U%��U%�%�U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21211,'th','go_to_home','�U%��U%��U%�%�U%��U%��c%��U%�%�U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21212,'th','login_to_admin_panel','�c%��U%��c%��U%�%�U%��U%c%�c%��c%��U%��U%��U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21213,'th','s3_file_system_credentials','�U%��c%��U%��U%��U%c%�U%��U%��U%��U%�%�U%��U%%�U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��c%� S3','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21214,'th','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21215,'th','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21216,'th','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21217,'th','aws_bucket','AWS_BUCKET','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21218,'th','aws_url','AWS_URL','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21219,'th','s3_file_system_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��c%� S3','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21220,'th','your_phone_number','�U%��U%��U%�%�U%��c%��U%��U%��c%��U%��U%��U%��U%�%�U%� �U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21221,'th','zip_file','�c%��U%��U%��c%� Zip','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21222,'th','install','�U%��U%$%�U%��U%��U%�%�c%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21223,'th','this_version_is_not_capable_of_installing_addons_please_update','�c%��U%��U%��U%��c%��U%��U%�%�U%��U%��U%a%�c%��c%��U%��c%��U%��U%�%�U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�c%��U%� Addons �c%��U%��c%��c%��U%��U%��U%��U%��U%�%�U%��c%��U%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21224,'th','search_in_menu','�U%��c%��U%��U%��U%�%�c%��U%��c%��U%��U%��U%c%','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21225,'th','uploaded_files','�c%��U%��U%��c%��U%��U%a%�c%��U%��U%�%�U%��c%��U%��U%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21226,'th','shipping_cities','�c%��U%��U%V%�U%��U%��U%��U%��U%��c%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21227,'th','system','�U%��U%�%�U%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21228,'th','server_status','�U%��U%��U%�%�U%��U%�%�c%��U%��U%$%�U%��c%��U%��c%��U%��U%��U%��c%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21229,'th','nothing_found','�c%��U%��c%��U%� �U%��U%��U%$%�c%��U%��c%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21230,'th','parent_category','�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%��U%��U%��U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21231,'th','level','�U%��U%�%�U%��U%�%�U%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21232,'th','category_information','�U%��c%��U%��U%��U%c%�U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21233,'th','translatable','�c%��U%��U%��c%��U%��c%�','2021-02-09 08:28:04','2021-09-20 07:30:11'),(21234,'th','no_parent','�c%��U%��c%��U%��U%a%�U%��U%c%�c%��U%��U%��U%��U%��U%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21235,'th','physical','�U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�U%� ','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21236,'th','digital','�U%��U%$%�U%��U%$%�U%��U%�%�U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21237,'th','200x200','200x200','2021-02-09 08:28:05','2021-02-09 08:28:05'),(21238,'th','32x32','32x32','2021-02-09 08:28:05','2021-02-09 08:28:05'),(21239,'th','search_your_files','�U%��c%��U%��U%��U%�%�c%��U%��U%��c%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21240,'th','category_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21241,'th','all_uploaded_files','�c%��U%��U%��c%��U%��U%a%�c%��U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21242,'th','upload_new_file','�U%��U%�%�U%��c%��U%��U%��U%��c%��U%��U%��c%��c%��U%��U%��c%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21243,'th','all_files','�c%��U%��U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21244,'th','search','�U%��c%��U%��U%��U%�%','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21245,'th','details_info','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%a%�U%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21246,'th','copy_link','�U%��U%�%�U%��U%��U%��U%��U%��U%$%�U%��U%��c%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21247,'th','are_you_sure_to_delete_this_file','�U%��U%U%�U%��c%��U%��c%��c%��U%��U%��U%��U%V%�U%��c%��U%��c%��U%��c%��U%�%�U%��U%�%�U%��U%��c%��U%��U%��c%��U%��U%a%�c%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21248,'th','file_info','�U%��c%��U%��U%��U%c%�U%��c%��U%��U%��c%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21249,'th','link_copied_to_clipboard','�U%��U%�%�U%��U%��U%��U%��U%��U%$%�U%��U%��c%��c%��U%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%��U%��c%��U%��c%��U%��c%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21250,'th','oops_unable_to_copy','�U%��c%��U%�%�c%��U%��c%��U%��U%�%�U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%��U%��c%��U%��c%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21251,'th','file_deleted_successfully','�U%��U%��c%��U%��U%��c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21252,'th','add_new_brand','�c%��U%� �U%$%�c%��U%��c%��U%��U%��U%��U%��c%��c%��U%��U%��c%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21253,'th','120x80','120x80','2021-02-09 08:28:05','2021-02-09 08:28:05'),(21254,'th','brand_information','�U%��c%��U%��U%��U%c%�U%��c%��U%��U%��U%��U%��c%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21255,'th','brand_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��c%��U%��U%��U%��U%��c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21256,'th','brand_has_been_deleted_successfully','�U%��U%��c%��U%��U%��U%��U%��c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21257,'th','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','�c%��U%��c%��U%��U%%�U%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%�% �U%��c%��U%��U%��U%��U%%�c%��U%��U%��c%��U%�%�U%��U%�%�c%��U%��c%��U%� �U%V%�c%��U%��c%��U%��c%� cutomer �U%��U%�%�U%��U%�%�U%��U%��U%��c%��U%��U%��U%�%�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%a%�c%��c%��U%��c%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21258,'th','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','�U%��U%c%�U%��U%��U%�%�U%� �c%��U%��U%��c%��U%�%�U%��U%a%�c%��U%��U%�%�U%��U%�%�U%��U%��U%��U%��U%��c%��U%��c%��U%��c%��U%��c%��c%��U%��c%��U%��U%��c%��U%��U%��U%��U%a%�U%��U%��c%��U%�%�U%��U%�%�U%��U%��U%�%�c%��U%��U%a%�U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%� �c%��U%��c%��U%��U%c%�U%��U%��U%�%�U%� �U%��U%��U%�%�U%� 600x600','2021-02-09 08:28:05','2021-09-20 07:30: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','�U%��U%�%�U%� �U%��U%a%�c%��U%��U%��U%��c%��U%��c%��U%��c%��U%��c%��c%��U%��U%��U%��c%��U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%� �c%��U%��c%��U%��U%c%�U%��U%��U%�%�U%� �U%��U%��U%�%�U%� 300x300 �c%��U%��c%��U%��U%� �U%V%�c%��U%��U%��U%a%�c%��U%��c%��U%�%�U%��c%��U%��c%��U%��U%��U%� �c%� �U%��U%�%�U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%��U%��U%��U%�%�U%� �c%��U%��U%V%�c%��U%��U%��U%��U%�%�U%��c%��U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%��U%��U%�%�U%��U%��U%��U%��U%��U%�%�U%��U%��c%��U%��U%��c%��U%��U%��U%U%�U%��U%��U%��U%��c%��U%��c%��U%�%�U%��c%��c%��U%� �U%V%�c%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21260,'th','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','�c%��U%��c%��U%��U%$%�U%��U%��c%��U%��U%a%�c%��c%��U%��U%��U%�%�U%�%�U%��U%��c%��U%��U%��c%��U%��c%��U%��U%a%�U%� �U%�%�U%��U%�%�U%��U%$%�c%��U%��U%��U%��c%��c%��U%� �U%$%�c%��U%��c%��U%��U%$%�U%� �U%��U%��c%��U%�%�c%��U%��c%��U%��U%$%�U%��U%��c%��c%��U%��U%��c%��c%��U%��U%��U%��U%�%�c%��U%� / �c%��U%��c%��U%� iframe �c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21261,'th','save_product','�U%��U%�%�U%��U%��U%b%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21262,'th','product_has_been_inserted_successfully','�c%��U%��c%��U%��U%$%�U%��U%��c%��U%�%�c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21263,'th','something_went_wrong','�U%��U%�%�c%��U%��U%��U%�%�U%��U%��U%��c%��U%�%�U%��U%��U%$%�U%��U%��U%��U%��U%$%!','2021-02-09 08:28:05','2021-09-20 07:30:11'),(21264,'th','sorry_for_the_inconvenience_but_were_working_on_it','�U%��U%��U%��U%��U%�%�U%��c%��U%��U%��U%��U%�%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%� �c%��U%��c%��c%��U%��U%�%�U%��U%%�U%��U%�%�U%��U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%��c%��U%��c%��c%��U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21265,'th','error_code','�U%��U%��U%�%�U%��U%��c%��U%��U%��U%$%�U%��U%� �U%��U%�%�U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21266,'th','please_configure_smtp_setting_to_work_all_email_sending_functionality','�c%��U%��U%��U%��U%��U%%�U%��U%��U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�% SMTP �c%��U%� �U%V%�c%��U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��c%��U%��U%��U%a%�c%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21267,'th','order','�c%��U%��U%��U%�%�c%��U%�','2021-02-09 08:28:06','2021-09-20 07:30: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','�c%��U%��U%�%�U%��U%a%�U%��U%��U%�%�U%��U%��U%c%�U%��U%��U%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%��U%a%�c%� �U%��U%%�U%��U%�%�U%� �c%��U%� �U%V%�c%��U%��U%��U%�%�U%��U%#�U%�% UI �c%��U%��U%�%�U%��c%��U%��U%��U%��U%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%�%�U%��c%��U%�%�U%��U%��U%��U%�%�c%��U%��U%��U%U%�U%��U%��U%��U%��U%��U%%�U%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��c%��U%��c%��U%�%�U%��c%��c%��U%� �U%V%�c%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%��U%� �U%��c%��U%��U%��U%��U%��U%��c%��U%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%��U%��U%��U%��U%%�U%��U%b%�U%��U%��U%b%�U%��U%��U%��U%�%�c%��U%��c%��U%��c%��U%��U%��c%��U%�%�U%��U%a%�c%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21269,'th','home_banner_3_max_3','�c%��U%��U%��c%��U%��U%��U%��c%��U%��U%��c%��U%�%�c%��U%��U%� 3 (�U%��U%c%�U%��U%��U%U%�U%� 3)','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21270,'th','add_new_seller','�c%��U%� �U%$%�c%��U%��U%��U%c%�c%��U%��U%�%�U%��c%��U%��U%��c%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21271,'th','filter_by_approval','�U%��U%��U%��U%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21272,'th','nonapproved','�c%��U%��c%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21273,'th','type_name_or_email__enter','�U%� �U%$%�U%��U%� �c%��U%��U%V%�c%��U%��U%��U%��U%V%�U%��U%��U%a%�c%��U%��U%� & Enter','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21274,'th','due_to_seller','�c%��U%��U%V%�c%��U%��U%��U%��U%�%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21275,'th','log_in_as_this_seller','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��c%��U%��c%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%a%�c%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21276,'th','go_to_payment','�c%��U%��U%��U%a%�c%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21277,'th','ban_this_seller','�c%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%a%�c%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21278,'th','do_you_really_want_to_ban_this_seller','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%�%�U%��c%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%a%�c%��U%��U%��U%V%�U%��c%��U%��c%�?','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21279,'th','proceed','�U%��U%%�c%��U%��U%$%�U%��U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%�!','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21280,'th','approved_sellers_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%a%�c%��c%��U%��c%��U%��U%�%�U%��U%��U%��U%U%�U%��U%�%�U%��U%$%�c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21281,'th','seller_has_been_deleted_successfully','�U%��U%��U%��U%c%�c%��U%��U%�%�U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21282,'th','seller_information','�U%��c%��U%��U%��U%c%�U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21283,'th','seller_has_been_inserted_successfully','�c%��U%��c%��U%��U%c%�c%��U%��U%�%�U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21284,'th','email_already_exists','�U%��U%a%�U%��U%a%�c%��U%��U%��c%��U%��c%��U%�!','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21285,'th','verify_your_email_address','�U%��U%V%�U%��U%��U%�%�U%��U%��U%a%�c%��U%��U%��U%c%�c%��U%��U%a%�c%��U%��U%��U%��U%��U%��U%��U%U%�U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21286,'th','before_proceeding_please_check_your_email_for_a_verification_link','�U%��c%��U%��U%��U%��U%%�c%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��c%��U%��U%��U%��U%��U%��U%��U%��U%��U%��U%��U%��U%a%�c%��U%��U%��U%��U%��U%��U%��U%U%�U%��c%��U%� �U%V%�c%��U%��U%��U%c%�U%��U%$%�U%��U%��c%��U%��U%V%�U%��U%��U%�%�U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21287,'th','if_you_did_not_receive_the_email','�U%��U%�%�U%��U%��U%U%�U%��c%��U%��c%��c%��U%��c%��U%��U%�%�U%��U%��U%a%�c%��U%��U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21288,'th','click_here_to_request_another','�U%��U%��U%$%�U%��U%��U%a%�c%��U%��U%a%�c%��c%��U%� �U%V%�c%��U%��U%��U%��c%��U%��U%��c%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21289,'th','email_verification','�U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%��U%��U%a%�c%��U%��U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21290,'th','email_verification__','�U%��U%�%�U%��U%��U%V%�U%��U%��U%�%�U%��U%��U%a%�c%��U%��U%� -','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21291,'th','https_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� HTTPS','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21292,'th','maintenance_mode','�c%��U%��U%��U%��U%��U%�%�U%��U%��U%%�U%��U%U%�U%��U%��U%�%�U%��U%#�U%�%','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21293,'th','maintenance_mode_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�U%��U%��U%%�U%��U%U%�U%��U%��U%�%�U%��U%#�U%�%','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21294,'th','classified_product_activate','�c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��c%��U%��U%��U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:28:06','2021-09-20 07:30:11'),(21295,'th','classified_product','�U%��U%$%�U%��U%��c%��U%�%�c%��U%��U%��U%��U%��U%�%�c%��U%��U%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21296,'th','business_related','�U%��U%U%�U%��U%��U%$%�U%��U%��U%a%�c%��c%��U%��U%a%�c%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21297,'th','vendor_system_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%c%�c%��U%��U%�%�U%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21298,'th','wallet_system_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%� Wallet','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21299,'th','coupon_system_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%c%�U%��U%��U%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21300,'th','pickup_point_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%�%�U%��U%��U%$%�U%��U%��c%��U%�%','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21301,'th','conversation_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%��U%��U%��U%�%','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21302,'th','guest_checkout_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21303,'th','categorybased_commission','�U%��c%��U%�%�U%��U%��U%��U%��U%$%�U%��U%��U%�%�c%��U%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%��U%c%�c%�','2021-02-09 08:28:07','2021-09-20 07:30: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','�U%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��c%��U%��U%V%�U%��U%��U%��U%a%�c%��U%��c%��U%�%�U%��U%��U%��U%��U%$%�U%��U%��U%�%�c%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%�%�U%��U%��U%�%�U%��U%c%�U%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��c%��U%��U%�%�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�%�U%��U%��U%��U%��U%$%�U%��U%��U%�%�U%��c%��U%��c%��U%��c%��U%��U%�%�U%��U%��U%��U%��U%��U%��U%c%�c%��U%��U%$%�U%��U%�%�U%��U%�%�c%��U%��U%��U%c%�c%��U%��U%c%�c%��U%��U%��U%�%�U%��U%��U%��U%�%�c%��U%��c%��c%��U%��c%��U%��U%�%�U%��U%��c%��U%�%�U%��U%��U%��U%��U%$%�U%��U%��U%�%�c%��U%��c%��U%� �c%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21305,'th','set_commisssion_now','�U%��U%�%�c%��U%��U%��c%��U%�% Commisssion �U%��U%�%�U%��U%��U%a%','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21306,'th','payment_related','�U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��U%a%�c%��c%��U%��U%a%�c%��U%��U%��U%��c%��U%��U%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21307,'th','paypal_payment_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%� Paypal','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21308,'th','you_need_to_configure_paypal_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% Paypal �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21309,'th','stripe_payment_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��c%��U%��U%� Stripe','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21310,'th','sslcommerz_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� SSlCommerz','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21311,'th','instamojo_payment_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%� Instamojo','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21312,'th','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% Instamojo Payment �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21313,'th','razor_pay_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� Razor Pay','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21314,'th','you_need_to_configure_razor_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% Razor �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21315,'th','paystack_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� PayStack','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21316,'th','you_need_to_configure_paystack_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% PayStack �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21317,'th','voguepay_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� VoguePay','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21318,'th','you_need_to_configure_voguepay_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% VoguePay �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21319,'th','payhere_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� Payhere','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21320,'th','ngenius_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� Ngenius','2021-02-09 08:28:07','2021-09-20 07:30:11'),(21321,'th','you_need_to_configure_ngenius_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% Ngenius �U%��U%��c%��U%�%�U%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:07','2021-09-20 07:30:12'),(21322,'th','iyzico_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� Iyzico','2021-02-09 08:28:07','2021-09-20 07:30:12'),(21323,'th','you_need_to_configure_iyzico_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% iyzico �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:07','2021-09-20 07:30:12'),(21324,'th','bkash_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� Bkash','2021-02-09 08:28:07','2021-09-20 07:30:12'),(21325,'th','you_need_to_configure_bkash_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% bkash �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:07','2021-09-20 07:30:12'),(21326,'th','nagad_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%� Nagad','2021-02-09 08:28:07','2021-09-20 07:30:12'),(21327,'th','you_need_to_configure_nagad_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% nagad �U%��U%��c%��U%�%�U%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21328,'th','cash_payment_activation','�U%��U%�%�U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%�%�U%��U%��U%%�U%��U%�%�c%��U%��U%$%�U%��U%��c%��U%��U%��c%��U%��U%$%�U%��U%��U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21329,'th','social_media_login','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%��c%��U%��c%��U%��U%a%�U%��U%��U%��U%a%�c%��U%��U%a%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21330,'th','facebook_login','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%� Facebook','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21331,'th','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% Facebook Client �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21332,'th','google_login','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%� Google','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21333,'th','you_need_to_configure_google_client_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�% Google Client �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%�%�U%��U%#�U%��U%�%�U%��U%a%�c%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21334,'th','twitter_login','�c%��U%��c%��U%�%�U%��U%c%�c%��U%��U%�%�U%��U%� Twitter','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21335,'th','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','�U%��U%U%�U%��U%��c%��U%��U%��U%��U%%�U%��U%��U%��U%��c%��U%�%�c%��U%��U%��c%��U%��U%��U%��c%� Twitter �c%��U%��c%��U%��U%c%�U%��U%��c%��U%��U%��c%��U%� �U%V%�c%��U%��c%��U%��U%$%�U%��c%��U%��c%��U%��U%�%�U%��U%��U%U%�U%��U%��U%��U%��U%�%�U%��U%$%�U%��U%a%�c%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21336,'th','shop_logo','�c%��U%��c%��U%��c%��U%��c%��U%�%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21337,'th','shop_address','�U%��U%a%�c%��U%��U%��U%c%�c%��U%��c%��U%�%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21338,'th','banner_settings','�U%��U%�%�U%��U%��U%�%�c%��U%��U%��c%��U%�%�c%��U%��U%��c%��U%��U%��U%��c%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21339,'th','banners','�c%��U%��U%��c%��U%��U%��U%��c%�','2021-02-09 08:28:08','2021-09-20 07:30: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','�c%��U%��U%�%�U%��c%��U%��U%��U%��U%%�U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%c%�U%��c%��U%� �U%V%�c%��U%��U%��U%��U%�%�U%��U%��U%��c%��U%%�c%��U%��U%��U%��U%��U%��U%� maintian �c%��U%��U%��U%U%�U%��U%��U%��U%��c%��U%��U%�%�U%��c%��U%��U%��U%V%�c%��U%��U%��U%��U%�%�U%��U%��U%a%�U%��U%�%�U%��U%��U%��U%��U%��U%��U%�%�U%��c%��U%��U%��c%��U%��U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%��U%��c%��U%�%�U%��c%��U%� �U%V%�c%��U%��U%��U%%�U%��U%�%�U%��U%��U%��U%�%�U%��U%��U%c%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21341,'th','insert_link_with_https_','�c%��U%��U%��U%��U%��U%$%�U%��U%��c%��U%��c%��U%��U%� https','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21342,'th','your_shop_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��c%��U%�%�U%��U%��c%��U%�%�U%��U%��U%��U%��U%U%�U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�!','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21343,'th','search_result_for_','�U%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%�%�U%��U%%�U%��U%��U%�%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21344,'th','brand_has_been_inserted_successfully','�c%��U%��c%��U%��U%a%�c%��U%��c%��U%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21345,'th','about','�c%��U%��U%a%�c%��U%��U%��U%��U%�%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21346,'th','payout_info','�U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%��U%��c%��U%�%�U%��c%��U%��U%$%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21347,'th','bank_acc_name','�U%��U%V%�c%��U%��U%��U%�%�U%��U%��U%a%�U%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21348,'th','bank_acc_number','�U%��U%��U%�%�U%��c%��U%��U%��U%��U%�%�U%��U%��U%a%�U%��U%��U%�%�U%��U%�%�U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21349,'th','total_products','�U%��U%��U%$%�U%��U%��U%�%�U%��U%��c%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21350,'th','total_sold_amount','�U%��U%��U%��U%��U%�%�U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21351,'th','wallet_balance','�U%��U%��U%��U%��U%��c%��U%��U%��U%V%�U%��c%��U%� Wallet','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21352,'th','cookies_agreement','�U%��c%��U%��U%��U%��U%��U%��U%��U%U%�U%��U%��U%a%�c%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21353,'th','cookies_agreement_text','�U%��c%��U%��U%��U%��U%�%�U%��U%��c%��U%��U%��U%��U%��U%��U%��U%U%�U%��U%��U%a%�c%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21354,'th','show_cookies_agreement','�c%��U%��U%��U%��U%��c%��U%��U%��U%��U%��U%��U%��U%U%�U%��U%��U%a%�c%�?','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21355,'th','custom_script','�U%��U%��U%��U%$%�U%��U%��c%��U%��U%a%�c%��U%��U%%�U%��U%��U%��c%��U%��U%�','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21356,'th','header_custom_script__before_head','�U%��U%��U%��U%$%�U%��U%��c%��U%��U%a%�c%��U%��U%%�U%��U%��U%��c%��U%��U%��U%��c%��U%��U%��U%��U%�%�U%� - �U%��c%��U%��U%� </head>','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21357,'th','write_script_with_script_tag','�c%��U%��U%a%�U%��U%��U%��U%��U%��U%$%�U%��U%��c%��U%��c%��U%��U%��c%��U%��c%��U%� <script>','2021-02-09 08:28:08','2021-09-20 07:30:12'),(21358,'th','footer_custom_script__before_body','�U%��U%��U%��U%$%�U%��U%��c%��U%��U%a%�c%��U%��U%%�U%��U%��U%��c%��U%��U%��U%��c%��U%��U%��U%��c%��U%�%�U%� - �U%��c%��U%��U%� </body>','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21359,'th','category_has_been_inserted_successfully','�c%��U%��U%��U%��U%��U%��U%��U%��U%��U%��U%c%�c%��c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21360,'th','all_flash_deals','�U%��c%��U%��c%��U%��U%��U%��c%��U%��U%��U%��U%��U%�%�c%��U%��U%��U%��U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21361,'th','create_new_flash_deal','�U%��U%��c%��U%�%�U%� Flash Deal �c%��U%��U%��c%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21362,'th','ffffff','#FFFFFF','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21363,'th','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','�U%��U%�%�U%� �U%��U%a%�c%��c%��U%��U%��U%��c%��U%��c%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%��U%��c%��U%��U%��U%��c%��U%�%�U%��U%�%�U%��U%��U%�%�c%��U%��U%a%�U%��U%��U%��U%a%�U%��c%��U%��U%��U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21364,'th','flash_deal_has_been_inserted_successfully','�c%��U%��c%� Flash Deal �c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21365,'th','flash_deal_status_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%��U%�%�U%��U%�%�U%��c%��U%��U%��U%��U%��U%� Flash �c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21366,'th','flash_deal_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%a%�U%� Flash �U%��U%%�c%��U%��c%��U%��c%��U%��c%��U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21367,'th','update_language_info','�U%��U%�%�U%��c%��U%��U%��U%��c%��U%��U%��U%c%�U%��U%��U%�%�U%#�U%�%','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21368,'th','language_has_been_updated_successfully','�U%��U%�%�U%��c%��U%��U%��U%��U%�%�U%#�U%�%�c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21369,'th','type_key__enter','�U%� �U%$%�U%��U%� �c%� key & Enter','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21370,'th','translations_updated_for_','�U%��U%�%�U%��c%��U%��U%��U%��U%%�c%��U%��U%��U%��U%%�U%��U%��U%�%�U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21371,'th','language_has_been_inserted_successfully','�c%��U%��U%��U%��U%��U%�%�U%#�U%�%�c%��U%��U%a%�U%��U%��U%��c%��U%��U%��c%��U%��c%��U%�','2021-02-09 08:28:09','2021-09-20 07:30:12'),(21372,'cn','all_category','��������� ���','2021-02-09 08:29:52','2021-09-20 07:30:12'),(21373,'cn','all','������','2021-02-09 08:29:52','2021-09-20 07:30:12'),(21374,'cn','flash_sale','����%]%','2021-02-09 08:29:52','2021-09-20 07:30:12'),(21375,'cn','view_more','��������$%���','2021-02-09 08:29:52','2021-09-20 07:30:12'),(21376,'cn','add_to_wishlist','�V%W%������%�������U%����','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21377,'cn','add_to_compare','��������%����','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21378,'cn','add_to_cart','�V%W%������%�%]%��#�W%�','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21379,'cn','club_point','�%�%�������#����','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21380,'cn','classified_ads','������ �W%����','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21381,'cn','used','���������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21382,'cn','top_10_categories','��������� ���','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21383,'cn','view_all_categories','��������������� ���','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21384,'cn','top_10_brands','������������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21385,'cn','view_all_brands','������������������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21386,'cn','terms__conditions','�����[%����$%�%���','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21387,'cn','best_selling','��������V%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21388,'cn','top_20','���20���','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21389,'cn','featured_products','��c%���%������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21390,'cn','best_sellers','��������V%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21391,'cn','visit_store','����������Q%�','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21392,'cn','popular_suggestions','���%����W%Q%���%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21393,'cn','category_suggestions','��� ����W%Q%���%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21394,'cn','automobile__motorcycle','��%\%�W%������#����W%�','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21395,'cn','price_range','��c%��]%������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21396,'cn','filter_by_color','���������%����%[%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21397,'cn','home','��b%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21398,'cn','newest','������%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21399,'cn','oldest','���������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21400,'cn','price_low_to_high','��c%��]%�[%� �\%����%���','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21401,'cn','price_high_to_low','��c%��]%�[%� ������%�\%�','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21402,'cn','brands','������������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21403,'cn','all_brands','������������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21404,'cn','all_sellers','�������%���b%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21405,'cn','inhouse_product','������������','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21406,'cn','message_seller','�������%���b%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21407,'cn','price','��c%���','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21408,'cn','discount_price','��������c%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21409,'cn','color','������%','2021-02-09 08:29:53','2021-09-20 07:30:12'),(21410,'cn','quantity','��U%���','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21411,'cn','available','����#Q%','2021-02-09 08:29:54','2021-02-09 08:29:54'),(21412,'cn','total_price','�U%\%��c%','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21413,'cn','out_of_stock','�]%Q%��%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21414,'cn','refund','�����[%','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21415,'cn','share','����Q%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21416,'cn','sold_by','������','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21417,'cn','customer_reviews','�������#����','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21418,'cn','top_selling_products','�����V%������','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21419,'cn','description','����%�%','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21420,'cn','video','�����W%','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21421,'cn','reviews','�#����','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21422,'cn','download','�U%��]%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21423,'cn','there_have_been_no_reviews_for_this_product_yet','����������������#�������','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21424,'cn','related_products','��U%���������','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21425,'cn','any_query_about_this_product','�������������������W%W%�\%�����#�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21426,'cn','product_name','������������%','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21427,'cn','your_question','�\%����������','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21428,'cn','send','��]%���','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21429,'cn','use_country_code_before_number','��������]%����\%%��������b%/���%����W%���]%','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21430,'cn','remember_me','����\%��%����','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21431,'cn','dont_have_an_account','�����%�����U%%���)"]%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21432,'cn','register_now','��[%�����W%���','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21433,'cn','or_login_with','�����W%���','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21434,'cn','oops','������..','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21435,'cn','this_item_is_out_of_stock','����������]%Q%��%�)"]%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21436,'cn','back_to_shopping','��� ���%�%]%��#','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21437,'cn','login_to_your_account','��W%������%�������U%%��b%���','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21438,'cn','purchase_history','�%]%��%V%������','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21439,'cn','new','���%','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21440,'cn','downloads','�%�����U%��]%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21441,'cn','sent_refund_request','�V%�%�����Q%�����[%�����%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21442,'cn','product_bulk_upload','��������c%����U%���%','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21443,'cn','orders','��\%�W%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21444,'cn','recieved_refund_request','��b%���%�����[%�����%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21445,'cn','shop_setting','�Q%��������\%�','2021-02-09 08:29:54','2021-09-20 07:30:12'),(21446,'cn','payment_history','����W%���V%���%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21447,'cn','money_withdraw','�����[%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21448,'cn','conversations','��%��#�%�����c%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21449,'cn','my_wallet','������������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21450,'cn','earning_points','�%Q%����#����','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21451,'cn','support_ticket','���������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21452,'cn','manage_profile','����������Q%Q%�%����','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21453,'cn','sold_amount','�����Q%������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21454,'cn','your_sold_amount_current_month','��������V%������)"]%���b%���)"]%�','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21455,'cn','total_sold','�U%\%��V%������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21456,'cn','last_month_sold','�U%������������Q%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21457,'cn','total_sale','�U%\%��V%���','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21458,'cn','total_earnings','�U%\%��b%���','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21459,'cn','successful_orders','�������U%����','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21460,'cn','total_orders','�������U%\%��U%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21461,'cn','pending_orders','�[%�������������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21462,'cn','cancelled_orders','����b%�������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21463,'cn','product','������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21464,'cn','purchased_package','�%]%��%V%���������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21465,'cn','package_not_found','��[%�U%����%���','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21466,'cn','upgrade_package','����$%����','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21467,'cn','shop','�Q%�','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21468,'cn','manage__organize_your_shop','����������a%��c%�����������Q%�','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21469,'cn','go_to_setting','����[%�������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21470,'cn','payment','�W%���[%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21471,'cn','configure_your_payment_method','����\%��������W%���[%��c%�]%�','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21472,'cn','my_panel','�����������%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21473,'cn','item_has_been_added_to_wishlist','�������V%�%�V%W%������%�������U%����','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21474,'cn','my_points','����������W%� ','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21475,'cn','_points','�W%� ��U%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21476,'cn','wallet_money','���������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21477,'cn','exchange_rate','������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21478,'cn','point_earning_history','�#�����%Q%�����V%���%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21479,'cn','date','������','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21480,'cn','points','�W%� ��U%','2021-02-09 08:29:55','2021-09-20 07:30:12'),(21481,'cn','converted','�V%�%�\%����','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21482,'cn','action','������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21483,'cn','no_history_found','��[%�U%����%��V%���%���������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21484,'cn','convert_has_been_done_successfully_check_your_wallets','�\%�����V%�%������������������������������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21485,'cn','something_went_wrong','��Q%�������Q%�','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21486,'cn','remaining_uploads','��#����U%���%','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21487,'cn','no_package_found','��[%�U%����%�����c%','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21488,'cn','search_product','����$%�������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21489,'cn','name','������%','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21490,'cn','current_qty','��b%�����U%���','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21491,'cn','base_price','��Q%�����c%��]%','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21492,'cn','published','�V%�%��]%���','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21493,'cn','featured','��%[%��U%','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21494,'cn','options','��U%�W%b%','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21495,'cn','edit','�V%��]%�','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21496,'cn','duplicate','������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21497,'cn','1_download_the_skeleton_file_and_fill_it_with_data','1.�U%��]%������ b%����W%b%�U%������U%���������������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21498,'cn','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2.�������W%��U%��]%���Q%�[%�����W%b%�W%��Q%�����%��������\%���������U%������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21499,'cn','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','3.�U%��]%��U%������������ b%����W%b%�[%�)"]%��������U%������������]%�U%��U%���%�U%�����Q%����','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21500,'cn','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4.�U%���%�������[%�)"]%������������%���b%���%����V%��]%��U%�����\%������������������U%������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21501,'cn','download_csv','�U%��]%�CSV','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21502,'cn','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1.��� ���)"]%������� ���)"]%���������� ����������������\%%�����U%���ID���','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21503,'cn','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2.�������W%��U%��]%�pdf����W%b%�W%����%�[%���� ���)"]%������� ���)"]%���������� ������������ID���','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21504,'cn','download_category','�U%��]%���� ���','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21505,'cn','download_sub_category','�U%��]%������� ���','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21506,'cn','download_sub_sub_category','�U%��]%���������� ���','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21507,'cn','download_brand','�U%��]%�������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21508,'cn','upload_csv_file','�U%��]%�CSV����W%b%','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21509,'cn','csv','CSV','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21510,'cn','choose_csv_file','��U%���CSV����W%b%','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21511,'cn','upload','�U%��]%�','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21512,'cn','add_new_digital_product','�V%W%������%�����U%���������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21513,'cn','available_status','������������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21514,'cn','admin_status','���������������','2021-02-09 08:29:56','2021-09-20 07:30:12'),(21515,'cn','pending_balance','�[%�������������','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21516,'cn','send_withdraw_request','��]%��������[%�����%�','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21517,'cn','withdraw_request_history','�����[%��V%���%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21518,'cn','amount','���','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21519,'cn','status','������','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21520,'cn','message','�%����','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21521,'cn','send_a_withdraw_request','��]%��������[%�����%�','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21522,'cn','basic_info','��Q%����%����','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21523,'cn','your_phone','����������#�','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21524,'cn','photo','������','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21525,'cn','browse','�����\%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21526,'cn','your_password','�\%���������]%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21527,'cn','new_password','���%�����]%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21528,'cn','confirm_password','��Q%��������]%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21529,'cn','add_new_address','�V%W%������%���%���','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21530,'cn','payment_setting','�W%���[%������','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21531,'cn','cash_payment','��[%�������W%�','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21532,'cn','bank_payment','�������W%���[%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21533,'cn','bank_name','������������%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21534,'cn','bank_account_name','�������%���b%������%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21535,'cn','bank_account_number','�������U%%���','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21536,'cn','bank_routing_number','�������V%����','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21537,'cn','update_profile','��$%���%����\%�����W%b%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21538,'cn','change_your_email','��$%��c%�\%������W%�����a%�W%b%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21539,'cn','your_email','�\%������a%�W%b%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21540,'cn','sending_email','��������]%�����W%�����a%�W%b%...','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21541,'cn','verify','����#�','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21542,'cn','update_email','��$%���%��W%��a%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21543,'cn','new_address','���%���%���','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21544,'cn','your_address','�\%�������%���','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21545,'cn','country','�����b%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21546,'cn','select_your_country','��U%����\%���������b%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21547,'cn','city','�U%�','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21548,'cn','your_city','����������U%�','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21549,'cn','your_postal_code','��������a%��%�V%���]%','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21550,'cn','880','+880','2021-02-09 08:29:57','2021-09-20 07:30:12'),(21551,'cn','save','�%����','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21552,'cn','received_refund_request','��b%���%�����[%�����%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21553,'cn','delete_confirmation','��������Q%���','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21554,'cn','are_you_sure_to_delete_this','�����Q%���������������)"]%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21555,'cn','premium_packages_for_sellers','�%���b%��%����������','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21556,'cn','product_upload','�������U%���%','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21557,'cn','digital_product_upload','��U%����������U%���%','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21558,'cn','purchase_package','�%]%��%V%������','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21559,'cn','select_payment_type','��U%����W%���[%��c%�]%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21560,'cn','payment_type','�W%���[%��c%�]%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21561,'cn','select_one','��U%����U%����','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21562,'cn','online_payment','�b%�%�U%�����W%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21563,'cn','offline_payment','����V%��W%���[%','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21564,'cn','purchase_your_package','�%]%��%V%������','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21565,'cn','paypal','��%���b%','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21566,'cn','stripe','����$%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21567,'cn','sslcommerz','sslcommerz','2021-02-09 08:29:58','2021-02-09 08:29:58'),(21568,'cn','confirm','��Q%���','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21569,'cn','offline_package_payment','����V%��������W%���[%','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21570,'cn','transaction_id','�Q%�����V%����','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21571,'cn','choose_image','��U%���������','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21572,'cn','code','��]%','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21573,'cn','delivery_status','��a%���������','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21574,'cn','payment_status','����W%�������','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21575,'cn','paid','�V%�%�W%���%W%','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21576,'cn','order_details','�������#%�$%�%�%����','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21577,'cn','download_invoice','�U%��]%���]%���','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21578,'cn','unpaid','����W%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21579,'cn','order_placed','�������V%�%�U%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21580,'cn','confirmed','�V%�%��Q%���','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21581,'cn','on_delivery','������ �U%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21582,'cn','delivered','�V%�%�Q%��W%�','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21583,'cn','order_summary','������������','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21584,'cn','order_code','����%]%�W%���]%','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21585,'cn','customer','������','2021-02-09 08:29:58','2021-09-20 07:30:12'),(21586,'cn','total_order_amount','�������U%\%���','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21587,'cn','shipping_metdod','����]%U%��c%�]%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21588,'cn','flat_shipping_rate','��Q%��������%W%','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21589,'cn','payment_metdod','�W%���[%��c%�]%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21590,'cn','variation','������%','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21591,'cn','delivery_type','�Q%���%���� �� �','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21592,'cn','home_delivery','�����%��U%����','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21593,'cn','order_ammount','������������','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21594,'cn','subtotal','��%����','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21595,'cn','shipping','����]%U%','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21596,'cn','coupon_discount','��������U%������','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21597,'cn','na','�U%���#���','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21598,'cn','in_stock','�����[%��%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21599,'cn','buy_now','�����%�%]%��%V%','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21600,'cn','item_added_to_your_cart','�������V%W%������%�������%]%��#�W%�)"]%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21601,'cn','proceed_to_checkout','���%����a%����','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21602,'cn','cart_items','�%]%��#�W%���#���','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21603,'cn','1_my_cart','1.�������%]%��#�W%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21604,'cn','view_cart','�������%]%��#�W%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21605,'cn','2_shipping_info','2.�������%����','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21606,'cn','checkout','������','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21607,'cn','3_delivery_info','3.�����%��%����','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21608,'cn','4_payment','4.�W%���[%','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21609,'cn','5_confirmation','5.��Q%���','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21610,'cn','remove','��W%���','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21611,'cn','return_to_shop','�%���� ����Q%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21612,'cn','continue_to_shipping','�c%]%�Q%�������','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21613,'cn','or','����c%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21614,'cn','guest_checkout','�������a%��U%%','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21615,'cn','continue_to_delivery_info','�c%]%�Q%��Q%���%��%����','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21616,'cn','postal_code','��a%��%�V%���]%','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21617,'cn','choose_delivery_type','��U%����Q%���%���� �� �','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21618,'cn','local_pickup','��b%���%�����%�','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21619,'cn','select_your_nearest_pickup_point','��U%�������%�����������W%� ','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21620,'cn','continue_to_payment','�c%]%�Q%��W%���[%','2021-02-09 08:29:59','2021-09-20 07:30:12'),(21621,'cn','select_a_payment_option','��U%����W%���[%��c%�]%�','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21622,'cn','razorpay','��������b%','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21623,'cn','paystack','�V%��%����','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21624,'cn','voguepay','VoguePay','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21625,'cn','payhere','�������W%���[%','2021-02-09 08:30:00','2021-02-09 08:30:00'),(21626,'cn','ngenius','��#�����%]%������','2021-02-09 08:30:00','2021-02-09 08:30:00'),(21627,'cn','paytm','Paytm','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21628,'cn','cash_on_delivery','��%����%�W%���[%','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21629,'cn','your_wallet_balance_','������������������)"]%�','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21630,'cn','insufficient_balance','�������U%��b%%','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21631,'cn','i_agree_to_the','���������','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21632,'cn','complete_order','������������','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21633,'cn','summary','������','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21634,'cn','items','��#���','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21635,'cn','total_club_point','�U%\%�#����','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21636,'cn','total_shipping','�U%\%��Q%��%����','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21637,'cn','have_coupon_code_enter_here','�����������U%�W%���]%)"]%�����������]%U%���','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21638,'cn','apply','������','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21639,'cn','you_need_to_agree_with_our_policies','��������������������������%���','2021-02-09 08:30:00','2021-09-20 07:30:12'),(21640,'cn','forgot_password','�%���������]%','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21641,'cn','seo_setting','SEO����\%�','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21642,'cn','system_update','�%W%�a%�%��$%���%','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21643,'cn','add_new_payment_method','�V%W%������%����W%���[%��c%�]%�','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21644,'cn','manual_payment_method','�������W%���[%��c%�]%�','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21645,'cn','heading','������','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21646,'cn','logo','������','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21647,'cn','manual_payment_information','�������W%���[%�%����','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21648,'cn','type','��� �� �','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21649,'cn','custom_payment','�������W%���[%','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21650,'cn','check_payment','�������W%���[%','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21651,'cn','checkout_thumbnail','�a%��U%%�U%����','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21652,'cn','payment_instruction','�W%���[%������','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21653,'cn','bank_information','�������%����','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21654,'cn','select_file','��U%�������W%b%','2021-02-09 08:30:00','2021-09-20 07:30:13'),(21655,'cn','upload_new','�U%��]%����%','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21656,'cn','sort_by_newest','���������%����Q%�','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21657,'cn','sort_by_oldest','�������������Q%�','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21658,'cn','sort_by_smallest','��������%�����Q%�','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21659,'cn','sort_by_largest','�������������Q%�','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21660,'cn','selected_only','�����U%���','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21661,'cn','no_files_found','��[%�U%����%����W%b%','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21662,'cn','0_file_selected','0����W%b%�V%�%��U%���','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21663,'cn','clear','�����Q%','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21664,'cn','prev','�U%��U%����','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21665,'cn','next','�U%��U%����','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21666,'cn','add_files','���%��� ������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21667,'cn','method_has_been_inserted_successfully','��c%�%��V%�%������������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21668,'cn','order_date','����%]%������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21669,'cn','bill_to','����%����%','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21670,'cn','sub_total','��%����','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21671,'cn','total_tax','�U%\%���','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21672,'cn','grand_total','�$%����','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21673,'cn','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','�������������V%�%�������U%��������������Q%��%]%��%V%�������U%�����W%���[%�%����','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21674,'cn','thank_you_for_your_order','������������������)"]%�','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21675,'cn','order_code','����%]%�W%���]%)"]%�','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21676,'cn','a_copy_or_your_order_summary_has_been_sent_to','����������������������������V%�%��]%�����%','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21677,'cn','make_payment','�W%���[%','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21678,'cn','payment_screenshot','�W%���[%������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21679,'cn','paypal_credential','��%���b%������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21680,'cn','paypal_client_id','��%���b%�����b%ID','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21681,'cn','paypal_client_secret','��%���b%�����b%������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21682,'cn','paypal_sandbox_mode','��%���b%��%��������]%�','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21683,'cn','sslcommerz_credential','Sslcommerz������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21684,'cn','sslcz_store_id','Sslcz����Q%��V%����','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21685,'cn','sslcz_store_password','Sslcz����Q%������]%','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21686,'cn','sslcommerz_sandbox_mode','Sslcommerz��%��������]%�','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21687,'cn','stripe_credential','����U%b%������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21688,'cn','stripe_key','����$%���a%','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21689,'cn','stripe_secret','����$%�������','2021-02-09 08:30:01','2021-09-20 07:30:13'),(21690,'cn','razorpay_credential','RazorPay������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21691,'cn','razor_key','���������%���','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21692,'cn','razor_secret','������������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21693,'cn','instamojo_credential','Instamojo������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21694,'cn','api_key','API������%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21695,'cn','im_api_key','IM API������%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21696,'cn','auth_token','�������W%����','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21697,'cn','im_auth_token','IM AUTH�W%����','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21698,'cn','instamojo_sandbox_mode','Instamojo��%��������]%�','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21699,'cn','paystack_credential','PayStack������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21700,'cn','public_key','������%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21701,'cn','secret_key','������%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21702,'cn','merchant_email','�����b%��W%�����a%�W%b%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21703,'cn','voguepay_credential','VoguePay������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21704,'cn','merchant_id','�����b%�V%����','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21705,'cn','sandbox_mode','��%��������]%�','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21706,'cn','payhere_credential','����W%�������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21707,'cn','payhere_merchant_id','��b%��[%�Q%Q%�����b%�V%����','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21708,'cn','payhere_secret','����W%���b%�#����','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21709,'cn','payhere_currency','����W%���%��c%�','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21710,'cn','payhere_sandbox_mode','Payhere��%��������]%�','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21711,'cn','ngenius_credential','Ngenius������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21712,'cn','ngenius_outlet_id','NGENIUS��Q%����V%����','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21713,'cn','ngenius_api_key','NGENIUS API������%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21714,'cn','ngenius_currency','NGENIUS��%��c%�','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21715,'cn','mpesa_credential','Mpesa������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21716,'cn','mpesa_consumer_key','MPESA�b%���%W%���������%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21717,'cn','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21718,'cn','mpesa_consumer_secret','MPESA�b%���%W%���������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21719,'cn','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21720,'cn','mpesa_short_code','MPESA����W%���]%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21721,'cn','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21722,'cn','mpesa_sandbox_activation','MPESA��%�����%��$%W%','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21723,'cn','flutterwave_credential','Flutterwave������','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21724,'cn','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 08:30:02','2021-09-20 07:30:13'),(21725,'cn','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21726,'cn','rave_title','RAVE_TITLE','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21727,'cn','stagin_activation','����%��$%��%��$%W%','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21728,'cn','all_product','������������','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21729,'cn','sort_by','����Q%���c%�]%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21730,'cn','rating_high__low','�#����)"]%����>�\%�)"]%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21731,'cn','rating_low__high','�#����)"]%��\%�>���)"]%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21732,'cn','num_of_sale_high__low','��V%�����U%���)"]%����>�\%�)"]%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21733,'cn','num_of_sale_low__high','��V%�����U%���)"]%��\%�>���)"]%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21734,'cn','base_price_high__low','��Q%�����c%��]%)"]%����>�\%�)"]%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21735,'cn','base_price_low__high','��Q%�����c%��]%)"]%��\%�>���)"]%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21736,'cn','type__enter','�]%U%����U%��]%U%���','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21737,'cn','added_by','�V%W%����Q%Q%','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21738,'cn','num_of_sale','��V%�����U%���','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21739,'cn','total_stock','�U%\%�����%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21740,'cn','todays_deal','�W%���#����Q%����','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21741,'cn','rating','�#����','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21742,'cn','times','���','2021-02-09 08:30:03','2021-02-09 08:30:03'),(21743,'cn','add_nerw_product','�V%W%���������','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21744,'cn','product_information','�������%����','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21745,'cn','unit','������','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21746,'cn','unit_eg_kg_pc_etc','����\%�)"]%��[%����)"]%�KG)"]%�Pc���)"]%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21747,'cn','minimum_qty','�����%���U%���','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21748,'cn','tags','�����%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21749,'cn','type_and_hit_enter_to_add_a_tag','�]%U%����U%����Enter�W%��V%W%��������%�','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21750,'cn','barcode','�����]%','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21751,'cn','refundable','���������','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21752,'cn','product_images','������������','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21753,'cn','gallery_images','����W%�������','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21754,'cn','todays_deal_updated_successfully','�W%�����Q%�����V%�%��������$%���%','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21755,'cn','published_products_updated_successfully','�V%�%��]%�U%��������V%�%��������$%���%','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21756,'cn','thumbnail_image','�U%����������','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21757,'cn','featured_products_updated_successfully','��c%���%��������$%���%������','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21758,'cn','product_videos','�����������W%','2021-02-09 08:30:03','2021-09-20 07:30:13'),(21759,'cn','video_provider','�����W%����[%����','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21760,'cn','youtube','�����V%','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21761,'cn','dailymotion','Dailymotion','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21762,'cn','vimeo','Vimeo','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21763,'cn','video_link','�\%�%�������a%�','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21764,'cn','product_variation','������������','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21765,'cn','colors','���%�\%#','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21766,'cn','attributes','��%����','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21767,'cn','choose_attributes','��U%�����%����','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21768,'cn','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','��U%����#�%�����������%����)"]%���b%�[%��]%U%�����������%���������]%','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21769,'cn','product_price__stock','��������c%��]%+�Q%����','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21770,'cn','unit_price','�����c%','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21771,'cn','purchase_price','�%]%��%V%��c%��]%','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21772,'cn','flat','�c%%���','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21773,'cn','percent','��[%���','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21774,'cn','discount','������','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21775,'cn','product_description','����������%�%','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21776,'cn','product_shipping_cost','����������]%U%������','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21777,'cn','free_shipping','�����%W%�����%�','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21778,'cn','flat_rate','����c%%���','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21779,'cn','shipping_cost','����]%U%��%W%','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21780,'cn','pdf_specification','PDF������','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21781,'cn','seo_meta_tags','SEO���������','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21782,'cn','meta_title','���������','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21783,'cn','meta_image','���������','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21784,'cn','choice_title','��U%���������','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21785,'cn','enter_choice_values','�]%U%�����U%�����]%','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21786,'cn','all_categories','��������� ���','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21787,'cn','add_new_category','���%��� ��� ���','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21788,'cn','type_name__enter','�]%U%���������%�U%��]%U%���','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21789,'cn','banner','����c%�','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21790,'cn','commission','�\%����','2021-02-09 08:30:04','2021-09-20 07:30:13'),(21791,'cn','icon','������','2021-02-09 08:30:04','2021-02-09 08:30:04'),(21792,'cn','featured_categories_updated_successfully','��%[%��U%��� ����V%�%��������$%���%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21793,'cn','hot','���%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21794,'cn','filter_by_payment_status','����W%���[%����������%[%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21795,'cn','unpaid','����W%�','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21796,'cn','filter_by_deliver_status','����Q%���%�����������%[%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21797,'cn','pending','�[%����','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21798,'cn','type_order_code__hit_enter','�]%U%�������%]%�W%���]%�U%����Enter','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21799,'cn','num_of_products','��� ��������� ���','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21800,'cn','walk_in_customer','�a%�%���%�����b%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21801,'cn','qty','��U%���','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21802,'cn','without_shipping_charge','�����b%�����%W%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21803,'cn','with_shipping_charge','��������%W%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21804,'cn','pay_with_cash','��[%����W%���[%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21805,'cn','shipping_address','��b%�W%b%���%���','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21806,'cn','close','���','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21807,'cn','select_country','��U%��������b%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21808,'cn','order_confirmation','��������Q%���','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21809,'cn','are_you_sure_to_confirm_this_order','�����Q%��������Q%���������������)"]%�','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21810,'cn','comfirm_order','��Q%���������','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21811,'cn','personal_info','����Q%Q%�%����','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21812,'cn','repeat_password','�������]%U%��������]%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21813,'cn','shop_name','�Q%����������%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21814,'cn','register_your_shop','��W%�������������Q%�','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21815,'cn','affiliate_informations','�������%����','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21816,'cn','affiliate','����������%�','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21817,'cn','user_info','�����b%�%����','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21818,'cn','installed_addon','�V%�%�������������W%b%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21819,'cn','available_addon','����������W%b%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21820,'cn','install_new_addon','���������%�������W%b%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21821,'cn','version','���','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21822,'cn','activated','�$%W%���','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21823,'cn','deactivated','�V%�%������','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21824,'cn','activate_otp','�%��$%W%OTP','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21825,'cn','otp_will_be_used_for','OTP��%������]%','2021-02-09 08:30:05','2021-09-20 07:30:13'),(21826,'cn','settings_updated_successfully','����\%���$%���%������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21827,'cn','product_owner','���������������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21828,'cn','point','�W%� ','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21829,'cn','set_point_for_product_within_a_range','�������������������������W%� ','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21830,'cn','set_point_for_multiple_products','����������������������W%� ','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21831,'cn','min_price','����\%���c%','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21832,'cn','max_price','��������c%��]%','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21833,'cn','set_point_for_all_products','����������������������W%� ','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21834,'cn','set_point_for_','�������W%� ','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21835,'cn','convert_status','�\%����������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21836,'cn','earned_at','����%Q%���','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21837,'cn','seller_based_selling_report','�%���c%��V%������%���','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21838,'cn','sort_by_verificarion_status','����#��������������Q%�','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21839,'cn','approved','�V%�%��c%���','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21840,'cn','non_approved','�����c%���','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21841,'cn','filter','����%[%','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21842,'cn','seller_name','�%���c%������%','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21843,'cn','number_of_product_sale','��������V%�����U%���','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21844,'cn','order_amount','������������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21845,'cn','facebook_chat_setting','Facebook�����#����\%�','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21846,'cn','facebook_page_id','Facebook������ID','2021-02-09 08:30:06','2021-09-20 07:30: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�����#���)"]%������%��%��������� �����\%��U%������Q%)"]%������������b%�������W%� �U%��U%���������Q%Messenger���������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21848,'cn','login_into_your_facebook_page','��W%������%������Facebook������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21849,'cn','find_the_about_option_of_your_facebook_page','���������Facebook�������U%���[%���%About��U%���','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21850,'cn','at_the_very_bottom_you_can_find_the_facebook_page_id','�������Q%����)"]%��������W%���[%���%��� Facebook������ID���','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21851,'cn','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','�\%����%�������������\%�)"]%���b%�[%���[%���%�������$%��b%���������U%���','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21852,'cn','scroll_down_that_page_and_you_will_get_white_listed_domain','����U%��W%[%����#�%������)"]%������%����%�[%������\%������������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21853,'cn','set_your_website_domain_name','����\%��������b%�%���������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21854,'cn','google_recaptcha_setting','Google reCAPTCHA����\%�','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21855,'cn','site_key','�b%�%���������%','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21856,'cn','select_shipping_method','��U%�����������c%�]%�','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21857,'cn','product_wise_shipping_cost','�����������Q%�������]%U%������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21858,'cn','flat_rate_shipping_cost','�a%�%�U%������%W%','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21859,'cn','seller_wise_flat_shipping_cost','�%���c%�����Q%�����Q%�������]%U%������','2021-02-09 08:30:06','2021-09-20 07:30:13'),(21860,'cn','note','�%����','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21861,'cn','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','�����������Q%�������]%U%������������)"]%�����]%U%�����������������%�����������������]%U%��������U%����[%���Q%���','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21862,'cn','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','��Q%�����%W%��������%W%������)"]%������b%�%]%��%V%�����%��������������V%������������%W%��Q%���','2021-02-09 08:30:07','2021-09-20 07:30: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','�%���c%�����Q%�����Q%��������%W%������)"]%��������%���c%�����Q%�����%W%����������� ������b%�[%� ��#����%���c%�������]%U%�������U%��%]%��%V%2���������)"]%������������%��������%���c%�����Q%�������]%U%��������U%����[%����������','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21864,'cn','flat_rate_cost','�a%�%�U%���%W%���������','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21865,'cn','shipping_cost_for_admin_products','�������������������]%U%������','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21866,'cn','countries','������','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21867,'cn','showhide','�����Q%���%���','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21868,'cn','country_status_updated_successfully','�����b%/���%����������V%�%��������$%���%','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21869,'cn','all_subcategories','������������ ���','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21870,'cn','add_new_subcategory','�V%W%������%��������� ���','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21871,'cn','subcategories','������ ���','2021-02-09 08:30:07','2021-09-20 07:30:13'),(21872,'cn','sub_category_information','������ ����%����','2021-02-09 08:30:56','2021-09-20 07:30:13'),(21873,'cn','slug','ug','2021-02-09 08:30:56','2021-09-20 07:30:13'),(21874,'cn','all_sub_subcategories','������������ ���','2021-02-09 08:30:56','2021-09-20 07:30:13'),(21875,'cn','add_new_sub_subcategory','�V%W%������%������������ ���','2021-02-09 08:30:56','2021-09-20 07:30:13'),(21876,'cn','subsubcategories','��������� ���','2021-02-09 08:30:56','2021-09-20 07:30:13'),(21877,'cn','make_this_default','�����Q%�W%����','2021-02-09 08:30:56','2021-09-20 07:30:13'),(21878,'cn','shops','����Q%�','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21879,'cn','women_clothing__fashion','��%�����������%�','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21880,'cn','cellphones__tabs','����#���������%����','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21881,'cn','welcome_to','����%��[%����%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21882,'cn','create_a_new_account','��a%�W%Q%�U%�������%�%���b%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21883,'cn','full_name','������','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21884,'cn','password','�����]%','2021-02-09 08:30:57','2021-02-09 08:30:57'),(21885,'cn','confrim_password','�����]%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21886,'cn','i_agree_with_the','���������','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21887,'cn','terms_and_conditions','�����[%�������W%b%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21888,'cn','register','���������','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21889,'cn','already_have_an_account','�V%�%�b%�����U%�����U%%���','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21890,'cn','sign_up_with','��W%���','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21891,'cn','i_agree_with_the_terms_and_conditions','��������������[%�������W%b%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21892,'cn','all_role','������������%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21893,'cn','add_new_role','�V%W%������%������%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21894,'cn','roles','���������%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21895,'cn','add_new_staffs','�V%W%������%����V%�','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21896,'cn','role','������%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21897,'cn','frontend_website_name','�������b%�%���������%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21898,'cn','website_name','�b%�%���������%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21899,'cn','site_motto','�b%�%����Q%���%���','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21900,'cn','best_ecommerce_website','����\%%��W%����������b%�%���','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21901,'cn','site_icon','�b%�%���������','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21902,'cn','website_favicon_32x32_png','�b%�%������������32x32 .png','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21903,'cn','website_base_color','�b%�%�����Q%���������%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21904,'cn','hex_color_code','���������%��b%������%�W%���]%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21905,'cn','website_base_hover_color','�b%�%�����Q%�����U%���������%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21906,'cn','update','��$%���%�%����','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21907,'cn','global_seo','����������$%��]%����������','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21908,'cn','meta_description','�������%�%','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21909,'cn','keywords','�����a%�#� ','2021-02-09 08:30:57','2021-09-20 07:30:13'),(21910,'cn','separate_with_coma','�������%V%������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21911,'cn','website_pages','�b%�%���������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21912,'cn','all_pages','������������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21913,'cn','add_new_page','���%��� ������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21914,'cn','url','�b%�%���','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21915,'cn','actions','����\%�','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21916,'cn','edit_page_information','�V%��]%��������%����','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21917,'cn','page_content','�����������c%','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21918,'cn','title','������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21919,'cn','link','������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21920,'cn','use_character_number_hypen_only','����\%%���������)"]%���U%���)"]%����������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21921,'cn','add_content','�V%W%��������c%','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21922,'cn','seo_fields','�[%����','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21923,'cn','update_page','��$%���%������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21924,'cn','default_language','��������� ���','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21925,'cn','add_new_language','���%��� ��� ���','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21926,'cn','rtl','RTL','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21927,'cn','translation','�%W%���','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21928,'cn','language_information','��� ����%����','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21929,'cn','save_page','�%����������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21930,'cn','home_page_settings','�U%W%�������\%�','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21931,'cn','home_slider','��b%����W%����','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21932,'cn','photos__links','���������������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21933,'cn','add_new','�V%W%���%','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21934,'cn','home_categories','������������ ','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21935,'cn','home_banner_1_max_3','�������#��c%�1)"]%�������3���)"]%�','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21936,'cn','banner__links','�#��c%����������','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21937,'cn','home_banner_2_max_3','�������#��c%�2)"]%�������3���)"]%�','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21938,'cn','top_10','���10���','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21939,'cn','top_categories_max_10','���%������ ���)"]%�������10���)"]%�','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21940,'cn','top_brands_max_10','����$%�������)"]%�������10���)"]%�','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21941,'cn','system_name','�%W%�a%�%������%','2021-02-09 08:30:58','2021-09-20 07:30:13'),(21942,'cn','system_logo__white','�%W%�a%�%�[%\%���-��\%���%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21943,'cn','choose_files','��U%�������W%b%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21944,'cn','will_be_used_in_admin_panel_side_menu','��%���������������%��$%����������U%��\%%���','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21945,'cn','system_logo__black','�%W%�a%�%�[%\%���-�W%����%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21946,'cn','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','��%��������#�+�����������W%�����������������������%����������U%��\%%���','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21947,'cn','system_timezone','�%W%�a%�%������','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21948,'cn','admin_login_page_background','�����������W%���������������','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21949,'cn','website_header','�b%�%���������','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21950,'cn','header_setting','������������','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21951,'cn','header_logo','�������[%\%���','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21952,'cn','show_language_switcher','�����Q%��� ������������)"]%�','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21953,'cn','show_currency_switcher','�����Q%��%��c%����������)"]%�','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21954,'cn','enable_stikcy_header','������stikcy������)"]%�','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21955,'cn','website_footer','�b%�%��������%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21956,'cn','footer_widget','�����%��%�����W%b%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21957,'cn','about_widget','�����]%��%�����W%b%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21958,'cn','footer_logo','�����%�[%\%���','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21959,'cn','about_description','�����]%������','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21960,'cn','contact_info_widget','����c%��%������%�����W%b%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21961,'cn','footer_contact_address','�����%����c%����%���','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21962,'cn','footer_contact_phone','�����%����c%���W%�#�%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21963,'cn','footer_contact_email','�����%����c%���W%�����a%�W%b%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21964,'cn','link_widget_one','��������%�����W%b%�U%�','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21965,'cn','links','������','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21966,'cn','footer_bottom','�����%�Q%����','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21967,'cn','copyright_widget_','��������%��V%���V%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21968,'cn','copyright_text','������������','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21969,'cn','social_link_widget_','��[%�Q%���������%�����W%b%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21970,'cn','show_social_links','�����Q%��[%�Q%�������)"]%�','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21971,'cn','social_links','��[%�Q%�����a%�','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21972,'cn','payment_methods_widget_','�W%���[%��c%�]%���%��V%���V%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21973,'cn','rtl_status_updated_successfully','RTL�������V%�%��������$%���%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21974,'cn','language_changed_to_','��� �����$%��c%��Q%','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21975,'cn','inhouse_product_sale_report','��������������V%������%���','2021-02-09 08:30:59','2021-09-20 07:30:13'),(21976,'cn','sort_by_category','������ �������Q%�','2021-02-09 08:30:59','2021-09-20 07:30:14'),(21977,'cn','product_wise_stock_report','�����������Q%����Q%�������%���','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21978,'cn','currency_changed_to_','�c%������$%��c%��Q%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21979,'cn','avatar','������','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21980,'cn','copy','�����\%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21981,'cn','variant','������','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21982,'cn','variant_price','��������c%��]%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21983,'cn','sku','SKU','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21984,'cn','key','��a%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21985,'cn','value','��]%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21986,'cn','copy_translations','�����\%�%W%���','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21987,'cn','all_pickup_points','����������]%��W%� ','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21988,'cn','add_new_pickup_point','�V%W%������%����������W%� ','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21989,'cn','manager','�b%����','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21990,'cn','location','���%�W%� ','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21991,'cn','pickup_station_contact','�������������c%�','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21992,'cn','open','������','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21993,'cn','pos_activation_for_seller','�%���c%���POS�%��$%W%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21994,'cn','order_completed_successfully','���������������������','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21995,'cn','text_input','�������]%U%���','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21996,'cn','select','��U%���','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21997,'cn','multiple_select','�����U%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21998,'cn','radio','����V%���W%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(21999,'cn','file','����W%b%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22000,'cn','email_address','��W%�����a%�W%b%���%���','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22001,'cn','verification_info','�#�����%����','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22002,'cn','approval','��c%�����U%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22003,'cn','due_amount','���%���������','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22004,'cn','show','�����Q%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22005,'cn','pay_now','��[%����W%���[%','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22006,'cn','affiliate_user_verification','�������#����','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22007,'cn','reject','����a%�','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22008,'cn','accept','������','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22009,'cn','beauty_health__hair','�[%���c%)"]%�����Q%V%���������','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22010,'cn','comparison','����]%���c%�]%�','2021-02-09 08:31:00','2021-09-20 07:30:14'),(22011,'cn','reset_compare_list','����\%�����]%�������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22012,'cn','your_comparison_list_is_empty','����������]%���������Q%�#Q%','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22013,'cn','convert_point_to_wallet','��%��W%� �\%������Q%������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22014,'cn','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','�%����)"]%��\%%����%�%�������#��������W%b%�c%����)"]%��������������%��$%W%��������U%������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22015,'cn','create_an_account','��a%�W%Q%�U%�����U%%��b%���','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22016,'cn','use_email_instead','��c%�����W%�����a%�W%b%','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22017,'cn','by_signing_up_you_agree_to_our_terms_and_conditions','��������W%���)"]%������������������������[%�������W%b%���','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22018,'cn','create_account','��a%�W%Q%�%���b%','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22019,'cn','or_join_with','���������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22020,'cn','already_have_an_account','�V%�%�b%�����U%%����Q%�)"]%�','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22021,'cn','log_in','��W%���','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22022,'cn','computer__accessories','��W%����������W%b%','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22023,'cn','products','������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22024,'cn','in_your_cart','����������%]%��#�W%��U%�','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22025,'cn','in_your_wishlist','����������������U%�����U%�','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22026,'cn','you_ordered','�\%��W%� �Q%�','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22027,'cn','default_shipping_address','�W%���������%����%���','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22028,'cn','sports__outdoor','�����������b%���','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22029,'cn','copied','�����\%���','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22030,'cn','copy_the_promote_link','�����\%�%���V%������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22031,'cn','write_a_review','����#����','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22032,'cn','your_name','�\%����������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22033,'cn','comment','�#����','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22034,'cn','your_review','�\%����������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22035,'cn','submit_review','����Q%��#����','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22036,'cn','claire_willis','��������[%,%V%�����#���)"]%�Claire Willis)"]%�','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22037,'cn','germaine_greene','�����]%,%V%��]%�� �)"]%�Germaine Greene)"]%�','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22038,'cn','product_file','������������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22039,'cn','choose_file','��U%�������W%b%','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22040,'cn','type_to_add_a_tag','��a%����W%��V%W%��������%�','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22041,'cn','images','������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22042,'cn','main_images','�U%W%����\%�%���','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22043,'cn','meta_tags','���������','2021-02-09 08:31:01','2021-09-20 07:30:14'),(22044,'cn','digital_product_has_been_inserted_successfully','��U%����������V%�%������������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22045,'cn','edit_digital_product','�V%��]%���U%���������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22046,'cn','select_an_option','��U%����U%������U%���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22047,'cn','tax','���','2021-02-09 08:31:02','2021-02-09 08:31:02'),(22048,'cn','any_question_about_this_product','��%�������������������������)"]%�','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22049,'cn','sign_in','��W%���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22050,'cn','login_with_google','�����%V%�����W%���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22051,'cn','login_with_facebook','���Facebook��W%���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22052,'cn','login_with_twitter','���Twitter��W%���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22053,'cn','click_to_show_phone_number','�W%� ��������Q%��W%�#�%�����]%','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22054,'cn','other_ads_of','�����b%�W%��W%����','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22055,'cn','store_home','�Q%����������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22056,'cn','top_selling','��������V%','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22057,'cn','shop_settings','�Q%��������\%�','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22058,'cn','visit_shop','����������Q%�','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22059,'cn','pickup_points','�������W%� ','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22060,'cn','select_pickup_point','��U%����������W%� ','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22061,'cn','slider_settings','�W%��������\%�','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22062,'cn','social_media_link','��[%�Q%�������������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22063,'cn','facebook','�����U%','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22064,'cn','twitter','�����c%','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22065,'cn','google','��%V%���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22066,'cn','new_arrival_products','���%���%������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22067,'cn','check_your_order_status','������������������������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22068,'cn','shipping_method','��a%�����c%�]%�','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22069,'cn','shipped_by','���...������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22070,'cn','image','������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22071,'cn','sub_sub_category','��������� ���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22072,'cn','inhouse_products','������������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22073,'cn','forgot_password','�%���������]%)"]%�','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22074,'cn','enter_your_email_address_to_recover_your_password','�]%U%�����������W%�����a%�W%b%���%����W%�����[%#�����������]%���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22075,'cn','email_or_phone','��a%�W%b%��������W%�#�%','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22076,'cn','send_password_reset_link','��]%��������]%����\%�������','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22077,'cn','back_to_login','��� ���%��W%���','2021-02-09 08:31:02','2021-09-20 07:30:14'),(22078,'cn','index','�����U%','2021-02-09 08:31:03','2021-02-09 08:31:03'),(22079,'cn','download_your_product','�U%��]%�������','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22080,'cn','option','��U%���','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22081,'cn','applied_refund_request','��%��������[%��%���','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22082,'cn','item_has_been_renoved_from_wishlist','��#����V%�%�[%� �������U%�����U%����%����Q%�����%�','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22083,'cn','bulk_products_upload','��c%����������U%���%','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22084,'cn','upload_csv','�U%��]%�CSV','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22085,'cn','create_a_ticket','��a%�W%Q%�V%����','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22086,'cn','tickets','������','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22087,'cn','ticket_id','�������V%����','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22088,'cn','sending_date','��]%���������','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22089,'cn','subject','��U%���','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22090,'cn','view_details','�������#%���','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22091,'cn','provide_a_detailed_description','����[%��#%�$%�%������','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22092,'cn','type_your_reply','�]%U%������������ ���','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22093,'cn','send_ticket','��]%���������','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22094,'cn','load_more','����]%���$%���','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22095,'cn','jewelry__watches','�����b%�����b%','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22096,'cn','filters','��#��U%���','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22097,'cn','contact_address','����c%����%���','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22098,'cn','contact_phone','����c%���W%�#�%','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22099,'cn','contact_email','����c%���W%�����a%�W%b%','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22100,'cn','filter_by','����%[%','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22101,'cn','condition','����Q%V%)"]%�����%�','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22102,'cn','all_type','��������� �� �','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22103,'cn','pay_with_wallet','����������W%���[%','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22104,'cn','select_variation','��U%���������','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22105,'cn','no_product_added','����V%W%���������','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22106,'cn','status_has_been_updated_successfully','�������V%�%��������$%���%','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22107,'cn','all_seller_packages','�������%���b%������','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22108,'cn','add_new_package','�V%W%������%�����c%','2021-02-09 08:31:03','2021-09-20 07:30:14'),(22109,'cn','package_logo','������������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22110,'cn','days','��#','2021-02-09 08:31:04','2021-02-09 08:31:04'),(22111,'cn','create_new_seller_package','��a%�W%Q%���%�%���b%������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22112,'cn','package_name','�����c%������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22113,'cn','duration','����Q%�������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22114,'cn','validity_in_number_of_days','��������#��U%','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22115,'cn','update_package_information','��$%���%�������%����','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22116,'cn','package_has_been_inserted_successfully','����V%�%������������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22117,'cn','refund_request','�����[%�����%�','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22118,'cn','reason','������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22119,'cn','label','�����%�','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22120,'cn','select_label','��U%��������%�','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22121,'cn','multiple_select_label','�����U%�����%�','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22122,'cn','radio_label','����V%���W%�����%�','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22123,'cn','pickup_point_orders','�������W%� ������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22124,'cn','view','������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22125,'cn','order_','���������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22126,'cn','order_status','������������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22127,'cn','total_amount','�U%\%������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22128,'cn','total','�U%\%','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22129,'cn','delivery_status_has_been_updated','�Q%���%��������V%�%��$%���%','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22130,'cn','payment_status_has_been_updated','�W%���[%�������V%�%��$%���%','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22131,'cn','invoice','��]%���','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22132,'cn','set_refund_time','�����������[%������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22133,'cn','set_time_for_sending_refund_request','����\%���]%��������[%�����%����������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22134,'cn','set_refund_sticker','����\%������[%��%]%�$%�','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22135,'cn','sticker','��%]%���','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22136,'cn','refund_request_all','�����[%�����%�������','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22137,'cn','order_id','�������V%����','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22138,'cn','seller_approval','�%���c%��c%���','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22139,'cn','admin_approval','�����������c%���','2021-02-09 08:31:04','2021-09-20 07:30:14'),(22140,'cn','refund_status','�����[%������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22141,'cn','no_refund','����%������[%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22142,'cn','status_updated_successfully','��������$%���%������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22143,'cn','user_search_report','�����b%����$%����%���','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22144,'cn','search_by','����$%��[%����','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22145,'cn','number_searches','�����]%����$%�','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22146,'cn','sender','��]%�W%b%�Q%Q%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22147,'cn','receiver','�����b%���','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22148,'cn','verification_form_updated_successfully','�#���������]%�V%�%��������$%���%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22149,'cn','invalid_email_or_password','�����������W%�����a%�W%b%��������]%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22150,'cn','all_coupons','��������������U%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22151,'cn','add_new_coupon','�V%W%������%��������U%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22152,'cn','coupon_information','��������U%�%����','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22153,'cn','start_date','������������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22154,'cn','end_date','�a%����������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22155,'cn','product_base','��������Q%���','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22156,'cn','send_newsletter','��]%�������Q%�������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22157,'cn','mobile_users','��W%��������b%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22158,'cn','sms_subject','����%��U%W%���','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22159,'cn','sms_content','����%������c%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22160,'cn','all_flash_delas','������Flash Delas','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22161,'cn','create_new_flash_dela','��a%�W%Q%���%���Flash Dela','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22162,'cn','page_link','������������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22163,'cn','flash_deal_information','��%����Q%�����%����','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22164,'cn','background_color','������������%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22165,'cn','0000ff',')"]%�0000ff','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22166,'cn','text_color','������������%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22167,'cn','white','��\%���%','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22168,'cn','dark','�W%����','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22169,'cn','choose_products','��U%���������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22170,'cn','discounts','������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22171,'cn','discount_type','��������� �� �','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22172,'cn','twillo_credential','Twillo������','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22173,'cn','twilio_sid','TWILIO SID','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22174,'cn','twilio_auth_token','TWILIO AUTH�W%����','2021-02-09 08:31:05','2021-09-20 07:30:14'),(22175,'cn','twilio_verify_sid','TWILIO�#����SID','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22176,'cn','valid_twillo_number','�������������V%������]%','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22177,'cn','nexmo_credential','Nexmo������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22178,'cn','nexmo_key','NEXMO KEY','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22179,'cn','nexmo_secret','NEXMO������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22180,'cn','ssl_wireless_credential','SSL����V%�������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22181,'cn','ssl_sms_api_token','SSL SMS API�W%����','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22182,'cn','ssl_sms_sid','SSL SMS SID','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22183,'cn','ssl_sms_url','SSL SMS URL','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22184,'cn','fast2sms_credential','Fast2SMS������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22185,'cn','auth_key','��������a%','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22186,'cn','route','�V%��V%�','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22187,'cn','promotional_use','�%���V%������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22188,'cn','transactional_use','�Q%����������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22189,'cn','sender_id','��]%�W%b%�Q%Q%ID','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22190,'cn','nexmo_otp','Nexmo OTP','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22191,'cn','twillo_otp','Twillo OTP','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22192,'cn','ssl_wireless_otp','SSL����V%�OTP','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22193,'cn','fast2sms_otp','Fast2SMS OTP','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22194,'cn','order_placement','�U%�������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22195,'cn','delivery_status_changing_time','�Q%���%������������$%������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22196,'cn','paid_status_changing_time','�W%���%W%��������$%��c%������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22197,'cn','send_bulk_sms','��]%�����c%�������%�','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22198,'cn','all_subscribers','������������%���','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22199,'cn','coupon_information_adding','��������U%�%�����V%W%���','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22200,'cn','coupon_type','��������U%��� �� �','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22201,'cn','for_products','��%���]%������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22202,'cn','for_total_orders','��%���]%�U%\%������','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22203,'cn','add_your_product_base_coupon','�V%W%�����������������Q%�����������U%','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22204,'cn','coupon_code','��������V%�����]%','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22205,'cn','sub_category','������ ���','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22206,'cn','add_more','�V%W%�����$%���','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22207,'cn','add_your_cart_base_coupon','�V%W%����������%]%��#�W%���Q%�����������U%','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22208,'cn','minimum_shopping','����\%��%]%��#','2021-02-09 08:31:06','2021-09-20 07:30:14'),(22209,'cn','maximum_discount_amount','������������������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22210,'cn','coupon_information_update','��������U%�%������$%���%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22211,'cn','please_configure_smtp_setting_to_work_all_email_sending_funtionality','�������\%�SMTP����\%��W%��\%%�����������W%�����a%�W%b%��]%��������\%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22212,'cn','configure_now','�����%����\%�','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22213,'cn','total_published_products','��Q%�������������U%\%��U%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22214,'cn','total_sellers_products','�%���b%�������U%\%��U%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22215,'cn','total_admin_products','����������������U%\%��U%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22216,'cn','manage_products','������������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22217,'cn','total_product_category','�U%\%��������� ���','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22218,'cn','create_category','��a%�W%Q%��� ���','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22219,'cn','total_product_sub_sub_category','�U%\%������������ ���','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22220,'cn','create_sub_sub_category','��a%�W%Q%��������� ���','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22221,'cn','total_product_sub_category','�U%\%������������ ���','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22222,'cn','create_sub_category','��a%�W%Q%������ ���','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22223,'cn','total_product_brand','�������U%\%������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22224,'cn','create_brand','�W%Q%���������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22225,'cn','total_sellers','�%���b%�U%\%��U%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22226,'cn','total_approved_sellers','��U%����%���b%�U%\%��U%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22227,'cn','total_pending_sellers','�����%Q%�%���b%�U%\%��U%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22228,'cn','manage_sellers','�������%���b%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22229,'cn','category_wise_product_sale','��� ��������Q%�����������V%���','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22230,'cn','sale','��c%�%�','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22231,'cn','category_wise_product_stock','��� ��������Q%����������Q%����','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22232,'cn','category_name','������ ������%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22233,'cn','stock','������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22234,'cn','frontend','������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22235,'cn','home_page','�U%W%���','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22236,'cn','setting','����\%�','2021-02-09 08:31:07','2021-02-09 08:31:07'),(22237,'cn','policy_page','��%���������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22238,'cn','general','�U%����','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22239,'cn','click_here','�W%� ���������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22240,'cn','useful_link','���������������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22241,'cn','activation','�%��$%W%','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22242,'cn','smtp','SMTP','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22243,'cn','payment_method','�W%���[%��c%�%�','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22244,'cn','social_media','��[%�Q%�������','2021-02-09 08:31:07','2021-09-20 07:30:14'),(22245,'cn','business','������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22246,'cn','seller_verification','�%���b%�#����','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22247,'cn','form_setting','�����]%������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22248,'cn','language','��� ���','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22249,'cn','dashboard','��������%','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22250,'cn','pos_system','POS�%W%�a%�%','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22251,'cn','pos_manager','POS���������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22252,'cn','pos_configuration','POS����\%�','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22253,'cn','products','��������%���Q%','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22254,'cn','add_new_product','�V%W%������%������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22255,'cn','all_products','������������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22256,'cn','in_house_products','������������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22257,'cn','seller_products','�%���c%������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22258,'cn','digital_products','��U%��]%������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22259,'cn','bulk_import','��c%�����%����','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22260,'cn','bulk_export','��c%�����Q%���','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22261,'cn','category','��� ���','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22262,'cn','subcategory','������ ���','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22263,'cn','sub_subcategory','��������� ���','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22264,'cn','brand','���','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22265,'cn','attribute','��%����','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22266,'cn','product_reviews','�������#����','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22267,'cn','sales','���������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22268,'cn','all_orders','������������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22269,'cn','inhouse_orders','������������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22270,'cn','seller_orders','�%���c%������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22271,'cn','pickup_point_order','�������W%� ����Q%�','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22272,'cn','refunds','�����[%','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22273,'cn','refund_requests','�����[%�����%�','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22274,'cn','approved_refund','��c%��������[%','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22275,'cn','refund_configuration','�����[%����\%�','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22276,'cn','customers','������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22277,'cn','customer_list','�����b%������','2021-02-09 08:31:08','2021-09-20 07:30:14'),(22278,'cn','classified_products','������ ������','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22279,'cn','classified_packages','������ �����c%','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22280,'cn','sellers','�%���b%','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22281,'cn','all_seller','�������%���b%','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22282,'cn','payouts','�����Q%','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22283,'cn','payout_requests','�W%���[%�����%�','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22284,'cn','seller_commission','�%���c%�\%����','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22285,'cn','seller_packages','�%���b%������','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22286,'cn','seller_verification_form','�%���c%�#�������','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22287,'cn','reports','���%�����U%','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22288,'cn','in_house_product_sale','��������������V%���','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22289,'cn','seller_products_sale','�%���c%��������V%���','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22290,'cn','products_stock','�������Q%����','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22291,'cn','products_wishlist','�������������U%����','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22292,'cn','user_searches','�����b%����$%�','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22293,'cn','marketing','�����V%��U%','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22294,'cn','flash_deals','Flash�Q%����','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22295,'cn','newsletters','����Q%�������','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22296,'cn','bulk_sms','��c%�������%�','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22297,'cn','subscribers','�����b%','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22298,'cn','coupon','��������U%','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22299,'cn','support','������','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22300,'cn','ticket','���','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22301,'cn','product_queries','����������#�','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22302,'cn','website_setup','�b%�%�������\%�','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22303,'cn','header','������','2021-02-09 08:31:09','2021-09-20 07:30:14'),(22304,'cn','footer','�����%','2021-02-09 08:31:09','2021-09-20 07:30:15'),(22305,'cn','pages','�����U%','2021-02-09 08:31:09','2021-09-20 07:30:15'),(22306,'cn','appearance','��Q%��[%','2021-02-09 08:31:09','2021-09-20 07:30:15'),(22307,'cn','setup__configurations','����\%��������\%�','2021-02-09 08:31:09','2021-09-20 07:30:15'),(22308,'cn','general_settings','����������\%�','2021-02-09 08:31:09','2021-09-20 07:30:15'),(22309,'cn','features_activation','�����\%�%��$%W%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22310,'cn','languages','��� �����\%���','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22311,'cn','currency','��%��c%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22312,'cn','pickup_point','�������W%� ','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22313,'cn','smtp_settings','SMTP����\%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22314,'cn','payment_methods','����W%���c%�]%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22315,'cn','file_system_configuration','����W%b%�%W%�a%�%����\%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22316,'cn','social_media_logins','��[%�Q%���������W%���','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22317,'cn','analytics_tools','����� ��V%���V%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22318,'cn','facebook_chat','�����U%�����#','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22319,'cn','google_recaptcha','Google reCAPTCHA','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22320,'cn','shipping_configuration','����]%U%����\%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22321,'cn','shipping_countries','����]%U%�����b%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22322,'cn','affiliate_system','�������%W%�a%�%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22323,'cn','affiliate_registration_form','��������W%��������]%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22324,'cn','affiliate_configurations','����������\%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22325,'cn','affiliate_users','�����������b%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22326,'cn','referral_users','�����������b%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22327,'cn','affiliate_withdraw_requests','�����������[%�����%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22328,'cn','offline_payment_system','����V%�����W%��%W%�a%�%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22329,'cn','manual_payment_methods','�������W%���[%��c%�]%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22330,'cn','offline_wallet_recharge','����V%������������]%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22331,'cn','offline_customer_package_payments','����V%������b%�������W%���[%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22332,'cn','offline_seller_package_payments','����V%��%���b%�������W%���[%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22333,'cn','paytm_payment_gateway','Paytm�W%���[%�b%�%���','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22334,'cn','set_paytm_credentials','����\%�Paytm������','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22335,'cn','club_point_system','�%�%�������#�����%W%�a%�%','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22336,'cn','club_point_configurations','�%�%�������#��������\%�','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22337,'cn','set_product_point','�������������W%� ','2021-02-09 08:31:10','2021-09-20 07:30:15'),(22338,'cn','user_points','�����b%�W%� ��U%','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22339,'cn','otp_system','OTP�%W%�a%�%','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22340,'cn','otp_configurations','OTP����\%�','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22341,'cn','set_otp_credentials','����\%�OTP������','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22342,'cn','staffs','����V%�','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22343,'cn','all_staffs','����������V%�','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22344,'cn','staff_permissions','����V%�������','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22345,'cn','addon_manager','����W%b%���������','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22346,'cn','browse_website','�����\%�b%�%���','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22347,'cn','pos','��V%����W%� ','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22348,'cn','notifications','�������Q%����','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22349,'cn','new_orders','���%������','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22350,'cn','userimage','�����b%������','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22351,'cn','profile','����Q%Q%�%����','2021-02-09 08:31:11','2021-09-20 07:30:15'),(22352,'cn','logout','��W%��Q%','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22353,'cn','page_not_found','��[%�U%����%�b%�%���)"]%�','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22354,'cn','the_page_you_are_looking_for_has_not_been_found_on_our_server','����������������������U%���[%�U%����%�����������[%������������','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22355,'cn','registration','��W%���','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22356,'cn','i_am_shopping_for','�������[%���%V%�W%��Q%]%���...','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22357,'cn','compare','��U%���','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22358,'cn','wishlist','�%�������','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22359,'cn','cart','����W%�','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22360,'cn','your_cart_is_empty','�������%]%��#�W%�����#Q%���','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22361,'cn','categories','������ ������','2021-02-09 08:31:51','2021-09-20 07:30:15'),(22362,'cn','see_all','������������','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22363,'cn','seller_policy','�%���c%��%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22364,'cn','return_policy','�����%���%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22365,'cn','support_policy','�����$%��%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22366,'cn','privacy_policy','���%�����%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22367,'cn','your_email_address','��������W%�����a%�W%b%���%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22368,'cn','subscribe','������%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22369,'cn','contact_info','����a%��%����','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22370,'cn','address','���%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22371,'cn','phone','��W%�#�%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22372,'cn','email','��W%�����a%�W%b%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22373,'cn','login','��W%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22374,'cn','my_account','�������%���b%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22375,'cn','order_history','��������V%���%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22376,'cn','my_wishlist','��������b%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22377,'cn','track_order','�%\%�U%�������','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22378,'cn','be_an_affiliate_partner','�����Q%����������]%$%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22379,'cn','be_a_seller','�����Q%�%���b%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22380,'cn','apply_now','��[%�����%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22381,'cn','confirmation','��Q%�����U%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22382,'cn','delete_confirmation_message','��������Q%����%����','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22383,'cn','cancel','����b%�','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22384,'cn','delete','������','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22385,'cn','item_has_been_added_to_compare_list','�������V%�%�V%W%������%����]%�������','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22386,'cn','please_login_first','��������W%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22387,'cn','total_earnings_from','�[%��������U%\%��b%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22388,'cn','client_subscription','�����b%������%','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22389,'cn','product_category','������������ ','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22390,'cn','product_sub_sub_category','������������ ���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22391,'cn','product_sub_category','������������ ���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22392,'cn','product_brand','������������','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22393,'cn','top_client_packages','����$%������b%������','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22394,'cn','top_freelancer_packages','����$%�������%��V%������������','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22395,'cn','number_of_sale','��V%�����U%���','2021-02-09 08:31:52','2021-09-20 07:30:15'),(22396,'cn','number_of_stock','�Q%������U%���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22397,'cn','top_10_products','������������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22398,'cn','top_12_products','���������12�\%����������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22399,'cn','admin_can_not_be_a_seller','����������U%���\%�����Q%�%���b%','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22400,'cn','filter_by_rating','����#������#��U%','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22401,'cn','published_reviews_updated_successfully','��]%�U%�����#�����V%�%��������$%���%','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22402,'cn','refund_sticker_has_been_updated_successfully','�����[%��%]%�$%��V%�%��������$%���%','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22403,'cn','edit_product','�V%��]%�������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22404,'cn','meta_images','���������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22405,'cn','update_product','��$%���%������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22406,'cn','product_has_been_deleted_successfully','�������V%�%������������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22407,'cn','your_profile_has_been_updated_successfully','����������Q%Q%�%�����V%�%��������$%���%)"]%�','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22408,'cn','upload_limit_has_been_reached_please_upgrade_your_package','�V%�%������%�U%���%�����b%����������$%��������W%��W%b%������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22409,'cn','add_your_product','�V%W%���������������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22410,'cn','select_a_category','��U%����U%������� ���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22411,'cn','select_a_brand','��U%����U%����������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22412,'cn','product_unit','����������\%�','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22413,'cn','minimum_qty','�����%���U%���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22414,'cn','product_tag','�����������%�','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22415,'cn','type__hit_enter','�]%U%����U%����Enter','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22416,'cn','videos','�\%�%���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22417,'cn','video_from','�\%�%����[%��Q%�','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22418,'cn','video_url','�\%�%����b%�%���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22419,'cn','customer_choice','�����b%��U%���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22420,'cn','pdf','PDF��]%�]%�','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22421,'cn','choose_pdf','��U%���PDF','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22422,'cn','select_category','��U%������ ���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22423,'cn','target_category','��������� ���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22424,'cn','subsubcategory','������ ���','2021-02-09 08:31:53','2021-02-09 08:31:53'),(22425,'cn','search_category','����$%���� ���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22426,'cn','search_subcategory','����$%������� ���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22427,'cn','search_subsubcategory','����$%������� ���','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22428,'cn','update_your_product','��$%���%������������','2021-02-09 08:31:53','2021-09-20 07:30:15'),(22429,'cn','product_has_been_updated_successfully','�������V%�%��������$%���%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22430,'cn','add_your_digital_product','�V%W%�����������U%���������','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22431,'cn','active_ecommerce_cms_update_process','�$%W%�Q%������W%���������CMS��$%���%������','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22432,'cn','codecanyon_purchase_code','Codecanyon�%]%��%V%�W%���]%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22433,'cn','database_name','��U%����Q%�������%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22434,'cn','database_username','��U%����Q%������b%���','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22435,'cn','database_password','��U%����Q%������]%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22436,'cn','database_hostname','��U%����Q%��U%W%�#����','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22437,'cn','update_now','��[%�����$%���%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22438,'cn','congratulations','���������','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22439,'cn','you_have_successfully_completed_the_updating_process_please_login_to_continue','����V%�%��������������$%���%��������������W%�����������$%��������c%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22440,'cn','go_to_home','��� ��b%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22441,'cn','login_to_admin_panel','��W%������%�����������%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22442,'cn','s3_file_system_credentials','S3����W%b%�%W%�a%�%������','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22443,'cn','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22444,'cn','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22445,'cn','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22446,'cn','aws_bucket','AWS_BUCKET','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22447,'cn','aws_url','AWS_URL','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22448,'cn','s3_file_system_activation','S3����W%b%�%W%�a%�%�%��$%W%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22449,'cn','your_phone_number','�\%������W%�#�%�����]%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22450,'cn','zip_file','����U%�����W%b%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22451,'cn','install','������','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22452,'cn','this_version_is_not_capable_of_installing_addons_please_update','�������������%�����������W%b%)"]%������$%���%���','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22453,'cn','search_in_menu','����������U%�����$%�','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22454,'cn','uploaded_files','�U%���%�������W%b%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22455,'cn','shipping_cities','��c%�������U%�','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22456,'cn','system','�%W%�a%�%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22457,'cn','server_status','���������������','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22458,'cn','nothing_found','�W%��Q%]%��\%��%���[%���%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22459,'cn','parent_category','��b%��� ���','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22460,'cn','level','��%$%�c%%','2021-02-09 08:31:54','2021-09-20 07:30:15'),(22461,'cn','category_information','������ �%����','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22462,'cn','translatable','����%W%������','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22463,'cn','no_parent','��%������b%���','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22464,'cn','physical','��#���','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22465,'cn','digital','��U%���','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22466,'cn','200x200','200x200','2021-02-09 08:31:55','2021-02-09 08:31:55'),(22467,'cn','32x32','32x32','2021-02-09 08:31:55','2021-02-09 08:31:55'),(22468,'cn','search_your_files','����$%�����W%b%','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22469,'cn','category_has_been_updated_successfully','��� ����V%�%��������$%���%','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22470,'cn','all_uploaded_files','�������U%���%�������W%b%','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22471,'cn','upload_new_file','�U%��]%����%����W%b%','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22472,'cn','all_files','�������������W%b%','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22473,'cn','search','����$%�','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22474,'cn','details_info','�#%�$%�%�%����','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22475,'cn','copy_link','�����\%������','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22476,'cn','are_you_sure_to_delete_this_file','�����Q%�������������������W%b%���)"]%�','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22477,'cn','file_info','����W%b%�%����','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22478,'cn','link_copied_to_clipboard','�������V%�%�[%#��\%���%�����%]%��%','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22479,'cn','oops_unable_to_copy','�%��%�)"]%�����%������\%','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22480,'cn','file_deleted_successfully','����W%b%�V%�%������������','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22481,'cn','add_new_brand','���%��� ������','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22482,'cn','120x80','120x80','2021-02-09 08:31:55','2021-02-09 08:31:55'),(22483,'cn','brand_information','�������%����','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22484,'cn','brand_has_been_updated_successfully','�������V%�%��������$%���%','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22485,'cn','brand_has_been_deleted_successfully','�������V%�%������������','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22486,'cn','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','��������]%����$%�����]%U%��������b%����W%���������b%��[%���%�#�%�������������#� ���','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22487,'cn','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','����Q%��������������������#%�$%�%�%��������������Q%��U%�����������\%%���600x600��%Q%��U%������������','2021-02-09 08:31:55','2021-09-20 07:30: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','�#�%�������������������������U%��������������\%%���300x300��%Q%��U%�������������������������U%W%�����%���%��������%�����U%��Q%��#Q%��\%)"]%������Q%�������%��������U%��������������U%��������U%��Q%�����V%��W%��\%%��b%��%������','2021-02-09 08:31:55','2021-09-20 07:30:15'),(22489,'cn','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','�\%%��������Q%���������)"]%���������������������U%����U%�����\%%���������%�Q%�������/�a%�������iframe�W%���]%���','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22490,'cn','save_product','�%����������','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22491,'cn','product_has_been_inserted_successfully','�������V%�%������������','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22492,'cn','something_went_wrong','��Q%�������Q%�)"]%�','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22493,'cn','sorry_for_the_inconvenience_but_were_working_on_it','�U%��[%%�c%����)"]%�������������)"]%��\%����������������������','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22494,'cn','error_code','�������W%���]%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22495,'cn','please_configure_smtp_setting_to_work_all_email_sending_functionality','�������\%�SMTP����\%��W%��\%%�����������W%�����a%�W%b%��]%��������\%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22496,'cn','order','����%]%','2021-02-09 08:31:56','2021-09-20 07:30: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','�����������b%�#��c%�����Q%��W%��b%���V%UI����������%�����[%� �V%���$%�����%��$%���%���������)"]%��W%��������U%��������������W%��\%%��b%��%����������������#��c%��c%����)"]%��������������Q%�����W%� ���','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22498,'cn','home_banner_3_max_3','�������#��c%�3)"]%�������3���)"]%�','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22499,'cn','add_new_seller','�V%W%������%�%���b%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22500,'cn','filter_by_approval','�����c%�������%[%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22501,'cn','nonapproved','�����c%���','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22502,'cn','type_name_or_email__enter','�]%U%���������%�����W%�����a%�W%b%�U%��]%U%���','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22503,'cn','due_to_seller','���%��]%�%���c%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22504,'cn','log_in_as_this_seller','�W%��#�%�%���b%�Q%��W%\%��W%���','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22505,'cn','go_to_payment','�\%����%�W%���[%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22506,'cn','ban_this_seller','�������#�%�%���b%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22507,'cn','do_you_really_want_to_ban_this_seller','�������������������#�%�%���b%���)"]%�','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22508,'cn','proceed','�c%]%�Q%�)"]%�','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22509,'cn','approved_sellers_updated_successfully','��c%�������%���b%�V%�%��������$%���%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22510,'cn','seller_has_been_deleted_successfully','�%���b%�V%�%������������','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22511,'cn','seller_information','�%���b%�%����','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22512,'cn','seller_has_been_inserted_successfully','�%���b%�V%�%������������','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22513,'cn','email_already_exists','��W%�����a%�W%b%�V%�%�b%�������)"]%�','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22514,'cn','verify_your_email_address','��Q%����\%������a%�W%b%���%���','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22515,'cn','before_proceeding_please_check_your_email_for_a_verification_link','����c%]%�Q%��c%����)"]%������������������W%�����a%�W%b%�W%����%����#�������������','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22516,'cn','if_you_did_not_receive_the_email','����� ������%������b%���%��W%�����a%�W%b%���','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22517,'cn','click_here_to_request_another','�W%� ��������������%���b%�W%�','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22518,'cn','email_verification','��W%�����a%�W%b%�#����','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22519,'cn','email_verification__','��W%�����a%�W%b%�#���� -','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22520,'cn','https_activation','HTTPS�%��$%W%','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22521,'cn','maintenance_mode','�b%���V%����]%�','2021-02-09 08:31:56','2021-09-20 07:30:15'),(22522,'cn','maintenance_mode_activation','�b%���V%����]%��%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22523,'cn','classified_product_activate','������ �������%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22524,'cn','classified_product','������ ������','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22525,'cn','business_related','��������U%���','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22526,'cn','vendor_system_activation','�[%��������%W%�a%�%�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22527,'cn','wallet_system_activation','�������%W%�a%�%�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22528,'cn','coupon_system_activation','��������U%�%W%�a%�%�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22529,'cn','pickup_point_activation','�������W%� �%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22530,'cn','conversation_activation','��%��#�%�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22531,'cn','guest_checkout_activation','�������a%��U%%�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22532,'cn','categorybased_commission','��Q%��]%��� �������\%����','2021-02-09 08:31:57','2021-09-20 07:30: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','�%��$%W%�����U%����[%�)"]%��%���c%�\%������%����������)"]%���������������������� ����U%�����\%��\%����)"]%������������������%��U%�������%�[%��W%W%�\%��\%����','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22534,'cn','set_commisssion_now','�����%����\%��\%����','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22535,'cn','payment_related','�W%���[%��U%���','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22536,'cn','paypal_payment_activation','��%���b%�W%���[%�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22537,'cn','you_need_to_configure_paypal_correctly_to_enable_this_feature','��������������Q%����\%�Paypal�����\%��������������\%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22538,'cn','stripe_payment_activation','����$%��W%���[%�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22539,'cn','sslcommerz_activation','SSlCommerz�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22540,'cn','instamojo_payment_activation','Instamojo�W%���[%�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22541,'cn','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','��������������Q%����\%�Instamojo Payment�����\%��������������\%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22542,'cn','razor_pay_activation','����������W%��%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22543,'cn','you_need_to_configure_razor_correctly_to_enable_this_feature','��������������Q%����\%�Razor�����\%��������������\%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22544,'cn','paystack_activation','PayStack�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22545,'cn','you_need_to_configure_paystack_correctly_to_enable_this_feature','��������������Q%����\%�PayStack�����\%��������������\%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22546,'cn','voguepay_activation','VoguePay�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22547,'cn','you_need_to_configure_voguepay_correctly_to_enable_this_feature','��������������Q%����\%�VoguePay�����\%��������������\%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22548,'cn','payhere_activation','����W%��%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22549,'cn','ngenius_activation','Ngenius�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22550,'cn','you_need_to_configure_ngenius_correctly_to_enable_this_feature','��������������Q%����\%�Ngen������ius�����\%��������������\%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22551,'cn','iyzico_activation','�]%��\%�����$%W%���','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22552,'cn','you_need_to_configure_iyzico_correctly_to_enable_this_feature','��������������Q%����\%�iyzico�����\%��������������\%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22553,'cn','bkash_activation','Bkash�%��$%W%','2021-02-09 08:31:57','2021-09-20 07:30:15'),(22554,'cn','you_need_to_configure_bkash_correctly_to_enable_this_feature','��������������Q%����\%�bkash�����\%��������������\%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22555,'cn','nagad_activation','Nagad�%��$%W%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22556,'cn','you_need_to_configure_nagad_correctly_to_enable_this_feature','��������������Q%����\%�nagad�����\%��������������\%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22557,'cn','cash_payment_activation','��[%�������W%��%��$%W%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22558,'cn','social_media_login','��[%�Q%���������W%���','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22559,'cn','facebook_login','Facebook��W%���','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22560,'cn','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','��������������Q%����\%�Facebook Client�����\%��������������\%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22561,'cn','google_login','��%V%�����W%���','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22562,'cn','you_need_to_configure_google_client_correctly_to_enable_this_feature','��������������Q%����\%�Google�����b%��������\%��������������\%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22563,'cn','twitter_login','Twitter��W%���','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22564,'cn','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','��������������Q%����\%�Twitter Client�����\%��������������\%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22565,'cn','shop_logo','�Q%�����[%\%���','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22566,'cn','shop_address','�Q%�������%���','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22567,'cn','banner_settings','�#��c%�����\%�','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22568,'cn','banners','������ ','2021-02-09 08:31:58','2021-09-20 07:30: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','�������%������%�����Q%������b%��Q%�U%W%����U%���$%�������������Q%��������U%�)"]%��#��c%������#��$%�����\%�������������W%������b%����Q%����','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22570,'cn','insert_link_with_https_','���https������������','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22571,'cn','your_shop_has_been_updated_successfully','����������Q%��V%�%��������$%���%)"]%�','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22572,'cn','search_result_for_','�����%��a%��� �','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22573,'cn','brand_has_been_inserted_successfully','�������V%�%������������','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22574,'cn','about','�����]%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22575,'cn','payout_info','�W%���[%�%����','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22576,'cn','bank_acc_name','�������U%%��b%������%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22577,'cn','bank_acc_number','�������U%%���','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22578,'cn','total_products','�������U%\%��U%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22579,'cn','total_sold_amount','�U%\%��V%���������','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22580,'cn','wallet_balance','������������','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22581,'cn','cookies_agreement','Cookies������%','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22582,'cn','cookies_agreement_text','Cookies������%������','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22583,'cn','show_cookies_agreement','�����Q%Cookies������%)"]%�','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22584,'cn','custom_script','�������[%#��%���','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22585,'cn','header_custom_script__before_head','�������������[%#��%���-</ head>�c%����','2021-02-09 08:31:58','2021-09-20 07:30:15'),(22586,'cn','write_script_with_script_tag','���<script>�����%��V%������%���','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22587,'cn','footer_custom_script__before_body','�����%�������[%#��%���-</ body>�c%����','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22588,'cn','category_has_been_inserted_successfully','��� ����V%�%������������','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22589,'cn','all_flash_deals','��������%���������','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22590,'cn','create_new_flash_deal','��a%�W%Q%���%����%�����Q%����','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22591,'cn','ffffff','#FFFFFF','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22592,'cn','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','�#�%����������������Q%�����#%�$%�%�%�����������U%������Q%��Q%��%�����#��c%����','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22593,'cn','flash_deal_has_been_inserted_successfully','Flash Deal�V%�%������������','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22594,'cn','flash_deal_status_updated_successfully','��%����Q%�����������V%�%��������$%���%','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22595,'cn','flash_deal_has_been_updated_successfully','Flash Deal�V%�%��������$%���%','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22596,'cn','update_language_info','��$%���%��� ����%����','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22597,'cn','language_has_been_updated_successfully','��� ����V%�%��������$%���%','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22598,'cn','type_key__enter','�]%U%�����a%�U%��]%U%���','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22599,'cn','translations_updated_for_','��$%���%��]%','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22600,'cn','language_has_been_inserted_successfully','��� ����V%�%������������','2021-02-09 08:31:59','2021-09-20 07:30:15'),(22601,'zw','all_category','All Chikamu','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22602,'zw','all','Zvese','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22603,'zw','flash_sale','Flash Kutengesa','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22604,'zw','view_more','Ona Zvimwe','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22605,'zw','add_to_wishlist','Wedzera kune wishlist','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22606,'zw','add_to_compare','Wedzera kuenzanisa','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22607,'zw','add_to_cart','Wedzera kungoro','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22608,'zw','club_point','Kirabhu Point','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22609,'zw','classified_ads','Classified Ads','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22610,'zw','used','Yakashandiswa','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22611,'zw','top_10_categories','Wepamusoro gumi Mapoka','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22612,'zw','view_all_categories','Wona Zvikamu Zvese','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22613,'zw','top_10_brands','Wepamusoro gumi Brands','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22614,'zw','view_all_brands','Wona Ese Mhando','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22615,'zw','terms__conditions','Mitemo & mamiriro','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22616,'zw','best_selling','Kutengesa Kwakanyanya','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22617,'zw','top_20','Wepamusoro 20','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22618,'zw','featured_products','Zvinowanikwa Zvigadzirwa','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22619,'zw','best_sellers','Vatengesi Vakanakisisa','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22620,'zw','visit_store','Shanyira Chitoro','2021-02-09 08:34:38','2021-09-20 07:30:15'),(22621,'zw','popular_suggestions','Mazano Akakurumbira','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22622,'zw','category_suggestions','Chikamu Mazano','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22623,'zw','automobile__motorcycle','Motokari & Mudhudhudhu','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22624,'zw','price_range','Mutengo wepakati','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22625,'zw','filter_by_color','Sefa nekara','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22626,'zw','home','Kumba','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22627,'zw','newest','Zvitsva','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22628,'zw','oldest','Yakare','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22629,'zw','price_low_to_high','Mutengo wakaderera kusvika kumusoro','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22630,'zw','price_high_to_low','Mutengo wakakwira kuderera','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22631,'zw','brands','Zvigadzirwa','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22632,'zw','all_brands','Zvese Brands','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22633,'zw','all_sellers','Vatengesi vese','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22634,'zw','inhouse_product','Inhouse chigadzirwa','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22635,'zw','message_seller','Meseji Mutengesi','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22636,'zw','price','Mutengo','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22637,'zw','discount_price','Mutengo Wechipo','2021-02-09 08:34:39','2021-09-20 07:30:15'),(22638,'zw','color','Ruvara','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22639,'zw','quantity','Zvakawanda','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22640,'zw','available','inowanikwa','2021-02-09 08:34:39','2021-02-09 08:34:39'),(22641,'zw','total_price','Mutengo Wese','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22642,'zw','out_of_stock','Kupererwa nedura','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22643,'zw','refund','Dzosera','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22644,'zw','share','Goverana','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22645,'zw','sold_by','Kutengeswa Na','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22646,'zw','customer_reviews','ongororo yevatengi','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22647,'zw','top_selling_products','Pamusoro Kutengesa Zvigadzirwa','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22648,'zw','description','Tsananguro','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22649,'zw','video','Vhidhiyo','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22650,'zw','reviews','Ongororo','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22651,'zw','download','Download','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22652,'zw','there_have_been_no_reviews_for_this_product_yet','Pakave pasina kuongororwa kweichi chigadzirwa parizvino.','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22653,'zw','related_products','Zvigadzirwa zvinoenderana','2021-02-09 08:34:39','2021-09-20 07:30:16'),(22654,'zw','any_query_about_this_product','Chero mubvunzo nezve ichi chigadzirwa','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22655,'zw','product_name','Chigadzirwa Chigadzirwa','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22656,'zw','your_question','Mubvunzo Wako','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22657,'zw','send','Tumira','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22658,'zw','use_country_code_before_number','Shandisa kodhi yenyika pamberi pehamba','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22659,'zw','remember_me','Ndirangarire','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22660,'zw','dont_have_an_account','Hauna account here?','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22661,'zw','register_now','Bhalisa Zvino','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22662,'zw','or_login_with','Kana Kupinda Na','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22663,'zw','oops','oops ..','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22664,'zw','this_item_is_out_of_stock','Chinhu ichi hachina kudhara!','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22665,'zw','back_to_shopping','Kudzokera kunotenga','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22666,'zw','login_to_your_account','Pinda kuaccount yako.','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22667,'zw','purchase_history','Nhoroondo yekutenga','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22668,'zw','new','Nyowani','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22669,'zw','downloads','Downloads','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22670,'zw','sent_refund_request','Yakatumirwa Refund Chikumbiro','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22671,'zw','product_bulk_upload','Chigadzirwa Bulk Upload','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22672,'zw','orders','Mirairo','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22673,'zw','recieved_refund_request','Yakagamuchirwa Refund Chikumbiro','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22674,'zw','shop_setting','Shop Setting','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22675,'zw','payment_history','Kubhadhara Nhoroondo','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22676,'zw','money_withdraw','Mari Bvisa','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22677,'zw','conversations','Kukurukurirana','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22678,'zw','my_wallet','Chikwama Changu','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22679,'zw','earning_points','Kuwana Points','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22680,'zw','support_ticket','Tsigira Tiketi','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22681,'zw','manage_profile','Manage Mbiri','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22682,'zw','sold_amount','Kutengeswa Mari','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22683,'zw','your_sold_amount_current_month','Mari yako yakatengeswa (ikozvino mwedzi)','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22684,'zw','total_sold','Yese Yakatengeswa','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22685,'zw','last_month_sold','Mwedzi Wapera Kutengeswa','2021-02-09 08:34:40','2021-09-20 07:30:16'),(22686,'zw','total_sale','Yese kutengesa','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22687,'zw','total_earnings','Yese mibairo','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22688,'zw','successful_orders','Akabudirira mirairo','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22689,'zw','total_orders','Yakazara maodha','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22690,'zw','pending_orders','Dzakamirira kuodha','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22691,'zw','cancelled_orders','Kukanzurwa maodha','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22692,'zw','product','Chigadzirwa','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22693,'zw','purchased_package','Yakatengwa Pasuru','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22694,'zw','package_not_found','Pasuru Haina Kuwanikwa','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22695,'zw','upgrade_package','Ndiwedzere Package','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22696,'zw','shop','Shop','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22697,'zw','manage__organize_your_shop','Manage & ronga shopu yako','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22698,'zw','go_to_setting','Enda pakuisa','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22699,'zw','payment','Kubhadhara','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22700,'zw','configure_your_payment_method','Gadzira yako nzira yekubhadhara','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22701,'zw','my_panel','Yangu Panel','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22702,'zw','item_has_been_added_to_wishlist','Chinhu chakawedzerwa kune wishlist','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22703,'zw','my_points','Pfungwa Dzangu','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22704,'zw','_points','Points','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22705,'zw','wallet_money','Wallet Mari','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22706,'zw','exchange_rate','Exchange Rate','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22707,'zw','point_earning_history','Pfungwa Kuwana nhoroondo','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22708,'zw','date','Zuva','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22709,'zw','points','Points','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22710,'zw','converted','Shandurwa','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22711,'zw','action','Chiito','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22712,'zw','no_history_found','Hapana nhoroondo yakawanikwa.','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22713,'zw','convert_has_been_done_successfully_check_your_wallets','Shanduko yaitwa zvinobudirira Tarisa maWallet ako','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22714,'zw','something_went_wrong','Chinhu chakatadza kufamba','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22715,'zw','remaining_uploads','Kuramba Kwakaiswa','2021-02-09 08:34:41','2021-09-20 07:30:16'),(22716,'zw','no_package_found','Hapana Pasuru Yakawanikwa','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22717,'zw','search_product','Tsvaga chigadzirwa','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22718,'zw','name','Zita','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22719,'zw','current_qty','Yazvino Qty','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22720,'zw','base_price','Base Mutengo','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22721,'zw','published','Yakabudiswa','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22722,'zw','featured','Featured','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22723,'zw','options','Sarudzo','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22724,'zw','edit','Hora','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22725,'zw','duplicate','Dzokorora','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22726,'zw','1_download_the_skeleton_file_and_fill_it_with_data','1.Dhawunirodha skeleton faira wozadza ne data','2021-02-09 08:34:42','2021-09-20 07:30: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 08:34:42','2021-09-20 07:30: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 08:34:42','2021-09-20 07:30: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 08:34:42','2021-09-20 07:30:16'),(22730,'zw','download_csv','Dhawunirodha CSV','2021-02-09 08:34:42','2021-09-20 07:30: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 08:34:42','2021-09-20 07:30: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 08:34:42','2021-09-20 07:30:16'),(22733,'zw','download_category','Dhaunirodha Chikamu','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22734,'zw','download_sub_category','Dhawunirodha Sub chikamu','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22735,'zw','download_sub_sub_category','Dhawunirodha Sub Sub chikamu','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22736,'zw','download_brand','Dhawunorodha Brand','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22737,'zw','upload_csv_file','Isa CSV Faira','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22738,'zw','csv','CSV','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22739,'zw','choose_csv_file','Sarudza CSV Faira','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22740,'zw','upload','Isa','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22741,'zw','add_new_digital_product','Wedzera Nyowani Dhijitari Chigadzirwa','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22742,'zw','available_status','Mamiriro Anowanikwa','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22743,'zw','admin_status','Nzvimbo Yekutonga','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22744,'zw','pending_balance','Kumirira Balance','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22745,'zw','send_withdraw_request','Tumira Regedza Chikumbiro','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22746,'zw','withdraw_request_history','Regedza Kumbira nhoroondo','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22747,'zw','amount','Mari','2021-02-09 08:34:42','2021-09-20 07:30:16'),(22748,'zw','status','Chinzvimbo','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22749,'zw','message','Meseji','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22750,'zw','send_a_withdraw_request','Tumira Chikumbiro Chekubvisa','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22751,'zw','basic_info','Basic Info','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22752,'zw','your_phone','Foni Yako','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22753,'zw','photo','Mufananidzo','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22754,'zw','browse','Bhurawuza','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22755,'zw','your_password','Your Password','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22756,'zw','new_password','Nyowani Nyowani','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22757,'zw','confirm_password','Tsigira pasiwedhi','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22758,'zw','add_new_address','Wedzera New Kero','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22759,'zw','payment_setting','Kuisa Maripo','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22760,'zw','cash_payment','Cash Kubhadhara','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22761,'zw','bank_payment','Kubhadhara kweBhangi','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22762,'zw','bank_name','Zita reBhangi','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22763,'zw','bank_account_name','Zita reBhangi reBhangi','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22764,'zw','bank_account_number','Nhamba yeAkaundi yeBhangi','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22765,'zw','bank_routing_number','Bank Routing Nhamba','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22766,'zw','update_profile','Gadziridza Mbiri','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22767,'zw','change_your_email','Chinja yako email','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22768,'zw','your_email','Yako Email','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22769,'zw','sending_email','Kutumira Email ...','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22770,'zw','verify','Tarisa','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22771,'zw','update_email','Gadziridza Email','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22772,'zw','new_address','New Kero','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22773,'zw','your_address','Kero Yako','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22774,'zw','country','Nyika','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22775,'zw','select_your_country','Sarudza nyika yako','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22776,'zw','city','Guta','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22777,'zw','your_city','Guta Rako','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22778,'zw','your_postal_code','Yako Kodhi Kodhi','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22779,'zw','880','+880','2021-02-09 08:34:43','2021-09-20 07:30:16'),(22780,'zw','save','Sevha','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22781,'zw','received_refund_request','Yakagamuchirwa Refund Chikumbiro','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22782,'zw','delete_confirmation','Delete Kusimbiswa','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22783,'zw','are_you_sure_to_delete_this','Une chokwadi chekudzima izvi?','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22784,'zw','premium_packages_for_sellers','Premium Mapakeji eVatengesi','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22785,'zw','product_upload','Chigadzirwa Isa','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22786,'zw','digital_product_upload','Dhijitari Chigadzirwa Rodha','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22787,'zw','purchase_package','Tenga Pasuru','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22788,'zw','select_payment_type','Sarudza Rudzi rwekubhadhara','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22789,'zw','payment_type','Rudzi rwekubhadhara','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22790,'zw','select_one','Sarudza Rimwe','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22791,'zw','online_payment','Kubhadhara pamhepo','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22792,'zw','offline_payment','Kubhadhara kwepamhepo','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22793,'zw','purchase_your_package','Tenga Pasuru Yako','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22794,'zw','paypal','Paypal','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22795,'zw','stripe','Mutsetse','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22796,'zw','sslcommerz','sslcommerz','2021-02-09 08:34:44','2021-02-09 08:34:44'),(22797,'zw','confirm','Simbisa','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22798,'zw','offline_package_payment','Offline Pasuru Kubhadhara','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22799,'zw','transaction_id','Chiitiko ID','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22800,'zw','choose_image','Sarudza mufananidzo','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22801,'zw','code','Code','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22802,'zw','delivery_status','Mamiriro Ekutumira','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22803,'zw','payment_status','Mamiriro ekubhadhara','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22804,'zw','paid','Kubhadharwa','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22805,'zw','order_details','Hodha Dzemashoko','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22806,'zw','download_invoice','Dhawunirodha Invoice','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22807,'zw','unpaid','Kusabhadharwa','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22808,'zw','order_placed','Order yakaiswa','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22809,'zw','confirmed','Yakasimbiswa','2021-02-09 08:34:44','2021-09-20 07:30:16'),(22810,'zw','on_delivery','Pakukurukura','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22811,'zw','delivered','Kununurwa','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22812,'zw','order_summary','Order Summary','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22813,'zw','order_code','Kodhi Code','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22814,'zw','customer','Mutengi','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22815,'zw','total_order_amount','Yese odha huwandu','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22816,'zw','shipping_metdod','Kutumira metdod','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22817,'zw','flat_shipping_rate','Flat kutumira chiyero','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22818,'zw','payment_metdod','Kubhadhara metdod','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22819,'zw','variation','Kusiyana','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22820,'zw','delivery_type','Dhirivhari Rudzi','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22821,'zw','home_delivery','Kuendesa Kumba','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22822,'zw','order_ammount','Raira Mari','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22823,'zw','subtotal','Subtotal','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22824,'zw','shipping','Kutumira','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22825,'zw','coupon_discount','Coupon Discount','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22826,'zw','na','N / A.','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22827,'zw','in_stock','Mudura','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22828,'zw','buy_now','Tenga izvozvi','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22829,'zw','item_added_to_your_cart','Chinhu chakawedzerwa kungoro yako!','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22830,'zw','proceed_to_checkout','Enderera ku Checkout','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22831,'zw','cart_items','Ngoro Zvinhu','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22832,'zw','1_my_cart','1. Ngoro Yangu','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22833,'zw','view_cart','Wona ngoro','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22834,'zw','2_shipping_info','2. Kutumira info','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22835,'zw','checkout','Buda','2021-02-09 08:34:45','2021-09-20 07:30:16'),(22836,'zw','3_delivery_info','3. Kuendesa info','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22837,'zw','4_payment','4. Kubhadhara','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22838,'zw','5_confirmation','5. Kusimbiswa','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22839,'zw','remove','Bvisa','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22840,'zw','return_to_shop','Dzokera kuchitoro','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22841,'zw','continue_to_shipping','Enderera kune Kutumira','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22842,'zw','or','Kana','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22843,'zw','guest_checkout','Guest Checkout','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22844,'zw','continue_to_delivery_info','Ramba uchienderera Kuendesa Info','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22845,'zw','postal_code','Kodhi yepositi','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22846,'zw','choose_delivery_type','Sarudza Dhirivhari Type','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22847,'zw','local_pickup','Yemunharaunda yekutora','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22848,'zw','select_your_nearest_pickup_point','Sarudza nzvimbo yako yekutora iripedyo','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22849,'zw','continue_to_payment','Enderera Kumubhadharo','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22850,'zw','select_a_payment_option','Sarudza nzira yekubhadhara','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22851,'zw','razorpay','Razorpay','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22852,'zw','paystack','Kubhadhara','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22853,'zw','voguepay','VoguePay','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22854,'zw','payhere','payhere','2021-02-09 08:34:46','2021-02-09 08:34:46'),(22855,'zw','ngenius','ngenius','2021-02-09 08:34:46','2021-02-09 08:34:46'),(22856,'zw','paytm','Paytm','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22857,'zw','cash_on_delivery','Mari pane Dhirivhari','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22858,'zw','your_wallet_balance_','Chikwama chako chikero:','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22859,'zw','insufficient_balance','Kukwana kukwana','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22860,'zw','i_agree_to_the','Ini ndinobvumirana neiyo','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22861,'zw','complete_order','Zadza Order','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22862,'zw','summary','Pfupiso','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22863,'zw','items','Zvinhu','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22864,'zw','total_club_point','Yakazara Club poindi','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22865,'zw','total_shipping','Yese Kutumira','2021-02-09 08:34:46','2021-09-20 07:30:16'),(22866,'zw','have_coupon_code_enter_here','Une kopani kodhi? Pinda pano','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22867,'zw','apply','Nyorera','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22868,'zw','you_need_to_agree_with_our_policies','Iwe unofanirwa kubvumirana nemitemo yedu','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22869,'zw','forgot_password','Wakanganwa password','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22870,'zw','seo_setting','Kuisa SEO','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22871,'zw','system_update','Gadziriso yeSystem','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22872,'zw','add_new_payment_method','Wedzera Nyowani Yekubhadhara Nzira','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22873,'zw','manual_payment_method','Chinyorwa Kubhadhara Maitiro','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22874,'zw','heading','Musoro','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22875,'zw','logo','Logo','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22876,'zw','manual_payment_information','Chinyorwa Chekubhadhara Ruzivo','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22877,'zw','type','Type','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22878,'zw','custom_payment','Tsika Kubhadhara','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22879,'zw','check_payment','Tarisa Kubhadhara','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22880,'zw','checkout_thumbnail','Checkout Thumbnail','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22881,'zw','payment_instruction','Kubhadhara Kuraira','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22882,'zw','bank_information','Ruzivo rweBhangi','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22883,'zw','select_file','Sarudza Faira','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22884,'zw','upload_new','Isa Nyowani','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22885,'zw','sort_by_newest','Ronga newest','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22886,'zw','sort_by_oldest','Sort by older','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22887,'zw','sort_by_smallest','Ronga nediki','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22888,'zw','sort_by_largest','Ronga nehukuru','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22889,'zw','selected_only','Selected Only','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22890,'zw','no_files_found','Hapana mafaira awanikwa','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22891,'zw','0_file_selected','0 Faira rakasarudzwa','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22892,'zw','clear','Zvakajeka','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22893,'zw','prev','Prev','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22894,'zw','next','Inotevera','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22895,'zw','add_files','Wedzera Mafaira','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22896,'zw','method_has_been_inserted_successfully','Maitiro akaiswa zvinobudirira','2021-02-09 08:34:47','2021-09-20 07:30:16'),(22897,'zw','order_date','Order Zuva','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22898,'zw','bill_to','Bhiri ku','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22899,'zw','sub_total','Sub Yese','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22900,'zw','total_tax','Yese Mutero','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22901,'zw','grand_total','Yese Yakakura','2021-02-09 08:34:48','2021-09-20 07:30: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 08:34:48','2021-09-20 07:30:16'),(22903,'zw','thank_you_for_your_order','Ndatenda Nekuda Kwako!','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22904,'zw','order_code','Order Code:','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22905,'zw','a_copy_or_your_order_summary_has_been_sent_to','Kopi kana yako odzo pfupiso yatumirwa','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22906,'zw','make_payment','Ita Kubhadhara','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22907,'zw','payment_screenshot','Kubhadhara skrini','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22908,'zw','paypal_credential','Paypal Kuzivikanwa','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22909,'zw','paypal_client_id','Paypal Mutengi ID','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22910,'zw','paypal_client_secret','Chakavanzika chePaypal Client','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22911,'zw','paypal_sandbox_mode','Paypal Sandbox Mamiriro','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22912,'zw','sslcommerz_credential','Sslcommerz Kuzivikanwa','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22913,'zw','sslcz_store_id','Sslcz Chitoro Id','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22914,'zw','sslcz_store_password','Sslcz chitoro password','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22915,'zw','sslcommerz_sandbox_mode','Sslcommerz Sandbox Mamiriro','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22916,'zw','stripe_credential','Stripe Credential','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22917,'zw','stripe_key','STRIPE KEY','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22918,'zw','stripe_secret','STRIPE CHAKAVANZIKA','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22919,'zw','razorpay_credential','RazorPay Kuzivikanwa','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22920,'zw','razor_key','RAZOR KEY','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22921,'zw','razor_secret','RAZOR CHAKAVANZIKA','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22922,'zw','instamojo_credential','Instamojo Credential','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22923,'zw','api_key','API CHINOKOSHA','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22924,'zw','im_api_key','IM API CHINOKOSHA','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22925,'zw','auth_token','AUTH TOKEN','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22926,'zw','im_auth_token','IM AUTH TOKEN','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22927,'zw','instamojo_sandbox_mode','Instamojo Sandbox Mamiriro','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22928,'zw','paystack_credential','PayStack Kwakavimbika','2021-02-09 08:34:48','2021-09-20 07:30:16'),(22929,'zw','public_key','CHINANGWA CHERuzhinji','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22930,'zw','secret_key','CHAKAVANZIKA CHINOKOSHA','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22931,'zw','merchant_email','EMERILANT EMAIL','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22932,'zw','voguepay_credential','VoguePay Kuvimbika','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22933,'zw','merchant_id','ID YOMUTENGESI','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22934,'zw','sandbox_mode','Sandbox Mamiriro','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22935,'zw','payhere_credential','Kubhadhara Credential','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22936,'zw','payhere_merchant_id','PAYHERE MERCHANT ID','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22937,'zw','payhere_secret','PAYHERE CHAKAVANZIKA','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22938,'zw','payhere_currency','PAYHERE CURRENCY','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22939,'zw','payhere_sandbox_mode','Payhere Sandbox Mamiriro','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22940,'zw','ngenius_credential','Ngenius Kwakavimbika','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22941,'zw','ngenius_outlet_id','NGENIUS OUTLET ID','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22942,'zw','ngenius_api_key','NGENIUS API CHINOKOSHA','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22943,'zw','ngenius_currency','NGENIUS CURRENCY','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22944,'zw','mpesa_credential','Mpesa Kiredhiti','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22945,'zw','mpesa_consumer_key','MPESA KUSVIRA ZVINOKOSHA','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22946,'zw','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22947,'zw','mpesa_consumer_secret','MPESA KUSVIRA KWAKAITIKA','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22948,'zw','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22949,'zw','mpesa_short_code','MPESA SHORT CODE','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22950,'zw','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22951,'zw','mpesa_sandbox_activation','MPESA SANDBOX KUSIMBISA','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22952,'zw','flutterwave_credential','Flutterwave Kuzivikanwa','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22953,'zw','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22954,'zw','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22955,'zw','rave_title','RAVE_TITLE','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22956,'zw','stagin_activation','STAGIN KUSVIRA','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22957,'zw','all_product','Zvese Chigadzirwa','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22958,'zw','sort_by','Sort By','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22959,'zw','rating_high__low','Kuyera (Kumusoro> Kuderera)','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22960,'zw','rating_low__high','Kuyera (Kwakadzika> Kumusoro)','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22961,'zw','num_of_sale_high__low','Num yekutengesa (Yakakwira> Yakadzika)','2021-02-09 08:34:49','2021-09-20 07:30:16'),(22962,'zw','num_of_sale_low__high','Num yekutengesa (Yakaderera> Yakakwira)','2021-02-09 08:34:50','2021-09-20 07:30:16'),(22963,'zw','base_price_high__low','Base Mutengo (Kumusoro> Kuderera)','2021-02-09 08:34:50','2021-09-20 07:30:16'),(22964,'zw','base_price_low__high','Base Mutengo (Yakadzika> Yakakwira)','2021-02-09 08:34:50','2021-09-20 07:30:16'),(22965,'zw','type__enter','Tora & Pinda','2021-02-09 08:34:50','2021-09-20 07:30:16'),(22966,'zw','added_by','Yakawedzerwa Na','2021-02-09 08:34:50','2021-09-20 07:30:16'),(22967,'zw','num_of_sale','Num yekutengesa','2021-02-09 08:34:50','2021-09-20 07:30:16'),(22968,'zw','total_stock','Yese Stock','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22969,'zw','todays_deal','Todays Deal','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22970,'zw','rating','Kuyera','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22971,'zw','times','nguva','2021-02-09 08:34:50','2021-02-09 08:34:50'),(22972,'zw','add_nerw_product','Wedzera Nerw Chigadzirwa','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22973,'zw','product_information','Chigadzirwa Ruzivo','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22974,'zw','unit','Chikwata','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22975,'zw','unit_eg_kg_pc_etc','Chidimbu (semuenzaniso KG, PC nezvimwewo)','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22976,'zw','minimum_qty','Minimum Qty','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22977,'zw','tags','Matagi','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22978,'zw','type_and_hit_enter_to_add_a_tag','Nyora uye rova ������kupinda kuti uwedzere tag','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22979,'zw','barcode','Barcode','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22980,'zw','refundable','Dzosera mari','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22981,'zw','product_images','Chigadzirwa Mifananidzo','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22982,'zw','gallery_images','Garari Mifananidzo','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22983,'zw','todays_deal_updated_successfully','Todays Deal yakagadziridzwa zvinobudirira','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22984,'zw','published_products_updated_successfully','Yakabudiswa zvigadzirwa zvakagadziriswa zvinobudirira','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22985,'zw','thumbnail_image','Thumbnail Mufananidzo','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22986,'zw','featured_products_updated_successfully','Zvinowanikwa zvigadzirwa zvakagadziriswa zvinobudirira','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22987,'zw','product_videos','Chigadzirwa Mavhidhiyo','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22988,'zw','video_provider','Vhidhiyo Provider','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22989,'zw','youtube','Youtube','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22990,'zw','dailymotion','Sravana Sameeralu Serial 4th Dailymotion','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22991,'zw','vimeo','Vimeo','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22992,'zw','video_link','Vhidhiyo Batanidza','2021-02-09 08:34:50','2021-09-20 07:30:17'),(22993,'zw','product_variation','Chigadzirwa Chinosiyana','2021-02-09 08:34:51','2021-09-20 07:30:17'),(22994,'zw','colors','Mavara','2021-02-09 08:34:51','2021-09-20 07:30:17'),(22995,'zw','attributes','Hunhu','2021-02-09 08:34:51','2021-09-20 07:30:17'),(22996,'zw','choose_attributes','Sarudza Hunhu','2021-02-09 08:34:51','2021-09-20 07:30: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 08:34:51','2021-09-20 07:30:17'),(22998,'zw','product_price__stock','Mutengo wechigadzirwa + stock','2021-02-09 08:34:51','2021-09-20 07:30:17'),(22999,'zw','unit_price','Mutengo wechikamu','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23000,'zw','purchase_price','Mutengo wekutenga','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23001,'zw','flat','Flat','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23002,'zw','percent','Percent','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23003,'zw','discount','Discount','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23004,'zw','product_description','Chigadzirwa Chigadzirwa','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23005,'zw','product_shipping_cost','Chigadzirwa Kutumira Mutengo','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23006,'zw','free_shipping','Kutakurirwa mahara','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23007,'zw','flat_rate','Flat Rate','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23008,'zw','shipping_cost','Mari yekutumidzira','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23009,'zw','pdf_specification','Rondedzero yePDF','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23010,'zw','seo_meta_tags','SEO Meta Maki','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23011,'zw','meta_title','Meta Musoro','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23012,'zw','meta_image','Meta Mufananidzo','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23013,'zw','choice_title','Sarudzo Musoro','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23014,'zw','enter_choice_values','Pinda sarudzo dzesarudzo','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23015,'zw','all_categories','Mapato ese','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23016,'zw','add_new_category','Wedzera Chitsva chikamu','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23017,'zw','type_name__enter','Tora zita & Pinda','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23018,'zw','banner','Mureza','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23019,'zw','commission','Commission','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23020,'zw','icon','icon','2021-02-09 08:34:51','2021-02-09 08:34:51'),(23021,'zw','featured_categories_updated_successfully','Featured zvikamu zvakagadziridzwa zvinobudirira','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23022,'zw','hot','Hot','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23023,'zw','filter_by_payment_status','Sefa neMamiriro Ekubhadhara','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23024,'zw','unpaid','Kusabhadharwa','2021-02-09 08:34:51','2021-09-20 07:30:17'),(23025,'zw','filter_by_deliver_status','Sefa neDeliver Chinzvimbo','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23026,'zw','pending','Chakamirira','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23027,'zw','type_order_code__hit_enter','Type Order kodhi & rova ������Enter','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23028,'zw','num_of_products','Num. of Zvigadzirwa','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23029,'zw','walk_in_customer','Famba Mune Mutengi','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23030,'zw','qty','QTY','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23031,'zw','without_shipping_charge','Pasina Kutumira Charge','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23032,'zw','with_shipping_charge','Nekutumira Charge','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23033,'zw','pay_with_cash','Bhadhara Nemari','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23034,'zw','shipping_address','Kutumira Kero','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23035,'zw','close','Vhara','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23036,'zw','select_country','Sarudza nyika','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23037,'zw','order_confirmation','Order Kusimbisa','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23038,'zw','are_you_sure_to_confirm_this_order','Une chokwadi chekusimbisa odha iyi','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23039,'zw','comfirm_order','Simbisa Kurongeka','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23040,'zw','personal_info','Ruzivo rweMunhu','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23041,'zw','repeat_password','Dzokorora Chinyorwa','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23042,'zw','shop_name','Zita Rezvitoro','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23043,'zw','register_your_shop','Bhalisa Shop yako','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23044,'zw','affiliate_informations','Yakabatana Informations','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23045,'zw','affiliate','Kushamwaridzana','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23046,'zw','user_info','Mushandisi Ruzivo','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23047,'zw','installed_addon','Yakaiswa Addon','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23048,'zw','available_addon','Inowanikwa Addon','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23049,'zw','install_new_addon','Isa Nyowani Addon','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23050,'zw','version','Shanduro','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23051,'zw','activated','Yakagadzirwa','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23052,'zw','deactivated','Yakagadziriswa','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23053,'zw','activate_otp','Shandisa OTP','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23054,'zw','otp_will_be_used_for','OTP ichashandiswa','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23055,'zw','settings_updated_successfully','Zvirongwa zvakagadziridzwa zvinobudirira','2021-02-09 08:34:52','2021-09-20 07:30:17'),(23056,'zw','product_owner','Chigadzirwa Muridzi','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23057,'zw','point','Nongedzo','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23058,'zw','set_point_for_product_within_a_range','Gadza Pfungwa yechigadzirwa Mukati meRange','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23059,'zw','set_point_for_multiple_products','Gadza Poindi yezvigadzirwa zvakawanda','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23060,'zw','min_price','Min Mutengo','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23061,'zw','max_price','Max Mutengo','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23062,'zw','set_point_for_all_products','Gadza Pfungwa yezvose Zvigadzirwa','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23063,'zw','set_point_for_','Gadza Pfungwa Ye','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23064,'zw','convert_status','Chinja Chinzvimbo','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23065,'zw','earned_at','Akawana At','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23066,'zw','seller_based_selling_report','Mutengesi Akavakirwa Kutengesa Chirevo','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23067,'zw','sort_by_verificarion_status','Sort by verificarion chinzvimbo','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23068,'zw','approved','Yakatenderwa','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23069,'zw','non_approved','Kwete Kubvumidzwa','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23070,'zw','filter','Sefa','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23071,'zw','seller_name','Mutengesi Zita','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23072,'zw','number_of_product_sale','Huwandu hweChigadzirwa Kutengesa','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23073,'zw','order_amount','Order Amount','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23074,'zw','facebook_chat_setting','Facebook Chat Kuronga','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23075,'zw','facebook_page_id','Facebook Peji ID','2021-02-09 08:34:53','2021-09-20 07:30: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 08:34:53','2021-09-20 07:30:17'),(23077,'zw','login_into_your_facebook_page','Pinda mune yako facebook peji','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23078,'zw','find_the_about_option_of_your_facebook_page','Tsvaga iyo About sarudzo yeako facebook peji','2021-02-09 08:34:53','2021-09-20 07:30: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 08:34:53','2021-09-20 07:30: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 08:34:53','2021-09-20 07:30: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 08:34:53','2021-09-20 07:30:17'),(23082,'zw','set_your_website_domain_name','Gadza rako rezita rezita rewebhu','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23083,'zw','google_recaptcha_setting','Google reCAPTCHA Kumisikidza','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23084,'zw','site_key','Saiti KEY','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23085,'zw','select_shipping_method','Sarudza Kutumira Nzira','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23086,'zw','product_wise_shipping_cost','Chigadzirwa Kuchenjera Kutumira Mutengo','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23087,'zw','flat_rate_shipping_cost','Flat Rate Kutumira Mutengo','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23088,'zw','seller_wise_flat_shipping_cost','Mutengesi Akangwara Flat Kutumira Mari','2021-02-09 08:34:53','2021-09-20 07:30:17'),(23089,'zw','note','Tarira','2021-02-09 08:34:54','2021-09-20 07:30: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 08:34:54','2021-09-20 07:30: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 08:34:54','2021-09-20 07:30: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 08:34:54','2021-09-20 07:30:17'),(23093,'zw','flat_rate_cost','Flat Rate Mutengo','2021-02-09 08:34:54','2021-09-20 07:30:17'),(23094,'zw','shipping_cost_for_admin_products','Kutumira Mutengo weAdmin Zvigadzirwa','2021-02-09 08:34:54','2021-09-20 07:30:17'),(23095,'zw','countries','Nyika','2021-02-09 08:34:54','2021-09-20 07:30:17'),(23096,'zw','showhide','Ratidza / Viga','2021-02-09 08:34:54','2021-09-20 07:30:17'),(23097,'zw','country_status_updated_successfully','Chimiro chenyika chakavandudzwa zvinobudirira','2021-02-09 08:34:54','2021-09-20 07:30:17'),(23098,'zw','all_subcategories','All Subcategories','2021-02-09 08:34:54','2021-09-20 07:30:17'),(23099,'zw','add_new_subcategory','Wedzera Mutsva Wechikamu','2021-02-09 08:34:54','2021-09-20 07:30:17'),(23100,'zw','subcategories','Sub-Zvikamu','2021-02-09 08:34:54','2021-09-20 07:30:17'),(23101,'zw','sub_category_information','Chikamu Chikamu Ruzivo','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23102,'zw','slug','Slug','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23103,'zw','all_sub_subcategories','All Sub Subcategories','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23104,'zw','add_new_sub_subcategory','Wedzera Mutsva Subcategory','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23105,'zw','subsubcategories','Sub-Sub-zvikamu','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23106,'zw','make_this_default','Ita Izvi Zvakasarudzika','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23107,'zw','shops','Zvitoro','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23108,'zw','women_clothing__fashion','Vakadzi Mapfekero & Fashoni','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23109,'zw','cellphones__tabs','Nharembozha & Tabhu','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23110,'zw','welcome_to','Welcome to','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23111,'zw','create_a_new_account','Gadzira Akaundi Nyowani','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23112,'zw','full_name','Zita rizere','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23113,'zw','password','pasiwedhi','2021-02-09 08:36:21','2021-02-09 08:36:21'),(23114,'zw','confrim_password','Confrim Password','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23115,'zw','i_agree_with_the','Ini ndinobvumirana neiyo','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23116,'zw','terms_and_conditions','Mitemo nemamiriro','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23117,'zw','register','Bhalisa','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23118,'zw','already_have_an_account','Watova neakaundi','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23119,'zw','sign_up_with','Sign Up pamwe','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23120,'zw','i_agree_with_the_terms_and_conditions','Ini ndinobvumirana neMitemo neMamiriro','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23121,'zw','all_role','Basa Rese','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23122,'zw','add_new_role','Wedzera Rutsva Basa','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23123,'zw','roles','Mabasa','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23124,'zw','add_new_staffs','Wedzera Vashandi Vatsva','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23125,'zw','role','Basa','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23126,'zw','frontend_website_name','Mberi Webhusaiti Zita','2021-02-09 08:36:21','2021-09-20 07:30:17'),(23127,'zw','website_name','Webhusaiti Zita','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23128,'zw','site_motto','Saiti Motto','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23129,'zw','best_ecommerce_website','Yakanakisa eCommerce Webhusaiti','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23130,'zw','site_icon','Saiti Icon','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23131,'zw','website_favicon_32x32_png','Webhusaiti favicon. 32x32 .png','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23132,'zw','website_base_color','Webhusaiti Base Ruvara','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23133,'zw','hex_color_code','Hex Ruvara Kodhi','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23134,'zw','website_base_hover_color','Webhusaiti Base Hover Ruvara','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23135,'zw','update','Kwidziridza','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23136,'zw','global_seo','Global Seo','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23137,'zw','meta_description','Meta tsananguro','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23138,'zw','keywords','Mazwi akakosha','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23139,'zw','separate_with_coma','Paradzaniswa nekoma','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23140,'zw','website_pages','Mapeji eWebhusaiti','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23141,'zw','all_pages','Mapeji ese','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23142,'zw','add_new_page','Wedzera Nyowani Peji','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23143,'zw','url','URL','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23144,'zw','actions','Zviito','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23145,'zw','edit_page_information','Hora Peji Ruzivo','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23146,'zw','page_content','Peji Zvemukati','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23147,'zw','title','Musoro','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23148,'zw','link','Batanidzo','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23149,'zw','use_character_number_hypen_only','Shandisa hunhu, nhamba, hypen chete','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23150,'zw','add_content','Wedzera zvirimo','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23151,'zw','seo_fields','Seo Minda','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23152,'zw','update_page','Gadziridza Peji','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23153,'zw','default_language','Mutauro wakasarudzika','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23154,'zw','add_new_language','Wedzera Mutauro Mutsva','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23155,'zw','rtl','RTL','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23156,'zw','translation','Dudziro','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23157,'zw','language_information','Ruzivo rweMutauro','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23158,'zw','save_page','Sevha Peji','2021-02-09 08:36:22','2021-09-20 07:30:17'),(23159,'zw','home_page_settings','Peji Peji Zvirongwa','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23160,'zw','home_slider','Home Slider','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23161,'zw','photos__links','Mifananidzo & Zvinongedzo','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23162,'zw','add_new','Wedzera Zvitsva','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23163,'zw','home_categories','Home Zvikamu','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23164,'zw','home_banner_1_max_3','Imba Banner 1 (Max 3)','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23165,'zw','banner__links','Banner & Links','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23166,'zw','home_banner_2_max_3','Imba Banner 2 (Max 3)','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23167,'zw','top_10','Pamusoro gumi','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23168,'zw','top_categories_max_10','Wepamusoro Zvikamu (Max 10)','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23169,'zw','top_brands_max_10','Wepamusoro Zvikwata (Max 10)','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23170,'zw','system_name','System Zita','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23171,'zw','system_logo__white','System Logo - Muchena','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23172,'zw','choose_files','Sarudza Mafaira','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23173,'zw','will_be_used_in_admin_panel_side_menu','Ichashandiswa mune admin paneji padivi menyu','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23174,'zw','system_logo__black','System Logo - Nhema','2021-02-09 08:36:23','2021-09-20 07:30: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 08:36:23','2021-09-20 07:30:17'),(23176,'zw','system_timezone','Sisitimu Nguva','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23177,'zw','admin_login_page_background','Admin login peji kumashure','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23178,'zw','website_header','Webhusaiti Musoro','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23179,'zw','header_setting','Kugadzika Kwemusoro','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23180,'zw','header_logo','Musoro weLogo','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23181,'zw','show_language_switcher','Ratidza Shanduro yeMutauro?','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23182,'zw','show_currency_switcher','Ratidza Shanduko Yemari?','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23183,'zw','enable_stikcy_header','Bvumira stikcy musoro?','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23184,'zw','website_footer','Webhusaiti tsoka','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23185,'zw','footer_widget','Footer Widget','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23186,'zw','about_widget','Nezve Widget','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23187,'zw','footer_logo','Footer Logo','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23188,'zw','about_description','Nezve tsananguro','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23189,'zw','contact_info_widget','Bata Info Widget','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23190,'zw','footer_contact_address','Kero yepasi yekubata','2021-02-09 08:36:23','2021-09-20 07:30:17'),(23191,'zw','footer_contact_phone','Yepazasi yekubata foni','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23192,'zw','footer_contact_email','Yepasi yekubatana email','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23193,'zw','link_widget_one','Batanidza Widget Imwe','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23194,'zw','links','Zvinongedzo','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23195,'zw','footer_bottom','Footer Pazasi','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23196,'zw','copyright_widget_','Copyright Widget','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23197,'zw','copyright_text','Copyright Rugwaro','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23198,'zw','social_link_widget_','Yemagariro Link Widget','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23199,'zw','show_social_links','Ratidza Social Links?','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23200,'zw','social_links','Zvekudyidzana','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23201,'zw','payment_methods_widget_','Maitiro Ekubhadhara Widget','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23202,'zw','rtl_status_updated_successfully','Chimiro cheRTL chakagadziriswa zvinobudirira','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23203,'zw','language_changed_to_','Mutauro wakashandurwa kuva','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23204,'zw','inhouse_product_sale_report','Inhouse Chigadzirwa chekutengesa mushumo','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23205,'zw','sort_by_category','Ronga neChikamu','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23206,'zw','product_wise_stock_report','Chigadzirwa chakangwara stock ripoti','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23207,'zw','currency_changed_to_','Mari yakashandurwa kuita','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23208,'zw','avatar','Avatar','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23209,'zw','copy','Kopa','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23210,'zw','variant','Variant','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23211,'zw','variant_price','Mutengo Wakasiyana','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23212,'zw','sku','SKU','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23213,'zw','key','Kiyi','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23214,'zw','value','Kukosha','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23215,'zw','copy_translations','Kopa Shanduro','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23216,'zw','all_pickup_points','Zvese zvekutora-points','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23217,'zw','add_new_pickup_point','Wedzera Nyowani Yekutora-Nyowani','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23218,'zw','manager','Manager','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23219,'zw','location','Nzvimbo','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23220,'zw','pickup_station_contact','Pakatora Chiteshi Kubata','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23221,'zw','open','Vhura','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23222,'zw','pos_activation_for_seller','POS Kugonesa kweMutengesi','2021-02-09 08:36:24','2021-09-20 07:30:17'),(23223,'zw','order_completed_successfully','Order Yakapedzwa Zvakabudirira.','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23224,'zw','text_input','Chinyorwa Kuisa','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23225,'zw','select','Sarudza','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23226,'zw','multiple_select','Akawanda Sarudza','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23227,'zw','radio','Radio','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23228,'zw','file','Faira','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23229,'zw','email_address','Chikero chetsamba yemumhepo','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23230,'zw','verification_info','Verification Ruzivo','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23231,'zw','approval','Kubvumidzwa','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23232,'zw','due_amount','Yakakodzera Mari','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23233,'zw','show','Ratidza','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23234,'zw','pay_now','Bhadhara izvozvi','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23235,'zw','affiliate_user_verification','Sanganisa Mushandisi Verification','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23236,'zw','reject','Ramba','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23237,'zw','accept','Gamuchira','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23238,'zw','beauty_health__hair','Runako, Hutano & Bvudzi','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23239,'zw','comparison','Kuenzanisa','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23240,'zw','reset_compare_list','Dzorerazve Enzanisa Chinyorwa','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23241,'zw','your_comparison_list_is_empty','Chinyorwa chako chekuenzanisa hachina chinhu','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23242,'zw','convert_point_to_wallet','Chinja Point Kuti Chikwama','2021-02-09 08:36:25','2021-09-20 07:30: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 08:36:25','2021-09-20 07:30:17'),(23244,'zw','create_an_account','Gadzira account.','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23245,'zw','use_email_instead','Shandisa Email Panzvimbo','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23246,'zw','by_signing_up_you_agree_to_our_terms_and_conditions','Nokusayina iwe unobvumirana nemitemo nemitemo yedu.','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23247,'zw','create_account','Gadzira Akaundi','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23248,'zw','or_join_with','Kana Join Na','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23249,'zw','already_have_an_account','Watova neakaundi?','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23250,'zw','log_in','Pinda','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23251,'zw','computer__accessories','Computer & zvishongedzo','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23252,'zw','products','Chigadzirwa (s)','2021-02-09 08:36:25','2021-09-20 07:30:17'),(23253,'zw','in_your_cart','mungoro yako','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23254,'zw','in_your_wishlist','mune yako Wishlist','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23255,'zw','you_ordered','wakaraira','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23256,'zw','default_shipping_address','Default Kutumira Kero','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23257,'zw','sports__outdoor','Mitambo & kunze','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23258,'zw','copied','Yakateedzerwa','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23259,'zw','copy_the_promote_link','Kopa iyo Inosimudzira Yekubatanidza','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23260,'zw','write_a_review','Nyora wongororo','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23261,'zw','your_name','Zita renyu','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23262,'zw','comment','Komenda','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23263,'zw','your_review','Wako wongororo','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23264,'zw','submit_review','Endesa ongororo','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23265,'zw','claire_willis','Claire Willis','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23266,'zw','germaine_greene','Germaine Greene','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23267,'zw','product_file','Chigadzirwa Faira','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23268,'zw','choose_file','Sarudza faira','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23269,'zw','type_to_add_a_tag','Nyora kuwedzera tag','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23270,'zw','images','Mifananidzo','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23271,'zw','main_images','Main Mifananidzo','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23272,'zw','meta_tags','Meta Tags','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23273,'zw','digital_product_has_been_inserted_successfully','Dhijitari Chigadzirwa chakaiswa zvinobudirira','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23274,'zw','edit_digital_product','Chinja Dhijitari Chigadzirwa','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23275,'zw','select_an_option','Sarudza sarudzo','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23276,'zw','tax','mutero','2021-02-09 08:36:26','2021-02-09 08:36:26'),(23277,'zw','any_question_about_this_product','Chero mubvunzo nezve ichi chigadzirwa?','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23278,'zw','sign_in','Nyorera mu','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23279,'zw','login_with_google','Pinda neGoogle','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23280,'zw','login_with_facebook','Pinda ne Facebook','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23281,'zw','login_with_twitter','Pinda ne Twitter','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23282,'zw','click_to_show_phone_number','Dzvanya kuratidza nhamba yefoni','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23283,'zw','other_ads_of','Mamwe Ads e','2021-02-09 08:36:26','2021-09-20 07:30:17'),(23284,'zw','store_home','Chitoro Imba','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23285,'zw','top_selling','Kutengesa Kwakakwirira','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23286,'zw','shop_settings','Shop Settings','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23287,'zw','visit_shop','Shanyira Shop','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23288,'zw','pickup_points','Pickup Points','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23289,'zw','select_pickup_point','Sarudza Pickup Point','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23290,'zw','slider_settings','Slider Zvirongwa','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23291,'zw','social_media_link','Zvemagariro Midhiya Link','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23292,'zw','facebook','Facebook','2021-02-09 08:36:27','2021-09-20 07:30:17'),(23293,'zw','twitter','Twitter','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23294,'zw','google','Google','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23295,'zw','new_arrival_products','Zvitsva Zvasvika Zvigadzirwa','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23296,'zw','check_your_order_status','Tarisa Yako Yemaitiro Mamiriro','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23297,'zw','shipping_method','Kutumira nzira','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23298,'zw','shipped_by','Kutumirwa Na','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23299,'zw','image','Mufananidzo','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23300,'zw','sub_sub_category','Sub Sub Chikamu','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23301,'zw','inhouse_products','Inhouse Zvigadzirwa','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23302,'zw','forgot_password','Forgot Password?','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23303,'zw','enter_your_email_address_to_recover_your_password','Isa yako email kero kuti uwane password yako.','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23304,'zw','email_or_phone','Email kana Runhare','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23305,'zw','send_password_reset_link','Tumira Pasiwedhi Reset Link','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23306,'zw','back_to_login','Kudzokera Login','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23307,'zw','index','index','2021-02-09 08:36:27','2021-02-09 08:36:27'),(23308,'zw','download_your_product','Dhawunirodha Chigadzirwa chako','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23309,'zw','option','Sarudzo','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23310,'zw','applied_refund_request','Zvakakodzera Dzosera Chikumbiro','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23311,'zw','item_has_been_renoved_from_wishlist','Chinhu chakatorerwazve kubva kuhuchenjeri','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23312,'zw','bulk_products_upload','Zvakawanda Zvigadzirwa Isa','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23313,'zw','upload_csv','Isa CSV','2021-02-09 08:36:27','2021-09-20 07:30:18'),(23314,'zw','create_a_ticket','Gadzira Tiketi','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23315,'zw','tickets','Mitikiti','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23316,'zw','ticket_id','Tikiti ID','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23317,'zw','sending_date','Kutumira Zuva','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23318,'zw','subject','Musoro','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23319,'zw','view_details','View Details','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23320,'zw','provide_a_detailed_description','Ipa tsananguro yakadzama','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23321,'zw','type_your_reply','Nyora mhinduro yako','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23322,'zw','send_ticket','Tumira Tiketi','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23323,'zw','load_more','Isa zvimwe','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23324,'zw','jewelry__watches','Zvishongo nezvishongo','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23325,'zw','filters','Mafirita','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23326,'zw','contact_address','Kero yekubata','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23327,'zw','contact_phone','Bata foni','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23328,'zw','contact_email','Bata email','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23329,'zw','filter_by','Sefa ne','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23330,'zw','condition','Mamiriro','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23331,'zw','all_type','Yese Rudzi','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23332,'zw','pay_with_wallet','Bhadhara nechikwama','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23333,'zw','select_variation','Sarudza musiyano','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23334,'zw','no_product_added','Hapana Chigadzirwa Chakawedzerwa','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23335,'zw','status_has_been_updated_successfully','Chimiro chakagadziridzwa zvinobudirira','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23336,'zw','all_seller_packages','Zvese zveMutengesi Mapakeji','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23337,'zw','add_new_package','Wedzera Nyowani Pasuru','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23338,'zw','package_logo','Pasuru Logo','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23339,'zw','days','mazuva','2021-02-09 08:36:28','2021-02-09 08:36:28'),(23340,'zw','create_new_seller_package','Gadzira Nyowani Mutengesi Package','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23341,'zw','package_name','Pasuru Zita','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23342,'zw','duration','Nguva','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23343,'zw','validity_in_number_of_days','Ukoshi muhuwandu hwemazuva','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23344,'zw','update_package_information','Gadziridza Ruzivo rwePakeji','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23345,'zw','package_has_been_inserted_successfully','Pasuru yakaiswa zvinobudirira','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23346,'zw','refund_request','Refund Chikumbiro','2021-02-09 08:36:28','2021-09-20 07:30:18'),(23347,'zw','reason','Chikonzero','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23348,'zw','label','Chitaera','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23349,'zw','select_label','Sarudza Chinyorwa','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23350,'zw','multiple_select_label','Akawanda Sarudza Chitauro','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23351,'zw','radio_label','Radio Label','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23352,'zw','pickup_point_orders','Pickup Point Orders','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23353,'zw','view','Ona','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23354,'zw','order_','Order #','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23355,'zw','order_status','Mamiriro Ekuraira','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23356,'zw','total_amount','Yese huwandu','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23357,'zw','total','CHETE','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23358,'zw','delivery_status_has_been_updated','Nzvimbo yekuendesa yakagadziridzwa','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23359,'zw','payment_status_has_been_updated','Mamiriro ekubhadhara akagadziridzwa','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23360,'zw','invoice','INVOICE','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23361,'zw','set_refund_time','Set Nguva Yekudzorera','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23362,'zw','set_time_for_sending_refund_request','Gadza Nguva yekutumira Refund Chikumbiro','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23363,'zw','set_refund_sticker','Gadza Refund Sticker','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23364,'zw','sticker','Sticker','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23365,'zw','refund_request_all','Refund Chikumbiro Zvese','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23366,'zw','order_id','Order Id','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23367,'zw','seller_approval','Mutengesi Kubvumidzwa','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23368,'zw','admin_approval','Admin Kubvumidzwa','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23369,'zw','refund_status','Kudzoreredza Mamiriro','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23370,'zw','no_refund','Kwete Kudzorerwa','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23371,'zw','status_updated_successfully','Mamiriro akagadziridzwa zvinobudirira','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23372,'zw','user_search_report','Mushumo Wekutsvaga Mushandisi','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23373,'zw','search_by','Tsvaga Na','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23374,'zw','number_searches','Nhamba dzekutsvaga','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23375,'zw','sender','Sender','2021-02-09 08:36:29','2021-09-20 07:30:18'),(23376,'zw','receiver','Mugashiri','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23377,'zw','verification_form_updated_successfully','Yekuongorora fomu yakagadziridzwa zvinobudirira','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23378,'zw','invalid_email_or_password','Email isiriyo kana password','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23379,'zw','all_coupons','All Coupons','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23380,'zw','add_new_coupon','Wedzera Mutsva Coupon','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23381,'zw','coupon_information','Coupon Ruzivo','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23382,'zw','start_date','Kutanga Zuva','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23383,'zw','end_date','Zuva Rokuguma','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23384,'zw','product_base','Chigadzirwa Base','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23385,'zw','send_newsletter','Tumira Tsamba','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23386,'zw','mobile_users','Vanoshandisa Nhare','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23387,'zw','sms_subject','Nyaya yeSMS','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23388,'zw','sms_content','SMS zvemukati','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23389,'zw','all_flash_delas','Zvese Flash Delas','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23390,'zw','create_new_flash_dela','Gadzira Nyowani Flash Dela','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23391,'zw','page_link','Peji Batanidza','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23392,'zw','flash_deal_information','Flash Deal Ruzivo','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23393,'zw','background_color','Ruvara rwekumashure','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23394,'zw','0000ff','# 0000ff','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23395,'zw','text_color','Rugwaro Ruvara','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23396,'zw','white','chena','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23397,'zw','dark','Kusviba','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23398,'zw','choose_products','Sarudza Zvigadzirwa','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23399,'zw','discounts','Discounts','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23400,'zw','discount_type','Rudzi rweDiscount','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23401,'zw','twillo_credential','Twillo Kuzivikanwa','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23402,'zw','twilio_sid','TWILIO SID','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23403,'zw','twilio_auth_token','TWILIO AUTH TOKEN','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23404,'zw','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 08:36:30','2021-09-20 07:30:18'),(23405,'zw','valid_twillo_number','BHAIBHERI TWILLO NUMBER','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23406,'zw','nexmo_credential','Nexmo Kuzivikanwa','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23407,'zw','nexmo_key','NEXMO CHINOKOSHA','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23408,'zw','nexmo_secret','NEXMO CHAKAVANZIKA','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23409,'zw','ssl_wireless_credential','SSL Wireless Kiredhiti','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23410,'zw','ssl_sms_api_token','SSL SMS API YAKADZIDZWA','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23411,'zw','ssl_sms_sid','SSL SMS SID','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23412,'zw','ssl_sms_url','SSL SMS URL','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23413,'zw','fast2sms_credential','Fast2SMS Kuzivikanwa','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23414,'zw','auth_key','AUTH KEY','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23415,'zw','route','ROUTE','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23416,'zw','promotional_use','Kukwidziridzwa Kushandisa','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23417,'zw','transactional_use','Kushandisa Kushandisa','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23418,'zw','sender_id','SENDER ID','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23419,'zw','nexmo_otp','Nexmo OTP','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23420,'zw','twillo_otp','Twillo OTP','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23421,'zw','ssl_wireless_otp','SSL Wireless OTP','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23422,'zw','fast2sms_otp','Fast2SMS OTP','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23423,'zw','order_placement','Order Kuiswa','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23424,'zw','delivery_status_changing_time','Dhirivhari Mamiriro Ekuchinja Nguva','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23425,'zw','paid_status_changing_time','Mamiriro Ekubhadharwa Kuchinja Nguva','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23426,'zw','send_bulk_sms','Tumira Bulk SMS','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23427,'zw','all_subscribers','Vese Vanyoreri','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23428,'zw','coupon_information_adding','Coupon Ruzivo Kuwedzera','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23429,'zw','coupon_type','Coupon Rudzi','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23430,'zw','for_products','Zvezvigadzirwa','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23431,'zw','for_total_orders','Yese maOodha','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23432,'zw','add_your_product_base_coupon','Wedzera Chako Chigadzirwa Base Coupon','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23433,'zw','coupon_code','Kodhi yekodhi','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23434,'zw','sub_category','Sub Chikamu','2021-02-09 08:36:31','2021-09-20 07:30:18'),(23435,'zw','add_more','Wedzera Zvimwe','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23436,'zw','add_your_cart_base_coupon','Wedzera Yako yekutengera Base Coupon','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23437,'zw','minimum_shopping','Minimum Shopping','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23438,'zw','maximum_discount_amount','Kunonyanyisa Discount Amount','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23439,'zw','coupon_information_update','Coupon Ruzivo Ruzivo','2021-02-09 08:36:32','2021-09-20 07:30: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 08:36:32','2021-09-20 07:30:18'),(23441,'zw','configure_now','Gadzira Izvozvi','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23442,'zw','total_published_products','Yese yakaburitswa zvigadzirwa','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23443,'zw','total_sellers_products','Yese vatengesi zvigadzirwa','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23444,'zw','total_admin_products','Yese admin zvigadzirwa','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23445,'zw','manage_products','Manage Zvigadzirwa','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23446,'zw','total_product_category','Yese chigadzirwa chikamu','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23447,'zw','create_category','Gadzira Chikamu','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23448,'zw','total_product_sub_sub_category','Yese chigadzirwa sub chikamu','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23449,'zw','create_sub_sub_category','Gadzira Sub Sub Chikamu','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23450,'zw','total_product_sub_category','Yese chigadzirwa chigadzirwa chikamu','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23451,'zw','create_sub_category','Gadzira Sub Chikamu','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23452,'zw','total_product_brand','Yese chigadzirwa chigadzirwa','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23453,'zw','create_brand','Gadzira Brand','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23454,'zw','total_sellers','Vatengesi vese','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23455,'zw','total_approved_sellers','Vese vatengesi vanobvumidzwa','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23456,'zw','total_pending_sellers','Vese vakamirira vatengesi','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23457,'zw','manage_sellers','Manage Sellers','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23458,'zw','category_wise_product_sale','Chikamu chakangwara chigadzirwa kutengeswa','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23459,'zw','sale','Kutengesa','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23460,'zw','category_wise_product_stock','Chikamu chakangwara chigadzirwa stock','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23461,'zw','category_name','Chikamu Zita','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23462,'zw','stock','Stock','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23463,'zw','frontend','Mberi','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23464,'zw','home_page','Peji peji','2021-02-09 08:36:32','2021-09-20 07:30:18'),(23465,'zw','setting','kuseta','2021-02-09 08:36:33','2021-02-09 08:36:33'),(23466,'zw','policy_page','Peji yemutemo','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23467,'zw','general','General','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23468,'zw','click_here','Dzvanya Pano','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23469,'zw','useful_link','Inobatsira chinongedzo','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23470,'zw','activation','Kushanda','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23471,'zw','smtp','SMTP','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23472,'zw','payment_method','Nzira yekubhadhara','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23473,'zw','social_media','Zvemagariro venhau','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23474,'zw','business','Bhizinesi','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23475,'zw','seller_verification','Kuongorora kweMutengesi','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23476,'zw','form_setting','fomu yekumisikidza','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23477,'zw','language','Mutauro','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23478,'zw','dashboard','Dashboard','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23479,'zw','pos_system','Pos System','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23480,'zw','pos_manager','Pos Mutariri','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23481,'zw','pos_configuration','POS Kugadziriswa','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23482,'zw','products','Zvigadzirwa','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23483,'zw','add_new_product','Wedzera Chitsva chigadzirwa','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23484,'zw','all_products','Zvese Zvigadzirwa','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23485,'zw','in_house_products','Mune Dzimba Zvigadzirwa','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23486,'zw','seller_products','Mutengesi Zvigadzirwa','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23487,'zw','digital_products','Dhijitari Zvigadzirwa','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23488,'zw','bulk_import','Bulk Kunze','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23489,'zw','bulk_export','Bulk Export','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23490,'zw','category','Chikamu','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23491,'zw','subcategory','Subcategory','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23492,'zw','sub_subcategory','Sub Subcategory','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23493,'zw','brand','Brand','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23494,'zw','attribute','Ipa','2021-02-09 08:36:33','2021-09-20 07:30:18'),(23495,'zw','product_reviews','Chigadzirwa Ongororo','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23496,'zw','sales','Kutengesa','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23497,'zw','all_orders','Yese Mirairo','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23498,'zw','inhouse_orders','Inhouse odha','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23499,'zw','seller_orders','Mutengesi Orders','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23500,'zw','pickup_point_order','Sarudza-Point Point Order','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23501,'zw','refunds','Kudzorerwa','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23502,'zw','refund_requests','Dzosera Zvikumbiro','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23503,'zw','approved_refund','Yakagamuchirwa Kudzoserwa','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23504,'zw','refund_configuration','Kudzorera Kugadziriswa','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23505,'zw','customers','Vatengi','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23506,'zw','customer_list','Rondedzero yevatengi','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23507,'zw','classified_products','Classified Zvigadzirwa','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23508,'zw','classified_packages','Classified Packages','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23509,'zw','sellers','Vatengesi','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23510,'zw','all_seller','Mutengesi Wese','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23511,'zw','payouts','Kubhadhara','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23512,'zw','payout_requests','Kubhadhara Kunokumbira','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23513,'zw','seller_commission','Seller Commission','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23514,'zw','seller_packages','Mutengesi Mapakeji','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23515,'zw','seller_verification_form','Mutengesi Verification Fomu','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23516,'zw','reports','Mishumo','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23517,'zw','in_house_product_sale','MuImba Chigadzirwa Kutengesa','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23518,'zw','seller_products_sale','Mutengesi Zvigadzirwa Kutengesa','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23519,'zw','products_stock','Zvigadzirwa Stock','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23520,'zw','products_wishlist','Zvigadzirwa Wishlist','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23521,'zw','user_searches','Kutsvaga Kwevashandisi','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23522,'zw','marketing','Kushambadzira','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23523,'zw','flash_deals','Flash inobata','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23524,'zw','newsletters','Tsamba dzemashoko','2021-02-09 08:36:34','2021-09-20 07:30:18'),(23525,'zw','bulk_sms','Bulk SMS','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23526,'zw','subscribers','Vanyoreri','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23527,'zw','coupon','Coupon','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23528,'zw','support','Tsigiro','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23529,'zw','ticket','Tikiti','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23530,'zw','product_queries','Chigadzirwa Mibvunzo','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23531,'zw','website_setup','Kugadziridza Webhusaiti','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23532,'zw','header','Musoro','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23533,'zw','footer','Footer','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23534,'zw','pages','Mapeji','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23535,'zw','appearance','Chitarisiko','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23536,'zw','setup__configurations','Setup & Kugadziridza','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23537,'zw','general_settings','General Zvirongwa','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23538,'zw','features_activation','Inosanganisira activation','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23539,'zw','languages','Mitauro','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23540,'zw','currency','Mari','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23541,'zw','pickup_point','Nzvimbo yekutora','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23542,'zw','smtp_settings','SMTP Zvirongwa','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23543,'zw','payment_methods','Maitiro Ekubhadhara','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23544,'zw','file_system_configuration','Faira Sisitimu yekugadzirisa','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23545,'zw','social_media_logins','Zvemagariro midhiya Logins','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23546,'zw','analytics_tools','Zvishandiso zveAnalytics','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23547,'zw','facebook_chat','Facebook Chat','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23548,'zw','google_recaptcha','Google reCAPTCHA','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23549,'zw','shipping_configuration','Kutumira Kugadziridza','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23550,'zw','shipping_countries','Kutumira Nyika','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23551,'zw','affiliate_system','Yakabatana Sisitimu','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23552,'zw','affiliate_registration_form','Inobatanidza Kunyoresa Fomu','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23553,'zw','affiliate_configurations','Kushamwaridzana Kugadziriswa','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23554,'zw','affiliate_users','Vabatsiri Vashandisi','2021-02-09 08:36:35','2021-09-20 07:30:18'),(23555,'zw','referral_users','Vanotumira Vanoshandisa','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23556,'zw','affiliate_withdraw_requests','Yakabatana Regedza Zvikumbiro','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23557,'zw','offline_payment_system','Offline Kubhadhara Sisitimu','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23558,'zw','manual_payment_methods','Chinyorwa Kubhadhara Maitiro','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23559,'zw','offline_wallet_recharge','Offline Wallet Recharge','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23560,'zw','offline_customer_package_payments','Zvepamhepo Mutengi Package Kubhadhara','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23561,'zw','offline_seller_package_payments','Offline Mutengesi Package Kubhadhara','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23562,'zw','paytm_payment_gateway','Paytm Kubhadhara Gateway','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23563,'zw','set_paytm_credentials','Gadza Paytm Kodhi','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23564,'zw','club_point_system','Kirabhu Point Sisitimu','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23565,'zw','club_point_configurations','Kirabhu Point Kugadziriswa','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23566,'zw','set_product_point','Gadza Chigadzirwa Poindi','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23567,'zw','user_points','Points Yevashandisi','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23568,'zw','otp_system','OTP Sisitimu','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23569,'zw','otp_configurations','OTP Kugadziriswa','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23570,'zw','set_otp_credentials','Gadza OTP Kodhi','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23571,'zw','staffs','Vashandi','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23572,'zw','all_staffs','Yese tsvimbo','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23573,'zw','staff_permissions','Mvumo yevashandi','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23574,'zw','addon_manager','Addon Maneja','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23575,'zw','browse_website','Bhurawuza Webhusaiti','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23576,'zw','pos','Pos','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23577,'zw','notifications','Notifications','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23578,'zw','new_orders','mirairo mitsva','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23579,'zw','userimage','mushandisi-mufananidzo','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23580,'zw','profile','Nhoroondo','2021-02-09 08:36:36','2021-09-20 07:30:18'),(23581,'zw','logout','Kubuda','2021-02-09 08:37:22','2021-09-20 07:30:18'),(23582,'zw','page_not_found','Peji Haina Kuwanikwa!','2021-02-09 08:37:23','2021-09-20 07:30: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 08:37:23','2021-09-20 07:30:18'),(23584,'zw','registration','Kunyoresa','2021-02-09 08:37:23','2021-09-20 07:30:18'),(23585,'zw','i_am_shopping_for','Ndiri kutsvaga ...','2021-02-09 08:37:23','2021-09-20 07:30:18'),(23586,'zw','compare','Enzanisa','2021-02-09 08:37:23','2021-09-20 07:30:18'),(23587,'zw','wishlist','Wishlist','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23588,'zw','cart','Ngoro','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23589,'zw','your_cart_is_empty','Ngoro yako haina chinhu','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23590,'zw','categories','Zvikamu','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23591,'zw','see_all','Ona zvese','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23592,'zw','seller_policy','Mutengesi Policy','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23593,'zw','return_policy','Dzosera Policy','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23594,'zw','support_policy','Kutsigira Mutemo','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23595,'zw','privacy_policy','Yakavanzika Mutemo','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23596,'zw','your_email_address','Yako Email Kero','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23597,'zw','subscribe','Nyorera','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23598,'zw','contact_info','Contact Info','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23599,'zw','address','Kero','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23600,'zw','phone','Runhare','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23601,'zw','email','Email','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23602,'zw','login','Login','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23603,'zw','my_account','Akaundi Yangu','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23604,'zw','order_history','Order Nhoroondo','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23605,'zw','my_wishlist','Yangu Wishlist','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23606,'zw','track_order','Track Order','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23607,'zw','be_an_affiliate_partner','Iva wekudyidzana naye','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23608,'zw','be_a_seller','Iva Mutengesi','2021-02-09 08:37:23','2021-09-20 07:30:19'),(23609,'zw','apply_now','Nyorera Izvozvi','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23610,'zw','confirmation','Chivimbiso','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23611,'zw','delete_confirmation_message','Delete yekusimbisa meseji','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23612,'zw','cancel','Kanzura','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23613,'zw','delete','Delete','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23614,'zw','item_has_been_added_to_compare_list','Chinhu chakawedzerwa kuenzanisa rondedzero','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23615,'zw','please_login_first','Ndokumbira utore kutanga','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23616,'zw','total_earnings_from','Yese Mibairo Kubva','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23617,'zw','client_subscription','Mutengi Kunyorera','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23618,'zw','product_category','Chigadzirwa chigadzirwa','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23619,'zw','product_sub_sub_category','Chigadzirwa chikamu chidiki chikamu','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23620,'zw','product_sub_category','Chigadzirwa chikamu chikamu','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23621,'zw','product_brand','Chigadzirwa chigadzirwa','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23622,'zw','top_client_packages','Wepamusoro Mutengi Mapakeji','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23623,'zw','top_freelancer_packages','Wepamusoro Freelancer Mapakeji','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23624,'zw','number_of_sale','Nhamba yekutengesa','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23625,'zw','number_of_stock','Nhamba yeStock','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23626,'zw','top_10_products','Wepamusoro Zvigadzirwa gumi','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23627,'zw','top_12_products','Top 12 Zvigadzirwa','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23628,'zw','admin_can_not_be_a_seller','Admin haigone kuve mutengesi','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23629,'zw','filter_by_rating','Sefa nekuverenga','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23630,'zw','published_reviews_updated_successfully','Yakaburitswa wongororo yakagadziridzwa zvinobudirira','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23631,'zw','refund_sticker_has_been_updated_successfully','Refund Sticker yakagadziridzwa zvinobudirira','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23632,'zw','edit_product','Rongedza Chigadzirwa','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23633,'zw','meta_images','Meta Mifananidzo','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23634,'zw','update_product','Gadziridza Chigadzirwa','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23635,'zw','product_has_been_deleted_successfully','Chigadzirwa chakabviswa zvinobudirira','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23636,'zw','your_profile_has_been_updated_successfully','Mbiri yako yakagadziridzwa zvinobudirira!','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23637,'zw','upload_limit_has_been_reached_please_upgrade_your_package','Yekuisa muganho wasvika. Ndokumbira uvandudze pasuru yako.','2021-02-09 08:37:24','2021-09-20 07:30:19'),(23638,'zw','add_your_product','Wedzera Chigadzirwa chako','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23639,'zw','select_a_category','Sarudza chikamu','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23640,'zw','select_a_brand','Sarudza chiratidzo','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23641,'zw','product_unit','Chigadzirwa Chigadzirwa','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23642,'zw','minimum_qty','Minimum Qty.','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23643,'zw','product_tag','Chigadzirwa Tag','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23644,'zw','type__hit_enter','Type & rova ������pinda','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23645,'zw','videos','Mavhidhiyo','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23646,'zw','video_from','Vhidhiyo Kubva','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23647,'zw','video_url','Vhidhiyo URL','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23648,'zw','customer_choice','Mutengi Sarudzo','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23649,'zw','pdf','PDF','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23650,'zw','choose_pdf','Sarudza PDF','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23651,'zw','select_category','Sarudza Chikamu','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23652,'zw','target_category','Target Chikamu','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23653,'zw','subsubcategory','sububcategory','2021-02-09 08:37:25','2021-02-09 08:37:25'),(23654,'zw','search_category','Tsvaga Chikamu','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23655,'zw','search_subcategory','Tsvaga SubCategory','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23656,'zw','search_subsubcategory','Tsvaga SubSubCategory','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23657,'zw','update_your_product','Gadziridza chigadzirwa chako','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23658,'zw','product_has_been_updated_successfully','Chigadzirwa chakagadziriswa zvinobudirira','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23659,'zw','add_your_digital_product','Wedzera Chako Dhijitari Chigadzirwa','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23660,'zw','active_ecommerce_cms_update_process','Inoshanda eCommerce CMS Kugadziridza Maitiro','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23661,'zw','codecanyon_purchase_code','Codecanyon kutenga kodhi','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23662,'zw','database_name','Dhatabhesi Zita','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23663,'zw','database_username','Dhatabhesi Username','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23664,'zw','database_password','Dhatabhesi password','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23665,'zw','database_hostname','Dhatabhesi Hostname','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23666,'zw','update_now','Gadziridza Izvozvi','2021-02-09 08:37:25','2021-09-20 07:30:19'),(23667,'zw','congratulations','Makorokoto','2021-02-09 08:37:26','2021-09-20 07:30: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 08:37:26','2021-09-20 07:30:19'),(23669,'zw','go_to_home','Enda Kumusha','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23670,'zw','login_to_admin_panel','Kupinda kune Admin pani','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23671,'zw','s3_file_system_credentials','S3 File System Zvivimbiso','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23672,'zw','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23673,'zw','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23674,'zw','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23675,'zw','aws_bucket','AWS_BUCKET','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23676,'zw','aws_url','AWS_URL','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23677,'zw','s3_file_system_activation','S3 Faira Sisitimu Inoshanda','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23678,'zw','your_phone_number','Yako nhamba yefoni','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23679,'zw','zip_file','Zip File','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23680,'zw','install','Isa','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23681,'zw','this_version_is_not_capable_of_installing_addons_please_update','Iyi vhezheni haigone kuisa maAddons, Ndokumbira uvandudze.','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23682,'zw','search_in_menu','Tsvaga mumenyu','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23683,'zw','uploaded_files','Akaiswa Mafaira','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23684,'zw','shipping_cities','Kutumira Maguta','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23685,'zw','system','System','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23686,'zw','server_status','Nzvimbo yeSeva','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23687,'zw','nothing_found','Hapana Chakawanikwa','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23688,'zw','parent_category','Chikamu chevabereki','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23689,'zw','level','Chikamu','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23690,'zw','category_information','Chikamu Ruzivo','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23691,'zw','translatable','Inodudzirwa','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23692,'zw','no_parent','Kwete Mubereki','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23693,'zw','physical','Panyama','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23694,'zw','digital','Dhijitari','2021-02-09 08:37:26','2021-09-20 07:30:19'),(23695,'zw','200x200','200x200','2021-02-09 08:37:26','2021-02-09 08:37:26'),(23696,'zw','32x32','32x32','2021-02-09 08:37:26','2021-02-09 08:37:26'),(23697,'zw','search_your_files','Tsvaga mafaera ako','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23698,'zw','category_has_been_updated_successfully','Chikamu chakagadziridzwa zvinobudirira','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23699,'zw','all_uploaded_files','Ese mafaera akaiswa','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23700,'zw','upload_new_file','Isa Nyowani File','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23701,'zw','all_files','Mafaira ese','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23702,'zw','search','Tsvaga','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23703,'zw','details_info','Nhoroondo Info','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23704,'zw','copy_link','Kopa Unganidzo','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23705,'zw','are_you_sure_to_delete_this_file','Une chokwadi chekudzima iyi faira?','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23706,'zw','file_info','Faira Info','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23707,'zw','link_copied_to_clipboard','Chinongedzo chakateedzerwa kubhodhibhodhi','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23708,'zw','oops_unable_to_copy','Oops, haikwanisi kutevedzera','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23709,'zw','file_deleted_successfully','Faira rakabviswa zvinobudirira','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23710,'zw','add_new_brand','Wedzera Nyowani Brand','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23711,'zw','120x80','120x80','2021-02-09 08:37:27','2021-02-09 08:37:27'),(23712,'zw','brand_information','Ruzivo rweBrand','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23713,'zw','brand_has_been_updated_successfully','Brand yakagadziridzwa zvinobudirira','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23714,'zw','brand_has_been_deleted_successfully','Brand yakabviswa zvinobudirira','2021-02-09 08:37:27','2021-09-20 07:30: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 08:37:27','2021-09-20 07:30: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 08:37:27','2021-09-20 07:30: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 08:37:27','2021-09-20 07:30: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 08:37:27','2021-09-20 07:30:19'),(23719,'zw','save_product','Sevha Chigadzirwa','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23720,'zw','product_has_been_inserted_successfully','Chigadzirwa chakaiswa zvinobudirira','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23721,'zw','something_went_wrong','Chinhu chakatadza kufamba!','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23722,'zw','sorry_for_the_inconvenience_but_were_working_on_it','Tine urombo nekukanganisa, asi tiri kuzvigadzirisa.','2021-02-09 08:37:27','2021-09-20 07:30:19'),(23723,'zw','error_code','Kodhi yekodhi','2021-02-09 08:37:27','2021-09-20 07:30: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 08:37:27','2021-09-20 07:30:19'),(23725,'zw','order','Order','2021-02-09 08:37:27','2021-09-20 07:30: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 08:37:28','2021-09-20 07:30:19'),(23727,'zw','home_banner_3_max_3','Imba Banner 3 (Max 3)','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23728,'zw','add_new_seller','Wedzera Mutsva Mutengesi','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23729,'zw','filter_by_approval','Sefa nekutenderwa','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23730,'zw','nonapproved','Asina-Kubvumidzwa','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23731,'zw','type_name_or_email__enter','Nyora zita kana email & Enter','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23732,'zw','due_to_seller','Nekuda kwemutengesi','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23733,'zw','log_in_as_this_seller','Pinda seMutengesi uyu','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23734,'zw','go_to_payment','Enda Kubhadharo','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23735,'zw','ban_this_seller','Rambidza mutengesi uyu','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23736,'zw','do_you_really_want_to_ban_this_seller','Iwe unonyatsoda kurambidza uyu mutengesi?','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23737,'zw','proceed','Enderera!','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23738,'zw','approved_sellers_updated_successfully','Vatengesi vanobvumidzwa vakagadziridzwa zvinobudirira','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23739,'zw','seller_has_been_deleted_successfully','Mutengesi akabviswa zvinobudirira','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23740,'zw','seller_information','Mutengesi Ruzivo','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23741,'zw','seller_has_been_inserted_successfully','Mutengesi akaiswa zvinobudirira','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23742,'zw','email_already_exists','Email yatovepo!','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23743,'zw','verify_your_email_address','Simbisa Yako Email Kero','2021-02-09 08:37:28','2021-09-20 07:30: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 08:37:28','2021-09-20 07:30:19'),(23745,'zw','if_you_did_not_receive_the_email','Kana iwe usina kugamuchira iyo email.','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23746,'zw','click_here_to_request_another','Dzvanya apa kukumbira imwe','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23747,'zw','email_verification','Kuongorora Email','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23748,'zw','email_verification__','Email Verification -','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23749,'zw','https_activation','Kumisikidza kweHTTPS','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23750,'zw','maintenance_mode','Maitiro ekugadzirisa','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23751,'zw','maintenance_mode_activation','Maintenance Mode Kushanda','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23752,'zw','classified_product_activate','Classified Chigadzirwa Activate','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23753,'zw','classified_product','Classified Chigadzirwa','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23754,'zw','business_related','Bhizinesi Rakaenderana','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23755,'zw','vendor_system_activation','Vatengesi Sisitimu Inoshanda','2021-02-09 08:37:28','2021-09-20 07:30:19'),(23756,'zw','wallet_system_activation','Wallet Sisitimu Inoshanda','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23757,'zw','coupon_system_activation','Coupon System Inoshanda','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23758,'zw','pickup_point_activation','Pikicha Poindi Kumisikidza','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23759,'zw','conversation_activation','Kuita Kukurukurirana','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23760,'zw','guest_checkout_activation','Guest Checkout Kushanda','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23761,'zw','categorybased_commission','Chikamu-chakavakirwa Commission','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23763,'zw','set_commisssion_now','Gadza Commisssion Izvozvi','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23764,'zw','payment_related','Kubhadhara Kwakabatana','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23765,'zw','paypal_payment_activation','Paypal Kubhadhara Kubata','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23767,'zw','stripe_payment_activation','Stripe Kubhadhara Kushanda','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23768,'zw','sslcommerz_activation','SSlCommerz Kumisikidza','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23769,'zw','instamojo_payment_activation','Instamojo Kubhadhara Kushanda','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23771,'zw','razor_pay_activation','Razor Kubhadhara Kushanda','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23773,'zw','paystack_activation','Kubhadhara kweStack','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23775,'zw','voguepay_activation','VoguePay Kubata','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23777,'zw','payhere_activation','Kubhadhara Kuita','2021-02-09 08:37:29','2021-09-20 07:30:19'),(23778,'zw','ngenius_activation','Ngenius Kushanda','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23780,'zw','iyzico_activation','Iyzico Kumisikidza','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23782,'zw','bkash_activation','Bkash Kushanda','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23784,'zw','nagad_activation','Nagad Kushanda','2021-02-09 08:37:29','2021-09-20 07:30: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 08:37:29','2021-09-20 07:30:19'),(23786,'zw','cash_payment_activation','Cash Kubhadhara Kushanda','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23787,'zw','social_media_login','Yemagariro Media Kupinda','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23788,'zw','facebook_login','Facebook login','2021-02-09 08:37:30','2021-09-20 07:30: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 08:37:30','2021-09-20 07:30:19'),(23790,'zw','google_login','Google login','2021-02-09 08:37:30','2021-09-20 07:30: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 08:37:30','2021-09-20 07:30:19'),(23792,'zw','twitter_login','Twitter kupinda','2021-02-09 08:37:30','2021-09-20 07:30: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 08:37:30','2021-09-20 07:30:19'),(23794,'zw','shop_logo','Shop Logo','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23795,'zw','shop_address','Kero Kero','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23796,'zw','banner_settings','Zvirongwa zveBanner','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23797,'zw','banners','Mabhanhire','2021-02-09 08:37:30','2021-09-20 07:30: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 08:37:30','2021-09-20 07:30:19'),(23799,'zw','insert_link_with_https_','Isa chinongedzo ne https','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23800,'zw','your_shop_has_been_updated_successfully','Shopu yako yakagadziridzwa zvinobudirira!','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23801,'zw','search_result_for_','Tsvaga mhedzisiro ye','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23802,'zw','brand_has_been_inserted_successfully','Brand yakaiswa zvinobudirira','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23803,'zw','about','About','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23804,'zw','payout_info','Inobhadhara Info','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23805,'zw','bank_acc_name','Bhangi Acc Zita','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23806,'zw','bank_acc_number','Bhangi Acc Nhamba','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23807,'zw','total_products','Zvigadzirwa Zvese','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23808,'zw','total_sold_amount','Yese Yakatengeswa Mari','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23809,'zw','wallet_balance','Wallet Balance','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23810,'zw','cookies_agreement','Chibvumirano cheKuki','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23811,'zw','cookies_agreement_text','Cookies Chibvumirano Chinyorwa','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23812,'zw','show_cookies_agreement','Ratidza Cookies Chibvumirano?','2021-02-09 08:37:30','2021-09-20 07:30:19'),(23813,'zw','custom_script','Tsika Yenyaya','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23814,'zw','header_custom_script__before_head','Musoro wetsika script - pamberi </head>','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23815,'zw','write_script_with_script_tag','Nyora script ine <script> tag','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23816,'zw','footer_custom_script__before_body','Footer tsika script - pamberi </body>','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23817,'zw','category_has_been_inserted_successfully','Chikamu chakaiswa zvinobudirira','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23818,'zw','all_flash_deals','Zvese Flash Deals','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23819,'zw','create_new_flash_deal','Gadzira Nyowani Flash Deal','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23820,'zw','ffffff','#FFFFFF','2021-02-09 08:37:31','2021-09-20 07:30: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 08:37:31','2021-09-20 07:30:19'),(23822,'zw','flash_deal_has_been_inserted_successfully','Flash Deal yakaiswa zvinobudirira','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23823,'zw','flash_deal_status_updated_successfully','Flash dhizaini mamiriro akagadziridzwa zvinobudirira','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23824,'zw','flash_deal_has_been_updated_successfully','Flash Deal yakagadziridzwa zvinobudirira','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23825,'zw','update_language_info','gadziridza Ruzivo rweMutauro','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23826,'zw','language_has_been_updated_successfully','Mutauro wakagadziridzwa zvinobudirira','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23827,'zw','type_key__enter','Type kiyi & Pinda','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23828,'zw','translations_updated_for_','Dudziro dzakagadziridzwa','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23829,'zw','language_has_been_inserted_successfully','Mutauro wakaiswa zvinobudirira','2021-02-09 08:37:31','2021-09-20 07:30:19'),(23830,'pk','all_category','j%�%�j%�%� j%�%%�j%�%�%�','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23831,'pk','all','j%%j%�','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23832,'pk','flash_sale','%�%��%�j%$% j%%�%�%�','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23833,'pk','view_more','%�j%�%�%�j%� j%��%� %# %[%�%� %Q%','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23834,'pk','add_to_wishlist','j%�%�j%��%�j%$%j%�j%� %#�%� %��%�j%�%j%%j%� %��%� %Q% j%$%j%�%�%� %#j%�%%�j%�','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23835,'pk','add_to_compare','%�%�j%�j%�%%��%� %#j%�%%��%� %#�%� %�j%��%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23836,'pk','add_to_cart','%c%%� %#j%�%�%� %��%� %Q% j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23837,'pk','club_point',' %#%�j%� %[%%�j%�j%�%�%c%','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23838,'pk','classified_ads','j%�j%�%j%��%� j%�%�j%��%� j%�j%$%j%� %[%j%�j%�%j%�j%�','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23839,'pk','used','j%�j%%j%�j%c%%�j%�%� %#�%�j%� j%�j%�j%�j%� �%��%�','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23840,'pk','top_10_categories','%c%j%�%[% 10 j%�%%�j%�%�%�','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23841,'pk','view_all_categories','j%�%�j%�%� j%�%%�j%�%�%� j%��%� %# %[%�%� %Q%','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23842,'pk','top_10_brands','j%%j%�%%��%�j%�%j%%j%� 10 j%�j%�%j%�%� %�j%�%','2021-02-09 08:39:20','2021-09-20 07:30:19'),(23843,'pk','view_all_brands','j%�%�j%�%� j%�j%�%j%�%� %�j%�% j%��%� %# %[%�%� %Q%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23844,'pk','terms__conditions','j%$%j%�%j%�j%�j%V% %� j%b%%�j%�j%�j%V%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23845,'pk','best_selling','j%��%�j%�j%�%�%�%� %�j%�%%�j%�j%� �%�%�%��%� %�j%�%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23846,'pk','top_20','%c%j%�%[% 20','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23847,'pk','featured_products','%�%�j%��%�j%� %Q% %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23848,'pk','best_sellers','j%��%�j%�j%�%�%�%� %�j%�%%�j%�j%� %#%�%�j%� %�j%�%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23849,'pk','visit_store','j%�j%%%c%%�j%�% %�%�j%�j%�j%U%�%� %#j%�%�%� %Q%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23850,'pk','popular_suggestions','%�%�j%�%�%� j%�j%�j%�%��%�j%�%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23851,'pk','category_suggestions','j%�%%�j%�%�%� j%�j%�j%�%��%�j%�%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23852,'pk','automobile__motorcycle','j%�%c%%�%�%�j%�j%�j%�%� j%�%�j%�% %�%�%c%j%�%j%%j%�j%��%� %#%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23853,'pk','price_range','%��%�%�j%� %#�%� j%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23854,'pk','filter_by_color','j%�%%� %� j%%�%� %�%�%c%j%�% %#j%�%�%� %Q%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23855,'pk','home',' %� %[%j%�%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23856,'pk','newest','j%�j%�j%�%�%� j%�j%�%�%�%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23857,'pk','oldest','j%%j%� j%%�%� %�j%��%�%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23858,'pk','price_low_to_high','%��%�%�j%� %#%� j%%�%� j%�%�%�j%�j%��%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23859,'pk','price_high_to_low','%��%�%�j%� %#%� j%%�%� %#%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23860,'pk','brands','j%�j%�%j%�%� %�j%�%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23861,'pk','all_brands','j%�%�j%�%� j%�j%�%j%�%� %�j%�%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23862,'pk','all_sellers','j%%j%� j%��%� %�%��%� %�j%�%��%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23863,'pk','inhouse_product','j%�%�j%�j%�%%�%��%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23864,'pk','message_seller','%[%�%�j%Q%j%�%� j%��%� %�%��%� %�j%�%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23865,'pk','price','%��%�%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23866,'pk','discount_price','j%�%j%c%j%�j%��%�j%��%� %��%�%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23867,'pk','color','j%�%%� %�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23868,'pk','quantity','%�%�j%�j%�j%�%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23869,'pk','available','j%�j%%j%��%�j%�j%�','2021-02-09 08:39:21','2021-02-09 08:39:21'),(23870,'pk','total_price',' %#%� %��%�%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23871,'pk','out_of_stock','j%�%j%��%�j%�%�%� j%%�%� j%�j%��%�j%�%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23872,'pk','refund','%�j%�%[%j%% %#j%�%%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23873,'pk','share','j%�j%�%�%c%�%� %Q%','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23874,'pk','sold_by',' %#�%� j%V%j%�%%� j%%�%� %�j%�%%�j%�j%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23875,'pk','customer_reviews',' %�j%��%� %# %#�%� j%�j%�j%�j%�%�%�','2021-02-09 08:39:21','2021-09-20 07:30:19'),(23876,'pk','top_selling_products','j%�%�%[%j%�% %�j%�%%�j%�j%� �%�%�%��%� %�j%�%��%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23877,'pk','description','j%�%�j%a%�%�%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23878,'pk','video','%��%� %��%�%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23879,'pk','reviews','j%�j%�j%�j%�%�%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23880,'pk','download',' %�j%�j%�%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23881,'pk','there_have_been_no_reviews_for_this_product_yet','j%�j%� %[%�%� j%� %# j%�j%% %[%j%�%%� %� %#%c% %#�%� %�j%��%� %#%�j%��%� j%�j%�j%�j%�%�%� %��%��%� %Q% %�%�j%� �%��%��%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23882,'pk','related_products','%�j%�j%c%%�%��%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23883,'pk','any_query_about_this_product','j%�j%% %#�%� %�j%a%%�%�j%c%j%�j%� %#�%� j%�j%�j%�%�%� %��%� %Q% %#%�j%��%� j%%%�j%�%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23884,'pk','product_name','%[%j%�%%� %� %#%c% %#j%� %�j%�%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23885,'pk','your_question','j%�%[% %#j%� j%%%�j%�%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23886,'pk','send','j%� %[%�%�j%��%� %Q%','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23887,'pk','use_country_code_before_number','%�%�j%�j%�% j%%�%� %[%�%�%��%� %�%� %# %#j%� %#%� %� j%�j%%j%�j%c%%�j%�%� %#j%�%�%� %Q%','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23888,'pk','remember_me','%�j%� %[%�%� %[%�%� %�j%�%�j%��%� �%�%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23889,'pk','dont_have_an_account',' %#�%�j%� j%�%[% %#j%� j%� %#j%�j%�%�%c% %��%��%� %Q% �%��%�j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23890,'pk','register_now','j%�j%� %[%�%� j%�%j%�j%%%c%j%�% %#j%�%�%� %Q%','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23891,'pk','or_login_with','�%�j%� %�j%� %� j%�%� %#�%� j%%j%�j%� %[%','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23892,'pk','oops','j%�%�%��%� ..','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23893,'pk','this_item_is_out_of_stock','�%��%� j%�j%�%c%%� j%�j%�%� %��%��%� %Q% �%�%�j%�!','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23894,'pk','back_to_shopping','%�j%�%[%j%% j%$%j%�%[%%� %� %[%j%�%','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23895,'pk','login_to_your_account','j%�%[% %#�%� j%� %#j%�j%�%�%c% %��%� %Q% %�j%� %� j%�%� %#j%�%�%� %Q%.','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23896,'pk','purchase_history','j%�j%�j%�%�%�j%� j%�j%�%�%�j%��%� %Q%','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23897,'pk','new','%�j%��%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23898,'pk','downloads',' %�j%�j%�%� %�%� %�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23899,'pk','sent_refund_request','j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%� j%� %[%�%�j%��%� %�j%��%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23900,'pk','product_bulk_upload','%[%j%�%%� %� %#%c% %#j%� j%�%� %# j%�%[% %�%� %�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23901,'pk','orders','j%�j%� %#j%�%�j%�j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23902,'pk','recieved_refund_request','%�%�j%a%%�%��%� j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23903,'pk','shop_setting','j%� %#j%�%� %#�%� j%�j%�%j%��%�j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23904,'pk','payment_history','j%�j%�j%�j%��%� %��%� %#�%� j%�j%�j%�%�%�j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23905,'pk','money_withdraw','%[%�%�j%%�%� %� %#%�%�j%�%�j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23906,'pk','conversations',' %�%�j%� %�%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23907,'pk','my_wallet','%��%�j%�%j%� %[%j%�%j%%','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23908,'pk','earning_points','%[%%�j%�j%�%�%c%j%% j%�j%�j%a%%� %#j%�%%�j%�','2021-02-09 08:39:22','2021-09-20 07:30:19'),(23909,'pk','support_ticket','j%%%[%%�j%�%%c% %c% %#%c%','2021-02-09 08:39:23','2021-09-20 07:30:19'),(23910,'pk','manage_profile','%[%j%�%%�%�j%�j%�%� %#j%� %�j%U%%� %#j%�%�%� %Q%','2021-02-09 08:39:23','2021-09-20 07:30:19'),(23911,'pk','sold_amount','%�j%�%%�j%�j%� �%�%�j%��%� j%�%%�%�','2021-02-09 08:39:23','2021-09-20 07:30:19'),(23912,'pk','your_sold_amount_current_month','j%�%[% %#�%� %�j%�%%�j%�j%� j%$%j%��%� j%�%%�%� (%�%�j%�%�j%��%� %��%��%�%��%�)','2021-02-09 08:39:23','2021-09-20 07:30:19'),(23913,'pk','total_sold',' %#%� %�j%�%%�j%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:19'),(23914,'pk','last_month_sold','j%�j%�j%�%�%� %��%��%�%��%� %�j%�%%�j%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:19'),(23915,'pk','total_sale',' %#%� %�j%�%%�j%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:19'),(23916,'pk','total_earnings',' %#%� %#%�j%�j%��%�','2021-02-09 08:39:23','2021-09-20 07:30:19'),(23917,'pk','successful_orders',' %#j%�%��%�j%�j%� j%�j%� %#j%�%�j%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23918,'pk','total_orders',' %#%� j%�j%� %#j%�%�j%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23919,'pk','pending_orders','j%�%�%�j%�% j%�%�j%�%�j%�j%� j%�j%� %#j%�%�j%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23920,'pk','cancelled_orders','%�%�j%%%�j%� %#j%�%j%��%� j%�j%� %#j%�%�j%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23921,'pk','product','%[%j%�%%� %� %#%c%','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23922,'pk','purchased_package','j%�j%�%�%�j%�j%� %[%�%� %#�%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23923,'pk','package_not_found','%[%�%� %#�%�j%� %��%��%� %Q% %�%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23924,'pk','upgrade_package','%[%�%� %#�%�j%� %#%� j%�%[% %�j%�%�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23925,'pk','shop','j%� %#j%�%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23926,'pk','manage__organize_your_shop','j%�%[%%��%� j%� %#j%�%� %#j%� %�j%U%%� %� %�j%%%� %#j%�%�%� %Q%','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23927,'pk','go_to_setting','j%�j%�%j%��%�j%� %[%j%�% j%�j%�j%��%� %Q%','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23928,'pk','payment','j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23929,'pk','configure_your_payment_method','j%�%[%%��%� j%�j%�j%�j%��%� %��%� %#j%� j%V%j%�%�%�%��%� j%�j%$% %#�%�%� j%��%� %Q%','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23930,'pk','my_panel','%��%�j%�%j%� %[%�%�%�%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23931,'pk','item_has_been_added_to_wishlist','j%�j%�%c%%� %#%� j%�%�j%��%�j%$% %#�%� %��%�j%�%j%%j%� %��%� %Q% j%$%j%�%�%� %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23932,'pk','my_points','%��%�j%�%�%� %[%%�j%�j%�%�%c%j%%','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23933,'pk','_points','%[%%�j%�j%�%�%c%j%%','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23934,'pk','wallet_money','%�j%�%��%�%c% %�%��%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23935,'pk','exchange_rate','j%�%j%�% %�j%�j%�j%�%��%� %#�%� j%$%j%�%j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23936,'pk','point_earning_history','%[%%�j%�j%�%�%c% j%�j%�%%�%� %� �%�j%%%c%j%�%�%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23937,'pk','date','j%�j%�j%�%�%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23938,'pk','points','%[%%�j%�j%�%�%c%j%%','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23939,'pk','converted','j%�j%�%� %��%�j%�','2021-02-09 08:39:23','2021-09-20 07:30:20'),(23940,'pk','action','j%c%%�%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23941,'pk','no_history_found',' %#%�j%��%� j%�j%�j%�%�%�j%� %��%��%� %Q% %�%��%��%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23942,'pk','convert_has_been_done_successfully_check_your_wallets',' %#%�%�j%�%%c% %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% �%�%� %� %#j%� �%��%� j%�%[%%��%� j%�%c%%��%� %��%� %# %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23943,'pk','something_went_wrong',' %# %� %[% j%Q%%�j%V% �%�%� %��%�j%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23944,'pk','remaining_uploads','j%�j%�%��%� j%�%[% %�%� %�j%�%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23945,'pk','no_package_found',' %#%�j%��%� %[%�%� %#�%�j%� %��%��%� %Q% %�%�j%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23946,'pk','search_product','%�j%a%%�%�j%c%j%�j%� j%�%�j%�j%$% %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23947,'pk','name','%�j%�%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23948,'pk','current_qty','%�%�j%�%�j%��%� %�%�j%�j%�j%�%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23949,'pk','base_price','j%�%��%�j%�j%��%� %��%�%�j%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23950,'pk','published','j%$%j%�j%�j%c% �%�%�j%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23951,'pk','featured','%�%�j%��%�j%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23952,'pk','options','j%�j%�j%��%�j%�j%�%j%�j%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23953,'pk','edit','j%�j%�%%��%�%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23954,'pk','duplicate',' %�%[%%��%� %#�%�%c%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23955,'pk','1_download_the_skeleton_file_and_fill_it_with_data','1. %#%� %#j%�%� %�j%�j%�%� %�j%�j%�%� %�%� %� %#j%�%�%� %Q% j%�%�j%�% %��%�%c%j%� j%%�%� %[%%�j%�% %#j%�%�%� %Q%�%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23956,'pk','2_you_can_download_the_example_file_to_understand_how_the_data_must_be_filled','2. j%�%[% �%��%� j%%%�j%� %[%%��%� %#�%� %�j%��%� %�j%�j%�%� %#�%� j%V%%�j%�% %[%j%�% %�j%�j%�%� %�j%�j%�%� %�%� %� %#j%�%j%% %#j%��%� �%��%� %Q% %#�%� j%�j%c%j%�j%�j%� %� j%$%%�j%�j%�% %#%� %#j%% j%V%j%�%j%� %[%j%�% %#j%�%%�j%� %�j%��%�j%��%��%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23957,'pk','3_once_you_have_downloaded_and_filled_the_skeleton_file_upload_it_in_the_form_below_and_submit','j%��%� %# j%�j%�j%�% j%�j%� j%�%[% %��%� %#%� %#j%�%� %#�%� %�j%�j%�%� %#%� %�j%�j%�%� %�%� %� j%�%�j%�% j%� %[%j%�% %��%�j%� �%��%� j%�%� j%� j%�j%%�%� %��%� %��%� j%��%�j%��%� %�j%��%� %�j%�j%�%%� %��%� %Q% j%�%[% %�%� %� %#j%�%�%� %Q% j%�%�j%�% j%�%�j%c% %#j%�%j%�j%��%� %Q%�%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23958,'pk','4_after_uploading_products_you_need_to_edit_them_and_set_products_images_and_choices','4. %�j%a%%�%�j%c%j%�j%� j%�%[% %�%� %� %#j%�%%��%� %#�%� j%�j%c%j%� j%�%[% %#%� j%�%� %��%� %Q% j%�j%�%%��%�%� %#j%�%%��%� j%�%�j%�% %�j%a%%�%�j%c%j%�j%� %#�%� j%�j%a%j%�%��%�j%�% j%�%�j%�% j%�%�j%�j%�j%�j%� %#%� j%�j%�%j%��%�j%� j%��%�%��%� %#�%� j%b%j%�%%�j%�%j%� �%�%�j%��%� �%��%��%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23959,'pk','download_csv','CSV %�j%�j%�%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23960,'pk','1_categorysub_categorysub_sub_category_and_brand_should_be_in_numerical_ids','1. j%�%%�j%�%�%� j%� j%�%�%�%��%� j%�%%�j%�%�%� j%� j%�%�%�%��%� j%�%�%�%��%� j%�%%�j%�%�%� j%�%�j%�% j%�j%�%j%�%� %� j%c%j%�j%��%� IDs %��%� %Q% �%�%�%�j%� %�j%��%�j%��%��%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23961,'pk','2_you_can_download_the_pdf_to_get_categorysub_categorysub_sub_category_and_brand_id','2. j%�%[% j%�%%�j%�%�%� j%� j%%j%� j%�%%�j%�%�%� j%� j%%j%� j%%j%� j%�%%�j%�%�%� j%�%�j%�% j%�j%�%j%�%� %� %#�%� j%$%%�j%�j%�j%� j%�j%�j%a%%� %#j%�%%��%� %#�%� %�j%��%� %[%�%� %��%� j%��%�%� %�j%�j%�%� %�%� %� %#j%�%j%% %#j%��%� �%��%� %Q%�%�','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23962,'pk','download_category','j%�%%�j%�%�%� %�j%�j%�%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23963,'pk','download_sub_category','j%�%�%�%��%� j%�%%�j%�%�%� %�j%�j%�%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23964,'pk','download_sub_sub_category','j%%j%� j%�%�%�%��%� j%�%%�j%�%�%� %�j%�j%�%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23965,'pk','download_brand','j%�j%�%j%�%� %� %�j%�j%�%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23966,'pk','upload_csv_file','CSV %�j%�j%�%� j%�%[% %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23967,'pk','csv','CSV','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23968,'pk','choose_csv_file','CSV %�j%�j%�%� %#j%� j%�%�j%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23969,'pk','upload','j%�%[% %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:24','2021-09-20 07:30:20'),(23970,'pk','add_new_digital_product','%��%�j%� %��%�j%��%�%c%%� %[%j%�%%� %� %#%c% j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23971,'pk','available_status','j%�j%%j%��%�j%�j%� j%��%�j%��%�j%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23972,'pk','admin_status','j%��%� %�%�%� j%�j%%%c%�%�%c%j%%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23973,'pk','pending_balance','j%�%�%�j%�% j%�%�j%�%�j%� j%��%�%�%�j%%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23974,'pk','send_withdraw_request','%�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%� j%� %[%�%�j%��%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23975,'pk','withdraw_request_history','j%�j%�%j%�%�j%�j%%j%� %#�%� j%�j%�j%�%�%�j%� %�j%�%[%j%% %�%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23976,'pk','amount','j%�%%�%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23977,'pk','status','j%�j%�%�j%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23978,'pk','message','%[%�%�j%Q%j%�%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23979,'pk','send_a_withdraw_request','%�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%� j%� %[%�%�j%��%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23980,'pk','basic_info','j%�%��%�j%�j%��%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23981,'pk','your_phone','j%�%[% %#j%� %�%�%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23982,'pk','photo','j%�j%a%%��%�j%�%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23983,'pk','browse','j%�j%�%j%�j%�j%�% %#j%�%�%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23984,'pk','your_password','j%�%[% %#j%� %[%j%�j%% %�j%�% %�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23985,'pk','new_password','%��%�j%� %[%j%�j%% %�j%�% %�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23986,'pk','confirm_password','%[%j%�j%% %�j%�% %� %#�%� j%�j%a%j%��%�%� %#j%�%�%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23987,'pk','add_new_address','%��%�j%� %[%j%��%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23988,'pk','payment_setting','j%�j%�j%�j%��%� %��%� %#�%� j%�j%�%j%��%�j%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23989,'pk','cash_payment','%�%�j%� j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23990,'pk','bank_payment','j%��%�%� %# j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23991,'pk','bank_name','j%��%�%� %# %#j%� %�j%�%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23992,'pk','bank_account_name','j%��%�%� %# j%� %#j%�j%�%�%c% %#j%� %�j%�%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23993,'pk','bank_account_number','j%��%�%� %# j%� %#j%�j%�%�%c% %�%�j%�j%�%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23994,'pk','bank_routing_number','j%��%�%� %# j%�%%�%c%%� %� %�%�j%�j%�%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23995,'pk','update_profile','%[%j%�%%�%�j%�j%�%� %#%� j%�%[% %��%�%c% %#j%�%�%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23996,'pk','change_your_email','j%�%[%%�j%� j%��%� %��%�%� j%�j%�j%��%�%� %#j%�%�%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23997,'pk','your_email','j%�%[% %#j%� j%��%� %��%�%�','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23998,'pk','sending_email','j%��%� %��%�%� j%� %[%�%�j%� j%�%�%�j%� �%��%����','2021-02-09 08:39:25','2021-09-20 07:30:20'),(23999,'pk','verify','j%�j%a%j%��%�%� %#j%�%�%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(24000,'pk','update_email','j%��%� %��%�%� %#%� j%�%[% %��%�%c% %#j%�%�%� %Q%','2021-02-09 08:39:25','2021-09-20 07:30:20'),(24001,'pk','new_address','%��%�j%� %[%j%��%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24002,'pk','your_address','j%�%[% %#j%� %[%j%��%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24003,'pk','country','%�%� %#','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24004,'pk','select_your_country','j%�%[%%��%� %�%� %# %#j%� j%�%�j%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24005,'pk','city','j%$%�%�j%�%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24006,'pk','your_city','j%�%[% %#j%� j%$%�%�j%�%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24007,'pk','your_postal_code','j%�%[% %#j%� %[%%�j%%%c%%� %#%� %�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24008,'pk','880','+880','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24009,'pk','save','%�j%�%�%�j%U% %#j%�%�%� %Q%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24010,'pk','received_refund_request','j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%� %�%�j%a%%�%� �%�%�j%��%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24011,'pk','delete_confirmation','j%�j%a%j%��%�%� %#%� j%�j%�%%� %#j%�%�%� %Q%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24012,'pk','are_you_sure_to_delete_this',' %#�%�j%� j%�%[% %�j%�%�j%c%�%� j%�j%%�%� j%�j%�%%� %#j%�%%�j%� %�j%��%�j%��%� �%��%� %Q%j%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24013,'pk','premium_packages_for_sellers','j%��%� %�%��%� %�j%�%��%� %#�%� %�j%��%� %[%j%�%�%�%��%�%� %[%�%� %#j%�j%�%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24014,'pk','product_upload','%[%j%�%%� %� %#%c% j%�%[% %�%� %�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24015,'pk','digital_product_upload',' %��%�j%��%�%c%%� %[%j%�%%� %� %#%c% j%�%[% %�%� %�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24016,'pk','purchase_package','j%�j%�%�%�j%�j%�j%�%�%� %[%�%� %#�%�j%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24017,'pk','select_payment_type','j%�j%�j%�j%��%� %��%� %#�%� %�j%%%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24018,'pk','payment_type','j%�j%�j%�j%��%� %��%� %#�%� %�j%%%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24019,'pk','select_one','j%��%� %# %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24020,'pk','online_payment','j%�%� %�j%�j%�%� j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24021,'pk','offline_payment','j%�%� %�j%�j%�%� j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24022,'pk','purchase_your_package','j%�%[%%�j%� %[%�%� %#�%�j%� j%�j%�%�%�j%��%� %Q%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24023,'pk','paypal','%[%�%� %[%j%�%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24024,'pk','stripe','%[%%c%�%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24025,'pk','sslcommerz','sslcommerz','2021-02-09 08:39:26','2021-02-09 08:39:26'),(24026,'pk','confirm','j%�j%a%j%��%�%� %#j%�%�%� %Q%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24027,'pk','offline_package_payment','j%�%� %�j%�j%�%� %[%�%� %#�%�j%� %#�%� j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24028,'pk','transaction_id','%c%j%�%j%�%�j%�%�%� %#j%$%%� ID','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24029,'pk','choose_image','j%�j%a%%��%�j%�% %#j%� j%�%�j%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24030,'pk','code',' %#%� %�','2021-02-09 08:39:26','2021-09-20 07:30:20'),(24031,'pk','delivery_status','%�%�j%a%%�%� �%�%�%��%� %#�%� j%� %�j%��%��%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24032,'pk','payment_status','j%�j%�j%�j%��%� %��%� %#�%� j%��%�j%��%�j%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24033,'pk','paid','j%�j%�j%� %#�%�j%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24034,'pk','order_details','j%�j%�% %�j%�% %#�%� j%�%�j%a%�%�%�j%�j%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24035,'pk','download_invoice','j%�%�%�j%�j%�j%% %�j%�j%�%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24036,'pk','unpaid','j%�%�j%� %�j%c%j%�%�j%b%�%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24037,'pk','order_placed','j%�j%�% %�j%�% j%��%�j%� %��%�j%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24038,'pk','confirmed','j%�j%a%j%��%�%� �%�%� %�j%��%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24039,'pk','on_delivery','%[%�%�%� %�j%�%��%� %[%j%�%','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24040,'pk','delivered','%�j%�j%�j%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24041,'pk','order_summary','j%� %#%� %#j%� j%�%�j%�j%a%�%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24042,'pk','order_code','j%�j%�% %�j%�% %#%� %�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24043,'pk','customer','j%a%j%�j%�%%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24044,'pk','total_order_amount','j%�j%�% %�j%�% %#�%� %#%� j%�%%�%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24045,'pk','shipping_metdod','j%$%%[%%� %� %��%�%c%%�j%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24046,'pk','flat_shipping_rate','%�%��%�%c% j%$%%[%%� %� %#�%� j%$%j%�%j%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24047,'pk','payment_metdod','j%�j%�j%�j%��%� %��%� %��%�%c% %�%� %�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24048,'pk','variation','j%�j%Q%�%�j%�%','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24049,'pk','delivery_type','j%�j%�%j%%�%�%� %#�%� %�j%%%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24050,'pk','home_delivery',' %� %[%j%�% j%� %# j%�j%�%j%%�%�%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24051,'pk','order_ammount','j%�j%�% %�j%�% %#�%� j%�%%�%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24052,'pk','subtotal',' %#%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24053,'pk','shipping','j%$%%[%%� %�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24054,'pk','coupon_discount',' %#%�%[%%� %�j%% %#j%�j%�%�%c%','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24055,'pk','na','N / A','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24056,'pk','in_stock','j%�j%%%c%j%� %# %��%� %Q%','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24057,'pk','buy_now','j%�j%� %[%�%� j%�j%�%�%�j%�j%��%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24058,'pk','item_added_to_your_cart','j%�j%�%c%%� j%�%[% %#�%� %c%%� %#j%�%�%� %��%� %Q% j%$%j%�%�%�!','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24059,'pk','proceed_to_checkout',' %��%� %# j%�j%�%c% %[%j%�% j%� %��%� j%� %� %[%�%� %Q%','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24060,'pk','cart_items','%c%%� %#j%�%�%� j%�j%$%�%�j%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24061,'pk','1_my_cart','1. %��%�j%�%�%� %c%%� %#j%�%�%�','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24062,'pk','view_cart','%c%%� %#j%�%�%� j%��%� %# %[%�%� %Q%','2021-02-09 08:39:27','2021-09-20 07:30:20'),(24063,'pk','2_shipping_info','2. j%$%%[%%� %� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24064,'pk','checkout','j%�j%% %#%� j%��%� %# %[%%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24065,'pk','3_delivery_info','3. %�j%�%j%��%�%��%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24066,'pk','4_payment','4. j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24067,'pk','5_confirmation','5. j%�j%a%j%��%�%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24068,'pk','remove','j%�%�j%�%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24069,'pk','return_to_shop','%�j%�%[%j%% j%� %#j%�%� %[%j%�%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24070,'pk','continue_to_shipping','j%$%%[%%� %� j%�j%�j%�%�%� j%�% %# %[%�%� %Q%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24071,'pk','or','�%�j%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24072,'pk','guest_checkout','%��%�%�j%�%� %��%� %# j%�j%�%c%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24073,'pk','continue_to_delivery_info','%�j%�%j%��%�%��%� j%%�%� %�j%�j%c%%�%� %�j%c%%�%�%�j%�j%� j%� %# j%�j%�j%�%�%� j%�% %# %[%�%� %Q%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24074,'pk','postal_code',' %�j%� %# %#j%�%�j%�j%a%%�j%a% %�%�j%�j%�%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24075,'pk','choose_delivery_type','j%�j%�%j%%�%�%� %#�%� %�j%%%� %#j%� j%�%�j%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24076,'pk','local_pickup','%�%�j%�%��%� j%�%c% %[%j%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24077,'pk','select_your_nearest_pickup_point','j%�%[%%�j%� %�j%�%�%�j%��%� %[% %# j%�%[% %[%%�j%�j%�%�%c% %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24078,'pk','continue_to_payment','j%�j%�j%�j%��%� %��%� j%�j%�j%�%�%� j%�% %# %[%�%� %Q%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24079,'pk','select_a_payment_option','j%�j%�j%�j%��%� %��%� %#j%� j%�j%�j%��%�j%�j%�% %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24080,'pk','razorpay','j%�j%%j%�j%�%j%�%[%�%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24081,'pk','paystack','%[%�%� j%�j%%%c%�%� %#','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24082,'pk','voguepay','%�%� %� %[%�%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24083,'pk','payhere','j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:28','2021-02-09 08:39:28'),(24084,'pk','ngenius','ngenius','2021-02-09 08:39:28','2021-02-09 08:39:28'),(24085,'pk','paytm','%[%�%� %c%�%� j%��%�%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24086,'pk','cash_on_delivery','j%�j%�j%�j%��%� %��%� %�j%a%%�%��%� %#�%� %�%�j%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24087,'pk','your_wallet_balance_','j%�%[% %#�%� j%�%c%%��%� %#j%� j%��%�%�%�j%%:','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24088,'pk','insufficient_balance','%�j%� %#j%�%��%� j%�%�j%�j%�%%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24089,'pk','i_agree_to_the','%��%� %Q% %�j%�%�%� �%�%� %Q%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24090,'pk','complete_order','%� %#%�%� j%�j%�% %�j%�%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24091,'pk','summary','j%�%�j%�j%a%�%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24092,'pk','items','j%�j%$%�%�j%�j%�','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24093,'pk','total_club_point',' %#%� %#%� %[%%�j%�j%�%�%c%','2021-02-09 08:39:28','2021-09-20 07:30:20'),(24094,'pk','total_shipping',' %#%� j%$%%[%%� %�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24095,'pk','have_coupon_code_enter_here',' %#%�%[%%� %#%� %� �%��%�j%� �%��%�j%� %Q% j%�j%�j%�%� �%�%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24096,'pk','apply','j%�j%�%j%�%�j%�j%%j%� j%��%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24097,'pk','you_need_to_agree_with_our_policies','j%�%[% %#%� �%�%�j%�j%�%�%� %[%j%�%��%�j%%�%�%� %Q% j%%�%� j%�j%�%�j%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24098,'pk','forgot_password','%[%j%�j%%%�j%�% %� j%� %[%%�%� %��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24099,'pk','seo_setting','SEO %#�%� j%�j%�%j%��%�j%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24100,'pk','system_update','j%%j%%%c%%� j%�%[% %��%�%c%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24101,'pk','add_new_payment_method','j%�j%�j%�j%��%� %��%� %#j%� %��%�j%� j%V%j%�%�%�%��%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24102,'pk','manual_payment_method','j%�j%%j%��%� j%�j%�j%�j%��%� %��%� %#j%� j%V%j%�%�%�%��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24103,'pk','heading','j%%j%�%j%��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24104,'pk','logo','%�%� %�%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24105,'pk','manual_payment_information','j%�j%%j%��%� j%�j%�j%�j%��%� %��%� j%%�%� %�j%�j%c%%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24106,'pk','type','%c%j%�j%�%[% %#j%�%�%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24107,'pk','custom_payment',' %#j%%%c%%� j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24108,'pk','check_payment','j%�j%�j%�j%��%� %��%� %��%� %# %#j%�%�%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24109,'pk','checkout_thumbnail',' %��%� %# j%�j%�%c% j%� %[%%�j%� %��%�%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24110,'pk','payment_instruction','j%�j%�j%�j%��%� %��%� %#�%� �%�j%�j%��%�j%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24111,'pk','bank_information','j%��%�%� %# %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24112,'pk','select_file','%�j%�j%�%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24113,'pk','upload_new','%��%�j%� j%�%[% %�%� %� %#j%�%�%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24114,'pk','sort_by_newest','%�j%��%� %#�%� %�j%�j%�j%U% j%%�%� j%�j%�%j%��%�j%� j%��%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24115,'pk','sort_by_oldest','j%%j%� j%%�%� %�j%��%�%� %#�%� %�j%�j%�j%U% j%%�%� j%�j%�%j%��%�j%� j%��%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24116,'pk','sort_by_smallest',' %� %[%%�%c%�%� j%%�%� j%�j%�%j%��%�j%� j%��%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24117,'pk','sort_by_largest','j%%j%� j%%�%� j%� %��%� %#�%� %�j%�j%�j%U% j%%�%� j%�j%�%j%��%�j%� j%��%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24118,'pk','selected_only','j%a%j%�%%� %�%�j%�j%�j%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24119,'pk','no_files_found',' %#%�j%��%� %�j%�j%�%� %��%��%� %Q% %�%��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24120,'pk','0_file_selected','0 %�j%�j%�%� %�%�j%�j%�j%� %#�%� %�j%��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24121,'pk','clear','j%a%j%�%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24122,'pk','prev','%[% %� %[%%�j%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24123,'pk','next','j%� %�%��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24124,'pk','add_files','%�j%�j%�%��%� %Q% j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24125,'pk','method_has_been_inserted_successfully','j%V%j%�%�%�%��%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�%� %#j%�%j%��%�j%� %��%�j%� �%��%�','2021-02-09 08:39:29','2021-09-20 07:30:20'),(24126,'pk','order_date','j%�j%�% %�j%�% %#�%� j%�j%�j%�%�%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24127,'pk','bill_to',' %#j%� j%�%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24128,'pk','sub_total','j%%j%� %c%%�%c%%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24129,'pk','total_tax',' %#%� %c%�%� %#j%%','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24130,'pk','grand_total','%�j%�%�%�j%c%�%� j%c%j%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24131,'pk','your_order_has_been_placed_successfully_please_submit_payment_information_from_purchase_history','j%�%[% %#j%� j%�j%�% %�j%�% %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%��%�j%� %��%�j%� �%��%��%� j%�j%�%j%��%� %#j%�%%� j%�j%�%�%�j%�j%�j%�%�%� %#�%� j%�j%�j%�%�%�j%� j%%�%� j%�j%�j%�j%��%� %��%� %#�%� %�j%c%%�%�%�j%�j%� j%�%�j%c% %#j%�%%�j%�j%��%� %Q%','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24132,'pk','thank_you_for_your_order','j%�%[% %#�%� j%�j%�% %�j%�% %#�%� %�j%��%� j%�%[% %#j%� j%$% %#j%�%�%��%�!','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24133,'pk','order_code','j%�j%�% %�j%�% %#%� %�:','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24134,'pk','a_copy_or_your_order_summary_has_been_sent_to','j%��%� %# %#j%�%[%�%� �%�j%� j%�%[% %#�%� j%�j%�% %�j%�% %#j%� j%%%�j%�%�%� j%�j%�%j%%j%�%� %#j%�%j%��%� %�j%��%� �%��%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24135,'pk','make_payment','j%�j%�j%�j%��%� %��%� %#j%�%%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24136,'pk','payment_screenshot','j%�j%�j%�j%��%� %��%� j%�j%% %#j%�%�%�%� j%$%j%�%c%','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24137,'pk','paypal_credential','%[%�%� %[%j%�%� j%%%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24138,'pk','paypal_client_id','%[%�%� %[%j%�%� %#%�j%�j%�%�%c% %#�%� j%$%%�j%�j%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24139,'pk','paypal_client_secret','%[%�%� %[%j%�%� %#%�j%�j%�%�%c% %#j%� j%�%��%��%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24140,'pk','paypal_sandbox_mode','%[%�%� %[%j%�%� j%%�%�%� %� j%�j%� %#j%% %�j%b%j%c%','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24141,'pk','sslcommerz_credential','Sslcommerz j%�j%%%�j%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24142,'pk','sslcz_store_id','Sslcz j%�j%%%c%%�j%�% %#�%� j%$%%�j%�j%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24143,'pk','sslcz_store_password','Sslcz j%�j%%%c%%�j%�% %[%j%�j%% %�j%�% %�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24144,'pk','sslcommerz_sandbox_mode','Sslcommerz Sandbox %�j%b%j%c%','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24145,'pk','stripe_credential','%[%%c%�%� j%%%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24146,'pk','stripe_key','j%%%c%j%�%%[% %#%��%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24147,'pk','stripe_secret','j%%%c%j%�%%[% j%%�%� %#j%�%�%�%c%','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24148,'pk','razorpay_credential','j%�j%%j%�j%�%j%�%[%�%� j%�j%%%�j%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24149,'pk','razor_key','RAZOR KEY','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24150,'pk','razor_secret','RAZOR j%%�%� %#j%�%%c%','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24151,'pk','instamojo_credential','j%�%�j%%%c%�%�%�%�j%�%� j%�j%%%�j%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24152,'pk','api_key','API %#%��%�j%�','2021-02-09 08:39:30','2021-09-20 07:30:20'),(24153,'pk','im_api_key','IM API KEY','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24154,'pk','auth_token','j%��%�j%� %[% %c%%� %#%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24155,'pk','im_auth_token','IM j%�j%� %[% %# %c%%� %#%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24156,'pk','instamojo_sandbox_mode','j%�%�j%%%c%j%�%�%�j%�%� j%%�%�%� %� j%�j%� %#j%% %�j%b%j%c%','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24157,'pk','paystack_credential','%[%�%� j%�j%%%c%�%� %# %#�%� j%%%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24158,'pk','public_key','%[%j%�%� %# %#%��%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24159,'pk','secret_key','j%%�%� %#j%�%%c% %#%��%�j%��%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24160,'pk','merchant_email','%�j%�% %�%�%c% j%��%� %��%�%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24161,'pk','voguepay_credential','%�%� %� %[%�%� %#�%� j%�j%%%�j%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24162,'pk','merchant_id','%�j%�% %�%�%c% ID','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24163,'pk','sandbox_mode','j%%�%�%� %� j%�j%� %#j%% %�j%b%j%c%','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24164,'pk','payhere_credential','j%�j%�j%�j%��%� %��%� %#�%� j%%%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24165,'pk','payhere_merchant_id','j%�j%�%j%��%� %#j%�%%� %�j%�% %�%�%c% %#�%� j%$%%�j%�j%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24166,'pk','payhere_secret','j%�j%�j%� j%%�%� %#j%�%�%�%c%j%�%�%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24167,'pk','payhere_currency','j%�j%�j%�j%��%� %��%� %#�%� %#j%�%�%�j%%�%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24168,'pk','payhere_sandbox_mode','%[%�%��%�j%�% j%%�%�%� %� j%�j%� %#j%% %�j%b%j%c%','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24169,'pk','ngenius_credential','%� %��%�%��%�%�j%% j%%%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24170,'pk','ngenius_outlet_id','NGENIUS OUTLET ID','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24171,'pk','ngenius_api_key','NGENIUS API %#%��%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24172,'pk','ngenius_currency','NGENIUS CURRENCY','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24173,'pk','mpesa_credential','%��%�%[%j%%j%� j%%%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24174,'pk','mpesa_consumer_key','MPESA j%a%j%�j%�%%��%�%� %#�%� %#%��%�j%�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24175,'pk','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24176,'pk','mpesa_consumer_secret','MPESA j%a%j%�j%�%%��%�%� %#j%� j%%�%� %#j%�%%c%','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24177,'pk','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24178,'pk','mpesa_short_code','MPESA j%$%j%�j%�%%c% %#%� %�','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24179,'pk','mpesa_short_code','MPESA_SHORT_CODE','2021-02-09 08:39:31','2021-09-20 07:30:20'),(24180,'pk','mpesa_sandbox_activation','MPESA j%%�%�%� %� j%�%� %#j%% j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24181,'pk','flutterwave_credential','%�%�%�%c%j%�% %��%�%� %#�%� j%�j%%%�j%�j%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24182,'pk','rave_public_key','RAVE_PUBLIC_KEY','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24183,'pk','rave_secret_key','RAVE_SECRET_KEY','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24184,'pk','rave_title','RAVE_TITLE','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24185,'pk','stagin_activation','j%%j%�% %�j%�%%��%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24186,'pk','all_product','j%�%�j%�%� %[%j%�%%� %� %#%c%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24187,'pk','sort_by',' %#�%� j%�%j%�%�%�j%c%�%� j%�j%�%j%��%�j%� j%��%� %Q%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24188,'pk','rating_high__low','j%�j%�%j%��%� j%�%�j%��%� (j%�j%c%%��%�> %#%�)','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24189,'pk','rating_low__high','j%�j%�%j%��%� j%�%�j%��%� ( %#%�> j%�j%c%%��%�)','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24190,'pk','num_of_sale_high__low','%�j%�%%�j%�j%� %#�%� j%�j%c%j%�j%�j%� (j%�j%c%%��%�> %#%�)','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24191,'pk','num_of_sale_low__high','%�j%�%%�j%�j%� %#�%� j%�j%c%j%�j%�j%� ( %#%�> j%�j%c%%��%�)','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24192,'pk','base_price_high__low','j%�%��%�j%�j%��%� %��%�%�j%� (j%�j%c%%��%�> %#%�)','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24193,'pk','base_price_low__high','j%�%��%�j%�j%��%� %��%�%�j%� ( %#%�> j%�%�%�j%�j%��%�)','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24194,'pk','type__enter','%c%j%�j%�%[% %#j%�%�%� %Q% j%�%�j%�% j%�j%�%j%� %#j%�%�%� %Q%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24195,'pk','added_by','%��%� j%$%j%�%�%� %#�%�j%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24196,'pk','num_of_sale','j%�j%�%j%�j%��%� %�j%�%%�j%�j%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24197,'pk','total_stock',' %#%� j%�j%%%c%j%� %#','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24198,'pk','todays_deal','j%�j%� %#j%� j%%%�j%�j%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24199,'pk','rating','j%�j%�%j%��%� j%�%�j%��%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24200,'pk','times','j%�%�%�j%�j%�','2021-02-09 08:39:32','2021-02-09 08:39:32'),(24201,'pk','add_nerw_product','j%�j%c%j%a%j%�j%��%� %�j%a%%�%�j%c%j%�j%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24202,'pk','product_information','%�j%a%%�%�j%c%j%�j%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24203,'pk','unit','�%�%�%�%c%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24204,'pk','unit_eg_kg_pc_etc','�%�%�%�%c% (j%��%�j%%�%� %#�%� j%��%� j%� %[%�%� j%%�%� %�j%Q%�%�j%�%�%�)','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24205,'pk','minimum_qty',' %#%� j%%�%� %#%� %�%�j%�j%�j%�%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24206,'pk','tags','%c%�%� %�j%�%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24207,'pk','type_and_hit_enter_to_add_a_tag','%c%�%� %� j%$%j%�%�%� %#j%�%%��%� %#�%�%�j%��%� %c%j%�j%�%[% %#j%�%�%� %Q% j%�%�j%�% enter %#%� j%�j%�j%�j%��%� %Q%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24208,'pk','barcode','j%�j%�j%�% %#%� %�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24209,'pk','refundable','%�j%�%[%j%%�%�','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24210,'pk','product_images','%[%j%�%%� %� %#%c% j%�%��%�j%�j%�%','2021-02-09 08:39:32','2021-09-20 07:30:20'),(24211,'pk','gallery_images',' %��%�%�j%�%�%� j%� %� %�j%�j%�%j%�j%�%��%� %#�%� j%�j%a%j%�%��%�j%�%','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24212,'pk','todays_deal_updated_successfully','j%�j%� %#j%� j%%%�j%�j%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24213,'pk','published_products_updated_successfully','j%$%j%�j%�j%c% j%$%j%��%� %�j%a%%�%�j%c%j%�j%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %�j%��%� %Q%','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24214,'pk','thumbnail_image','j%� %[%%�j%� %��%�%� j%�%��%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24215,'pk','featured_products_updated_successfully','%�%�j%��%�j%� %Q% %�j%a%%�%�j%c%j%�j%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %�j%��%� %Q%','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24216,'pk','product_videos','%[%j%�%%� %� %#%c% %��%� %��%�%�j%�%','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24217,'pk','video_provider','%��%� %��%�%� %�j%�%j%��%�%� %#%�%�j%��%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24218,'pk','youtube','�%�%�%c%�%�%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24219,'pk','dailymotion',' %��%�%��%� %�%�j%$%%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24220,'pk','vimeo','Vimeo','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24221,'pk','video_link','%��%� %��%�%� %�%� %#','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24222,'pk','product_variation','%�j%a%%�%�j%c%j%�j%� %#�%� j%�j%�j%��%�%��%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24223,'pk','colors','j%�%%� %�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24224,'pk','attributes','j%�%�j%a%j%�%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24225,'pk','choose_attributes','j%�%�j%a%j%�%� %#j%� j%�%�j%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24226,'pk','choose_the_attributes_of_this_product_and_then_input_values_of_each_attribute','j%�j%% %[%j%�%%� %� %#%c% %#�%� j%�j%a%%�j%a%�%�j%�j%� %#%� %�%�j%�j%�j%� %#j%�%�%� %Q% j%�%�j%�% %[% %[%j%�% �%�j%�% j%��%� %# %�j%a%%� %#�%� %�j%�j%�%%� %Q% %#%� j%�%� %[%%c% %#j%�%�%� %Q%','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24227,'pk','product_price__stock','%�j%a%%�%�j%c%j%�j%� %#�%� %��%�%�j%� + j%�j%%%c%j%� %#','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24228,'pk','unit_price','j%� %#j%�j%��%� %��%�%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24229,'pk','purchase_price','%��%�%�j%� j%�j%�%�%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24230,'pk','flat','%�%��%�%c%','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24231,'pk','percent','%��%�j%a%j%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24232,'pk','discount',' %� %[%%�%c%','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24233,'pk','product_description','%�j%a%%�%�j%c%j%�j%� %#�%� %�j%b%j%�j%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24234,'pk','product_shipping_cost','%�j%a%%�%�j%c%j%�j%� %#�%� j%$%%[%%� %� %�j%� %�j%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24235,'pk','free_shipping','%�%�j%� j%�j%�%j%%�%�%�','2021-02-09 08:39:33','2021-09-20 07:30:20'),(24236,'pk','flat_rate','%�%��%�%c% %#�%� j%$%j%�%j%�','2021-02-09 08:39:33','2021-09-20 07:30:21'),(24237,'pk','shipping_cost','j%$%%[%%� %� %#�%� %��%�%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:21'),(24238,'pk','pdf_specification','%[%�%� %��%� j%��%�%� j%�%�j%a%�%�%�j%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:21'),(24239,'pk','seo_meta_tags','SEO %��%�%c%j%� %c%�%� %�j%�%','2021-02-09 08:39:33','2021-09-20 07:30:21'),(24240,'pk','meta_title','%��%�%c%j%� %c%j%�j%�%c%%�','2021-02-09 08:39:33','2021-09-20 07:30:21'),(24241,'pk','meta_image','%��%�%c%j%� j%�%��%�j%�','2021-02-09 08:39:33','2021-09-20 07:30:21'),(24242,'pk','choice_title',' %�%�j%�j%�j%% %#j%� j%c%%�%�j%�%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24243,'pk','enter_choice_values','j%�%�j%�j%�j%�j%� %#�%� %�j%�j%�% j%�j%�%j%� %#j%�%�%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24244,'pk','all_categories','j%�%�j%�%� j%�%%�j%�%�%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24245,'pk','add_new_category','%�j%��%� %�j%%%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24246,'pk','type_name__enter','%�j%�%� j%�%�j%�% j%�%�j%�j%�%j%�j%� %c%j%�j%�%[% %#j%�%�%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24247,'pk','banner','j%��%�%�j%�%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24248,'pk','commission',' %#%��%�j%$%%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24249,'pk','icon','j%�j%��%� %#%�','2021-02-09 08:39:34','2021-02-09 08:39:34'),(24250,'pk','featured_categories_updated_successfully','%�%�j%��%�j%� %Q% %�j%%%��%� %Q% %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %�j%��%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24251,'pk','hot',' %�j%�%%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24252,'pk','filter_by_payment_status','j%�j%�j%�j%��%� %��%� %#�%� j%��%�j%��%�j%� j%%�%� %�%�%c%j%�% %#j%�%�%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24253,'pk','unpaid','j%Q%�%�j%�% j%�j%�j%�j%��%� %��%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24254,'pk','filter_by_deliver_status','%�%�%c%j%�% j%�j%�%j%�%�%�j%c%�%� j%�j%�%j%%�%�%� %#�%� j%��%�j%��%�j%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24255,'pk','pending','j%�%�%�j%�% j%�%�j%�%�j%�j%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24256,'pk','type_order_code__hit_enter','j%�j%�% %�j%�% %#%� %� %c%j%�j%�%[% %#j%�%�%� %Q% j%�%�j%�% j%�%�%c%j%�% %#%� j%�j%�j%�j%��%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24257,'pk','num_of_products','%�%�j%�j%�% %�j%a%%�%�j%c%j%�j%� %#�%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24258,'pk','walk_in_customer','%�j%� %# j%�%� %#j%%%c%%�j%�%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24259,'pk','qty','QTY','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24260,'pk','without_shipping_charge','j%$%%[%%� %� %�j%�j%�%j%� %#�%� j%�j%Q%�%�j%�%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24261,'pk','with_shipping_charge','j%$%%[%%� %� %�j%�j%�%j%� %#�%� j%%j%�j%� %[%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24262,'pk','pay_with_cash',' %#�%�j%$% %#�%� j%%j%�j%� %[% j%�j%�j%�j%��%� %��%� %#j%�%�%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24263,'pk','shipping_address','j%$%%[%%� %� j%��%� %�j%�%�%�j%%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24264,'pk','close','j%�%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24265,'pk','select_country','%�%� %# %#j%� j%�%�j%�j%�j%�j%� %#�%�j%�j%��%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24266,'pk','order_confirmation','j%�j%�% %�j%�% %#�%� j%�j%a%j%��%�%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24267,'pk','are_you_sure_to_confirm_this_order',' %#�%�j%� j%�%[% %�j%�%�j%c%�%� j%�j%% j%�j%�% %�j%�% %#�%� j%�j%a%j%��%�%� %#j%�% j%�%�%��%� �%��%� %Q%j%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24268,'pk','comfirm_order','j%�j%�% %�j%�% %#�%� j%�j%a%j%��%�%� %#j%�%�%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24269,'pk','personal_info','j%�%j%�j%��%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24270,'pk','repeat_password','%[%j%�j%% %�j%�% %� j%�%�j%�j%�j%�%�%� %� %# %[%�%��%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24271,'pk','shop_name','j%� %#j%�%� %#j%� %�j%�%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24272,'pk','register_your_shop','j%�%[%%��%� j%� %#j%�%� %#j%� j%�%�j%�j%�%j%�j%� %#j%�%%�j%�j%��%� %Q%','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24273,'pk','affiliate_informations','%�%�j%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:34','2021-09-20 07:30:21'),(24274,'pk','affiliate','%�%�j%�%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24275,'pk','user_info','j%a%j%�j%�%%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24276,'pk','installed_addon','j%�%�j%%%c%j%�%� j%� %�%�%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24277,'pk','available_addon','j%�j%%j%��%�j%�j%� j%� %�%�%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24278,'pk','install_new_addon','%��%�j%� j%� %�%�%� j%�%�j%%%c%j%�%� %#j%�%�%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24279,'pk','version','%�j%�% %�%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24280,'pk','activated',' %�j%�%�%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24281,'pk','deactivated','j%Q%�%�j%�% %�j%c%j%�%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24282,'pk','activate_otp','j%�%� %c%�%� %[%�%� %#%� %�j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24283,'pk','otp_will_be_used_for','OTP j%�j%%j%�j%c%%�j%�%� %#�%�j%� j%�j%�j%��%� %�j%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24284,'pk','settings_updated_successfully','j%�j%�%j%��%�j%�j%�j%� %#j%�%��%�j%�j%��%� j%%�%� j%�%[% %��%�%c% �%�%� %�j%��%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24285,'pk','product_owner','%�j%a%%�%�j%c% %#j%� %�j%�%� %#','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24286,'pk','point','%[%%�j%�j%�%�%c%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24287,'pk','set_point_for_product_within_a_range','j%��%� %# j%�j%� %#�%� j%�%�j%�j%�% j%�%�j%�j%�% %�j%a%%�%�j%c% %#�%� %�j%��%� %[%%�j%�j%�%�%c% %�j%�%j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24288,'pk','set_point_for_multiple_products','%�j%�j%c%j%�j%� %�j%a%%�%�j%c%j%�j%� %#�%� %�j%��%� %[%%�j%�j%�%�%c% %�j%�%j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24289,'pk','min_price',' %#%� j%%�%� %#%� %��%�%�j%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24290,'pk','max_price','j%�%�%�j%�j%��%� j%%�%� j%�%�%�j%�j%��%� %��%�%�j%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24291,'pk','set_point_for_all_products','j%�%�j%�%� %�j%a%%�%�j%c%j%�j%� %#�%� %�j%��%� %[%%�j%�j%�%�%c% %�j%�%j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24292,'pk','set_point_for_','%[%%�j%�j%�%�%c% %[%%�j%�j%�%�%c% j%�j%�%j%�j%��%� j%%�%�%c% %#j%�%�%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24293,'pk','convert_status','j%�j%�%�j%� j%�j%�j%��%�%� %#j%�%�%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24294,'pk','earned_at',' %#%�j%�j%��%� %�j%��%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24295,'pk','seller_based_selling_report','%�j%�%%�j%�j%� %#%�%�j%��%� %[%j%�% %�j%�%��%� %�j%�%%�j%�j%� %#�%� j%�%%[%%�j%�%%c%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24296,'pk','sort_by_verificarion_status','%�j%�% %#�%�j%�j%�%j%��%�%� j%��%�j%��%�j%� %#�%� %�j%�j%�j%U% j%%�%� j%�j%�%j%��%�j%� j%��%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24297,'pk','approved','%�%�j%U%%�j%�%j%$%j%��%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24298,'pk','non_approved','j%Q%�%�j%�% %�%�j%U%%�j%�% j%$%j%��%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24299,'pk','filter','%�%�%c%j%�% %#j%�%�%� %Q%','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24300,'pk','seller_name','j%��%� %�%��%� %�j%�%��%� %#j%� %�j%�%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24301,'pk','number_of_product_sale','%�j%a%%�%�j%c% %#�%� %�j%�%%�j%�j%� %#�%� j%�j%c%j%�j%�j%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24302,'pk','order_amount','j%�j%�% %�j%�% %#�%� j%�%%�%�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24303,'pk','facebook_chat_setting','%��%�j%% j%� %# %��%�%c% j%%�%�%c%%� %�','2021-02-09 08:39:35','2021-09-20 07:30:21'),(24304,'pk','facebook_page_id','%��%�j%% j%� %# %[%�%�j%� j%�j%��%� %��%�','2021-02-09 08:39:36','2021-09-20 07:30: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','j%�j%� j%�%[% %��%�j%% j%� %# %��%�%c% %#%� j%�j%$% %#�%�%� j%��%� j%�%�%��%� �%��%� %Q% j%�%� j%�j%�%j%��%� %#j%�%%� %�j%�j%�j%�j%V% j%�%�%��%� %Q%�%� j%Q%%�j%V% %#%�%��%� %�j%�%�%�j%$%%� %#�%� %� you j%�%[% %#%� j%a%j%�j%�%%� %#�%� j%�j%�j%�% j%%j%�j%�%c% %[%j%�% %��%�j%%%�j%�j%�% j%�j%��%� %#%� %��%��%� %Q% %�%��%� %�j%��%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24306,'pk','login_into_your_facebook_page','j%�%[%%��%� %��%�j%% j%� %# %[%�%�j%� %��%� %Q% %�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24307,'pk','find_the_about_option_of_your_facebook_page','j%�%[%%��%� %��%�j%% j%� %# %[%�%�j%� %#�%� j%�j%�j%�%�%� %��%� %Q% j%�%[%j%$%%� j%�%�j%�j%$% %#j%�%�%� %Q%','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24308,'pk','at_the_very_bottom_you_can_find_the_facebook_page_id','j%�j%�%� %#%� %��%� %��%� j%� j%�%[% %#%� \\ \"%��%�j%% j%� %# %[%�%�j%� ID \\\" %�%� j%% %#j%�j%� �%��%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24309,'pk','go_to_settings_of_your_page_and_find_the_option_of_advance_messaging','j%�%[%%��%� j%a%%�j%��%� %#�%� j%�j%�%j%��%�j%�j%�j%� %[%j%�% j%�j%�j%��%� %Q% j%�%�j%�% \\ \"j%��%� %�%�j%�%�j%% %[%�%�j%Q%j%�%� j%�%j%%j%�%��%� \\\" %#j%� j%�%[%j%$%%� j%�%�j%�j%$% %#j%�%�%� %Q%�%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24310,'pk','scroll_down_that_page_and_you_will_get_white_listed_domain','j%�j%% j%a%%�j%��%� %#%� %��%� %��%� j%�j%% %#j%�%%�%� %#j%�%�%� %Q% j%�%�j%�% j%�%[% %#%� white \"j%%%��%�j%� j%�j%�%j%� j%$%j%��%� %�%�%��%�%� \\\" %�%��%� %�j%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24311,'pk','set_your_website_domain_name','j%�%[%%��%� %��%�j%� j%%j%�j%�%c% %#j%� %�%�%��%�%� %�j%�%� %�j%�j%c%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24312,'pk','google_recaptcha_setting',' %�%� %�%� j%�%�%� %#j%�%c%j%� j%%�%�%c%%� %�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24313,'pk','site_key','j%%j%�j%�%c% KEY','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24314,'pk','select_shipping_method','j%$%%[%%� %� %#j%� j%V%j%�%�%�%��%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24315,'pk','product_wise_shipping_cost','%�j%a%%�%�j%c%j%�j%� %#�%� %�j%V%j%�j%�%� j%$%%[%%� %� %�j%� %�j%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24316,'pk','flat_rate_shipping_cost','%�%��%�%c% j%�%�%�%c% j%$%%[%%� %� %�j%� %�j%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24317,'pk','seller_wise_flat_shipping_cost','j%��%� %�%��%� %�j%�%��%� %#�%� %�j%V%j%�j%�%� %�%��%�%c% j%$%%[%%� %� %�j%� %�j%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24318,'pk','note','%�%�%c%','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24319,'pk','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','%[%j%�%%� %� %#%c% %#�%� j%�j%%j%�j%� j%%�%� j%$%%[%%� %� %�j%� %�j%� %#j%� j%�j%%j%�j%� %#j%�j%�j%�: �%�j%�% j%%j%�%�j%�%� %#�%� j%$%%[%%� %� %�j%� %�j%� %#�%� j%�j%b%j%�%��%� %#�%� j%�%j%�%�%�j%c%�%� j%$%%[%%� %� %�j%� %�j%� %#j%� j%�j%%j%�j%� %� %�j%��%�j%� j%�j%�j%�j%� �%��%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24320,'pk','flat_rate_shipping_cost_calulation_how_many_products_a_customer_purchase_doesnt_matter_shipping_cost_is_fixed','%�%��%�%c% j%�%�%�%c% j%$%%[%%� %� %�j%� %�j%� %#j%� j%�j%%j%�j%� %#j%�j%�j%�: %#j%%%c%%�j%�% %#�%� %#j%�%��%� %�j%a%%�%�j%c%j%�j%� j%�j%�%�%�j%�j%�j%�%�%� %#j%�%j%��%� �%��%� %Q% j%� j%�j%% j%%�%� %#%�j%��%� %�j%�%%� %��%��%� %Q% %[% %�j%�j%� �%��%��%� j%$%%[%%� %� %�j%� %�j%� j%V%�%� �%��%�','2021-02-09 08:39:36','2021-09-20 07:30: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','j%��%� %�%��%� %�j%�%��%� %#�%� %�j%V%j%�j%�%� %�%��%�%c% j%$%%[%%� %� %�j%� %�j%� %#j%� j%�j%%j%�j%� %#j%�j%�j%�: �%�j%�% %�j%�%%�j%�j%� %#%�%�j%��%� %#�%� %�j%��%� %�%�j%�%j%�%�%� j%$%j%�%j%��%� j%� %�j%�% %#%�j%��%� j%a%j%�j%�%%� j%�%� j%��%� %�%��%� %�j%�%��%� %#�%� j%$%%[%%� %� %�j%� %�j%� j%%�%� 2 %�j%a%%�%�j%c%j%�j%� j%�j%�%�%�j%�j%�j%� �%��%� j%�%� �%�j%�% j%��%� %�%��%� %�j%�%��%� %#�%� %�%��%�%c% j%$%%[%%� %� %�j%� %�j%� %#�%� j%�j%b%j%�%��%� %#�%� j%�j%%j%�j%� j%%�%� j%�j%% %#j%� j%�j%%j%�j%� %#j%�j%�j%� %#�%�j%� j%�j%�j%�j%� �%��%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24322,'pk','flat_rate_cost','%�%��%�%c% j%�%�%�%c% %�j%� %�j%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24323,'pk','shipping_cost_for_admin_products','j%��%� %�%�%� %�j%a%%�%�j%c%j%�j%� %#�%� %�j%��%� j%$%%[%%� %� %�j%� %�j%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24324,'pk','countries','%�%�j%�%� %#','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24325,'pk','showhide','j%� %# %[%j%�%�j%� %� %[%%[%j%�%�j%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24326,'pk','country_status_updated_successfully','%�%� %#�%� j%��%�j%��%�j%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %�j%��%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24327,'pk','all_subcategories','j%�%�j%�%� j%�%�%�%��%� j%�%%�j%�%�%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24328,'pk','add_new_subcategory','%�j%��%� j%�%�%�%��%� j%�%%�j%�%�%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24329,'pk','subcategories','j%�%�%�%��%� j%�%%�j%�%�%�','2021-02-09 08:39:36','2021-09-20 07:30:21'),(24330,'pk','sub_category_information','j%�%�%�%��%� j%�%%�j%�%�%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:40:43','2021-09-20 07:30:21'),(24331,'pk','slug','j%%%� %�','2021-02-09 08:40:43','2021-09-20 07:30:21'),(24332,'pk','all_sub_subcategories','j%%j%� j%�%�%�%��%� j%�%%�j%�%�%� j%�j%�j%�','2021-02-09 08:40:43','2021-09-20 07:30:21'),(24333,'pk','add_new_sub_subcategory','%��%�j%� j%�%�%�%��%� j%�%�%�%��%� j%�%%�j%�%�%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:43','2021-09-20 07:30:21'),(24334,'pk','subsubcategories','j%�%�%�%��%� j%�%�%�%��%� j%�%%�j%�%�%�','2021-02-09 08:40:43','2021-09-20 07:30:21'),(24335,'pk','make_this_default','j%�j%% %#%� %[%�%�%��%� j%%�%� j%V%�%� %#j%�%�%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24336,'pk','shops','j%� %#j%�%��%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24337,'pk','women_clothing__fashion','j%�%�j%�j%��%�%� %#�%� %�j%�j%�j%% j%�%�j%�% %��%�j%$%%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24338,'pk','cellphones__tabs','j%%�%�%� %�%�%�j%�% j%�%�j%�% %c%�%�j%�j%�%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24339,'pk','welcome_to','%��%� %Q% j%�%�j%$% j%�%�j%��%�j%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24340,'pk','create_a_new_account','%��%�j%� j%� %#j%�j%�%�%c% j%�%�j%�j%��%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24341,'pk','full_name','%[%%�j%�%j%� %�j%�%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24342,'pk','password','%[%j%�j%% %�j%�% %�','2021-02-09 08:40:44','2021-02-09 08:40:44'),(24343,'pk','confrim_password','j%�j%a%j%��%�%��%� %[%j%�j%% %�j%�% %�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24344,'pk','i_agree_with_the','%��%� %Q% j%�j%% j%%�%� %�j%�%�%� �%�%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24345,'pk','terms_and_conditions','j%$%j%�%j%�j%�j%V% %� j%b%%�j%�j%�j%V%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24346,'pk','register','j%�%j%�j%%%c%j%�% %#j%�%�%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24347,'pk','already_have_an_account','%[%�%�%��%� j%%�%� �%��%� j%��%� %# j%� %#j%�j%�%�%c% �%��%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24348,'pk','sign_up_with',' %#�%� j%%j%�j%� %[% j%%j%�j%�%� j%�%[% %#j%�%�%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24349,'pk','i_agree_with_the_terms_and_conditions','%��%� %Q% j%$%j%�%j%�j%�j%V% %� j%b%%�j%�j%�j%V% j%%�%� j%�j%�%�j%�%� %#j%�%j%�j%� �%�%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24350,'pk','all_role','j%�%�j%�%� %#j%�%j%�j%�j%�%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24351,'pk','add_new_role','%��%�j%� %#j%�%j%�j%�j%�% j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24352,'pk','roles',' %#j%�%j%�j%�j%�%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24353,'pk','add_new_staffs','%��%�j%� j%c%%�%��%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24354,'pk','role',' %#j%�%j%�j%�j%�%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24355,'pk','frontend_website_name','%�j%�%%�%c% j%��%�%� %� %��%�j%� j%%j%�j%�%c% %#j%� %�j%�%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24356,'pk','website_name','%��%�j%� j%%j%�j%�%c% %#j%� %�j%�%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24357,'pk','site_motto','j%%j%�j%�%c% %#j%� %�%�j%a%j%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24358,'pk','best_ecommerce_website','j%��%� %#j%�%�j%�%j%% %#�%� j%��%�j%�j%�%�%�%� %��%�j%� j%%j%�j%�%c%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24359,'pk','site_icon','j%%j%�j%�%c% %#j%� %�j%$%j%�%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24360,'pk','website_favicon_32x32_png','%��%�j%� j%%j%�j%�%c% %��%�j%� j%%j%�j%�%c%. 32x32 .png','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24361,'pk','website_base_color','%��%�j%� j%%j%�j%�%c% j%��%�j%% j%�%%� %��%�%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24362,'pk','hex_color_code','�%��%� %#j%% j%�%%� %��%�%� %#%� %�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24363,'pk','website_base_hover_color','%��%�j%� j%%j%�j%�%c% j%��%�j%% �%�%�%�j%�% j%�%%� %��%�%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24364,'pk','update','j%�%[% %��%�%c%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24365,'pk','global_seo','j%c%j%�%�%��%� SEO','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24366,'pk','meta_description','%��%�%c%j%� %#�%� j%�%�j%a%�%�%�','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24367,'pk','keywords','%�j%V%%�%�j%��%� j%�%�%�j%�j%U%','2021-02-09 08:40:44','2021-09-20 07:30:21'),(24368,'pk','separate_with_coma',' %#%�%�j%� %#�%� j%%j%�j%� %[% j%�%� %� %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24369,'pk','website_pages','%��%�j%� j%%j%�j%�%c% j%a%%�j%�j%�j%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24370,'pk','all_pages','j%�%�j%�%� j%a%%�j%�j%�j%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24371,'pk','add_new_page','%��%�j%� j%a%%�j%��%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24372,'pk','url','�%�%� j%�j%�% j%��%�%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24373,'pk','actions','j%c%%�%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24374,'pk','edit_page_information','j%a%%�j%��%� %#�%� %�j%c%%�%�%�j%�j%� %��%� %Q% j%�j%�%%��%�%� %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24375,'pk','page_content','j%a%%�j%��%� %#j%� %�%�j%�j%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24376,'pk','title','j%c%%�%�j%�%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24377,'pk','link','%�%� %#','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24378,'pk','use_character_number_hypen_only','j%a%j%�%%� j%�j%�%%� j%� %�%�j%�j%�% j%� �%�j%�j%�%[%�%�%� j%�j%%j%�j%c%%�j%�%� %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24379,'pk','add_content','%�%�j%�j%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24380,'pk','seo_fields','SEO %#�%� %��%�%� %�j%�%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24381,'pk','update_page','j%a%%�j%��%� %#%� j%�%[% %��%�%c% %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24382,'pk','default_language','%[%�%�%��%� j%%�%� j%V%�%� j%$%j%��%� j%�%j%�j%�%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24383,'pk','add_new_language','%�j%��%� j%�%j%�j%�%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24384,'pk','rtl','j%�j%�% %c%�%� j%��%�%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24385,'pk','translation','j%�j%�%j%�%��%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24386,'pk','language_information','j%�%j%�j%�%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24387,'pk','save_page','j%a%%�j%��%� %�j%�%�%�j%U% %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24388,'pk','home_page_settings','�%�%�%� %[%�%�j%� %#�%� j%�j%�%j%��%�j%�j%�j%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24389,'pk','home_slider','�%�%�%� j%%%�j%�j%��%� %�j%�%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24390,'pk','photos__links','%�%�%c%%� j%�%�j%�% %�%� %#j%%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24391,'pk','add_new','%��%�j%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24392,'pk','home_categories','�%�%�%� j%�%%�j%�%�%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24393,'pk','home_banner_1_max_3','�%�%�%� j%��%�%�j%�% 1 (j%�%�%�j%�j%��%� j%%�%� j%�%�%�j%�j%��%� 3)','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24394,'pk','banner__links','j%��%�%�j%�% j%�%�j%�% %�%� %#j%%','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24395,'pk','home_banner_2_max_3','�%�%�%� j%��%�%�j%�% 2 (j%�%�%�j%�j%��%� j%%�%� j%�%�%�j%�j%��%� 3)','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24396,'pk','top_10','%c%j%�%[% 10','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24397,'pk','top_categories_max_10','j%�j%c%%��%� %�j%%%��%� %Q% (j%�%�%�j%�j%��%� j%%�%� j%�%�%�j%�j%��%� 10)','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24398,'pk','top_brands_max_10','j%�j%c%%��%� j%�j%�%j%�%� %�j%�% (j%�%�%�j%�j%��%� j%%�%� j%�%�%�j%�j%��%� 10)','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24399,'pk','system_name','j%%j%%%c%%� %#j%� %�j%�%�','2021-02-09 08:40:45','2021-09-20 07:30:21'),(24400,'pk','system_logo__white','j%%j%%%c%%� %#j%� %�%� %�%��%� j%%%��%�j%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24401,'pk','choose_files','%�j%�j%�%��%� %Q% %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24402,'pk','will_be_used_in_admin_panel_side_menu','j%��%� %�%�%� %[%�%�%�%� j%%j%�j%��%� %� %��%�%�%� %��%� %Q% j%�j%%j%�j%c%%�j%�%� �%�%� %�j%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24403,'pk','system_logo__black','j%%j%%%c%%� %�%� %�%� - j%%�%�j%��%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24404,'pk','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','%�%�j%�j%�j%�%� + j%��%� %�%�%� %�j%� %� j%�%� j%a%%�j%��%� %��%� %Q% j%��%� %�%�%� %[%�%�%�%� %c%j%�%[% j%�j%�j%�% %��%� %Q% j%�j%%j%�j%c%%�j%�%� �%�%� %�j%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24405,'pk','system_timezone','j%%j%%%c%%� %c%j%�j%�%� j%�%%�%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24406,'pk','admin_login_page_background','j%��%� %�%�%� %�j%� %� j%�%� j%a%%�j%��%� %#j%� %[%j%% %�%�j%U%j%�%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24407,'pk','website_header','%��%�j%� j%%j%�j%�%c% �%��%� %�j%�%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24408,'pk','header_setting','�%��%� %�j%�% %#�%� j%�j%�%j%��%�j%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24409,'pk','header_logo','�%��%� %�j%�% %�%� %�%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24410,'pk','show_language_switcher','j%�%j%�j%�%� j%�j%�j%��%�%� %#j%�%%��%� %�j%�%�j%� j%� %# %[%j%�j%��%� %Q%j%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24411,'pk','show_currency_switcher',' %#j%�%%�j%%�%� %�j%�j%�%� j%� %# %[%j%�j%��%� %Q%j%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24412,'pk','enable_stikcy_header','j%�j%%%c% %#�%� �%��%� %�j%�% %#%� %�j%c%j%�%� %#j%�%�%� %Q%j%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24413,'pk','website_footer','%��%�j%� j%%j%�j%�%c% %�%�%c%j%�%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24414,'pk','footer_widget','%�%�%c%j%�% %��%�j%��%�%c%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24415,'pk','about_widget','%��%�j%��%�%c% %#�%� j%�j%�j%�%�%� %��%� %Q%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24416,'pk','footer_logo','%�%�%c%j%�% %�%� %�%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24417,'pk','about_description','j%�%�j%a%�%�%� %#�%� j%�j%�j%�%�%� %��%� %Q%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24418,'pk','contact_info_widget','j%�%j%�j%�j%V%�%� %��%�j%��%�%c% j%%�%� j%�%j%�j%�j%V%�%� %#j%�%�%� %Q%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24419,'pk','footer_contact_address','%�%�%c%j%�% j%%�%� j%�%j%�j%�j%V%�%� j%��%� %�j%�%�%�j%%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24420,'pk','footer_contact_phone','%�%�%c%j%�% j%�%j%�j%�j%V%�%� %�%�%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24421,'pk','footer_contact_email','%�%�%c%j%�% j%%�%� j%�%j%�j%�j%V%�%� j%��%� %��%�%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24422,'pk','link_widget_one','%�%� %# %��%�j%��%�%c% j%��%� %#','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24423,'pk','links','%�%� %#j%%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24424,'pk','footer_bottom','%�%�%c%j%�% %��%� %��%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24425,'pk','copyright_widget_',' %#j%�%[%�%� j%�%j%�j%�%c% %��%�j%��%�%c%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24426,'pk','copyright_text',' %#j%�%[%�%� j%�%j%�j%�%c% %c%�%� %#j%%%c%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24427,'pk','social_link_widget_','j%%%�j%$%%� %�%� %# %��%�j%��%�%c%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24428,'pk','show_social_links','j%%%�j%�j%��%� j%�%%�j%�j%�j%V% j%� %# %[%j%�j%��%� %Q%j%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24429,'pk','social_links','j%%%�j%�j%��%� j%�%%�j%�j%�j%V%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24430,'pk','payment_methods_widget_','j%�j%�j%�j%��%� %��%� %#j%�%%��%� %#�%� j%V%j%�%�%�%�%� %Q% %��%�j%��%�%c%','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24431,'pk','rtl_status_updated_successfully','RTL j%��%�j%��%�j%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %�j%��%�','2021-02-09 08:40:46','2021-09-20 07:30:21'),(24432,'pk','language_changed_to_','j%�%j%�j%�%� j%�j%�%� %�j%��%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24433,'pk','inhouse_product_sale_report','j%�%�j%�j%�%%�%��%� %�j%a%%�%�j%c% %#�%� %�j%�%%�j%�j%� %#�%� j%�%%[%%�j%�%%c%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24434,'pk','sort_by_category','j%�%%�j%�%�%� %#�%� %�j%�j%�j%U% j%%�%� j%�j%�%j%��%�j%� j%��%� %Q%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24435,'pk','product_wise_stock_report','%�j%a%%�%�j%c% %�j%�j%�% %�j%�j%�% j%�j%%%c%j%� %# j%�%%[%%�j%�%%c%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24436,'pk','currency_changed_to_',' %#j%�%%�j%%�%� j%�j%�%� %�j%��%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24437,'pk','avatar','j%�%�j%�j%�j%�%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24438,'pk','copy',' %#j%�%[%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24439,'pk','variant','%�j%�j%Q%�%�j%�%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24440,'pk','variant_price','%�j%�j%Q%�%�j%�% %��%�%�j%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24441,'pk','sku','j%��%�j%% %#�%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24442,'pk','key',' %�j%�j%��%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24443,'pk','value','%�j%�j%�%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24444,'pk','copy_translations','j%�j%�%j%�%��%� %#j%�%[%�%� %#j%�%�%� %Q%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24445,'pk','all_pickup_points','j%�%�j%�%� j%�%c% %[%j%�%� %[%%�j%�j%�%�%c%j%%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24446,'pk','add_new_pickup_point','%��%�j%� j%�%c% %[%j%�%� %[%%�j%�j%�%�%c% j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24447,'pk','manager','%�%��%�j%�j%�%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24448,'pk','location','%�%�j%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24449,'pk','pickup_station_contact','j%�%c% %[%j%�%� j%�j%%%c%�%�j%$%%� j%�%j%�j%�j%V%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24450,'pk','open',' %# %[%%�%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24451,'pk','pos_activation_for_seller','j%��%� %�%��%� %�j%�%��%� %#�%� %�j%��%� POS j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24452,'pk','order_completed_successfully','j%�j%�% %�j%�% %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% %� %#%�%� �%�%�j%��%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24453,'pk','text_input','%�j%�%� j%�%� %[%%c%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24454,'pk','select','%�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24455,'pk','multiple_select','j%��%� %# j%%�%� j%�%�%�j%�j%��%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24456,'pk','radio','j%�%�%� %��%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24457,'pk','file','%�j%�j%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24458,'pk','email_address','j%��%� %��%�%� j%� %�j%�%�%�j%%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24459,'pk','verification_info','j%�j%a%j%��%�%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24460,'pk','approval','%�%�j%U%%�j%�%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24461,'pk','due_amount','j%�j%�%��%� j%�%%�%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24462,'pk','show','j%� %# %[%j%�j%��%� %Q%','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24463,'pk','pay_now','j%�j%� j%�j%�j%�','2021-02-09 08:40:47','2021-09-20 07:30:21'),(24464,'pk','affiliate_user_verification','%�%�j%�%� j%a%j%�j%�%%� %#�%� j%�%�j%��%�%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24465,'pk','reject','%�j%%j%�j%�%j%� %#j%�%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24466,'pk','accept','%�j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24467,'pk','beauty_health__hair','j%�%�j%�j%a%%�j%�%j%��%� j%� j%a%j%�j%� j%�%�j%�% j%�j%�%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24468,'pk','comparison','%�%�j%�j%�%%��%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24469,'pk','reset_compare_list','%��%�j%�%j%%j%� %#j%� %�%�j%�j%�%%��%� j%�%�j%�j%�j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24470,'pk','your_comparison_list_is_empty','j%�%[% %#�%� %�%�j%�j%�%%��%� %#�%� %��%�j%�%j%%j%� j%�j%�%��%� �%��%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24471,'pk','convert_point_to_wallet',' %#%�%c% %[%%�j%�j%�%�%c% %[%%�j%�j%�%�%c% %��%� %Q% %�j%�%��%�%c%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24472,'pk','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','%�%�%c%: %#%�j%� %[%%�j%�j%�%�%c% j%��%� %�%�%� j%�j%%j%�j%c%%�j%�%� %#j%�%%��%� j%%�%� %[%�%�%��%� j%�%[% %#%� %[%�%�%��%� %[%j%�%j%% %#j%� j%�j%�j%��%�j%�j%�% %�j%�%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%��%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24473,'pk','create_an_account',' %# %[%j%�j%�j%� %# %[%%�%��%� %Q%.','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24474,'pk','use_email_instead','j%�j%% %#�%� j%�j%�j%�j%��%� j%��%� %��%�%� %#j%� j%�j%%j%�j%c%%�j%�%� %#j%�%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24475,'pk','by_signing_up_you_agree_to_our_terms_and_conditions','j%%j%�j%�%� j%�%[% %#j%�% %#�%� j%�%[% �%�%�j%�j%�%�%� j%$%j%�%j%�j%�j%V% %� j%b%%�j%�j%�j%V% j%%�%� j%�j%�%�j%�%� %#j%�%j%��%� �%��%� %Q%�%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24476,'pk','create_account','j%� %#j%�j%�%�%c% j%�%�j%�j%��%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24477,'pk','or_join_with','�%�j%� j%%j%�j%� %[% j%$%j%�%�%� �%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24478,'pk','already_have_an_account','%[%�%�%��%� j%%�%� �%��%� j%��%� %# j%� %#j%�j%�%�%c% �%��%�j%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24479,'pk','log_in','%�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24480,'pk','computer__accessories',' %#%�%[%�%�%�%c%j%�% j%�%�j%�% %�%�j%�j%�%%�j%�j%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24481,'pk','products','%�j%a%%�%�j%c%j%�j%�)','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24482,'pk','in_your_cart','j%�%[% %#�%� %c%%� %#j%�%�%� %��%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24483,'pk','in_your_wishlist','j%�%[% %#�%� j%�%�j%��%�j%$% %#�%� %��%�j%�%j%%j%� %��%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24484,'pk','you_ordered','j%�%[% %��%� j%� %#%� j%��%�j%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24485,'pk','default_shipping_address','j%V%�%� j%$%j%��%� j%$%%[%%� %� j%��%� %�j%�%�%�j%%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24486,'pk','sports__outdoor',' %# %[%�%�%� j%�%�j%�% j%��%�j%�%%�%��%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24487,'pk','copied',' %#j%�%[%�%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24488,'pk','copy_the_promote_link','%[%j%�%%�%�%�j%$%%� %�%� %# %#%� %#j%�%[%�%� %#j%�%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24489,'pk','write_a_review','j%�j%�j%�%�%��%� %� %# %[%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24490,'pk','your_name','j%�%� %[%j%�j%�%j%� %�j%�%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24491,'pk','comment','j%�j%�j%a%j%�%�%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24492,'pk','your_review','j%�%[% %#j%� j%�j%�j%�j%�%�%�','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24493,'pk','submit_review','j%�j%�j%�j%�%�%� %[%�%�j%$% %#j%�%�%� %Q%','2021-02-09 08:40:48','2021-09-20 07:30:21'),(24494,'pk','claire_willis',' %#%��%�j%�j%�% %�%�j%%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24495,'pk','germaine_greene','j%�j%�%%��%�%� %�j%�%�%�%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24496,'pk','product_file','%[%j%�%%� %� %#%c% %�j%�j%�%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24497,'pk','choose_file','%�j%�j%�%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24498,'pk','type_to_add_a_tag','%c%�%� %� j%$%j%�%�%� %#j%�%%��%� %#�%� %� Type %c%j%�j%�%[% %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24499,'pk','images','j%�j%a%j%�%��%�j%�%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24500,'pk','main_images','j%��%�%� j%�j%a%j%�%��%�j%�%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24501,'pk','meta_tags','%��%�%c%j%� %c%�%� %�j%�%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24502,'pk','digital_product_has_been_inserted_successfully',' %��%�j%��%�%c%%� %[%j%�%%� %� %#%c% %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�%� %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24503,'pk','edit_digital_product',' %��%�j%��%�%c%%� %[%j%�%%� %� %#%c% %��%� %Q% j%�j%�%%��%�%� %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24504,'pk','select_an_option','j%��%� %# j%�%[%j%$%%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24505,'pk','tax','%c%�%� %#j%%','2021-02-09 08:40:49','2021-02-09 08:40:49'),(24506,'pk','any_question_about_this_product','j%�j%% %#�%� %�j%a%%�%�j%c%j%�j%� %#�%� j%�j%�j%�%�%� %��%� %Q% %#%�j%��%� j%%%�j%�%� �%��%�j%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24507,'pk','sign_in','j%%j%�j%�%� j%�%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24508,'pk','login_with_google',' %�%� %�%� %#�%� j%%j%�j%� %[% %�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24509,'pk','login_with_facebook','%��%�j%% j%� %# %�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24510,'pk','login_with_twitter','%c%%��%�%c%j%�% %#�%� j%%j%�j%� %[% %�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24511,'pk','click_to_show_phone_number','%�%�%� %�%�j%�j%�% j%U%j%��%�j%�% %#j%�%%��%� %#�%� %�j%��%� %#%� %# %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24512,'pk','other_ads_of',' %#�%� j%�%�j%%j%�%�%� j%�j%$%j%��%�j%�j%�%j%�j%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24513,'pk','store_home','j%�j%%%c%%�j%�% �%�%�%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24514,'pk','top_selling','j%�%�%[%j%�% %�j%�%%�j%�j%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24515,'pk','shop_settings','j%� %#j%�%� %#�%� j%�j%�%j%��%�j%�j%�j%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24516,'pk','visit_shop','j%� %#j%�%� %�%�j%�j%�j%U%�%� %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24517,'pk','pickup_points','j%�%c% %[%j%�%� %[%%�j%�j%�%�%c%j%%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24518,'pk','select_pickup_point','%[% %# j%�%[% %[%%�j%�j%�%�%c% %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24519,'pk','slider_settings','j%%%�j%�j%��%� %�j%�% %#�%� j%�j%�%j%��%�j%�j%�j%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24520,'pk','social_media_link','j%%%�j%$%%� %��%� %��%�j%� %�%� %#','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24521,'pk','facebook','%��%�j%% j%� %#','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24522,'pk','twitter','%c%%��%�%c%j%�%','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24523,'pk','google',' %�%� %�%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24524,'pk','new_arrival_products','%�j%��%� j%�%�j%� %#�%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:49','2021-09-20 07:30:21'),(24525,'pk','check_your_order_status','j%�%[%%��%� j%�j%�% %�j%�% %#�%� j%��%�j%��%�j%� %#%� %��%� %# %#j%�%�%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24526,'pk','shipping_method','j%� %[%�%�j%�%��%� %#j%� j%V%j%�%�%�%��%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24527,'pk','shipped_by','j%� %[%�%�j%� j%��%�j%� %��%�j%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24528,'pk','image','j%�j%a%%��%�j%�%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24529,'pk','sub_sub_category','j%�%�%�%��%� j%�%�%�%��%� j%�%%�j%�%�%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24530,'pk','inhouse_products','j%�%�j%�j%�%%�%��%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24531,'pk','forgot_password','%[%j%�j%%%�j%�% %� j%� %[%%�%� %��%�j%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24532,'pk','enter_your_email_address_to_recover_your_password','j%�%[%%�j%� %[%j%�j%% %�j%�% %� j%�j%�j%�%�%�j%�%�j%� %#j%�%%��%� %#�%� %�j%��%� j%�%[%%�j%� j%��%� %��%�%� j%��%� %�j%�%�%�j%% j%�j%�%j%� %#j%�%�%� %Q%�%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24533,'pk','email_or_phone','j%��%� %��%�%� �%�j%� %�%�%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24534,'pk','send_password_reset_link','%[%j%�j%% %�j%�% %� j%�%�%� j%%�%�%c% %#j%�%�%� %Q% %�%� %# j%� %[%�%�j%��%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24535,'pk','back_to_login','%�j%� %� j%�%� %[%j%�% %�j%�%[%j%% j%�j%�j%��%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24536,'pk','index','j%�%� %��%� %#j%%','2021-02-09 08:40:50','2021-02-09 08:40:50'),(24537,'pk','download_your_product','j%�%[%%��%� %�j%a%%�%�j%c%j%�j%� %#%� %�j%�j%�%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24538,'pk','option','j%�%[%j%$%%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24539,'pk','applied_refund_request','j%�j%�%j%�%�j%�j%%j%� j%$%j%��%� j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24540,'pk','item_has_been_renoved_from_wishlist','j%�j%�%c%%� %#%� j%�%�j%��%�j%$% %#�%� %��%�j%�%j%%j%� j%%�%� %�j%�%[%j%% %��%�j%� %��%�j%� �%��%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24541,'pk','bulk_products_upload','j%�%� %# %�j%a%%�%�j%c%j%�j%� j%�%[% %�%� %� %#j%�%�%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24542,'pk','upload_csv','CSV j%�%[% %�%� %� %#j%�%�%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24543,'pk','create_a_ticket','j%��%� %# %c% %#%c% j%�%�j%�j%��%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24544,'pk','tickets','%c% %#%c%','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24545,'pk','ticket_id','%c% %#%c% %#�%� j%$%%�j%�j%�j%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24546,'pk','sending_date','j%�j%�j%�%�%�j%� j%� %[%�%�j%�%�j%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24547,'pk','subject','%�j%b%%�%�%�','2021-02-09 08:40:50','2021-09-20 07:30:21'),(24548,'pk','view_details','j%�%�j%a%�%�%�j%�j%� j%��%� %# %[%�%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24549,'pk','provide_a_detailed_description','j%�%�j%a%�%�%��%� j%�%�j%a%�%�%� %�j%�%j%��%�%� %#j%�%�%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24550,'pk','type_your_reply','j%�%[%%�j%� j%�%�j%�j%� %c%j%�j%�%[% %#j%�%�%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24551,'pk','send_ticket','%c% %#%c% j%� %[%�%�j%��%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24552,'pk','load_more','%�j%�%�%�j%� %�%� %� %#j%�%�%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24553,'pk','jewelry__watches','j%�%�j%��%�j%�%j%�j%� j%�%�j%�% %� %[% %��%�j%� %Q%','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24554,'pk','filters','%�%�%c%j%�%j%�%','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24555,'pk','contact_address','j%�%j%�j%�j%V%�%� j%��%� %�j%�%�%�j%%','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24556,'pk','contact_phone','j%�%j%�j%�j%V%�%� %#j%� %�%�%�','2021-02-09 08:40:50','2021-09-20 07:30:22'),(24557,'pk','contact_email','j%��%� %��%�%� j%%�%� j%�%j%�j%�j%V%�%� %#j%�%�%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24558,'pk','filter_by',' %#�%� j%V%j%�%%� j%%�%� %�%�%c%j%�%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24559,'pk','condition','j%�j%�%�j%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24560,'pk','all_type','j%�%�j%�%� %�j%%%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24561,'pk','pay_with_wallet','j%�%c%%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�j%��%� %��%� %#j%�%�%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24562,'pk','select_variation','%�j%�j%�%�%� j%�j%�%�j%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24563,'pk','no_product_added',' %#%�j%��%� %�j%a%%�%�j%c% j%$%j%�%�%� %��%��%� %Q% %#�%�j%� %��%�j%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24564,'pk','status_has_been_updated_successfully','j%��%�j%��%�j%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% %#j%�%j%��%� %�j%��%� �%��%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24565,'pk','all_seller_packages','j%�%�j%�%� j%��%� %�%��%� %�j%�%��%� %[%�%� %#j%�j%�%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24566,'pk','add_new_package','%��%�j%� %[%�%� %#�%�j%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24567,'pk','package_logo','%[%�%� %#�%�j%� %�%� %�%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24568,'pk','days','j%�%�','2021-02-09 08:40:51','2021-02-09 08:40:51'),(24569,'pk','create_new_seller_package','%��%�j%� j%��%� %�%��%� %�j%�%�j%� %[%�%� %#�%�j%� j%�%�j%�j%��%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24570,'pk','package_name','%[%�%� %#�%�j%� %#j%� %�j%�%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24571,'pk','duration','j%�%�j%�%j%�%��%��%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24572,'pk','validity_in_number_of_days','j%�%� %#�%� j%�j%c%j%�j%�j%� %��%� %Q% j%�j%�%j%%j%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24573,'pk','update_package_information','%[%�%� %#�%�j%� %#�%� %�j%c%%�%�%�j%�j%� %#%� j%�%[% %��%�%c% %#j%�%�%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24574,'pk','package_has_been_inserted_successfully','%[%�%� %#�%�j%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�%� %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24575,'pk','refund_request','j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24576,'pk','reason','%�j%��%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24577,'pk','label','%��%�j%�%� %� %�j%�j%��%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24578,'pk','select_label','%��%�j%�%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24579,'pk','multiple_select_label','j%��%� %# j%%�%� j%�%�%�j%�j%��%� %�%�j%�j%�j%� %��%�j%�%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24580,'pk','radio_label','j%�%�%� %��%�%� %��%�j%�%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24581,'pk','pickup_point_orders','j%�%c% %[%j%�%� %[%%�j%�j%�%�%c% j%�j%�% %�j%�%j%�%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24582,'pk','view','j%��%� %# %[%�%� %Q%','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24583,'pk','order_','j%�j%�%j%��%�j%� #','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24584,'pk','order_status','j%�j%�% %�j%�% %#�%� j%��%�j%��%�j%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24585,'pk','total_amount',' %#%� j%�%%�%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24586,'pk','total',' %#%�','2021-02-09 08:40:51','2021-09-20 07:30:22'),(24587,'pk','delivery_status_has_been_updated','%�j%�%j%��%�%��%� %#�%� j%��%�j%��%�j%� %#%� j%�%[% %��%�%c% %#j%�% j%��%�j%� %��%�j%� �%��%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24588,'pk','payment_status_has_been_updated','j%�j%�j%�j%��%� %��%� %#�%� j%��%�j%��%�j%� %#%� j%�%[% %��%�%c% %#j%�% j%��%�j%� %��%�j%� �%��%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24589,'pk','invoice','j%�%�%�j%�j%�j%%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24590,'pk','set_refund_time','j%�%%�%� %#�%� %�j%�%[%j%%�%� %#j%� %�%�j%� j%V%�%� %#j%�%�%� %Q%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24591,'pk','set_time_for_sending_refund_request','j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%� j%� %[%�%�j%�%��%� %#�%� %�j%��%� %�%�j%� j%V%�%� %#j%�%�%� %Q%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24592,'pk','set_refund_sticker','j%�%%�%� %#�%� %�j%�%[%j%%�%� j%�j%%%c%�%� %#j%�% j%%�%�%c% %#j%�%�%� %Q%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24593,'pk','sticker','j%�j%%%c%�%� %#j%�%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24594,'pk','refund_request_all','j%%j%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24595,'pk','order_id','j%�j%�% %�j%�% %#�%� j%$%%�j%�j%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24596,'pk','seller_approval','j%��%� %�%��%� %�j%�%��%� %#�%� %�%�j%U%%�j%�%�%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24597,'pk','admin_approval','j%��%� %�%�%� %�%�j%U%%�j%�%�%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24598,'pk','refund_status','j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%��%�j%��%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24599,'pk','no_refund','%�j%�%�j%�j%�%� %�j%�%[%j%%�%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24600,'pk','status_updated_successfully','j%��%�j%��%�j%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %�j%��%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24601,'pk','user_search_report','j%a%j%�j%�%%� %#�%� j%�%�j%�j%$% %#�%� j%�%%[%%�j%�%%c%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24602,'pk','search_by','j%��%� j%�%�j%�j%$%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24603,'pk','number_searches','%�%�j%�j%�% j%�%�j%�j%$%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24604,'pk','sender','j%� %[%�%�j%�%��%� %�j%�%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24605,'pk','receiver','%�j%a%%�%� %#j%�%%��%� %�j%�%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24606,'pk','verification_form_updated_successfully','j%�%�j%��%�%� %#j%� %�j%�j%�%%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24607,'pk','invalid_email_or_password','j%Q%%�j%V% j%��%� %��%�%� �%�j%� %[%j%�j%% %�j%�% %�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24608,'pk','all_coupons','j%�%�j%�%� %#%�%[%%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24609,'pk','add_new_coupon','%��%�j%� %#%�%[%%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24610,'pk','coupon_information',' %#%�%[%%� j%%�%� %�j%�j%c%%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24611,'pk','start_date','j%$%j%�%%�j%c% %#j%�%%��%� %#�%� j%�j%�j%�%�%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24612,'pk','end_date','j%�j%�j%�%�%� j%�j%�j%�%�%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24613,'pk','product_base','%[%j%�%%� %� %#%c% j%��%�j%%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24614,'pk','send_newsletter','%��%�%�j%�% %��%�%c%j%�% j%�j%�%j%%j%�%� %#j%�%�%� %Q%','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24615,'pk','mobile_users','%�%�j%�j%�j%�%� j%�j%%j%�j%c%%�j%�%� %#%�%�j%��%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24616,'pk','sms_subject','SMS %�j%b%%�%�%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24617,'pk','sms_content','SMS %�%�j%�j%�','2021-02-09 08:40:52','2021-09-20 07:30:22'),(24618,'pk','all_flash_delas','j%�%�j%�%� %�%��%�j%$% %��%�%�j%%','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24619,'pk','create_new_flash_dela','%��%�j%� %�%��%�j%$% %��%�%��%� j%�%�j%�j%��%� %Q%','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24620,'pk','page_link','j%a%%�j%��%� %#j%� %�%� %#','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24621,'pk','flash_deal_information','%�%��%�j%$% %��%�%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24622,'pk','background_color','%[%j%% %�%�j%U%j%�% %#j%� j%�%%� %�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24623,'pk','0000ff','# 0000 %�%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24624,'pk','text_color','%�j%�%� %#j%� j%�%%� %�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24625,'pk','white','j%%%��%�j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24626,'pk','dark',' %��%�j%�%j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24627,'pk','choose_products','%�j%a%%�%�j%c%j%�j%� %#j%� j%�%�j%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24628,'pk','discounts',' %� %[%%�%c%','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24629,'pk','discount_type',' %�j%% %#j%�j%�%�%c% %#�%� %�j%%%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24630,'pk','twillo_credential','%c%%�j%��%�%�%� j%%%�j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24631,'pk','twilio_sid','TWILIO SID','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24632,'pk','twilio_auth_token','j%�%� j%��%�j%� %[%%� %c%%� %#%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24633,'pk','twilio_verify_sid','TWILIO VERIFY SID','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24634,'pk','valid_twillo_number','j%� %��%� j%�j%c%j%�j%�j%� %��%� %Q% %�%�j%�j%�%','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24635,'pk','nexmo_credential','Nexmo j%�j%%%�j%�j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24636,'pk','nexmo_key','NEXMO KEY','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24637,'pk','nexmo_secret','NEXMO j%%�%� %#j%�%�%�%c%','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24638,'pk','ssl_wireless_credential','SSL %�j%�j%�j%�%%��%�j%% j%%%�j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24639,'pk','ssl_sms_api_token','SSL SMS API %c%%� %#%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24640,'pk','ssl_sms_sid','SSL SMS SID','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24641,'pk','ssl_sms_url','SSL SMS URL','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24642,'pk','fast2sms_credential','%�j%�j%%%c% 2 j%��%�j%% j%��%�%� j%��%�j%% j%%%�j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24643,'pk','auth_key','j%�j%� %[% %#%��%�j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24644,'pk','route','j%�%j%�j%%j%�%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24645,'pk','promotional_use','j%�j%$%�%��%�j%�%�%� j%�j%%j%�j%c%%�j%�%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24646,'pk','transactional_use','%��%�%� j%��%�%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24647,'pk','sender_id','j%� %[%�%�j%�%��%� %�j%�%��%� %#�%� j%$%%�j%�j%�j%�','2021-02-09 08:40:53','2021-09-20 07:30:22'),(24648,'pk','nexmo_otp','Nexmo OTP','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24649,'pk','twillo_otp','%c%%��%�%�%� j%�%� %c%�%� %[%�%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24650,'pk','ssl_wireless_otp','SSL %�j%�j%�j%�%%��%�j%% OTP','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24651,'pk','fast2sms_otp','%�j%�j%%%c% 2 j%��%�j%% j%��%�%� j%��%�j%% j%�%� %c%�%� %[%�%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24652,'pk','order_placement','j%�j%�% %�j%�% %[%%��%�j%%%�%�%c%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24653,'pk','delivery_status_changing_time','%�j%�%j%��%�%��%� %#�%� j%��%�j%��%�j%� j%�j%�%�j%��%� %�%�j%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24654,'pk','paid_status_changing_time','j%�j%�j%�j%��%� %��%� %#�%� j%��%�j%��%�j%� j%�j%�%�%��%� %#j%� %�%�j%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24655,'pk','send_bulk_sms','j%�%� %# SMS j%� %[%�%�j%��%� %Q%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24656,'pk','all_subscribers','j%%j%� %[%�%� j%�j%�%�%�j%�j%�j%�%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24657,'pk','coupon_information_adding',' %#%�%[%%� %��%� %Q% %�j%c%%�%�%�j%�j%� j%$%j%�%�%� %#j%�%%�j%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24658,'pk','coupon_type',' %#%�%[%%� %#�%� %�j%%%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24659,'pk','for_products','%�j%a%%�%�j%c%j%�j%� %#�%� %�j%��%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24660,'pk','for_total_orders',' %#%� j%�j%� %#j%�%�j%�j%� %#�%�%�j%��%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24661,'pk','add_your_product_base_coupon','j%�%[%%��%� %[%j%�%%� %� %#%c% j%��%�j%% %#%�%[%%� %#%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24662,'pk','coupon_code',' %#%�%[%%� %#%� %�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24663,'pk','sub_category','j%�%�%�%��%� j%�%%�j%�%�%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24664,'pk','add_more','%�j%�%�%�j%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24665,'pk','add_your_cart_base_coupon','j%�%[%%��%� %#j%�j%�%%c% j%��%�j%% %#%�%[%%� %#%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24666,'pk','minimum_shopping',' %#%� j%%�%� %#%� j%�j%�%�%�j%�j%�j%�%�%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24667,'pk','maximum_discount_amount','j%�%�%�j%�j%��%� j%%�%� j%�%�%�j%�j%��%� %� %[%%�%c% %#�%� j%�%%�%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24668,'pk','coupon_information_update',' %#%�%[%%� %�j%c%%�%�%�j%�j%� %#�%� j%�j%�j%�%�%� %#j%�j%�%�%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24669,'pk','please_configure_smtp_setting_to_work_all_email_sending_funtionality','j%�j%�%j%��%� %#j%�%%� j%�%�j%�%� j%��%� %��%�%� j%� %[%�%�j%�%��%� %�j%�%��%� %�%� %#j%$%%�%�%c%�%� %#%� %#j%�%� %#j%�%%��%� %#�%� %�j%��%� j%��%�j%% j%��%�%� %c%�%� %[%�%� j%%�%�%c%%� %� %#�%� j%�j%$% %#�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24670,'pk','configure_now','j%�j%� %[%�%� j%�j%$% %#�%�%� j%��%� %Q%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24671,'pk','total_published_products',' %#%� j%$%j%�j%�j%c% j%$%j%��%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24672,'pk','total_sellers_products',' %#%� %�j%�%%�j%�j%� %#%�%�j%� %�j%�%� %#�%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24673,'pk','total_admin_products','j%��%� %�%�%� %#�%� %#%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24674,'pk','manage_products','%�j%a%%�%�j%c%j%�j%� %#j%� j%�%�j%�j%U%j%�%� %#j%�%�%� %Q%','2021-02-09 08:40:54','2021-09-20 07:30:22'),(24675,'pk','total_product_category','%�j%a%%�%�j%c%j%�j%� %#�%� %#%� %�j%%%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24676,'pk','create_category','j%�%%�j%�%�%� j%�%�j%�j%��%� %Q%','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24677,'pk','total_product_sub_sub_category',' %#%� %[%j%�%%� %� %#%c% j%�%�%�%��%� j%�%�%�%��%� %�j%%%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24678,'pk','create_sub_sub_category','j%�%�%�%��%� j%�%�%�%��%� j%�%%�j%�%�%� j%�%�j%�j%��%� %Q%','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24679,'pk','total_product_sub_category',' %#%� %�j%a%%�%�j%c% j%�%�%�%��%� %�j%%%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24680,'pk','create_sub_category','j%�%�%�%��%� j%�%%�j%�%�%� j%�%�j%�j%��%� %Q%','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24681,'pk','total_product_brand',' %#%� %[%j%�%%� %� %#%c% j%�j%�%j%�%� %�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24682,'pk','create_brand','j%�j%�%j%�%� %� j%�%�j%�j%��%� %Q%','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24683,'pk','total_sellers',' %#%� %�j%�%%�j%�j%� %#%�%�j%��%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24684,'pk','total_approved_sellers',' %#%� %�%�j%U%%�j%�% j%$%j%��%� j%��%� %�%��%� %�j%�%��%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24685,'pk','total_pending_sellers',' %#%� j%�%�%�j%�% j%�%�j%�%�j%�j%� j%��%� %�%��%� %�j%�%��%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24686,'pk','manage_sellers','j%��%� %�%��%� %�j%�%��%� %#j%� %�j%U%%� %#j%�%�%� %Q%','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24687,'pk','category_wise_product_sale','j%�%%�j%�%�%� %�j%�j%�% %�j%a%%�%�j%c%j%�j%� %#�%� %�j%�%%�j%�j%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24688,'pk','sale','%�j%�%%�j%�j%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24689,'pk','category_wise_product_stock','j%�%%�j%�%�%� %�j%�j%�% %[%j%�%%� %� %#%c% j%�j%%%c%j%� %#','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24690,'pk','category_name','%�j%%%� %#j%� %�j%�%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24691,'pk','stock','j%�j%%%c%j%� %#','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24692,'pk','frontend','%�j%�%%�%c% j%��%�%� %�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24693,'pk','home_page','�%�%�%� %[%�%�j%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24694,'pk','setting','j%�j%�%j%��%�j%�','2021-02-09 08:40:55','2021-02-09 08:40:55'),(24695,'pk','policy_page','%[%j%�%��%�j%%�%� %#j%� j%a%%�j%��%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24696,'pk','general','j%�%�j%�%%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24697,'pk','click_here','�%��%�j%� %Q% %#%� %# %#j%�%�%� %Q%','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24698,'pk','useful_link','%�%��%�j%� %�%� %#','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24699,'pk','activation',' %�j%�%�%� %#j%�%%�j%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24700,'pk','smtp','j%��%�j%% j%��%�%� %c%�%� %[%�%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24701,'pk','payment_method','j%�j%�j%�j%��%� %��%� %#j%� j%V%j%�%�%�%��%�','2021-02-09 08:40:55','2021-09-20 07:30:22'),(24702,'pk','social_media','j%%%�j%$%%� %��%� %��%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24703,'pk','business',' %#j%�j%�%%�j%�j%�j%�%','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24704,'pk','seller_verification','j%��%� %�%��%� %�j%�%��%� %#�%� j%�%�j%��%�%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24705,'pk','form_setting','%�j%�j%�%%� %#�%� j%�j%�%j%��%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24706,'pk','language','j%�%j%�j%�%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24707,'pk','dashboard',' %��%�j%$% j%�%�j%�% %�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24708,'pk','pos_system','POS j%%j%%%c%%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24709,'pk','pos_manager','POS %�%��%�j%�j%�%','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24710,'pk','pos_configuration','POS j%�j%$% %#�%�%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24711,'pk','products','%�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24712,'pk','add_new_product','%�j%��%� %�j%a%%�%�j%c%j%�j%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24713,'pk','all_products','j%�%�j%�%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24714,'pk','in_house_products','�%�j%�j%�j%% %[%j%�%%� %� %#%c% %��%� %Q%','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24715,'pk','seller_products','%�j%�%%�j%�j%� %#%�%�j%��%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24716,'pk','digital_products',' %��%�j%��%�%c%%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24717,'pk','bulk_import','j%�%� %# j%�j%�%j%�%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24718,'pk','bulk_export','j%�%� %# j%��%� %#j%%%[%%�j%�%%c%','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24719,'pk','category','%�j%%%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24720,'pk','subcategory','j%�%�%�%��%� j%�%%�j%�%�%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24721,'pk','sub_subcategory','j%�%�%�%��%� j%�%�%�%��%� j%�%%�j%�%�%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24722,'pk','brand','j%�j%�%j%�%� %�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24723,'pk','attribute','%�j%a%%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24724,'pk','product_reviews','%[%j%�%%� %� %#%c% j%�j%�j%�j%�%�%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24725,'pk','sales','%�j%�%%�j%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24726,'pk','all_orders','j%�%�j%�%� j%�j%� %#j%�%�j%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24727,'pk','inhouse_orders',' %� %[%j%�% %#�%� j%�j%� %#j%�%�j%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24728,'pk','seller_orders','j%��%� %�%��%� %�j%�%��%� %#�%� j%�j%� %#j%�%�j%�j%�','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24729,'pk','pickup_point_order','j%�%c% %[%j%�%� %[%%�j%�j%�%�%c% j%�j%�% %�j%�%','2021-02-09 08:40:56','2021-09-20 07:30:22'),(24730,'pk','refunds','j%�%%�%� %#�%� %�j%�%[%j%%�%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24731,'pk','refund_requests','j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%��%� %Q%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24732,'pk','approved_refund','%�%�j%U%%�j%�% j%$%j%��%� j%�%%�%� %#�%� %�j%�%[%j%%�%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24733,'pk','refund_configuration','j%�%%�%� %#�%� %�j%�%[%j%%�%� %#�%� j%�j%$% %#�%�%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24734,'pk','customers',' %�j%��%� %#%� %Q%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24735,'pk','customer_list',' %�j%��%� %# %#�%� %��%�j%�%j%%j%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24736,'pk','classified_products','j%�j%�%j%��%� j%�%�j%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24737,'pk','classified_packages','j%�j%�%j%��%� j%�%�j%� %[%�%� %#j%�j%�%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24738,'pk','sellers','j%��%� %�%��%� %�j%�%��%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24739,'pk','all_seller','j%%j%� j%��%� %�%��%� %�j%�%�j%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24740,'pk','payouts','j%�j%�j%�j%��%� %��%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24741,'pk','payout_requests','j%�j%�j%�j%��%� %��%� %#�%� j%�j%�%j%�%�j%�j%%j%��%� %Q%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24742,'pk','seller_commission','j%��%� %�%��%� %�j%�%�j%� %#%��%�j%$%%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24743,'pk','seller_packages','j%��%� %�%��%� %�j%�%��%� %[%�%� %#�%�j%�j%�%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24744,'pk','seller_verification_form','j%��%� %�%��%� %�j%�%��%� %#�%� j%�%�j%��%�%� %#j%� %�j%�j%�%%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24745,'pk','reports','j%�%%[%%�j%�%%c%�%� %Q%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24746,'pk','in_house_product_sale','�%�j%�j%�j%% %[%j%�%%� %� %#%c% j%%�%�%� %��%� %Q%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24747,'pk','seller_products_sale','%�j%�%%�j%�j%� %#%�%�j%��%� %�j%a%%�%�j%c%j%�j%� %#�%� %�j%�%%�j%�j%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24748,'pk','products_stock','%[%j%�%%� %� %#%c% j%�j%%%c%j%� %#','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24749,'pk','products_wishlist','%�j%a%%�%�j%c%j%�j%� %#�%� j%�%�j%��%�j%$% %#�%� %��%�j%�%j%%j%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24750,'pk','user_searches','j%a%j%�j%�%%� %#�%� j%�%�j%�j%$%�%� %Q%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24751,'pk','marketing','%�j%�j%�% %#�%�%c%%� %�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24752,'pk','flash_deals','%�%��%�j%$% j%%%�j%��%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24753,'pk','newsletters','%��%�%�j%�% %��%�%c%j%�%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24754,'pk','bulk_sms','j%�%� %# j%��%�j%% j%��%�%� j%��%�j%%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24755,'pk','subscribers','j%�j%�%�%�j%�j%�j%�%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24756,'pk','coupon',' %#%�%[%%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24757,'pk','support','%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24758,'pk','ticket','%c% %#%c%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24759,'pk','product_queries','%�j%a%%�%�j%c% j%%�%� %�j%�j%c%%�%� j%%%�j%�%�j%�j%�','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24760,'pk','website_setup','%��%�j%� j%%j%�j%�%c% j%%�%�%c% j%�%[%','2021-02-09 08:40:57','2021-09-20 07:30:22'),(24761,'pk','header','�%��%� %�j%�%','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24762,'pk','footer','%�%�%c%j%�%','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24763,'pk','pages','j%a%%�j%�j%�j%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24764,'pk','appearance','j%U%�%�%�j%�%','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24765,'pk','setup__configurations','j%%�%�%c% j%�%[% j%�%�j%�% j%�j%$% %#�%�%�j%�j%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24766,'pk','general_settings','j%c%j%�%� j%�j%�%j%��%�j%�j%�j%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24767,'pk','features_activation','j%�j%a%%�j%a%�%�j%�j%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24768,'pk','languages','j%�%j%�j%�%��%� %Q%','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24769,'pk','currency',' %#j%�%%�j%%�%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24770,'pk','pickup_point','j%�%c% %[%j%�%� %�%�j%V%�%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24771,'pk','smtp_settings','j%��%�j%% j%��%�%� %c%�%� %[%�%� %#�%� j%�j%�%j%��%�j%�j%�j%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24772,'pk','payment_methods','j%�j%�j%�j%��%� %��%� %#�%� j%V%j%�%�%�%��%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24773,'pk','file_system_configuration','%�j%�j%�%� j%%j%%%c%%� %#�%� j%�j%$% %#�%�%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24774,'pk','social_media_logins','j%%%�j%$%%� %��%� %��%�j%� %�j%� %� j%�%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24775,'pk','analytics_tools','j%�j%�j%�%�%�j%�j%��%� %c%%�%�j%�%','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24776,'pk','facebook_chat','%��%�j%% j%� %# %��%�%c%','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24777,'pk','google_recaptcha',' %�%� %�%� j%�%�%� %#%c%j%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24778,'pk','shipping_configuration','j%$%%[%%� %� j%�j%�%j%��%�j%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24779,'pk','shipping_countries','j%$%%[%%� %� %�%�j%�%� %#','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24780,'pk','affiliate_system','%�%�j%�%� %�j%U%j%�%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24781,'pk','affiliate_registration_form','%�%�j%�%��%� j%�%j%�j%%%c%j%�%�%�j%$%%� %�j%�j%�%%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24782,'pk','affiliate_configurations','%�%�j%�%��%� j%�j%$% %#�%�%�j%�j%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24783,'pk','affiliate_users','%�j%�j%�j%%j%��%� j%a%j%�j%�%%��%�%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24784,'pk','referral_users','j%�%�j%�%��%� j%��%�%��%� %�j%�%��%� j%a%j%�j%�%%��%�%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24785,'pk','affiliate_withdraw_requests','%�%�j%�%� %�j%�%[%j%%�%� %#�%� j%�j%�%j%�%�j%�j%%j%��%� %Q%','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24786,'pk','offline_payment_system','j%�%� %�j%�j%�%� j%�j%�j%�j%��%� %��%� %#j%� %�j%U%j%�%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24787,'pk','manual_payment_methods','j%�j%%j%��%� j%�j%�j%�j%��%� %��%� %#�%� j%V%j%�%�%�%��%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24788,'pk','offline_wallet_recharge','j%�%� %�j%�j%�%� %�j%�%��%�%c% j%�%�%� %�j%�j%�%j%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24789,'pk','offline_customer_package_payments','j%�%� %�j%�j%�%� %#j%%%c%%�j%�% %[%�%� %#�%�j%� %#�%� j%�j%�j%�j%��%� %��%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24790,'pk','offline_seller_package_payments','j%�%� %�j%�j%�%� j%��%� %�%��%� %�j%�%��%� %[%�%� %#�%�j%� %#�%� j%�j%�j%�j%��%� %��%�','2021-02-09 08:40:58','2021-09-20 07:30:22'),(24791,'pk','paytm_payment_gateway','%[%�%� %c%�%� j%��%�%� j%�j%�j%�j%��%� %��%� %#j%� %��%�%c% %��%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24792,'pk','set_paytm_credentials','%[%�%� %c%�%� j%��%�%� j%�j%%%�j%�j%� %�j%�%j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24793,'pk','club_point_system',' %#%�j%� %[%%�j%�j%�%�%c% j%%j%%%c%%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24794,'pk','club_point_configurations',' %#%�j%� %[%%�j%�j%�%�%c% %#�%� j%�j%$% %#�%�%�j%�j%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24795,'pk','set_product_point','%[%j%�%%� %� %#%c% %[%%�j%�j%�%�%c% %�%�j%�%j%�% %#j%�%�%� %Q%','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24796,'pk','user_points','j%a%j%�j%�%%� %[%%�j%�j%�%�%c%j%%','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24797,'pk','otp_system','OTP j%%j%%%c%%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24798,'pk','otp_configurations','OTP j%�j%$% %#�%�%�j%�j%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24799,'pk','set_otp_credentials','j%�%� %c%�%� %[%�%� %#�%� j%%%�j%��%� %Q% %�j%�%j%�j%� %#j%�%�%� %Q%','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24800,'pk','staffs','j%�j%%%c%j%�%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24801,'pk','all_staffs','j%�%�j%�%� j%c%%�%��%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24802,'pk','staff_permissions','j%c%%�%��%� %#�%� j%�j%�j%�j%�%j%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24803,'pk','addon_manager','j%� %�%�%� %�%��%�j%�j%�%','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24804,'pk','browse_website','%��%�j%� j%%j%�j%�%c% %#%� j%�j%�%j%�j%�j%�% %#j%�%�%� %Q%','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24805,'pk','pos','POS','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24806,'pk','notifications','j%�j%V%%�j%�j%c%j%�j%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24807,'pk','new_orders','%�j%��%� j%�j%� %#j%�%�j%�j%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24808,'pk','userimage','j%a%j%�j%�%%� %#�%� j%�j%a%%��%�j%�%','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24809,'pk','profile','%[%j%�%%�%�j%�j%�%�','2021-02-09 08:40:59','2021-09-20 07:30:22'),(24810,'pk','logout','%�j%� %� j%�%�%c%','2021-02-09 08:41:51','2021-09-20 07:30:22'),(24811,'pk','page_not_found','j%a%%�j%��%� %��%��%� %Q% %�%�j%�!','2021-02-09 08:41:51','2021-09-20 07:30:22'),(24812,'pk','the_page_you_are_looking_for_has_not_been_found_on_our_server','j%�%[% j%�j%% j%a%%�j%��%� %#�%� j%�%�j%�j%$% %#j%�% j%�%�%��%� �%��%� %Q% %��%� �%�%�j%�j%�%�%� j%%j%�%%�j%�% %[%j%�% %��%��%� %Q% %�%�j%� �%��%��%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24813,'pk','registration','j%�%�j%�j%�%j%�j%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24814,'pk','i_am_shopping_for','%��%� %Q% j%�j%�%�%�j%�j%�j%�%�%� %#j%�% j%�%�%�j%� �%�%� %Q% ...','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24815,'pk','compare','%�%�j%�j%�%%��%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24816,'pk','wishlist','j%�%�j%��%�j%$% %#�%� %��%�j%�%j%%j%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24817,'pk','cart','%c%%� %#j%�%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24818,'pk','your_cart_is_empty','j%�%[% %#�%� %c%%� %#j%�%�%� j%�j%�%��%� �%��%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24819,'pk','categories','j%�%�j%%j%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24820,'pk','see_all','j%�%�j%�%� j%��%� %# %[%�%� %Q%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24821,'pk','seller_policy','j%��%� %�%��%� %�j%�%��%� %[%j%�%��%�j%%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24822,'pk','return_policy','j%�%�%�%c%j%�%%� %[%j%�%��%�j%%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24823,'pk','support_policy','j%%%[%%�j%�%%c% %[%j%�%��%�j%%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24824,'pk','privacy_policy','j%�%j%�j%�%j%�j%�j%�%�%� %#�%� %[%j%�%��%�j%%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24825,'pk','your_email_address','j%�%[% %#j%� j%��%� %��%�%� j%��%� %�j%�%�%�j%%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24826,'pk','subscribe','j%%j%�j%% %#j%�%j%�j%�j%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24827,'pk','contact_info','j%�%j%�j%�j%V%�%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24828,'pk','address','%[%j%��%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24829,'pk','phone','%�%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24830,'pk','email','j%��%� %��%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24831,'pk','login','%�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24832,'pk','my_account','%��%�j%�%j%� j%� %#j%�%�%�%c%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24833,'pk','order_history','j%�j%�% %�j%�% %#�%� j%�j%�j%�%�%�j%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24834,'pk','my_wishlist','%��%�j%�%�%� j%�%�j%��%�j%$%j%�j%� %#�%� %��%�j%�%j%%j%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24835,'pk','track_order','j%�%[%%��%� j%�j%�% %�j%�% %#j%� %[%j%�j%� %� %�j%�j%��%��%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24836,'pk','be_an_affiliate_partner','j%��%� %# %�j%�j%�j%%j%��%� j%$%j%�%j%� %#j%� j%�j%�j%�% j%�%��%� %Q%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24837,'pk','be_a_seller','j%��%� %�%��%� %�j%�%�j%� �%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24838,'pk','apply_now','j%�j%� %� %�j%�j%��%� %Q%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24839,'pk','confirmation','j%�j%a%j%��%�%�','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24840,'pk','delete_confirmation_message','j%�j%a%j%��%�%��%� %[%�%�j%Q%j%�%� %#%� j%�j%�%%� %#j%�%�%� %Q%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24841,'pk','cancel','%�%�j%%%�j%� %#j%�%�%� %Q%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24842,'pk','delete','j%�j%�%%� %#j%�%�%� %Q%','2021-02-09 08:41:52','2021-09-20 07:30:22'),(24843,'pk','item_has_been_added_to_compare_list','%��%�j%�%j%%j%� %#j%� %�%�j%�j%�%%��%� %#j%�%%��%� %#�%� %�j%��%� j%�j%�%c%%� j%$%j%�%�%� %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24844,'pk','please_login_first','%��%�j%�%j%�j%�%��%� %�j%�%%�j%� %#j%�% %[%�%�%��%� %�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24845,'pk','total_earnings_from','j%%�%� %#%� j%�%�j%�%��%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24846,'pk','client_subscription',' %#%�j%�j%�%�%c% %#�%� j%�% %#%��%�j%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24847,'pk','product_category','%�j%a%%�%�j%c%j%�j%� %#�%� %�j%%%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24848,'pk','product_sub_sub_category','%[%j%�%%� %� %#%c% j%�%�%�%��%� j%�%�%�%��%� %�j%%%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24849,'pk','product_sub_category','%�j%a%%�%�j%c% %#�%� j%�%�%�%��%� %�j%%%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24850,'pk','product_brand','%[%j%�%%� %� %#%c% j%�j%�%j%�%� %�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24851,'pk','top_client_packages','j%�j%c%%��%� %#%�j%�j%�%�%c% %[%�%� %#j%�j%�%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24852,'pk','top_freelancer_packages','%c%j%�%[% %�j%�%�%� %�j%�%�j%% %[%�%� %#j%�j%�%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24853,'pk','number_of_sale','%�j%�%%�j%�j%� %#�%� j%�j%c%j%�j%�j%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24854,'pk','number_of_stock','j%�j%%%c%j%� %# %#�%� j%�j%c%j%�j%�j%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24855,'pk','top_10_products','j%�j%c%%��%� 10 %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24856,'pk','top_12_products','j%%j%�%%��%�j%�%j%%j%� 12 %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24857,'pk','admin_can_not_be_a_seller','j%��%� %�%�%� j%��%� %�%��%� %�j%�%�j%� %��%��%� %Q% �%�%�j%% %#j%�j%� �%��%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24858,'pk','filter_by_rating','j%�j%�%j%��%� j%�%�j%��%� %#�%� %�j%�j%�j%U% j%%�%� %�%�%c%j%�% %#j%�%�%� %Q%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24859,'pk','published_reviews_updated_successfully','j%$%j%�j%�j%c% j%$%j%��%� j%�j%�j%�j%�%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%�j%��%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24860,'pk','refund_sticker_has_been_updated_successfully','j%�%%�%� %#�%� %�j%�%[%j%%�%� j%�j%%%c%�%� %#j%�% %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %��%�j%� �%��%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24861,'pk','edit_product','%[%j%�%%� %� %#%c% %��%� %Q% j%�j%�%%��%�%� %#j%�%�%� %Q%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24862,'pk','meta_images','%��%�%c%j%� j%�%��%�j%�j%�%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24863,'pk','update_product','%[%j%�%%� %� %#%c% %#%� j%�%[% %��%�%c% %#j%�%�%� %Q%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24864,'pk','product_has_been_deleted_successfully','%�j%a%%�%�j%c% %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�%%� %#j%�%j%��%� %�j%��%� �%��%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24865,'pk','your_profile_has_been_updated_successfully','j%�%[% %#�%� %[%j%�%%�%�j%�j%�%� %#%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% %#j%�%j%��%�j%� %��%�j%� �%��%�!','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24866,'pk','upload_limit_has_been_reached_please_upgrade_your_package','j%�%[% %�%� %� %#�%� j%�j%� �%�%� %�j%��%� �%��%��%� j%�j%�%j%��%� %#j%�%%� j%�%[%%��%� %[%�%� %#�%�j%� %#%� j%�%[% %�j%�%�%� %� %#j%�%�%� %Q%�%�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24867,'pk','add_your_product','j%�%[% %#�%� %�j%a%%�%�j%c%j%�j%� %#%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24868,'pk','select_a_category','j%��%� %# j%�%%�j%�%�%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24869,'pk','select_a_brand','j%��%� %# j%�j%�%j%�%� %� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24870,'pk','product_unit','%[%j%�%%� %� %#%c% �%�%�%�%c%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24871,'pk','minimum_qty',' %#%� j%%�%� %#%� %�%�j%�j%�j%�%','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24872,'pk','product_tag','%[%j%�%%� %� %#%c% %c%�%� %�','2021-02-09 08:41:53','2021-09-20 07:30:22'),(24873,'pk','type__hit_enter','%c%j%�j%�%[% %#j%�%�%� %Q% j%�%�j%�% enter %#%� j%�j%�j%�j%��%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24874,'pk','videos','%��%� %��%�%�j%�%','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24875,'pk','video_from','%��%� %��%�%� %�%�j%�j%�%�j%�','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24876,'pk','video_url','%��%� %��%�%� �%�%� j%�j%�% j%��%�%�','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24877,'pk','customer_choice',' %#j%%%c%%�j%�% %�%�j%�j%�j%%','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24878,'pk','pdf','%[%�%� %��%� j%��%�%�','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24879,'pk','choose_pdf','%[%�%� %��%� j%��%�%� %#j%� j%�%�j%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24880,'pk','select_category','j%�%%�j%�%�%� %�%�j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24881,'pk','target_category','�%�j%�%� j%�%%�j%�%�%�','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24882,'pk','subsubcategory','j%%j%�j%% %#j%�%j%�j%�j%� %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-02-09 08:41:54'),(24883,'pk','search_category','j%�%%�j%�%�%� j%�%�j%�j%$% %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:22'),(24884,'pk','search_subcategory','j%�%�%�%��%� j%�%%�j%�%�%� j%�%�j%�j%$% %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24885,'pk','search_subsubcategory','j%%j%� j%% %#j%� %#�%�%c%�%� %�j%�%�%� j%�%�j%�j%$% %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24886,'pk','update_your_product','j%�%[%%��%� %�j%a%%�%�j%c% %#�%� j%�j%�j%�%�%� %#j%�j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24887,'pk','product_has_been_updated_successfully','%�j%a%%�%�j%c% %#%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24888,'pk','add_your_digital_product','j%�%[%%�j%� %��%�j%��%�%c%%� %[%j%�%%� %� %#%c% j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24889,'pk','active_ecommerce_cms_update_process','%�j%c%j%�%� j%��%� %#j%�%�j%�%j%% CMS j%�j%�j%�%�%� %#j%�j%�%�%� %#j%� j%c%%�%�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24890,'pk','codecanyon_purchase_code',' %#%� %��%� %#�%�%��%�%�%� j%�j%�%�%�j%�j%�j%�%�%� %#j%� %#%� %�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24891,'pk','database_name',' %��%�%c%j%� j%��%�j%% %#j%� %�j%�%�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24892,'pk','database_username',' %��%�%c%j%� j%��%�j%% j%a%j%�j%�%%� %�j%�%�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24893,'pk','database_password',' %��%�%c%j%� j%��%�j%% %[%j%�j%% %�j%�% %�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24894,'pk','database_hostname',' %��%�%c%j%� j%��%�j%% �%�%�j%%%c% %�j%�%�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24895,'pk','update_now','j%�j%�j%�%�%� j%�j%�%�%�%� %#j%�%�%� %Q%. j%�j%��%�j%� j%�%�j%��%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24896,'pk','congratulations','%�j%�j%�j%�% %# �%�%�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24897,'pk','you_have_successfully_completed_the_updating_process_please_login_to_continue','j%�%[% %��%� j%�j%�j%�%�%� %#j%�j%�%�%� %#j%� j%c%%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% %� %#%�%� %#j%�%%��%�j%� �%��%��%� j%�j%�j%�%�%� j%�% %# %[%%��%� %#�%� %�j%��%� %�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24898,'pk','go_to_home',' %� %[%j%�% j%�j%�%�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24899,'pk','login_to_admin_panel','j%��%� %�%�%� %[%�%�%�%� %��%� %Q% %�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24900,'pk','s3_file_system_credentials','S3 %�j%�j%�%� j%%j%%%c%%� %#�%� j%�j%%%�j%�j%�','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24901,'pk','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24902,'pk','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-09 08:41:54','2021-09-20 07:30:23'),(24903,'pk','aws_default_region','AWS_DEFAULT_REGION','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24904,'pk','aws_bucket','AWS_BUCKET','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24905,'pk','aws_url','AWS_URL','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24906,'pk','s3_file_system_activation','S3 %�j%�j%�%� j%%j%%%c%%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24907,'pk','your_phone_number','j%�%[% %#j%� %�%�%� %�%�j%�j%�%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24908,'pk','zip_file','j%�%%[% %�j%�j%�%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24909,'pk','install','j%�%�j%%%c%j%�%� %#j%�%�%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24910,'pk','this_version_is_not_capable_of_installing_addons_please_update','�%��%� %�j%�% %�%� j%��%� %�%�%�j%�% j%�%�j%%%c%j%�%� %#j%�%%��%� %#�%� %�j%�j%�%� %��%��%� %Q% �%��%� j%� j%�j%�%j%��%� %#j%�%%� j%�j%�j%�%�%� %#j%�j%�%�%� %#j%�%�%� %Q%�%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24911,'pk','search_in_menu','%��%�%�%� %��%� %Q% j%�%�j%�j%$% %#j%�%�%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24912,'pk','uploaded_files','j%�%[% %�%� %� %#j%�%j%��%� %�j%�j%�%��%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24913,'pk','shipping_cities','j%$%%[%%� %� j%$%�%�j%�%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24914,'pk','system','j%%j%%%c%%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24915,'pk','server_status','j%%j%�%%�j%�% %#�%� j%��%�j%��%�j%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24916,'pk','nothing_found',' %# %� %[% %��%��%� %Q% %�%�j%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24917,'pk','parent_category','j%�%��%�j%�j%��%� j%�%%�j%�%�%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24918,'pk','level','j%%j%V%j%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24919,'pk','category_information','j%�%%�j%�%�%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24920,'pk','translatable','%c%j%�%j%�%�j%%%��%�%c%�%�j%�%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24921,'pk','no_parent',' %#%�j%��%� %�j%�%�j%��%�%� %��%��%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24922,'pk','physical','j%�j%%%�j%�%��%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24923,'pk','digital',' %��%�j%��%�%c%%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24924,'pk','200x200','200x200','2021-02-09 08:41:55','2021-02-09 08:41:55'),(24925,'pk','32x32','32x32','2021-02-09 08:41:55','2021-02-09 08:41:55'),(24926,'pk','search_your_files','j%�%[%%��%� %�j%�j%�%��%� %Q% j%�%�j%�j%$% %#j%�%�%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24927,'pk','category_has_been_updated_successfully','j%�%%�j%�%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24928,'pk','all_uploaded_files','j%%j%� %[%�%� j%�%[%%�%� %� %�j%�j%�%��%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24929,'pk','upload_new_file','%�j%��%� %�j%�j%�%� j%�%[% %�%� %� %#j%�%�%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24930,'pk','all_files','j%�%�j%�%� %�j%�j%�%��%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24931,'pk','search','j%�%�j%�j%$% %#j%�%�%� %Q%','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24932,'pk','details_info','j%�%�j%a%�%�%�j%�j%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:41:55','2021-09-20 07:30:23'),(24933,'pk','copy_link','%�%� %# %#j%�%[%�%� %#j%�%�%� %Q%','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24934,'pk','are_you_sure_to_delete_this_file',' %#�%�j%� j%�%[% %�j%�%�j%c%�%� j%�j%% %�j%�j%�%� %#%� j%�j%�%%� %#j%�%%�j%� %�j%��%�j%��%� �%��%� %Q%j%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24935,'pk','file_info','%�j%�j%�%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24936,'pk','link_copied_to_clipboard','%�%� %# %#j%�%[%�%� %#%�%[% j%�%�j%�% %� %��%� %Q% %#�%�j%� %��%�j%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24937,'pk','oops_unable_to_copy','j%�%�%��%� j%� %#j%�%[%�%� %#j%�%%��%� j%%�%� %�j%�j%a%j%�%','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24938,'pk','file_deleted_successfully','%�j%�j%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�%%� �%�%� %�j%��%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24939,'pk','add_new_brand','%��%�j%� j%�j%�%j%�%� %� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24940,'pk','120x80','120x80','2021-02-09 08:41:56','2021-02-09 08:41:56'),(24941,'pk','brand_information','j%�j%�%j%�%� %� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24942,'pk','brand_has_been_updated_successfully','j%�j%�%j%�%� %� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %��%�j%� �%��%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24943,'pk','brand_has_been_deleted_successfully','j%�j%�%j%�%� %� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�%%� �%�%� %��%�j%� �%��%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24944,'pk','this_is_used_for_search_input_those_words_by_which_cutomer_can_find_this_product','�%��%� j%�%�j%�j%$% %#�%� %�j%��%� j%�j%%j%�j%c%%�j%�%� %#�%�j%� j%�j%�j%�j%� �%��%��%� j%�%� j%�%�%�j%�j%U% %#%� j%�%� %[%%c% %#j%�%�%� %Q% j%�j%% %#�%� j%�%j%�%�%�j%c%�%� %#%c%%�%�j%�% j%�j%% %#�%� %�j%a%%�%�j%c%j%�j%� %#%� j%�%�j%�j%$% %#j%�%j%% %#j%�j%� �%��%��%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24945,'pk','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','�%��%� j%�j%a%j%�%��%�j%�% %�j%a%%�%�j%c%j%�j%� %#�%� j%�%�j%a%�%�%�j%�j%� %#�%� j%a%%�j%��%� %��%�%�j%�%�%� %��%� %Q% j%� %# %[%j%�j%��%� j%��%�j%��%� �%��%� %Q%�%� 600x600 j%%j%�j%�j%�% %#�%� j%�j%a%j%�%��%�j%�% %#j%� j%�j%%j%�j%c%%�j%�%� %#j%�%�%� %Q%�%�','2021-02-09 08:41:56','2021-09-20 07:30: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','�%��%� j%�j%a%%��%�j%�% j%�%�j%�%� %[%j%�%%� %� %#%c% j%�j%� %#j%% %��%� %Q% %�j%�%j%��%� �%��%��%� 300x300 j%%j%�j%�j%�% %#�%� j%�j%a%%��%�j%�% %#j%� j%�j%%j%�j%c%%�j%�%� %#j%�%�%� %Q%�%� j%�%[%%��%� j%$%j%��%��%��%� %#�%� %�j%�% %#j%�%�%� j%$%�%� %#�%� j%�j%% %[%j%�j%% %# %� %[% j%�j%�%��%� j%� %��%� j%�% %# %[%�%� %Q% %#�%�%�%� %#�%� �%�%��%� %Q% j%�j%% %#%� j%�%�j%�j%� j%��%� j%�%�j%�%��%� %#�%� %� different %�j%�j%�%�%� j%�%�j%�j%� %��%� %Q% %# %� %[% %#%�j%�j%�%�%� %#%c%j%�%�j%� %[% %�j%��%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24947,'pk','use_proper_link_without_extra_parameter_dont_use_short_share_linkembeded_iframe_code','j%�j%b%j%�%��%� %[%�%�j%�%j%�%��%�%c%j%�% %#�%� j%�j%Q%�%�j%�% %�%�j%�j%%j%� %�%� %# j%�j%%j%�j%c%%�j%�%� %#j%�%�%� %Q%�%� %�j%�j%�j%a%j%�% j%$%�%�j%�j%�% %�%� %# / j%��%�%�j%��%� %� %� iframe %#%� %� j%�j%%j%�j%c%%�j%�%� %��%� %#j%�%�%� %Q%�%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24948,'pk','save_product','%[%j%�%%� %� %#%c% %#%� %�j%�%�%�j%U% %#j%�%�%� %Q%','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24949,'pk','product_has_been_inserted_successfully','%[%j%�%%� %� %#%c% %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% %�j%�%�j%� %��%�j%� �%��%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24950,'pk','something_went_wrong',' %# %� %[% j%Q%%�j%V% �%�%� %��%�j%�!','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24951,'pk','sorry_for_the_inconvenience_but_were_working_on_it','j%� %#%��%�%� %#�%� %�j%��%� %�j%c%j%�%j%�%j%� j%� %��%� %#%� �%�%� j%�j%% %[%j%�% %#j%�%� %#j%�% j%�%�%��%� �%��%� %Q%�%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24952,'pk','error_code','j%Q%%�j%V% %#%� %�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24953,'pk','please_configure_smtp_setting_to_work_all_email_sending_functionality','j%�j%�%j%��%� %#j%�%%� j%�%�j%�%� j%��%� %��%�%� j%� %[%�%�j%�%��%� %#�%� %�j%c%j%�%��%�j%� %[%j%�% %#j%�%� %#j%�%%��%� %#�%� %�j%��%� j%��%�j%% j%��%�%� %c%�%� %[%�%� j%%�%�%c%%� %� %#%� j%�j%$% %#�%�%� j%��%� %Q%','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24954,'pk','order','j%�j%�%j%��%�j%�','2021-02-09 08:41:56','2021-09-20 07:30: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','�%�%�j%�j%�%�%� %[%j%�j%% UI %#%� j%�j%�%%�j%�%j%�j%�% j%�% %# %[%%��%� %#�%� %�j%��%� j%��%�%�j%�% %#�%� j%�%�%� %�j%�j%��%� %�j%�j%�%�j%� �%��%��%� �%�%��%� %Q% j%�%�j%�j%� j%��%� j%�%�j%�%��%� %#�%� %� different %�j%�j%�%�%� j%�%�j%�j%� %#%� j%��%� %# %[%%��%� %#�%� %� left �%�%��%� %Q% j%�j%�j%��%� %Q% j%�%�j%�% j%�j%�j%��%� %Q% j%�%�%�%� %Q% j%V%j%�%%� j%%�%� %#%c% j%�j%�%�j%� %[% %�j%��%� j%��%�%�j%�% %��%�j%�%j%�j%�%� %#j%�%%��%� j%%�%� %[%�%�%��%� j%�%� %� %#j%�j%� %#%� j%�%�%�%� %��%� %Q% j%�% %# %[%�%� %Q%�%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24956,'pk','home_banner_3_max_3','�%�%�%� j%��%�%�j%�% 3 (j%�%�%�j%�j%��%� j%%�%� j%�%�%�j%�j%��%� 3)','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24957,'pk','add_new_seller','%��%�j%� j%��%� %�%��%� %�j%�%�j%� j%$%j%�%�%� %#j%�%�%� %Q%','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24958,'pk','filter_by_approval','%�%�j%U%%�j%�%�%� %#�%� %�j%�j%�j%U% j%%�%� %�%�%c%j%�% %#j%�%�%� %Q%','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24959,'pk','nonapproved','j%Q%�%�j%�% %�%�j%U%%�j%�% j%$%j%��%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24960,'pk','type_name_or_email__enter','%�j%�%� �%�j%� j%��%� %��%�%� j%�%�j%�% j%�%�j%�j%�%j%�j%� %c%j%�j%�%[% %#j%�%�%� %Q%','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24961,'pk','due_to_seller','j%��%� %�%��%� %�j%�%��%� %#�%� %�j%��%� j%%�%�','2021-02-09 08:41:56','2021-09-20 07:30:23'),(24962,'pk','log_in_as_this_seller','j%�j%% j%��%� %�%��%� %�j%�%��%� %#�%� j%V%%�j%�% %[%j%�% %�j%� %� j%�%� %#j%�%�%� %Q%','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24963,'pk','go_to_payment','j%�j%�j%�j%��%� %��%� %[%j%�% j%�j%�j%��%� %Q%','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24964,'pk','ban_this_seller','j%�j%% j%��%� %�%��%� %�j%�%��%� %[%j%�% %[%j%�j%�%�j%��%� %� %�j%�j%��%� %Q%','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24965,'pk','do_you_really_want_to_ban_this_seller',' %#�%�j%� j%�%[% %�j%�%�j%c%�%� %��%� %Q% j%�j%% j%��%� %�%��%� %�j%�%��%� %[%j%�% %[%j%�j%�%�j%��%� j%c%j%�j%�j%� %#j%�%%�j%� %�j%��%�j%��%� �%��%� %Q%j%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24966,'pk','proceed','j%� %��%� j%� %� %[%%�!','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24967,'pk','approved_sellers_updated_successfully','%�%�j%U%%�j%�% j%$%j%��%� j%��%� %�%��%� %�j%�%��%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%�j%��%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24968,'pk','seller_has_been_deleted_successfully','j%��%� %�%��%� %�j%�%��%� %#%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�%%� %#j%�%j%��%�j%� %��%�j%� �%��%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24969,'pk','seller_information','j%��%� %�%��%� %�j%�%��%� j%%�%� %�j%�j%c%%�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24970,'pk','seller_has_been_inserted_successfully','j%��%� %�%��%� %�j%�%��%� %#%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�%� %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24971,'pk','email_already_exists','j%��%� %��%�%� %[%�%�%��%� j%%�%� %�%�j%�%�j%� �%��%�!','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24972,'pk','verify_your_email_address','j%�%[%%�j%� j%��%� %��%�%� j%��%� %�j%�%�%�j%% %#�%� j%�j%a%j%��%�%� %#j%�%�%� %Q%','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24973,'pk','before_proceeding_please_check_your_email_for_a_verification_link','j%� %��%� j%� %� %[%%��%� j%%�%� %[%�%�%��%� j%� j%�%�j%��%�%��%� %�%� %# %#�%� %�j%��%� j%�%[%%�j%� j%��%� %��%�%� %��%� %# %#j%�%�%� %Q%�%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24974,'pk','if_you_did_not_receive_the_email','j%� %�j%�% j%�%[% %#%� j%��%� %��%�%� %�%�j%a%%�%� %��%��%� %Q% �%�%�j%��%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24975,'pk','click_here_to_request_another','j%��%� %# j%�%�j%�% j%�j%�%j%�%�j%�j%%j%� %#j%�%%��%� %#�%� %�j%��%� �%��%�j%� %Q% %#%� %# %#j%�%�%� %Q%','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24976,'pk','email_verification','j%��%� %��%�%� %#�%� j%�%�j%��%�%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24977,'pk','email_verification__','j%��%� %��%�%� %#�%� j%�%�j%��%�%� -','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24978,'pk','https_activation','HTTPS j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24979,'pk','maintenance_mode','%�j%�%%�j%� %#�%� j%�j%�%�j%� %��%� %Q%','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24980,'pk','maintenance_mode_activation','%��%�%�%c%�%�%�%�j%% %�%� %� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24981,'pk','classified_product_activate','j%�j%�%j%��%� j%�%�j%��%� %#�%� %�j%a%%�%�j%c%j%�j%� %#%� %�j%�%�%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24982,'pk','classified_product','j%�j%�%j%��%� j%�%�j%��%� %#�%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24983,'pk','business_related','j%�j%�%%�j%% j%%�%� %�j%�j%c%%�%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24984,'pk','vendor_system_activation','%��%�%� %�j%�% %�j%U%j%�%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24985,'pk','wallet_system_activation','%�j%�%��%�%c% j%%j%%%c%%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24986,'pk','coupon_system_activation',' %#%�%[%%� j%%j%%%c%%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24987,'pk','pickup_point_activation','%[% %# j%�%[% %[%%�j%�j%�%�%c% j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24988,'pk','conversation_activation',' %�%�j%� %�%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24989,'pk','guest_checkout_activation','%��%�%�j%�%� %��%� %# j%�j%�%c% j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:57','2021-09-20 07:30:23'),(24990,'pk','categorybased_commission','j%�%%�j%�%�%� %[%j%�% %�j%�%��%� %#%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30: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','j%�j%% j%�%[%j%$%%� %#%� %�j%�%�%� %#j%�%%��%� %#�%� j%�j%c%j%� j%��%� %�%��%� %�j%�%��%� %#�%� %#%��%�%�%�%c%�%� j%Q%�%�j%�% %�j%c%j%�%� �%�%�j%�j%�j%��%� %��%� j%�%�j%�% j%�%[% %#%� �%�j%�% j%�%%�j%�%�%� %��%� %Q% %#%��%�j%$%%� %�j%�j%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%� j%�j%a%%�j%�%j%� j%��%� %�j%�% j%��%� %�%�%� %#%� %#%�j%��%� %#%�j%$%%� %��%��%� %Q% %�%��%� %�j%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(24992,'pk','set_commisssion_now','j%�j%� %#j%�%��%�j%%%� j%%�%�%c% %#j%�%�%� %Q%','2021-02-09 08:41:58','2021-09-20 07:30:23'),(24993,'pk','payment_related','j%�j%�j%�j%��%� %��%� j%%�%� %�j%�j%c%%�%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(24994,'pk','paypal_payment_activation','%[%�%� %[%j%�%� j%�j%�j%�j%��%� %��%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(24995,'pk','you_need_to_configure_paypal_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� %[%�%� %[%j%�%� %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(24996,'pk','stripe_payment_activation','%[%%c%�%� j%�j%�j%�j%��%� %��%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(24997,'pk','sslcommerz_activation','j%��%�j%% j%��%�j%% j%��%�%� %#j%�%�j%�%j%% j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(24998,'pk','instamojo_payment_activation','j%�%�j%%%c%%�%�%�%� j%�j%�j%�j%��%� %��%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(24999,'pk','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� j%�%�j%%%c%j%�%�%�%�%� j%�j%�j%�j%��%� %��%� %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25000,'pk','razor_pay_activation','j%�j%%j%�j%�%j%� j%�%�j%�%�j%��%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25001,'pk','you_need_to_configure_razor_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� j%�j%%j%�j%�%j%� %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%�%j%��%�j%� j%��%�%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25002,'pk','paystack_activation','%[%�%� j%�j%%%c%�%� %# j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25003,'pk','you_need_to_configure_paystack_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� %[%�%� j%�j%%%c%�%� %# %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� j%��%�%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25004,'pk','voguepay_activation','%�%� %� %[%�%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25005,'pk','you_need_to_configure_voguepay_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� %�%� %� %[%�%� %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� j%��%�%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25006,'pk','payhere_activation','%[%�%��%�j%�% j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25007,'pk','ngenius_activation','%� %��%�%��%�%�j%% j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25008,'pk','you_need_to_configure_ngenius_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� %� %��%�%��%�j%% %#%� j%�j%�%j%%j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� j%��%�%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25009,'pk','iyzico_activation','j%�j%�j%�%�%� %#%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25010,'pk','you_need_to_configure_iyzico_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� j%�j%�j%�%�%� %#%� %#%� j%�j%�%j%%j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25011,'pk','bkash_activation','j%� %#�%�j%$% j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25012,'pk','you_need_to_configure_bkash_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� j%�j%�j%$%j%� %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25013,'pk','nagad_activation','%�j%� %� %� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25014,'pk','you_need_to_configure_nagad_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� %� %� %� %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25015,'pk','cash_payment_activation','%�%�j%� j%�j%�j%�j%��%� %��%� j%��%� %#%c%�%�%��%�j%$%%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25016,'pk','social_media_login','j%%%�j%$%%� %��%� %��%�j%� %�j%� %� j%�%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25017,'pk','facebook_login','%��%�j%% j%� %# %�j%� %� j%�%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25018,'pk','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� %��%�j%% j%� %# %#%�j%�j%�%�%c% %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� j%��%�%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25019,'pk','google_login',' %�%� %�%� %�j%� %� j%�%�','2021-02-09 08:41:58','2021-09-20 07:30:23'),(25020,'pk','you_need_to_configure_google_client_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� %�%� %�%� %#%�j%�j%�%�%c% %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� j%��%�%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25021,'pk','twitter_login','%c%%��%�%c%j%�% %�j%� %� j%�%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25022,'pk','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','j%�j%% j%�j%a%%�j%a%�%�j%� %#%� %�j%c%j%�%� %#j%�%%��%� %#�%� %� You j%�%[% %#%� %c%%��%�%c%j%�% %#%�j%�j%�%�%c% %#%� j%a%j%��%�j%� j%V%j%�%�%�%��%� j%%�%� j%�j%$% %#�%�%� %#j%�%%��%� %#�%� j%b%j%�%%�j%�%j%� �%��%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25023,'pk','shop_logo','j%� %#j%�%� %#j%� %�%� %�%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25024,'pk','shop_address','j%� %#j%�%� %#j%� %[%j%��%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25025,'pk','banner_settings','j%��%�%�j%�% %#�%� j%�j%�%j%��%�j%�j%�j%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25026,'pk','banners','j%��%�%�j%�%j%�%','2021-02-09 08:41:59','2021-09-20 07:30: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','�%�%��%� %Q% j%�%�%� %�j%�j%��%� %#%� %��%�%�%c%%�%c% %�j%%j%�%�%� %�j%�%j%�j%��%� j%� %# %�j%�j%�%�j%� %#j%�%%�j%� j%� %[%j%��%� %# %� %[% j%�%��%� %��%� %Q% j%��%�%�j%�% %#�%� j%�%�%�%� %Q% j%�j%V%j%�%j%�%� j%�%�%� %�j%�j%��%� %#�%� j%�j%� %#�%� %�ped %#j%�%%[% �%�%�j%% %#j%��%� �%��%� %Q%�%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25028,'pk','insert_link_with_https_','https %#�%� j%%j%�j%� %[% %�%� %# j%�j%�j%�%� %#j%�%�%� %Q%','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25029,'pk','your_shop_has_been_updated_successfully','j%�%[% %#�%� j%� %#j%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% %#j%�%j%��%� %�j%��%� �%��%�!','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25030,'pk','search_result_for_',' %#�%� %�j%��%� j%�%�j%�j%$% %#�%� %�j%�j%�j%�j%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25031,'pk','brand_has_been_inserted_successfully','j%�j%�%j%�%� %� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�%� %#j%�%j%��%�j%� %��%�j%� �%��%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25032,'pk','about',' %#�%� j%�j%�j%�%�%� %��%� %Q%','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25033,'pk','payout_info','j%�j%�j%�j%��%� %��%� %#�%� %�j%c%%�%�%�j%�j%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25034,'pk','bank_acc_name','j%��%�%� %# j%��%� %#j%%�%� %#j%� %�j%�%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25035,'pk','bank_acc_number','j%��%�%� %# j%��%� %#j%%�%� %�%�j%�j%�%','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25036,'pk','total_products',' %#%� %�j%a%%�%�j%c%j%�j%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25037,'pk','total_sold_amount',' %#%� %�j%�%%�j%�j%� j%$%j%��%� j%�%%�%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25038,'pk','wallet_balance','%�j%�%��%�%c% j%��%�%�%�j%%','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25039,'pk','cookies_agreement',' %#%� %#�%�j%�% %#j%� %�j%c%j%��%�j%��%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25040,'pk','cookies_agreement_text',' %#%� %#�%�j%�% %#j%� %�j%c%j%��%�j%��%� %�j%�%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25041,'pk','show_cookies_agreement',' %#%� %#�%�j%�% %#j%� %�j%c%j%��%�j%��%� j%� %# %[%j%�j%��%� %Q%j%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25042,'pk','custom_script',' %#j%%%c%%� j%�j%% %#j%�%%[%%c%','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25043,'pk','header_custom_script__before_head','�%��%� %�j%�% %#j%%%c%%� j%�j%% %#j%�%%[%%c%','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25044,'pk','write_script_with_script_tag','<j%�j%% %#j%�%%[%%c%> %c%�%� %� %#�%� j%%j%�j%� %[% j%�j%% %#j%�%%[%%c% %� %# %[%�%� %Q%','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25045,'pk','footer_custom_script__before_body','%�%�%c%j%�% %#j%%%c%%� j%�j%% %#j%�%%[%%c%�%� </body> j%%�%� %[%�%�%��%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25046,'pk','category_has_been_inserted_successfully','j%�%%�j%�%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�%� %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25047,'pk','all_flash_deals','j%�%�j%�%� %�%��%�j%$% %��%�%�j%�%','2021-02-09 08:41:59','2021-09-20 07:30:23'),(25048,'pk','create_new_flash_deal','%��%�j%� %�%��%�j%$% %��%�%� j%�%�j%�j%��%� %Q%','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25049,'pk','ffffff','#FFFFFF','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25050,'pk','this_image_is_shown_as_cover_banner_in_flash_deal_details_page','j%�j%% j%�j%a%%��%�j%�% %#%� %�%��%�j%$% %��%�%� %#�%� j%�%�j%a%�%�%�j%�j%� %#�%� j%a%%�j%��%� %��%� %Q% %#%�j%�% j%��%�%�j%�% %#�%� j%V%%�j%�% %[%j%�% j%� %# %[%j%��%�j%� %��%�j%� �%��%��%�','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25051,'pk','flash_deal_has_been_inserted_successfully','%�%��%�j%$% %��%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�%� %#�%� %�j%��%� �%��%�','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25052,'pk','flash_deal_status_updated_successfully','%�%��%�j%$% %��%�%� %#�%� j%a%%�j%�%j%�j%�j%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %�j%��%�','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25053,'pk','flash_deal_has_been_updated_successfully','%�%��%�j%$% %��%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% �%�%� %�j%��%� �%��%�','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25054,'pk','update_language_info','j%�%j%�j%�%� %#�%� %�j%c%%�%�%�j%�j%� %#%� j%�%[% %��%�%c% %#j%�%�%� %Q%','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25055,'pk','language_has_been_updated_successfully','j%�%j%�j%�%� %#%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�%[% %��%�%c% %#�%�j%� %��%�j%� �%��%�','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25056,'pk','type_key__enter',' %#%��%�j%� j%�%�j%�% j%�%�j%�j%�%j%�j%� %c%j%�j%�%[% %#j%�%�%� %Q%','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25057,'pk','translations_updated_for_',' %#�%� %�j%��%� j%�j%�%j%�%��%� j%�j%�j%�%�%� %#j%�j%�%�%�','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25058,'pk','language_has_been_inserted_successfully','j%�%j%�j%�%� %#j%�%��%�j%�j%��%� %#�%� j%%j%�j%� %[% j%�j%�j%�%� %#�%� %�j%��%� �%��%�','2021-02-09 08:42:00','2021-09-20 07:30:23'),(25059,'en','verify_now','Verify Now','2021-02-11 06:00:02','2021-09-20 07:30:23'),(25060,'en','iyzico','Iyzico','2021-02-11 06:50:18','2021-09-20 07:30:23'),(25061,'en','bkash_credential','Bkash Credential','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25062,'en','bkash_checkout_app_key','BKASH CHECKOUT APP KEY','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25063,'en','bkash_checkout_app_secret','BKASH CHECKOUT APP SECRET','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25064,'en','bkash_checkout_user_name','BKASH CHECKOUT USER NAME','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25065,'en','bkash_checkout_password','BKASH CHECKOUT PASSWORD','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25066,'en','bkash_sandbox_mode','Bkash Sandbox Mode','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25067,'en','nagad_credential','Nagad Credential','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25068,'en','nagad_mode','NAGAD MODE','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25069,'en','nagad_merchant_id','NAGAD MERCHANT ID','2021-02-11 06:50:42','2021-09-20 07:30:23'),(25070,'en','nagad_merchant_number','NAGAD MERCHANT NUMBER','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25071,'en','nagad_pg_public_key','NAGAD PG PUBLIC KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25072,'en','nagad_merchant_private_key','NAGAD MERCHANT PRIVATE KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25073,'en','iyzico_credential','Iyzico Credential','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25074,'en','iyzico_api_key','IYZICO_API_KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25075,'en','iyzico_api_key','IYZICO API KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25076,'en','iyzico_secret_key','IYZICO_SECRET_KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25077,'en','iyzico_secret_key','IYZICO SECRET KEY','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25078,'en','iyzico_sandbox_mode','IYZICO Sandbox Mode','2021-02-11 06:50:43','2021-09-20 07:30:23'),(25079,'en','instamojo','Instamojo','2021-02-11 06:53:34','2021-09-20 07:30:23'),(25080,'en','nagad','Nagad','2021-02-11 06:53:35','2021-09-20 07:30:23'),(25081,'en','bkash','Bkash','2021-02-11 06:53:35','2021-09-20 07:30:23'),(25082,'en','your_order_has_been_placed','Your order has been placed','2021-02-11 06:55:22','2021-09-20 07:30:23'),(25083,'en','your_order_has_been_placed_successfully','Your order has been placed successfully','2021-02-11 06:55:22','2021-09-20 07:30:23'),(25084,'en','product_image','Product Image','2021-02-11 06:56:47','2021-09-20 07:30:23'),(25085,'en','add_to_compare','Add to compare','2021-02-12 15:42:01','2021-09-20 07:30:23'),(25086,'en','step_1','Step 1','2021-02-13 03:34:49','2021-09-20 07:30: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 03:34:49','2021-09-20 07:30: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 03:34:49','2021-09-20 07:30: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 03:34:49','2021-09-20 07:30: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 03:34:49','2021-09-20 07:30:23'),(25091,'en','step_2','Step 2','2021-02-13 03:34:49','2021-09-20 07:30:23'),(25092,'en','category_and_brand_should_be_in_numerical_id','Category and Brand should be in numerical id','2021-02-13 03:34:49','2021-09-20 07:30: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 03:34:49','2021-09-20 07:30:23'),(25094,'en','upload_product_file','Upload Product File','2021-02-13 03:34:49','2021-09-20 07:30:23'),(25095,'en','all_attributes','All Attributes','2021-02-13 03:41:19','2021-09-20 07:30:23'),(25096,'en','add_new_attribute','Add New Attribute','2021-02-13 03:41:19','2021-09-20 07:30:23'),(25097,'en','attribute_has_been_inserted_successfully','Attribute has been inserted successfully','2021-02-13 03:41:48','2021-09-20 07:30:23'),(25098,'en','attribute_has_been_deleted_successfully','Attribute has been deleted successfully','2021-02-13 03:41:59','2021-09-20 07:30:23'),(25099,'en','product_has_been_duplicated_successfully','Product has been duplicated successfully','2021-02-14 04:24:28','2021-09-20 07:30:23'),(25100,'en','filter_by_date','Filter by date','2021-02-14 04:26:26','2021-09-20 07:30:23'),(25101,'en','1_category_and_brand_should_be_in_numerical_id','1. Category and Brand should be in numerical id.','2021-02-14 04:47:38','2021-09-20 07:30: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 04:47:38','2021-09-20 07:30:23'),(25103,'en','payment_completed','Payment completed','2021-02-14 05:00:40','2021-09-20 07:30:23'),(25104,'en','contact','Contact','2021-02-14 05:01:48','2021-09-20 07:30:23'),(25105,'en','order_status_has_been_updated','Order status has been updated','2021-02-14 05:01:48','2021-09-20 07:30:23'),(25106,'en','review_has_been_submitted_successfully','Review has been submitted successfully','2021-02-14 05:06:58','2021-09-20 07:30:23'),(25107,'en','pay_to_seller','Pay to seller','2021-02-14 05:53:05','2021-09-20 07:30:23'),(25108,'en','txn_code','Txn Code','2021-02-14 05:53:05','2021-09-20 07:30:23'),(25109,'en','clear_due','Clear due','2021-02-14 05:53:05','2021-09-20 07:30:23'),(25110,'en','product_wish_report','Product Wish Report','2021-02-14 06:00:21','2021-09-20 07:30:23'),(25111,'en','number_of_wish','Number of Wish','2021-02-14 06:00:21','2021-09-20 07:30:23'),(25112,'en','all_customers','All Customers','2021-02-14 06:02:18','2021-09-20 07:30:23'),(25113,'en','type_email_or_name__enter','Type email or name & Enter','2021-02-14 06:02:18','2021-09-20 07:30:23'),(25114,'en','package','Package','2021-02-14 06:02:18','2021-09-20 07:30:23'),(25115,'en','log_in_as_this_customer','Log in as this Customer','2021-02-14 06:02:18','2021-09-20 07:30:23'),(25116,'en','ban_this_customer','Ban this Customer','2021-02-14 06:02:18','2021-09-20 07:30:23'),(25117,'en','do_you_really_want_to_ban_this_customer','Do you really want to ban this Customer?','2021-02-14 06:02:18','2021-09-20 07:30:23'),(25118,'en','do_you_really_want_to_unban_this_customer','Do you really want to unban this Customer?','2021-02-14 06:02:19','2021-09-20 07:30:23'),(25119,'en','ticket_has_been_sent_successfully','Ticket has been sent successfully','2021-02-14 06:24:25','2021-09-20 07:30:23'),(25120,'en','send_reply','Send Reply','2021-02-14 06:24:34','2021-09-20 07:30:23'),(25121,'en','recharge_wallet','Recharge Wallet','2021-02-14 07:01:14','2021-09-20 07:30:23'),(25122,'en','wallet_recharge_history','Wallet recharge history','2021-02-14 07:01:15','2021-09-20 07:30:23'),(25123,'en','offline_recharge_wallet','Offline Recharge Wallet','2021-02-14 07:01:15','2021-09-20 07:30:23'),(25124,'en','message_has_been_send_to_seller','Message has been send to seller','2021-02-14 07:15:56','2021-09-20 07:30: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 05:03:44','2021-09-20 07:30:23'),(25126,'en','premium_packages_for_customers','Premium Packages for Customers','2021-02-15 05:03:44','2021-09-20 07:30:23'),(25127,'en','offline_package_purchase_','Offline Package Purchase ','2021-02-15 05:03:45','2021-09-20 07:30:23'),(25128,'en','all_classifies_packages','All Classifies Packages','2021-02-15 05:15:40','2021-09-20 07:30:23'),(25129,'en','create_new_package','Create New Package','2021-02-15 05:15:42','2021-09-20 07:30:23'),(25130,'en','package_purchasing_successful','Package purchasing successful','2021-02-15 05:26:45','2021-09-20 07:30:23'),(25131,'en','product_upload_remaining','Product Upload Remaining','2021-02-15 05:26:46','2021-09-20 07:30:23'),(25132,'en','current_package','Current Package','2021-02-15 05:26:46','2021-09-20 07:30:23'),(25133,'en','select_a_condition','Select a condition','2021-02-15 05:26:55','2021-09-20 07:30:23'),(25134,'en','uploaded_by','Uploaded By','2021-02-15 05:40:07','2021-09-20 07:30:23'),(25135,'en','customer_status','Customer Status','2021-02-15 05:40:07','2021-09-20 07:30:23'),(25136,'en','unpublished','UNPUBLISHED','2021-02-15 05:40:07','2021-09-20 07:30:23'),(25137,'tr','all_category','T%]%m Kategori','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25138,'tr','all','Her<%�ey','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25139,'tr','flash_sale','H%�%zl%�% Sat%�%<%�','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25140,'tr','view_more','Daha fazla g%b%ster','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25141,'tr','add_to_wishlist','%�%stek listesine ekle','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25142,'tr','add_to_compare','Kar<%�%�%la<%�t%�%rmak i%�in ekle','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25143,'tr','add_to_cart','Sepete ekle','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25144,'tr','club_point','Kul%]%p Puan%�%','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25145,'tr','classified_ads','S%�%n%�%fland%�%r%�%lm%�%<%� reklamlar','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25146,'tr','used','Kullan%�%lm%�%<%�','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25147,'tr','top_10_categories','%�%lk 10 Kategori','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25148,'tr','view_all_categories','T%]%m Kategoriler g%b%r%]%nt%]%le','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25149,'tr','top_10_brands','En %�%yi 10 Marka','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25150,'tr','view_all_brands','T%]%m Markalar%�% G%b%r%]%nt%]%le','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25151,'tr','terms__conditions','<%� artlar ve ko<%�ullar','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25152,'tr','best_selling','En iyi sat%�%<%�','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25153,'tr','top_20','En iyi 20','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25154,'tr','featured_products','%�zel %�r%]%nler','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25155,'tr','best_sellers','En %�ok satanlar','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25156,'tr','visit_store','Ma%�azay%�% ziyaret et','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25157,'tr','popular_suggestions','Pop%]%ler %�neriler','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25158,'tr','category_suggestions','Kategori %�nerileri','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25159,'tr','automobile__motorcycle','Otomobil ve Motosiklet','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25160,'tr','price_range','Fiyat aral%�%%�%�%','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25161,'tr','filter_by_color','Renge g%b%re filtrele','2021-02-16 07:41:07','2021-09-20 07:30:23'),(25162,'tr','home','Ev','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25163,'tr','newest','En yeni','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25164,'tr','oldest','En eski','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25165,'tr','price_low_to_high','Fiyat d%]%<%�%]%kten y%]%kse%�e','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25166,'tr','price_high_to_low','Fiyat%�% y%]%ksekten d%]%<%�%]%%�e do%�ru','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25167,'tr','brands','Markalar','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25168,'tr','all_brands','T%]%m markalar','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25169,'tr','all_sellers','T%]%m Sat%�%c%�%lar','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25170,'tr','inhouse_product','<%� irket i%�i %]%r%]%n','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25171,'tr','message_seller','Sat%�%c%�%ya Mesaj G%b%nder','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25172,'tr','price','Fiyat','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25173,'tr','discount_price','%�%ndirimli fiyat','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25174,'tr','color','Renk','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25175,'tr','quantity','Miktar','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25176,'tr','available','mevcut','2021-02-16 07:41:08','2021-02-16 07:41:08'),(25177,'tr','total_price','Toplam fiyat','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25178,'tr','out_of_stock','Stoklar t%]%kendi','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25179,'tr','refund','Geri %b%deme','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25180,'tr','share','Payla<%�','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25181,'tr','sold_by','Taraf%�%ndan sat%�%lan','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25182,'tr','customer_reviews','Musteri degerlendirmeleri','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25183,'tr','top_selling_products','En %�ok Satan %�r%]%nler','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25184,'tr','description','A%�%�%klama','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25185,'tr','video','Video','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25186,'tr','reviews','Yorumlar','2021-02-16 07:41:08','2021-09-20 07:30:23'),(25187,'tr','download','%�%ndir','2021-02-16 07:41:29','2021-09-20 07:30: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 07:41:29','2021-09-20 07:30:23'),(25189,'tr','related_products','%�%lgili %]%r%]%nler','2021-02-16 07:41:29','2021-09-20 07:30:23'),(25190,'tr','any_query_about_this_product','Bu %]%r%]%nle ilgili herhangi bir sorgu','2021-02-16 07:41:29','2021-09-20 07:30:23'),(25191,'tr','product_name','%�r%]%n ad%�%','2021-02-16 07:41:29','2021-09-20 07:30:23'),(25192,'tr','your_question','Senin sorun','2021-02-16 07:41:29','2021-09-20 07:30:23'),(25193,'tr','send','G%b%nder','2021-02-16 07:41:29','2021-09-20 07:30:23'),(25194,'tr','use_country_code_before_number','Numaradan %b%nce %]%lke kodunu kullan%�%n','2021-02-16 07:41:29','2021-09-20 07:30:23'),(25195,'tr','remember_me','Beni hat%�%rla','2021-02-16 07:41:29','2021-09-20 07:30:23'),(25196,'tr','dont_have_an_account','Hesab%�%n yok mu?','2021-02-16 07:41:29','2021-09-20 07:30:24'),(25197,'tr','register_now','<%� imdi %]%ye Ol','2021-02-16 07:41:29','2021-09-20 07:30:24'),(25198,'tr','or_login_with','Veya Giri<%� Yap','2021-02-16 07:41:29','2021-09-20 07:30:24'),(25199,'tr','oops','oops ..','2021-02-16 07:41:29','2021-09-20 07:30:24'),(25200,'tr','this_item_is_out_of_stock','Bu %]%r%]%n stokta yok!','2021-02-16 07:41:29','2021-09-20 07:30:24'),(25201,'tr','back_to_shopping','Al%�%<%�veri<%�e geri d%b%n','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25202,'tr','login_to_your_account','Hesab%�%n%�%za giri<%� yap%�%n.','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25203,'tr','purchase_history','Sat%�%n al%�%m ge%�mi<%�i','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25204,'tr','new','Yeni','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25205,'tr','downloads','%�%ndirilenler','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25206,'tr','sent_refund_request','Geri %�deme %�%ste%�i G%b%nderildi','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25207,'tr','product_bulk_upload','%�r%]%n Toplu Y%]%kleme','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25208,'tr','orders','Emirler','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25209,'tr','recieved_refund_request','Geri %�deme %�%ste%�i Al%�%nd%�%','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25210,'tr','shop_setting','Ma%�aza Ayar%�%','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25211,'tr','payment_history','%b%deme ge%�mi<%�i','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25212,'tr','money_withdraw','Para %�ekme','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25213,'tr','conversations','Konu<%�malar','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25214,'tr','my_wallet','C%]%zdan%�%m','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25215,'tr','earning_points','Puan Kazanmak','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25216,'tr','support_ticket','Destek bileti','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25217,'tr','manage_profile','Profili Y%b%net','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25218,'tr','sold_amount','Sat%�%lan Miktar','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25219,'tr','your_sold_amount_current_month','Satt%�%%�%�%n%�%z miktar (cari ay)','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25220,'tr','total_sold','Toplam Sat%�%lan','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25221,'tr','last_month_sold','Ge%�en Ay Sat%�%ld%�%','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25222,'tr','total_sale','Toplam sat%�%<%�','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25223,'tr','total_earnings','Toplam kazan%�','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25224,'tr','successful_orders','Ba<%�ar%�%l%�% sipari<%�ler','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25225,'tr','total_orders','Toplam sipari<%�','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25226,'tr','pending_orders','Bekleyen sipari<%�ler','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25227,'tr','cancelled_orders','%�%ptal edilen sipari<%�ler','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25228,'tr','product','%�r%]%n','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25229,'tr','purchased_package','Sat%�%n Al%�%nan Paket','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25230,'tr','package_not_found','Paket Bulunamad%�%','2021-02-16 07:41:30','2021-09-20 07:30:24'),(25231,'tr','upgrade_package','Y%]%kseltme Paketi','2021-02-16 07:41:31','2021-09-20 07:30:24'),(25232,'tr','shop','D%]%kkan','2021-02-16 07:41:31','2021-09-20 07:30:24'),(25233,'tr','manage__organize_your_shop','Ma%�azan%�%z%�% y%b%netin ve organize edin','2021-02-16 07:41:31','2021-09-20 07:30:24'),(25234,'tr','go_to_setting','Ayara git','2021-02-16 07:41:31','2021-09-20 07:30:24'),(25235,'tr','payment','%�deme','2021-02-16 07:41:31','2021-09-20 07:30:24'),(25236,'tr','configure_your_payment_method','%�deme y%b%nteminizi yap%�%land%�%r%�%n','2021-02-16 07:41:31','2021-09-20 07:30:24'),(25237,'tr','my_panel','Panelim','2021-02-16 07:41:52','2021-09-20 07:30:24'),(25238,'tr','item_has_been_added_to_wishlist','%�%�e istek listesine eklendi','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25239,'tr','my_points','Puanlar%�%m','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25240,'tr','_points','Puanlar','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25241,'tr','wallet_money','C%]%zdan Para','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25242,'tr','exchange_rate','D%b%viz kuru','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25243,'tr','point_earning_history','Puan Kazanma ge%�mi<%�i','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25244,'tr','date','Tarih','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25245,'tr','points','Puanlar','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25246,'tr','converted','D%b%n%]%<%�t%]%r%]%ld%]%','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25247,'tr','action','Aksiyon','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25248,'tr','no_history_found','Ge%�mi<%� bulunamad%�%.','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25249,'tr','convert_has_been_done_successfully_check_your_wallets','D%b%n%]%<%�t%]%rme ba<%�ar%�%yla yap%�%ld%�% C%]%zdanlar%�%n%�%z%�% kontrol edin','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25250,'tr','something_went_wrong','Bir <%�eyler yanl%�%<%� gitti','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25251,'tr','remaining_uploads','Kalan Y%]%klemeler','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25252,'tr','no_package_found','Paket Bulunamad%�%','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25253,'tr','search_product','%�r%]%n ara','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25254,'tr','name','%�%sim','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25255,'tr','current_qty','Mevcut Adet','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25256,'tr','base_price','Taban fiyat','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25257,'tr','published','Yay%�%nlanan','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25258,'tr','featured','%�ne %�%�%kan','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25259,'tr','options','Se%�enekler','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25260,'tr','edit','D%]%zenle','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25261,'tr','duplicate','%�iftleme','2021-02-16 07:41:53','2021-09-20 07:30:24'),(25262,'tr','1_download_the_skeleton_file_and_fill_it_with_data','1. %�%skelet dosyas%�%n%�% indirin ve verilerle doldurun.','2021-02-16 07:41:53','2021-09-20 07:30: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 %b%rnek dosyay%�% indirebilirsiniz.','2021-02-16 07:41:53','2021-09-20 07:30: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%b%nderin.','2021-02-16 07:41:53','2021-09-20 07:30: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 07:41:53','2021-09-20 07:30:24'),(25266,'tr','download_csv','CSV\'yi indirin','2021-02-16 07:41:53','2021-09-20 07:30: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 07:41:53','2021-09-20 07:30: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 07:41:53','2021-09-20 07:30:24'),(25269,'tr','download_category','Kategori %�%ndir','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25270,'tr','download_sub_category','Alt kategoriyi indir','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25271,'tr','download_sub_sub_category','Alt Alt kategoriyi indirin','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25272,'tr','download_brand','Markay%�% %�%ndir','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25273,'tr','upload_csv_file','CSV Dosyas%�% Y%]%kle','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25274,'tr','csv','CSV','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25275,'tr','choose_csv_file','CSV Dosyas%�% Se%�in','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25276,'tr','upload','Y%]%kle','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25277,'tr','add_new_digital_product','Yeni Dijital %�r%]%n Ekle','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25278,'tr','available_status','Mevcut Durum','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25279,'tr','admin_status','Y%b%netici Durumu','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25280,'tr','pending_balance','Bekleyen Bakiye','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25281,'tr','send_withdraw_request','Para %�ekme %�%ste%�i G%b%nder','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25282,'tr','withdraw_request_history','Para %�ekme %�%ste%�i ge%�mi<%�i','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25283,'tr','amount','Miktar','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25284,'tr','status','Durum','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25285,'tr','message','%�%leti','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25286,'tr','send_a_withdraw_request','Para %�ekme %�%ste%�i G%b%nderin','2021-02-16 07:41:54','2021-09-20 07:30:24'),(25287,'tr','basic_info','Temel bilgi','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25288,'tr','your_phone','Telefonunuz','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25289,'tr','photo','Foto%�raf','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25290,'tr','browse','Ara<%�t%�%r','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25291,'tr','your_password','<%� ifreniz','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25292,'tr','new_password','Yeni <%� ifre','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25293,'tr','confirm_password','<%� ifreyi Onayla','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25294,'tr','add_new_address','Yeni adres ekleyin','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25295,'tr','payment_setting','%�deme Ayar%�%','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25296,'tr','cash_payment','Nakit %b%deme','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25297,'tr','bank_payment','Banka %b%demesi','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25298,'tr','bank_name','Banka ad%�%','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25299,'tr','bank_account_name','Banka Hesab%�% Ad%�%','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25300,'tr','bank_account_number','Banka hesab%�% numaras%�%','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25301,'tr','bank_routing_number','Banka y%b%nlendirme numaras%�%','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25302,'tr','update_profile','Profili G%]%ncelle','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25303,'tr','change_your_email','E-postan%�%z%�% de%�i<%�tirin','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25304,'tr','your_email','E-posta adresiniz','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25305,'tr','sending_email','E-mail g%b%ndermek...','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25306,'tr','verify','Do%�rulay%�%n','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25307,'tr','update_email','E-postay%�% G%]%ncelle','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25308,'tr','new_address','Yeni adres','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25309,'tr','your_address','Senin adresin','2021-02-16 07:42:16','2021-09-20 07:30:24'),(25310,'tr','country','%�lke','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25311,'tr','select_your_country','%�lkeni se%�','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25312,'tr','city','Kent','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25313,'tr','your_city','Senin <%�ehirin','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25314,'tr','your_postal_code','Posta Kodunuz','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25315,'tr','880','+880','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25316,'tr','save','Kay%�%t etmek','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25317,'tr','received_refund_request','Geri %�deme %�%ste%�i Al%�%nd%�%','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25318,'tr','delete_confirmation','Onay%�% Sil','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25319,'tr','are_you_sure_to_delete_this','Bunu silmek istedi%�ine emin misin?','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25320,'tr','premium_packages_for_sellers','Sat%�%c%�%lar i%�in Premium Paketler','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25321,'tr','product_upload','%�r%]%n Y%]%kleme','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25322,'tr','digital_product_upload','Dijital %�r%]%n Y%]%kleme','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25323,'tr','purchase_package','Paket Sat%�%n Al','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25324,'tr','select_payment_type','%�deme T%]%r%]%n%]% Se%�in','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25325,'tr','payment_type','%�deme <%�ekli','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25326,'tr','select_one','Birini se%�','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25327,'tr','online_payment','Online %b%deme','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25328,'tr','offline_payment','%�evrimd%�%<%�%�% %b%deme','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25329,'tr','purchase_your_package','Paketinizi Sat%�%n Al%�%n','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25330,'tr','paypal','Paypal','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25331,'tr','stripe','<%� erit','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25332,'tr','sslcommerz','sslcommerz','2021-02-16 07:42:17','2021-02-16 07:42:17'),(25333,'tr','confirm','Onaylamak','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25334,'tr','offline_package_payment','%�evrimd%�%<%�%�% Paket %�demesi','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25335,'tr','transaction_id','%�%<%�lem Kimli%�i','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25336,'tr','choose_image','Resmi se%�in','2021-02-16 07:42:17','2021-09-20 07:30:24'),(25337,'tr','code','Kodu','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25338,'tr','delivery_status','Teslim durumu','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25339,'tr','payment_status','%�deme Durumu','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25340,'tr','paid','%�cretli','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25341,'tr','order_details','sipari<%� detaylar%�%','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25342,'tr','download_invoice','Faturay%�% %�%ndir','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25343,'tr','unpaid','%�denmemi<%�','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25344,'tr','order_placed','Sipari<%� verildi','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25345,'tr','confirmed','Onaylanm%�%<%�','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25346,'tr','on_delivery','Teslimatta','2021-02-16 07:42:34','2021-09-20 07:30:24'),(25347,'tr','delivered','Teslim edildi','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25348,'tr','order_summary','sipari<%� %b%zeti','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25349,'tr','order_code','Sipari<%� Kodu','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25350,'tr','customer','M%]%<%�teri','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25351,'tr','total_order_amount','Toplam sipari<%� miktar%�%','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25352,'tr','shipping_metdod','Nakliye y%b%ntemi','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25353,'tr','flat_shipping_rate','Sabit nakliye oran%�%','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25354,'tr','payment_metdod','%�deme y%b%ntemi','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25355,'tr','variation','varyasyon','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25356,'tr','delivery_type','Teslimat Tipi','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25357,'tr','home_delivery','Eve teslim','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25358,'tr','order_ammount','Sipari<%� Miktar%�%','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25359,'tr','subtotal','ara toplam','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25360,'tr','shipping','Nakliye','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25361,'tr','coupon_discount','Kupon %�%ndirimi','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25362,'tr','na','Yok','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25363,'tr','in_stock','Stokta var','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25364,'tr','buy_now','<%� imdi al','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25365,'tr','item_added_to_your_cart','%�r%]%n sepetinize eklendi!','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25366,'tr','proceed_to_checkout','%�%�%k%�%<%�a do%�ru devam et','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25367,'tr','cart_items','Sepet %�%�eleri','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25368,'tr','1_my_cart','1. Sepetim','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25369,'tr','view_cart','Sepeti g%b%r%]%nt%]%le','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25370,'tr','2_shipping_info','2. Nakliye bilgileri','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25371,'tr','checkout','%�deme','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25372,'tr','3_delivery_info','3. Teslimat bilgileri','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25373,'tr','4_payment','4. %�deme','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25374,'tr','5_confirmation','5. Onay','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25375,'tr','remove','Kald%�%rmak','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25376,'tr','return_to_shop','D%]%kkana d%b%n','2021-02-16 07:42:35','2021-09-20 07:30:24'),(25377,'tr','continue_to_shipping','G%b%nderime Devam Et','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25378,'tr','or','Veya','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25379,'tr','guest_checkout','Misafir Olarak %�deme','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25380,'tr','continue_to_delivery_info','Teslimat Bilgisine Devam Et','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25381,'tr','postal_code','posta kodu','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25382,'tr','choose_delivery_type','Teslimat T%]%r%]%n%]% Se%�in','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25383,'tr','local_pickup','Yerel Al%�%m','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25384,'tr','select_your_nearest_pickup_point','Size en yak%�%n al%�%m noktas%�%n%�% se%�in','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25385,'tr','continue_to_payment','%�deme devam','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25386,'tr','select_a_payment_option','Bir %b%deme se%�ene%�i se%�in','2021-02-16 07:42:36','2021-09-20 07:30:24'),(25387,'tr','razorpay','Razorpay','2021-02-16 07:43:04','2021-09-20 07:30:24'),(25388,'tr','paystack','Paystack','2021-02-16 07:43:04','2021-09-20 07:30:24'),(25389,'tr','voguepay','VoguePay','2021-02-16 07:43:04','2021-09-20 07:30:24'),(25390,'tr','payhere','burada %b%deyin','2021-02-16 07:43:04','2021-02-16 07:43:04'),(25391,'tr','ngenius','Ngenius','2021-02-16 07:43:04','2021-02-16 07:43:04'),(25392,'tr','paytm','Paytm','2021-02-16 07:43:04','2021-09-20 07:30:24'),(25393,'tr','cash_on_delivery','Kap%�%da %b%deme','2021-02-16 07:43:04','2021-09-20 07:30:24'),(25394,'tr','your_wallet_balance_','C%]%zdan bakiyeniz:','2021-02-16 07:43:04','2021-09-20 07:30:24'),(25395,'tr','insufficient_balance','Yetersiz bakiye','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25396,'tr','i_agree_to_the','Kat%�%l%�%yorum','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25397,'tr','complete_order','Sipari<%�i Tamamla','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25398,'tr','summary','%�zet','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25399,'tr','items','%�%�eler','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25400,'tr','total_club_point','Toplam Kul%]%p puan%�%','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25401,'tr','total_shipping','Toplam Nakliye','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25402,'tr','have_coupon_code_enter_here','Kupon kodunuz var m%�%? Buraya girin','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25403,'tr','apply','Uygulamak','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25404,'tr','you_need_to_agree_with_our_policies','Politikalar%�%m%�%za kat%�%lman%�%z gerekiyor','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25405,'tr','forgot_password','Parolan%�%z%�% m%�% unuttunuz','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25406,'tr','seo_setting','SEO Ayar%�%','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25407,'tr','system_update','Sistem g%]%ncellemesi','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25408,'tr','add_new_payment_method','Yeni %�deme Y%b%ntemi Ekle','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25409,'tr','manual_payment_method','Manuel %�deme Y%b%ntemi','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25410,'tr','heading','Ba<%�l%�%k','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25411,'tr','logo','Logo','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25412,'tr','manual_payment_information','Manuel %�deme Bilgileri','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25413,'tr','type','T%]%r','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25414,'tr','custom_payment','%�zel %�deme','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25415,'tr','check_payment','%�demeyi Kontrol Et','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25416,'tr','checkout_thumbnail','%�deme K%]%%�%]%k Resmi','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25417,'tr','payment_instruction','%�deme Talimat%�%','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25418,'tr','bank_information','Banka bilgisi','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25419,'tr','select_file','Dosya Se%�','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25420,'tr','upload_new','Yeni Y%]%kle','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25421,'tr','sort_by_newest','En yeniye g%b%re s%�%rala','2021-02-16 07:43:05','2021-09-20 07:30:24'),(25422,'tr','sort_by_oldest','En eskiye g%b%re s%�%rala','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25423,'tr','sort_by_smallest','En k%]%%�%]%%�e g%b%re s%�%rala','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25424,'tr','sort_by_largest','En b%]%y%]%%�e g%b%re s%�%rala','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25425,'tr','selected_only','Yaln%�%zca Se%�ildi','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25426,'tr','no_files_found','Dosya bulunamad%�%','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25427,'tr','0_file_selected','0 Dosya se%�ildi','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25428,'tr','clear','A%�%�%k','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25429,'tr','prev','%�nceki','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25430,'tr','next','Sonraki','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25431,'tr','add_files','Dosya Ekle','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25432,'tr','method_has_been_inserted_successfully','Y%b%ntem ba<%�ar%�%yla eklendi','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25433,'tr','order_date','Sipari<%� tarihi','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25434,'tr','bill_to','ya fatura edilecek','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25435,'tr','sub_total','Ara toplam','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25436,'tr','total_tax','Toplam vergi','2021-02-16 07:43:06','2021-09-20 07:30:24'),(25437,'tr','grand_total','Genel Toplam','2021-02-16 07:43:30','2021-09-20 07:30: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 %b%deme bilgilerini g%b%nderin','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25439,'tr','thank_you_for_your_order','Sipari<%�iniz i%�in te<%�ekk%]%r ederiz!','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25440,'tr','order_code','Sipari<%� Kodu:','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25441,'tr','a_copy_or_your_order_summary_has_been_sent_to','Bir kopyas%�% veya sipari<%� %b%zetiniz g%b%nderildi','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25442,'tr','make_payment','%�deme yapmak','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25443,'tr','payment_screenshot','%�deme ekran g%b%r%]%nt%]%s%]%','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25444,'tr','paypal_credential','Paypal Kimlik Bilgileri','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25445,'tr','paypal_client_id','Paypal M%]%<%�teri Kimli%�i','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25446,'tr','paypal_client_secret','Paypal M%]%<%�teri S%�%rr%�%','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25447,'tr','paypal_sandbox_mode','Paypal Sandbox Modu','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25448,'tr','sslcommerz_credential','Sslcommerz Kimlik Bilgisi','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25449,'tr','sslcz_store_id','Sslcz Ma%�aza Kimli%�i','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25450,'tr','sslcz_store_password','Sslcz ma%�aza <%�ifresi','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25451,'tr','sslcommerz_sandbox_mode','Sslcommerz Sandbox Modu','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25452,'tr','stripe_credential','Stripe Kimlik Bilgisi','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25453,'tr','stripe_key','STRIPE ANAHTAR','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25454,'tr','stripe_secret','STRIPE SECRET','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25455,'tr','razorpay_credential','RazorPay Kimlik Bilgileri','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25456,'tr','razor_key','Jilet anahtar%�%','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25457,'tr','razor_secret','Jilet S%�%rr%�%','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25458,'tr','instamojo_credential','Instamojo Kimlik Bilgileri','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25459,'tr','api_key','API ANAHTARI','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25460,'tr','im_api_key','IM API ANAHTARI','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25461,'tr','auth_token','AUTH TOKEN','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25462,'tr','im_auth_token','IM AUTH TOKEN','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25463,'tr','instamojo_sandbox_mode','Instamojo Sandbox Modu','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25464,'tr','paystack_credential','PayStack Kimlik Bilgileri','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25465,'tr','public_key','GENEL ANAHTAR','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25466,'tr','secret_key','G%�%ZL%�% ANAHTAR','2021-02-16 07:43:30','2021-09-20 07:30:24'),(25467,'tr','merchant_email','MERCHANT EMAIL','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25468,'tr','voguepay_credential','VoguePay Kimlik Bilgileri','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25469,'tr','merchant_id','T%�CCAR K%�%ML%�%%� %�%','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25470,'tr','sandbox_mode','Korumal%�% Alan Modu','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25471,'tr','payhere_credential','Payhere Kimlik Bilgisi','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25472,'tr','payhere_merchant_id','PAYHERE T%�%CAR%�% K%�%ML%�%%� %�%','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25473,'tr','payhere_secret','PAYHERE SECRET','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25474,'tr','payhere_currency','PAYHERE CURRENCY','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25475,'tr','payhere_sandbox_mode','Payhere Korumal%�% Alan Modu','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25476,'tr','ngenius_credential','Ngenius Yeterlilik','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25477,'tr','ngenius_outlet_id','NGENIUS OUTLET ID','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25478,'tr','ngenius_api_key','NGENIUS API ANAHTARI','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25479,'tr','ngenius_currency','NGENIUS PARA B%�%R%�%M%�%','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25480,'tr','mpesa_credential','Mpesa Kimlik Bilgisi','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25481,'tr','mpesa_consumer_key','MPESA T%�KET%�%C%�% ANAHTARI','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25482,'tr','mpesa_consumer_key','MPESA_CONSUMER_KEY','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25483,'tr','mpesa_consumer_secret','MPESA T%�KET%�%C%�% G%�%ZL%�%','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25484,'tr','mpesa_consumer_secret','MPESA_CONSUMER_SECRET','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25485,'tr','mpesa_short_code','MPESA KISA KODU','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25486,'tr','mpesa_short_code','MPESA_SHORT_CODE','2021-02-16 07:43:31','2021-09-20 07:30:24'),(25487,'tr','mpesa_sandbox_activation','MPESA SANDBOX AKT%�%VASYONU','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25488,'tr','flutterwave_credential','Flutterwave Kimlik Bilgisi','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25489,'tr','rave_public_key','RAVE_PUBLIC_KEY','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25490,'tr','rave_secret_key','RAVE_SECRET_KEY','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25491,'tr','rave_title','RAVE_TITLE','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25492,'tr','stagin_activation','STAGIN AKT%�%VASYONU','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25493,'tr','all_product','T%]%m %�r%]%n','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25494,'tr','sort_by','G%b%re s%�%rala','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25495,'tr','rating_high__low','Derecelendirme (Y%]%ksek> D%]%<%�%]%k)','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25496,'tr','rating_low__high','Derece (D%]%<%�%]%k> Y%]%ksek)','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25497,'tr','num_of_sale_high__low','Sat%�%<%� Say%�%s%�% (Y%]%ksek> D%]%<%�%]%k)','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25498,'tr','num_of_sale_low__high','Sat%�%<%� Say%�%s%�% (D%]%<%�%]%k> Y%]%ksek)','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25499,'tr','base_price_high__low','Baz Fiyat (Y%]%ksek> D%]%<%�%]%k)','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25500,'tr','base_price_low__high','Baz Fiyat (D%]%<%�%]%k> Y%]%ksek)','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25501,'tr','type__enter','Yaz%�%n ve Girin','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25502,'tr','added_by','Taraf%�%ndan eklendi','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25503,'tr','num_of_sale','Sat%�%<%� Say%�%s%�%','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25504,'tr','total_stock','Toplam Stok','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25505,'tr','todays_deal','Bug%]%n%]%n F%�%rsat%�%','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25506,'tr','rating','De%�erlendirme','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25507,'tr','times','zamanlar','2021-02-16 07:45:42','2021-02-16 07:45:42'),(25508,'tr','add_nerw_product','Nerw %�r%]%n%]%n%]% Ekleyin','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25509,'tr','product_information','%�r%]%n Bilgisi','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25510,'tr','unit','Birim','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25511,'tr','unit_eg_kg_pc_etc','Birim (%b%rne%�in KG, Pc vb.)','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25512,'tr','minimum_qty','Minimum Miktar','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25513,'tr','tags','Etiketler','2021-02-16 07:45:42','2021-09-20 07:30: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 07:45:42','2021-09-20 07:30:24'),(25515,'tr','barcode','Barkod','2021-02-16 07:45:42','2021-09-20 07:30:24'),(25516,'tr','refundable','Geri %b%denebilir','2021-02-16 07:45:43','2021-09-20 07:30:24'),(25517,'tr','product_images','%�r%]%n G%b%rselleri','2021-02-16 07:45:43','2021-09-20 07:30:24'),(25518,'tr','gallery_images','Galeri G%b%rselleri','2021-02-16 07:45:43','2021-09-20 07:30:24'),(25519,'tr','todays_deal_updated_successfully','Bug%]%n%]%n F%�%rsat%�% ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:45:43','2021-09-20 07:30:24'),(25520,'tr','published_products_updated_successfully','Yay%�%nlanan %]%r%]%nler ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:45:43','2021-09-20 07:30:24'),(25521,'tr','thumbnail_image','K%]%%�%]%k Resim','2021-02-16 07:45:43','2021-09-20 07:30:24'),(25522,'tr','featured_products_updated_successfully','%�ne %�%�%kan %]%r%]%nler ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:45:43','2021-09-20 07:30:24'),(25523,'tr','product_videos','%�r%]%n Videolar%�%','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25524,'tr','video_provider','Video Sa%�lay%�%c%�%','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25525,'tr','youtube','Youtube','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25526,'tr','dailymotion','Dailymotion','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25527,'tr','vimeo','Vimeo','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25528,'tr','video_link','Video ba%�lant%�%s%�%','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25529,'tr','product_variation','%�r%]%n Varyasyonu','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25530,'tr','colors','Colors','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25531,'tr','attributes','Attributes','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25532,'tr','choose_attributes','Choose Attributes','2021-02-16 07:45:43','2021-09-20 07:30: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 07:45:43','2021-09-20 07:30:25'),(25534,'tr','product_price__stock','Product price + stock','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25535,'tr','unit_price','Unit price','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25536,'tr','purchase_price','Purchase price','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25537,'tr','flat','Flat','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25538,'tr','percent','Percent','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25539,'tr','discount','Discount','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25540,'tr','product_description','Product Description','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25541,'tr','product_shipping_cost','Product Shipping Cost','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25542,'tr','free_shipping','Free Shipping','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25543,'tr','flat_rate','Flat Rate','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25544,'tr','shipping_cost','Shipping cost','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25545,'tr','pdf_specification','PDF Specification','2021-02-16 07:45:43','2021-09-20 07:30:25'),(25546,'tr','seo_meta_tags','SEO Meta Tags','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25547,'tr','meta_title','Meta Title','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25548,'tr','meta_image','Meta Image','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25549,'tr','choice_title','Choice Title','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25550,'tr','enter_choice_values','Enter choice values','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25551,'tr','all_categories','All categories','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25552,'tr','add_new_category','Add New category','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25553,'tr','type_name__enter','Type name & Enter','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25554,'tr','banner','Banner','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25555,'tr','commission','Commission','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25556,'tr','icon','icon','2021-02-16 07:45:44','2021-02-16 07:45:44'),(25557,'tr','featured_categories_updated_successfully','Featured categories updated successfully','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25558,'tr','hot','Hot','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25559,'tr','filter_by_payment_status','Filter by Payment Status','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25560,'tr','unpaid','Un-Paid','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25561,'tr','filter_by_deliver_status','Filter by Deliver Status','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25562,'tr','pending','Pending','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25563,'tr','type_order_code__hit_enter','Type Order code & hit Enter','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25564,'tr','num_of_products','Num. of Products','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25565,'tr','walk_in_customer','Walk In Customer','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25566,'tr','qty','QTY','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25567,'tr','without_shipping_charge','Without Shipping Charge','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25568,'tr','with_shipping_charge','With Shipping Charge','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25569,'tr','pay_with_cash','Pay With Cash','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25570,'tr','shipping_address','Shipping Address','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25571,'tr','close','Close','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25572,'tr','select_country','Select country','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25573,'tr','order_confirmation','Order Confirmation','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25574,'tr','are_you_sure_to_confirm_this_order','Are you sure to confirm this order?','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25575,'tr','comfirm_order','Sipari<%�i Onayla','2021-02-16 07:45:44','2021-09-20 07:30:25'),(25576,'tr','personal_info','Ki<%�isel bilgi','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25577,'tr','repeat_password','<%� ifreyi tekrar girin','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25578,'tr','shop_name','Ma%�aza ismi','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25579,'tr','register_your_shop','Ma%�azan%�%z%�% Kaydedin','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25580,'tr','affiliate_informations','Ortakl%�%k Bilgileri','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25581,'tr','affiliate','Affiliate','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25582,'tr','user_info','Kullan%�%c%�% bilgisi','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25583,'tr','installed_addon','Y%]%kl%]% Eklenti','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25584,'tr','available_addon','Kullan%�%labilir Eklenti','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25585,'tr','install_new_addon','Yeni Eklentiyi Kur','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25586,'tr','version','S%]%r%]%m','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25587,'tr','activated','Aktif','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25588,'tr','deactivated','Devre d%�%<%�%�% b%�%rak%�%ld%�%','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25589,'tr','activate_otp','OTP\'yi etkinle<%�tirin','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25590,'tr','otp_will_be_used_for','OTP Kullan%�%lacak','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25591,'tr','settings_updated_successfully','Ayarlar ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25592,'tr','product_owner','%�r%]%n sahibi','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25593,'tr','point','Nokta','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25594,'tr','set_point_for_product_within_a_range','Bir Aral%�%k %�%%�erisindeki %�r%]%n i%�in Ayar Noktas%�%','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25595,'tr','set_point_for_multiple_products','Birden fazla %]%r%]%n i%�in Ayar Noktas%�%','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25596,'tr','min_price','Min Fiyat','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25597,'tr','max_price','Maksimum Fiyat','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25598,'tr','set_point_for_all_products','T%]%m %�r%]%nler i%�in Ayar Noktas%�%','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25599,'tr','set_point_for_','Ayar Noktas%�%','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25600,'tr','convert_status','Durumu D%b%n%]%<%�t%]%r','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25601,'tr','earned_at','Kazan%�%lan','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25602,'tr','seller_based_selling_report','Sat%�%c%�% Bazl%�% Sat%�%<%� Raporu','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25603,'tr','sort_by_verificarion_status','Do%�rulama durumuna g%b%re s%�%rala','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25604,'tr','approved','Onayland%�%','2021-02-16 07:45:45','2021-09-20 07:30:25'),(25605,'tr','non_approved','Onaylanmam%�%<%�','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25606,'tr','filter','Filtrele','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25607,'tr','seller_name','Sat%�%c%�% Ad%�%','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25608,'tr','number_of_product_sale','%�r%]%n Sat%�%<%� Say%�%s%�%','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25609,'tr','order_amount','Sipari<%� miktar%�%','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25610,'tr','facebook_chat_setting','Facebook Sohbet Ayar%�%','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25611,'tr','facebook_page_id','Facebook Sayfa Kimli%�i','2021-02-16 07:45:46','2021-09-20 07:30: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%b%rmeyeceksiniz.','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25613,'tr','login_into_your_facebook_page','Facebook sayfan%�%za giri<%� yap%�%n','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25614,'tr','find_the_about_option_of_your_facebook_page','Facebook sayfan%�%z%�%n Hakk%�%nda se%�ene%�ini bulun','2021-02-16 07:45:46','2021-09-20 07:30: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 07:45:46','2021-09-20 07:30: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 07:45:46','2021-09-20 07:30: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 07:45:46','2021-09-20 07:30:25'),(25618,'tr','set_your_website_domain_name','Web sitenizin alan ad%�%n%�% ayarlay%�%n','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25619,'tr','google_recaptcha_setting','Google reCAPTCHA Ayar%�%','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25620,'tr','site_key','Site anahtar%�%','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25621,'tr','select_shipping_method','Nakliye Y%b%ntemini Se%�in','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25622,'tr','product_wise_shipping_cost','%�r%]%n Bilge Nakliye Maliyeti','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25623,'tr','flat_rate_shipping_cost','Sabit %�cret Nakliye Maliyeti','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25624,'tr','seller_wise_flat_shipping_cost','Sat%�%c%�% Bilge D%]%z Nakliye Maliyeti','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25625,'tr','note','Not','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25626,'tr','product_wise_shipping_cost_calulation_shipping_cost_is_calculate_by_addition_of_each_product_shipping_cost','%�r%]%ne Y%b%nelik Nakliye Maliyeti hesaplamas%�%: Nakliye maliyeti, her %]%r%]%n nakliye %]%cretinin eklenmesiyle hesaplan%�%r','2021-02-16 07:45:46','2021-09-20 07:30: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%�%%�%�% %b%nemli de%�il. Nakliye maliyeti sabittir','2021-02-16 07:45:46','2021-09-20 07:30: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 07:45:46','2021-09-20 07:30:25'),(25629,'tr','flat_rate_cost','Sabit %�cret Maliyeti','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25630,'tr','shipping_cost_for_admin_products','%�%dari %�r%]%nler i%�in Nakliye Maliyeti','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25631,'tr','countries','%�lkeler','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25632,'tr','showhide','G%b%ster / Gizle','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25633,'tr','country_status_updated_successfully','%�lke durumu ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:45:46','2021-09-20 07:30:25'),(25634,'tr','all_subcategories','T%]%m Alt Kategoriler','2021-02-16 07:45:47','2021-09-20 07:30:25'),(25635,'tr','add_new_subcategory','Yeni Alt Kategori Ekle','2021-02-16 07:45:47','2021-09-20 07:30:25'),(25636,'tr','subcategories','Alt Kategoriler','2021-02-16 07:45:47','2021-09-20 07:30:25'),(25637,'tr','sub_category_information','Alt Kategori Bilgileri','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25638,'tr','slug','S%]%m%]%kl%]%b%b%cek','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25639,'tr','all_sub_subcategories','T%]%m Alt Kategoriler','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25640,'tr','add_new_sub_subcategory','Yeni Alt Alt Kategori Ekle','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25641,'tr','subsubcategories','Alt-Alt kategoriler','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25642,'tr','make_this_default','Bunu Varsay%�%lan Yap','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25643,'tr','shops','Ma%�azalar','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25644,'tr','women_clothing__fashion','Kad%�%n Giyim ve Moda','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25645,'tr','cellphones__tabs','Cep Telefonlar%�% ve Sekmeler','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25646,'tr','welcome_to','Ho<%�geldiniz','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25647,'tr','create_a_new_account','Yeni bir hesap olu<%�tur','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25648,'tr','full_name','Ad Soyad','2021-02-16 07:47:03','2021-09-20 07:30:25'),(25649,'tr','password','parola','2021-02-16 07:47:04','2021-02-16 07:47:04'),(25650,'tr','confrim_password','<%� ifreyi Onayla','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25651,'tr','i_agree_with_the','Kat%�%l%�%yorum','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25652,'tr','terms_and_conditions','<%� artlar ve ko<%�ullar','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25653,'tr','register','Kay%�%t ol','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25654,'tr','already_have_an_account','Zaten hesab%�%n%�%z var m%�%','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25655,'tr','sign_up_with','%�%le kay%�%t olun','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25656,'tr','i_agree_with_the_terms_and_conditions','Kabul ediyorum <%� artlar ve Ko<%�ullar','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25657,'tr','all_role','T%]%m Rol','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25658,'tr','add_new_role','Yeni Rol Ekle','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25659,'tr','roles','Roller','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25660,'tr','add_new_staffs','Yeni Personel Ekle','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25661,'tr','role','Rol','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25662,'tr','frontend_website_name','%�n U%� Web Sitesi Ad%�%','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25663,'tr','website_name','Web Sitesi Ad%�%','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25664,'tr','site_motto','Site Slogan','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25665,'tr','best_ecommerce_website','En %�%yi e-Ticaret Sitesi','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25666,'tr','site_icon','Site Simgesi','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25667,'tr','website_favicon_32x32_png','Web sitesi favicon. 32x32 .png','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25668,'tr','website_base_color','Web Sitesi Temel Rengi','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25669,'tr','hex_color_code','Hex Renk Kodu','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25670,'tr','website_base_hover_color','Web Sitesi Temel Vurgu Rengi','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25671,'tr','update','G%]%ncelleme','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25672,'tr','global_seo','K%]%resel Seo','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25673,'tr','meta_description','Meta A%�%�%klamas%�%','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25674,'tr','keywords','Anahtar kelimeler','2021-02-16 07:47:04','2021-09-20 07:30:25'),(25675,'tr','separate_with_coma','Komadan ay%�%r%�%n','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25676,'tr','website_pages','Web Sitesi Sayfalar%�%','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25677,'tr','all_pages','T%]%m sayfalar','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25678,'tr','add_new_page','Yeni Sayfa Ekle','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25679,'tr','url','URL','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25680,'tr','actions','Hareketler','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25681,'tr','edit_page_information','Sayfa Bilgilerini D%]%zenle','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25682,'tr','page_content','Sayfa i%�eri%�i','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25683,'tr','title','Ba<%�l%�%k','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25684,'tr','link','Ba%�lant%�%','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25685,'tr','use_character_number_hypen_only','Yaln%�%zca karakter, say%�% ve tire kullan%�%n','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25686,'tr','add_content','%�%%�erik Ekleyin','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25687,'tr','seo_fields','Seo Alanlar%�%','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25688,'tr','update_page','Sayfay%�% G%]%ncelle','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25689,'tr','default_language','Varsay%�%lan dil','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25690,'tr','add_new_language','Yeni Dil Ekle','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25691,'tr','rtl','RTL','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25692,'tr','translation','Terc%]%me','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25693,'tr','language_information','Dil Bilgileri','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25694,'tr','save_page','Sayfay%�% kaydet','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25695,'tr','home_page_settings','Ana Sayfa Ayarlar%�%','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25696,'tr','home_slider','Ana Sayfa Kayd%�%r%�%c%�%','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25697,'tr','photos__links','Foto%�raflar ve Ba%�lant%�%lar','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25698,'tr','add_new','Yeni ekle','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25699,'tr','home_categories','Ana Sayfa Kategoriler','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25700,'tr','home_banner_1_max_3','Ana Sayfa Banner 1 (En Fazla 3)','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25701,'tr','banner__links','Banner ve Ba%�lant%�%lar','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25702,'tr','home_banner_2_max_3','Ana Sayfa Banner 2 (En Fazla 3)','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25703,'tr','top_10','En iyi 10','2021-02-16 07:47:05','2021-09-20 07:30:25'),(25704,'tr','top_categories_max_10','En %�%yi Kategoriler (Maks. 10)','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25705,'tr','top_brands_max_10','En %�%yi Markalar (Maks. 10)','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25706,'tr','system_name','Sistem Ad%�%','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25707,'tr','system_logo__white','Sistem Logosu - Beyaz','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25708,'tr','choose_files','Dosyalar%�% Se%�in','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25709,'tr','will_be_used_in_admin_panel_side_menu','Y%b%netici paneli yan men%]%s%]%nde kullan%�%lacak','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25710,'tr','system_logo__black','Sistem Logosu - Siyah','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25711,'tr','will_be_used_in_admin_panel_topbar_in_mobile__admin_login_page','Mobil + Y%b%netici giri<%� sayfas%�%nda y%b%netici paneli %]%st %�ubu%�unda kullan%�%lacak','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25712,'tr','system_timezone','Sistem Saat Dilimi','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25713,'tr','admin_login_page_background','Y%b%netici oturum a%�ma sayfas%�% arka plan%�%','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25714,'tr','website_header','Web Sitesi Ba<%�l%�%%�%�%','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25715,'tr','header_setting','%�stbilgi Ayar%�%','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25716,'tr','header_logo','Ba<%�l%�%k logosu','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25717,'tr','show_language_switcher','Dil De%�i<%�tirici G%b%sterilsin mi?','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25718,'tr','show_currency_switcher','Para Birimi De%�i<%�tirici G%b%sterilsin mi?','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25719,'tr','enable_stikcy_header','Stikcy ba<%�l%�%%�%�% etkinle<%�tirilsin mi?','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25720,'tr','website_footer','Web Sitesi Altbilgisi','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25721,'tr','footer_widget','Altbilgi Widget\'%�%','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25722,'tr','about_widget','Widget hakk%�%nda','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25723,'tr','footer_logo','Altbilgi Logosu','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25724,'tr','about_description','A%�%�%klama hakk%�%nda','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25725,'tr','contact_info_widget','%�%leti<%�im Bilgileri Pencere %�%�esi','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25726,'tr','footer_contact_address','Altbilgi ileti<%�im adresi','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25727,'tr','footer_contact_phone','Altbilgi ileti<%�im telefonu','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25728,'tr','footer_contact_email','Altbilgi ileti<%�im e-postas%�%','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25729,'tr','link_widget_one','Ba%�lant%�% Widget\'%�% Bir','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25730,'tr','links','Ba%�lant%�%lar','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25731,'tr','footer_bottom','Altbilgi Alt','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25732,'tr','copyright_widget_','Telif Hakk%�% Widget\'%�%','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25733,'tr','copyright_text','Telif Hakk%�% Metni','2021-02-16 07:47:06','2021-09-20 07:30:25'),(25734,'tr','social_link_widget_','Sosyal Ba%�lant%�% Widget\'%�%','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25735,'tr','show_social_links','Sosyal Ba%�lant%�%lar G%b%sterilsin mi?','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25736,'tr','social_links','Sosyal Ba%�lant%�%lar','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25737,'tr','payment_methods_widget_','%�deme Y%b%ntemleri Widget\'%�%','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25738,'tr','rtl_status_updated_successfully','RTL durumu ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25739,'tr','language_changed_to_','Dil <%�u <%�ekilde de%�i<%�tirildi:','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25740,'tr','inhouse_product_sale_report','Kurum %�%%�i %�r%]%n sat%�%<%� raporu','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25741,'tr','sort_by_category','Kategoriye g%b%re s%�%rala','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25742,'tr','product_wise_stock_report','%�r%]%n bilge stok raporu','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25743,'tr','currency_changed_to_','Para birimi de%�i<%�tirildi','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25744,'tr','avatar','Avatar','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25745,'tr','copy','Kopyala','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25746,'tr','variant','Varyant','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25747,'tr','variant_price','Varyant Fiyat%�%','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25748,'tr','sku','SKU','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25749,'tr','key','Anahtar','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25750,'tr','value','De%�er','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25751,'tr','copy_translations','%�evirileri Kopyala','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25752,'tr','all_pickup_points','T%]%m Al%�%<%� Noktalar%�%','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25753,'tr','add_new_pickup_point','Yeni Al%�%<%� Noktas%�% Ekleyin','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25754,'tr','manager','Y%b%netici','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25755,'tr','location','yer','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25756,'tr','pickup_station_contact','Al%�%m %�%stasyonu %�%leti<%�im','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25757,'tr','open','A%�%�%k','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25758,'tr','pos_activation_for_seller','Sat%�%c%�% i%�in POS Aktivasyonu','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25759,'tr','order_completed_successfully','Sipari<%� Ba<%�ar%�%yla Tamamland%�%.','2021-02-16 07:47:07','2021-09-20 07:30:25'),(25760,'tr','text_input','Metin Giri<%�i','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25761,'tr','select','Se%�iniz','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25762,'tr','multiple_select','%�oklu Se%�im','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25763,'tr','radio','Radyo','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25764,'tr','file','Dosya','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25765,'tr','email_address','E','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25766,'tr','verification_info','Do%�rulama Bilgileri','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25767,'tr','approval','Onay','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25768,'tr','due_amount','%�denecek mebla%�','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25769,'tr','show','G%b%stermek','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25770,'tr','pay_now','<%� imdi %b%de','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25771,'tr','affiliate_user_verification','Sat%�%<%� Orta%�%�% Kullan%�%c%�% Do%�rulamas%�%','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25772,'tr','reject','Reddet','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25773,'tr','accept','Kabul etmek','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25774,'tr','beauty_health__hair','G%]%zellik, Sa%�l%�%k ve Sa%�','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25775,'tr','comparison','Kar<%�%�%la<%�t%�%rma','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25776,'tr','reset_compare_list','Kar<%�%�%la<%�t%�%rma Listesini S%�%f%�%rla','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25777,'tr','your_comparison_list_is_empty','Kar<%�%�%la<%�t%�%rma listeniz bo<%�','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25778,'tr','convert_point_to_wallet','Noktay%�% C%]%zdana D%b%n%]%<%�t%]%r','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25779,'tr','note_you_need_to_activate_wallet_option_first_before_using_club_point_addon','Not: Kul%]%p puan%�% eklentisini kullanmadan %b%nce c%]%zdan se%�ene%�ini etkinle<%�tirmeniz gerekir.','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25780,'tr','create_an_account','Bir hesap olu<%�turun.','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25781,'tr','use_email_instead','Bunun yerine E-posta Kullan%�%n','2021-02-16 07:47:08','2021-09-20 07:30: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 07:47:08','2021-09-20 07:30:25'),(25783,'tr','create_account','Hesap olu<%�tur','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25784,'tr','or_join_with','Veya Birlikte Kat%�%l','2021-02-16 07:47:08','2021-09-20 07:30:25'),(25785,'tr','already_have_an_account','Zaten hesab%�%n%�%z var m%�%?','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25786,'tr','log_in','Oturum a%�','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25787,'tr','computer__accessories','Bilgisayar Aksesuarlar%�%','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25788,'tr','products','%�r%]%n:% s)','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25789,'tr','in_your_cart','sepetinde','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25790,'tr','in_your_wishlist','dilek listende','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25791,'tr','you_ordered','sen sipari<%� ettin','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25792,'tr','default_shipping_address','varsay%�%lan kargo adresi','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25793,'tr','sports__outdoor','Spor ve a%�%�%k hava','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25794,'tr','copied','Kopyaland%�%','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25795,'tr','copy_the_promote_link','Tan%�%t%�%m Ba%�lant%�%s%�%n%�% kopyalay%�%n','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25796,'tr','write_a_review','Bir de%�erlendirme yaz%�%n','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25797,'tr','your_name','Ad%�%n%�%z','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25798,'tr','comment','Yorum Yap','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25799,'tr','your_review','Yorumun','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25800,'tr','submit_review','%�%nceleme g%b%nder','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25801,'tr','claire_willis','Claire Willis','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25802,'tr','germaine_greene','Germaine Greene','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25803,'tr','product_file','%�r%]%n Dosyas%�%','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25804,'tr','choose_file','Dosya se%�in','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25805,'tr','type_to_add_a_tag','Etiket eklemek i%�in yaz%�%n','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25806,'tr','images','G%b%r%]%nt%]%ler','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25807,'tr','main_images','Ana G%b%rseller','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25808,'tr','meta_tags','Meta etiketleri','2021-02-16 07:47:09','2021-09-20 07:30:25'),(25809,'tr','digital_product_has_been_inserted_successfully','Dijital %�r%]%n ba<%�ar%�%yla eklendi','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25810,'tr','edit_digital_product','Dijital %�r%]%n%]% D%]%zenleyin','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25811,'tr','select_an_option','Bir se%�enek se%�in','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25812,'tr','tax','vergi','2021-02-16 07:47:10','2021-02-16 07:47:10'),(25813,'tr','any_question_about_this_product','Bu %]%r%]%n hakk%�%nda herhangi bir sorunuz var m%�%?','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25814,'tr','sign_in','oturum a%�','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25815,'tr','login_with_google','Google ile giri<%� yap','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25816,'tr','login_with_facebook','Facebook ile giri<%�','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25817,'tr','login_with_twitter','Twitter ile giri<%� yap','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25818,'tr','click_to_show_phone_number','Telefon numaras%�%n%�% g%b%stermek i%�in t%�%klay%�%n','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25819,'tr','other_ads_of','Di%�er Reklamlar','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25820,'tr','store_home','D%]%kkan ev','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25821,'tr','top_selling','En %�ok satan','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25822,'tr','shop_settings','Ma%�aza Ayarlar%�%','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25823,'tr','visit_shop','Ma%�azay%�% Ziyaret Et','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25824,'tr','pickup_points','Al%�%<%� Noktalar%�%','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25825,'tr','select_pickup_point','Al%�%<%� Noktas%�%n%�% Se%�in','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25826,'tr','slider_settings','Kayd%�%r%�%c%�% Ayarlar%�%','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25827,'tr','social_media_link','Sosyal Medya Ba%�lant%�%s%�%','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25828,'tr','facebook','Facebook','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25829,'tr','twitter','Twitter','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25830,'tr','google','Google','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25831,'tr','new_arrival_products','Yeni Var%�%<%� %�r%]%nleri','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25832,'tr','check_your_order_status','Sipari<%� Durumunuzu Kontrol Edin','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25833,'tr','shipping_method','Nakliye Y%b%ntemi','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25834,'tr','shipped_by','Taraf%�%ndan sevk','2021-02-16 07:47:10','2021-09-20 07:30:25'),(25835,'tr','image','Resim','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25836,'tr','sub_sub_category','Alt Alt Kategori','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25837,'tr','inhouse_products','<%� irket %�%%�i %�r%]%nler','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25838,'tr','forgot_password','Parolan%�%z%�% m%�% unuttunuz?','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25839,'tr','enter_your_email_address_to_recover_your_password','<%� ifrenizi kurtarmak i%�in e-posta adresinizi girin.','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25840,'tr','email_or_phone','Eposta ya da telefon','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25841,'tr','send_password_reset_link','<%� ifre S%�%f%�%rlama Ba%�lant%�%s%�%n%�% G%b%nder','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25842,'tr','back_to_login','Giri<%� Sayfas%�%na D%b%n','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25843,'tr','index','indeks','2021-02-16 07:47:11','2021-02-16 07:47:11'),(25844,'tr','download_your_product','%�r%]%n%]%n%]%z%]% %�%ndirin','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25845,'tr','option','Se%�enek','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25846,'tr','applied_refund_request','Uygulanan Geri %�deme %�%ste%�i','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25847,'tr','item_has_been_renoved_from_wishlist','%�%�e, istek listesinden yenilendi','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25848,'tr','bulk_products_upload','Toplu %�r%]%n Y%]%kleme','2021-02-16 07:47:11','2021-09-20 07:30:25'),(25849,'tr','upload_csv','CSV y%]%kle','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25850,'tr','create_a_ticket','Bilet Olu<%�tur','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25851,'tr','tickets','Biletler','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25852,'tr','ticket_id','Bilet Kimli%�i','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25853,'tr','sending_date','G%b%nderim tarihi','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25854,'tr','subject','Konu','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25855,'tr','view_details','Detaylar%�% g%b%ster','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25856,'tr','provide_a_detailed_description','Ayr%�%nt%�%l%�% bir a%�%�%klama sa%�lay%�%n','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25857,'tr','type_your_reply','Cevab%�%n%�%z%�% yaz%�%n','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25858,'tr','send_ticket','Bilet G%b%nder','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25859,'tr','load_more','Daha fazla y%]%kle','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25860,'tr','jewelry__watches','Tak%�% ve Saatler','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25861,'tr','filters','Filtreler','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25862,'tr','contact_address','%�%leti<%�im Adresi','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25863,'tr','contact_phone','%�%leti<%�im Telefonu','2021-02-16 07:47:11','2021-09-20 07:30:26'),(25864,'tr','contact_email','%�%leti<%�im E-posta','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25865,'tr','filter_by','Taraf%�%ndan filtre','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25866,'tr','condition','Durum','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25867,'tr','all_type','Her tip','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25868,'tr','pay_with_wallet','C%]%zdan ile %b%de','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25869,'tr','select_variation','Varyasyon se%�in','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25870,'tr','no_product_added','%�r%]%n Eklenmedi','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25871,'tr','status_has_been_updated_successfully','Durum ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25872,'tr','all_seller_packages','T%]%m Sat%�%c%�% Paketleri','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25873,'tr','add_new_package','Yeni Paket Ekle','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25874,'tr','package_logo','Paket Logosu','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25875,'tr','days','g%]%nler','2021-02-16 07:47:12','2021-02-16 07:47:12'),(25876,'tr','create_new_seller_package','Yeni Sat%�%c%�% Paketi Olu<%�turun','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25877,'tr','package_name','Paket ismi','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25878,'tr','duration','S%]%resi','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25879,'tr','validity_in_number_of_days','G%]%n say%�%s%�% olarak ge%�erlilik','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25880,'tr','update_package_information','Paket Bilgilerini G%]%ncelleyin','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25881,'tr','package_has_been_inserted_successfully','Paket ba<%�ar%�%yla eklendi','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25882,'tr','refund_request','%�%ade talebi','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25883,'tr','reason','Nedeni','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25884,'tr','label','Etiket','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25885,'tr','select_label','Etiket Se%�in','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25886,'tr','multiple_select_label','%�oklu Se%�im Etiketi','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25887,'tr','radio_label','Radyo Etiketi','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25888,'tr','pickup_point_orders','Teslim Alma Noktas%�% Sipari<%�leri','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25889,'tr','view','G%b%r%]%n%]%m','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25890,'tr','order_','Sipari<%� #','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25891,'tr','order_status','Sipari<%� durumu','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25892,'tr','total_amount','Toplam tutar','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25893,'tr','total','TOPLAM','2021-02-16 07:47:12','2021-09-20 07:30:26'),(25894,'tr','delivery_status_has_been_updated','Teslimat durumu g%]%ncellendi','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25895,'tr','payment_status_has_been_updated','%�deme durumu g%]%ncellendi','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25896,'tr','invoice','FATURA','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25897,'tr','set_refund_time','Geri %�deme Zaman%�%n%�% Ayarlay%�%n','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25898,'tr','set_time_for_sending_refund_request','Geri %�deme %�%ste%�i G%b%nderme Zaman%�% Ayarlay%�%n','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25899,'tr','set_refund_sticker','Geri %�deme Etiketini Ayarla','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25900,'tr','sticker','Etiket','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25901,'tr','refund_request_all','Geri %�deme %�%ste%�i T%]%m%]%','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25902,'tr','order_id','Sipari<%� Kimli%�i','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25903,'tr','seller_approval','Sat%�%c%�% Onay%�%','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25904,'tr','admin_approval','Y%b%netici Onay%�%','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25905,'tr','refund_status','Geri %�deme Durumu','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25906,'tr','no_refund','Geri %b%deme yok','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25907,'tr','status_updated_successfully','Durum ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25908,'tr','user_search_report','Kullan%�%c%�% Arama Raporu','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25909,'tr','search_by','Arama %�l%�%]%t%]%','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25910,'tr','number_searches','Numara aramalar%�%','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25911,'tr','sender','G%b%nderen','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25912,'tr','receiver','Al%�%c%�%','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25913,'tr','verification_form_updated_successfully','Do%�rulama formu ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25914,'tr','invalid_email_or_password','Ge%�ersiz e-posta veya <%�ifre','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25915,'tr','all_coupons','T%]%m Kuponlar','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25916,'tr','add_new_coupon','Yeni Kupon Ekle','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25917,'tr','coupon_information','Kupon Bilgileri','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25918,'tr','start_date','Ba<%�lang%�%%� ������tarihi','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25919,'tr','end_date','Biti<%� tarihi','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25920,'tr','product_base','%�r%]%n Taban%�%','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25921,'tr','send_newsletter','B%]%lten G%b%nder','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25922,'tr','mobile_users','Mobil Kullan%�%c%�%lar','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25923,'tr','sms_subject','SMS konusu','2021-02-16 07:47:13','2021-09-20 07:30:26'),(25924,'tr','sms_content','SMS i%�eri%�i','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25925,'tr','all_flash_delas','T%]%m Flash Gecikmeleri','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25926,'tr','create_new_flash_dela','Yeni Flash Dela Olu<%�tur','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25927,'tr','page_link','Sayfa Ba%�lant%�%s%�%','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25928,'tr','flash_deal_information','Fla<%� Anla<%�ma Bilgileri','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25929,'tr','background_color','Arka plan rengi','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25930,'tr','0000ff','# 0000ff','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25931,'tr','text_color','Metin Rengi','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25932,'tr','white','Beyaz','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25933,'tr','dark','Karanl%�%k','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25934,'tr','choose_products','%�r%]%nleri Se%�in','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25935,'tr','discounts','%�%ndirimler','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25936,'tr','discount_type','%�%ndirim Tipi','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25937,'tr','twillo_credential','Twillo Kimlik Bilgisi','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25938,'tr','twilio_sid','TWILIO SID','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25939,'tr','twilio_auth_token','TWILIO AUTH TOKEN','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25940,'tr','twilio_verify_sid','TWILIO SID\'Y%�% DO%� RULA','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25941,'tr','valid_twillo_number','GE%�ERL%�% TWILLO NUMARASI','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25942,'tr','nexmo_credential','Nexmo Kimlik Bilgisi','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25943,'tr','nexmo_key','NEXMO ANAHTARI','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25944,'tr','nexmo_secret','NEXMO SECRET','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25945,'tr','ssl_wireless_credential','SSL Kablosuz Kimlik Bilgisi','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25946,'tr','ssl_sms_api_token','SSL SMS API TOKEN','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25947,'tr','ssl_sms_sid','SSL SMS SID','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25948,'tr','ssl_sms_url','SSL SMS URL\'si','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25949,'tr','fast2sms_credential','Fast2SMS Kimlik Bilgisi','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25950,'tr','auth_key','AUTH ANAHTARI','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25951,'tr','route','ROTA','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25952,'tr','promotional_use','Promosyon Kullan%�%m%�%','2021-02-16 07:47:14','2021-09-20 07:30:26'),(25953,'tr','transactional_use','%�%<%�lemsel Kullan%�%m','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25954,'tr','sender_id','G%�NDER%�%C%�% K%�%ML%�%%� %�%','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25955,'tr','nexmo_otp','Nexmo OTP','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25956,'tr','twillo_otp','Twillo OTP','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25957,'tr','ssl_wireless_otp','SSL Kablosuz OTP','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25958,'tr','fast2sms_otp','Fast2SMS OTP','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25959,'tr','order_placement','Sipari<%� yerle<%�tirme','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25960,'tr','delivery_status_changing_time','Teslimat Durumu De%�i<%�en Zaman','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25961,'tr','paid_status_changing_time','%�cretli Durum De%�i<%�tirme Zaman%�%','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25962,'tr','send_bulk_sms','Toplu SMS G%b%nder','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25963,'tr','all_subscribers','T%]%m Aboneler','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25964,'tr','coupon_information_adding','Kupon Bilgisi Ekleme','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25965,'tr','coupon_type','Kupon T%]%r%]%','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25966,'tr','for_products','%�r%]%nler i%�in','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25967,'tr','for_total_orders','Toplam Sipari<%�ler i%�in','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25968,'tr','add_your_product_base_coupon','%�r%]%n Taban Kuponunuzu Ekleyin','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25969,'tr','coupon_code','Kupon Kodu','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25970,'tr','sub_category','Alt Kategori','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25971,'tr','add_more','Daha ekle','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25972,'tr','add_your_cart_base_coupon','Sepetinizin Taban Kuponunu Ekleyin','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25973,'tr','minimum_shopping','Minimum Al%�%<%�veri<%�','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25974,'tr','maximum_discount_amount','Maksimum %�%ndirim Tutar%�%','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25975,'tr','coupon_information_update','Kupon Bilgileri G%]%ncellemesi','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25976,'tr','please_configure_smtp_setting_to_work_all_email_sending_funtionality','L%]%tfen t%]%m e-posta g%b%nderme i<%�levini %�al%�%<%�t%�%rmak i%�in SMTP Ayar%�%n%�% Yap%�%land%�%r%�%n','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25977,'tr','configure_now','<%� imdi Yap%�%land%�%r%�%n','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25978,'tr','total_published_products','Toplam yay%�%nlanan %]%r%]%nler','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25979,'tr','total_sellers_products','Toplam sat%�%c%�% %]%r%]%nleri','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25980,'tr','total_admin_products','Toplam y%b%netici %]%r%]%nleri','2021-02-16 07:47:15','2021-09-20 07:30:26'),(25981,'tr','manage_products','%�r%]%nleri Y%b%net','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25982,'tr','total_product_category','Toplam %]%r%]%n kategorisi','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25983,'tr','create_category','Kategori Olu<%�turun','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25984,'tr','total_product_sub_sub_category','Toplam %]%r%]%n alt alt kategorisi','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25985,'tr','create_sub_sub_category','Alt Alt Kategori Olu<%�tur','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25986,'tr','total_product_sub_category','Toplam %]%r%]%n alt kategorisi','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25987,'tr','create_sub_category','Alt Kategori Olu<%�turun','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25988,'tr','total_product_brand','Toplam %]%r%]%n markas%�%','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25989,'tr','create_brand','Marka Yarat%�%n','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25990,'tr','total_sellers','Toplam sat%�%c%�%lar','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25991,'tr','total_approved_sellers','Toplam onaylanan sat%�%c%�%lar','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25992,'tr','total_pending_sellers','Toplam bekleyen sat%�%c%�%lar','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25993,'tr','manage_sellers','Sat%�%c%�%lar%�% Y%b%net','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25994,'tr','category_wise_product_sale','Kategori bilge %]%r%]%n sat%�%<%�%�%','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25995,'tr','sale','Sat%�%<%�','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25996,'tr','category_wise_product_stock','Kategori bilge %]%r%]%n stoku','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25997,'tr','category_name','Kategori ad%�%','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25998,'tr','stock','Stok','2021-02-16 07:47:16','2021-09-20 07:30:26'),(25999,'tr','frontend','Ba<%�lang%�%%� ������a<%�amas%�%','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26000,'tr','home_page','Ana Sayfa','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26001,'tr','setting','ayar','2021-02-16 07:47:16','2021-02-16 07:47:16'),(26002,'tr','policy_page','Politika sayfas%�%','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26003,'tr','general','Genel','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26004,'tr','click_here','Buraya t%�%klay%�%n','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26005,'tr','useful_link','Kullan%�%<%�l%�% ba%�lant%�%','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26006,'tr','activation','Aktivasyon','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26007,'tr','smtp','SMTP','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26008,'tr','payment_method','%�deme <%�ekli','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26009,'tr','social_media','Sosyal medya','2021-02-16 07:47:16','2021-09-20 07:30:26'),(26010,'tr','business','%�%<%�','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26011,'tr','seller_verification','Sat%�%c%�% do%�rulama','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26012,'tr','form_setting','form ayar%�%','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26013,'tr','language','Dil','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26014,'tr','dashboard','G%b%sterge Paneli','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26015,'tr','pos_system','POS Sistemi','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26016,'tr','pos_manager','POS M%]%d%]%r%]%','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26017,'tr','pos_configuration','POS Yap%�%land%�%rmas%�%','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26018,'tr','products','%�r%]%n:% s','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26019,'tr','add_new_product','Yeni %]%r%]%n ekle','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26020,'tr','all_products','T%]%m %]%r%]%nler','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26021,'tr','in_house_products','Kurum %�%%�i %�r%]%nler','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26022,'tr','seller_products','Sat%�%c%�% %�r%]%nleri','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26023,'tr','digital_products','Dijital %�r%]%nler','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26024,'tr','bulk_import','Toplu %�%%�e Aktarma','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26025,'tr','bulk_export','Toplu %�%hracat','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26026,'tr','category','Kategori','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26027,'tr','subcategory','Alt kategori','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26028,'tr','sub_subcategory','Alt Alt Kategori','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26029,'tr','brand','Marka','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26030,'tr','attribute','%�znitelik','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26031,'tr','product_reviews','%�r%]%n %�%ncelemeleri','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26032,'tr','sales','Sat%�%<%�','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26033,'tr','all_orders','T%]%m sipari<%�ler','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26034,'tr','inhouse_orders','<%� irket i%�i sipari<%�ler','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26035,'tr','seller_orders','Sat%�%c%�% Sipari<%�leri','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26036,'tr','pickup_point_order','Al%�%<%� Noktas%�% S%�%ras%�%','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26037,'tr','refunds','Geri %b%demeler','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26038,'tr','refund_requests','Geri %�deme Talepleri','2021-02-16 07:47:17','2021-09-20 07:30:26'),(26039,'tr','approved_refund','Onaylanm%�%<%� Geri %�deme','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26040,'tr','refund_configuration','Geri %�deme Yap%�%land%�%rmas%�%','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26041,'tr','customers','M%]%<%�teriler','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26042,'tr','customer_list','M%]%<%�teri listesi','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26043,'tr','classified_products','S%�%n%�%fland%�%r%�%lm%�%<%� %�r%]%nler','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26044,'tr','classified_packages','S%�%n%�%fland%�%r%�%lm%�%<%� Paketler','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26045,'tr','sellers','Sat%�%c%�%lar','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26046,'tr','all_seller','T%]%m Sat%�%c%�%','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26047,'tr','payouts','%�demeler','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26048,'tr','payout_requests','%�deme Talepleri','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26049,'tr','seller_commission','Sat%�%c%�% Komisyonu','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26050,'tr','seller_packages','Sat%�%c%�% Paketleri','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26051,'tr','seller_verification_form','Sat%�%c%�% Do%�rulama Formu','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26052,'tr','reports','Raporlar','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26053,'tr','in_house_product_sale','Kurum %�%%�i %�r%]%n Sat%�%<%�%�%','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26054,'tr','seller_products_sale','Sat%�%c%�% %�r%]%nleri Sat%�%<%�%�%','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26055,'tr','products_stock','%�r%]%nler Stok','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26056,'tr','products_wishlist','%�r%]%nler istek listesi','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26057,'tr','user_searches','Kullan%�%c%�% Aramalar%�%','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26058,'tr','marketing','Pazarlama','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26059,'tr','flash_deals','Flash anla<%�malar%�%','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26060,'tr','newsletters','B%]%ltenler','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26061,'tr','bulk_sms','Toplu sms','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26062,'tr','subscribers','Aboneler','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26063,'tr','coupon','Kupon','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26064,'tr','support','Destek','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26065,'tr','ticket','Bilet','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26066,'tr','product_queries','%�r%]%n Sorgular%�%','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26067,'tr','website_setup','Web Sitesi Kurulumu','2021-02-16 07:47:18','2021-09-20 07:30:26'),(26068,'tr','header','%�stbilgi','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26069,'tr','footer','Alt bilgi','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26070,'tr','pages','Sayfalar','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26071,'tr','appearance','G%b%r%]%n%]%m','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26072,'tr','setup__configurations','Kurulum ve Yap%�%land%�%rmalar','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26073,'tr','general_settings','Genel Ayarlar','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26074,'tr','features_activation','%�zellikler aktivasyonu','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26075,'tr','languages','Diller','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26076,'tr','currency','Para birimi','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26077,'tr','pickup_point','Al%�%<%� noktas%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26078,'tr','smtp_settings','SMTP Ayarlar%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26079,'tr','payment_methods','%�deme metodlar%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26080,'tr','file_system_configuration','Dosya Sistemi Yap%�%land%�%rmas%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26081,'tr','social_media_logins','Sosyal medya Giri<%�leri','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26082,'tr','analytics_tools','Analitik Ara%�lar%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26083,'tr','facebook_chat','Facebook sohbet','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26084,'tr','google_recaptcha','Google reCAPTCHA','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26085,'tr','shipping_configuration','Nakliye Yap%�%land%�%rmas%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26086,'tr','shipping_countries','Nakliye %�lkeleri','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26087,'tr','affiliate_system','Ortakl%�%k Sistemi','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26088,'tr','affiliate_registration_form','Ortakl%�%k Kay%�%t Formu','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26089,'tr','affiliate_configurations','Ortakl%�%k Yap%�%land%�%rmalar%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26090,'tr','affiliate_users','Ortakl%�%k Kullan%�%c%�%lar%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26091,'tr','referral_users','Y%b%nlendirme Kullan%�%c%�%lar%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26092,'tr','affiliate_withdraw_requests','Ortakl%�%k Para %�ekme Talepleri','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26093,'tr','offline_payment_system','%�evrimd%�%<%�%�% %�deme Sistemi','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26094,'tr','manual_payment_methods','Manuel %�deme Y%b%ntemleri','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26095,'tr','offline_wallet_recharge','%�evrimd%�%<%�%�% C%]%zdan <%� arj%�%','2021-02-16 07:47:19','2021-09-20 07:30:26'),(26096,'tr','offline_customer_package_payments','%�evrimd%�%<%�%�% M%]%<%�teri Paketi %�demeleri','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26097,'tr','offline_seller_package_payments','%�evrimd%�%<%�%�% Sat%�%c%�% Paket %�demeleri','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26098,'tr','paytm_payment_gateway','Paytm %�deme A%� Ge%�idi','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26099,'tr','set_paytm_credentials','Paytm Kimlik Bilgilerini Ayarlay%�%n','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26100,'tr','club_point_system','Club Puan Sistemi','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26101,'tr','club_point_configurations','Club Point Yap%�%land%�%rmalar%�%','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26102,'tr','set_product_point','%�r%]%n Noktas%�%n%�% Ayarla','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26103,'tr','user_points','Kullan%�%c%�% Puanlar%�%','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26104,'tr','otp_system','OTP Sistemi','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26105,'tr','otp_configurations','OTP Yap%�%land%�%rmalar%�%','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26106,'tr','set_otp_credentials','OTP Kimlik Bilgilerini Ayarlama','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26107,'tr','staffs','De%�nek','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26108,'tr','all_staffs','T%]%m personel','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26109,'tr','staff_permissions','Personel izinleri','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26110,'tr','addon_manager','Eklenti Y%b%neticisi','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26111,'tr','browse_website','Web Sitesine G%b%z At','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26112,'tr','pos','POS','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26113,'tr','notifications','Bildirimler','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26114,'tr','new_orders','yeni sipari<%�ler','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26115,'tr','userimage','kullan%�%c%�% resmi','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26116,'tr','profile','Profil','2021-02-16 07:47:20','2021-09-20 07:30:26'),(26117,'tr','logout','%�%�%k%�%<%� Yap','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26118,'tr','page_not_found','Sayfa bulunamad%�%!','2021-02-16 07:48:19','2021-09-20 07:30: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 07:48:19','2021-09-20 07:30:26'),(26120,'tr','registration','Kay%�%t','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26121,'tr','i_am_shopping_for','Al%�%<%�veri<%� yap%�%yorum ...','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26122,'tr','compare','Kar<%�%�%la<%�t%�%rmak','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26123,'tr','wishlist','%�%stek Listesi','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26124,'tr','cart','Araba','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26125,'tr','your_cart_is_empty','Sepetiniz bo<%�','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26126,'tr','categories','Kategoriler','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26127,'tr','see_all','Hepsini g%b%r','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26128,'tr','seller_policy','Sat%�%c%�% Politikas%�%','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26129,'tr','return_policy','%�%ade politikasi','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26130,'tr','support_policy','Destek Politikas%�%','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26131,'tr','privacy_policy','Gizlilik Politikas%�%','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26132,'tr','your_email_address','E','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26133,'tr','subscribe','Abone ol','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26134,'tr','contact_info','%�%leti<%�im bilgileri','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26135,'tr','address','Adres','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26136,'tr','phone','Telefon','2021-02-16 07:48:19','2021-09-20 07:30:26'),(26137,'tr','email','Eposta','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26138,'tr','login','Oturum a%�','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26139,'tr','my_account','Hesab%�%m','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26140,'tr','order_history','Sipari<%� Ge%�mi<%�i','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26141,'tr','my_wishlist','Benim dilek listem','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26142,'tr','track_order','Parca siparisi','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26143,'tr','be_an_affiliate_partner','Sat%�%<%� orta%�%�% olun','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26144,'tr','be_a_seller','Sat%�%c%�% Olun','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26145,'tr','apply_now','<%� imdi Uygula','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26146,'tr','confirmation','Onayla','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26147,'tr','delete_confirmation_message','Onay mesaj%�%n%�% sil','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26148,'tr','cancel','%�%ptal etmek','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26149,'tr','delete','Sil','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26150,'tr','item_has_been_added_to_compare_list','%�%�e, kar<%�%�%la<%�t%�%rma listesine eklendi','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26151,'tr','please_login_first','L%]%tfen %b%nce giri<%� yap%�%n','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26152,'tr','total_earnings_from','Toplam Kazan%�','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26153,'tr','client_subscription','M%]%<%�teri Aboneli%�i','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26154,'tr','product_category','%�r%]%n Kategorisi','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26155,'tr','product_sub_sub_category','%�r%]%n alt alt kategorisi','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26156,'tr','product_sub_category','%�r%]%n alt kategorisi','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26157,'tr','product_brand','%�r%]%n markas%�%','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26158,'tr','top_client_packages','En %�%yi M%]%<%�teri Paketleri','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26159,'tr','top_freelancer_packages','En %�%yi Freelancer Paketleri','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26160,'tr','number_of_sale','Sat%�%<%� say%�%s%�%','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26161,'tr','number_of_stock','Stok Say%�%s%�%','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26162,'tr','top_10_products','En %�%yi 10 %�r%]%n','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26163,'tr','top_12_products','En %�%yi 12 %�r%]%n','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26164,'tr','admin_can_not_be_a_seller','Y%b%netici sat%�%c%�% olamaz','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26165,'tr','filter_by_rating','Derecelendirmeye g%b%re filtrele','2021-02-16 07:48:20','2021-09-20 07:30:26'),(26166,'tr','published_reviews_updated_successfully','Yay%�%nlanan incelemeler ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26167,'tr','refund_sticker_has_been_updated_successfully','Geri %�deme Etiketi ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26168,'tr','edit_product','%�r%]%n%]% D%]%zenle','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26169,'tr','meta_images','Meta G%b%rseller','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26170,'tr','update_product','%�r%]%n%]% G%]%ncelle','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26171,'tr','product_has_been_deleted_successfully','%�r%]%n ba<%�ar%�%yla silindi','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26172,'tr','your_profile_has_been_updated_successfully','Profiliniz ba<%�ar%�%yla g%]%ncellendi!','2021-02-16 07:48:21','2021-09-20 07:30: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 07:48:21','2021-09-20 07:30:26'),(26174,'tr','add_your_product','%�r%]%n%]%n%]%z%]% Ekleyin','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26175,'tr','select_a_category','bir kategori se%�','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26176,'tr','select_a_brand','Bir marka se%�in','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26177,'tr','product_unit','%�r%]%n Birimi','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26178,'tr','minimum_qty','Minimum Miktar','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26179,'tr','product_tag','%�r%]%n etiketi','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26180,'tr','type__hit_enter','Yaz%�%n ve enter tu<%�una bas%�%n','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26181,'tr','videos','Videolar','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26182,'tr','video_from','Video G%b%nderen','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26183,'tr','video_url','Video linki','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26184,'tr','customer_choice','M%]%<%�teri Se%�imi','2021-02-16 07:48:21','2021-09-20 07:30:26'),(26185,'tr','pdf','PDF','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26186,'tr','choose_pdf','PDF se%�in','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26187,'tr','select_category','Kategori se%�','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26188,'tr','target_category','Hedef Kategori','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26189,'tr','subsubcategory','alt kategori','2021-02-16 07:48:21','2021-02-16 07:48:32'),(26190,'tr','search_category','Arama Kategorisi','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26191,'tr','search_subcategory','Alt Kategori Ara','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26192,'tr','search_subsubcategory','Alt Alt Kategoride Ara','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26193,'tr','update_your_product','%�r%]%n%]%n%]%z%]% g%]%ncelleyin','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26194,'tr','product_has_been_updated_successfully','%�r%]%n ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26195,'tr','add_your_digital_product','Dijital %�r%]%n%]%n%]%z%]% Ekleyin','2021-02-16 07:48:21','2021-09-20 07:30:27'),(26196,'tr','active_ecommerce_cms_update_process','Aktif e-Ticaret CMS G%]%ncelleme S%]%reci','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26197,'tr','codecanyon_purchase_code','Codecanyon sat%�%n alma kodu','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26198,'tr','database_name','Veri taban%�% ismi','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26199,'tr','database_username','Veritaban%�% Kullan%�%c%�% Ad%�%','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26200,'tr','database_password','Veritaban%�% <%� ifresi','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26201,'tr','database_hostname','Veritaban%�% Ana Bilgisayar Ad%�%','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26202,'tr','update_now','<%� imdi g%]%ncelle','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26203,'tr','congratulations','Tebrikler','2021-02-16 07:48:22','2021-09-20 07:30: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 07:48:22','2021-09-20 07:30:27'),(26205,'tr','go_to_home','Eve gitmek','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26206,'tr','login_to_admin_panel','Y%b%netici paneline giri<%� yap%�%n','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26207,'tr','s3_file_system_credentials','S3 Dosya Sistemi Kimlik Bilgileri','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26208,'tr','aws_access_key_id','AWS_ACCESS_KEY_ID','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26209,'tr','aws_secret_access_key','AWS_SECRET_ACCESS_KEY','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26210,'tr','aws_default_region','AWS_DEFAULT_REGION','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26211,'tr','aws_bucket','AWS_BUCKET','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26212,'tr','aws_url','AWS_URL','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26213,'tr','s3_file_system_activation','S3 Dosya Sistemi Etkinle<%�tirmesi','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26214,'tr','your_phone_number','Telefon numaran','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26215,'tr','zip_file','S%�%k%�%<%�t%�%r%�%lm%�%<%� dosya','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26216,'tr','install','Y%]%klemek','2021-02-16 07:48:22','2021-09-20 07:30: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 07:48:22','2021-09-20 07:30:27'),(26218,'tr','search_in_menu','Men%]%de ara','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26219,'tr','uploaded_files','Y%]%klenmi<%� dosyalar','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26220,'tr','shipping_cities','Nakliye <%� ehirleri','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26221,'tr','system','Sistem','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26222,'tr','server_status','Sunucu durumu','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26223,'tr','nothing_found','Hi%�bir<%�ey Bulunamad%�%','2021-02-16 07:48:22','2021-09-20 07:30:27'),(26224,'tr','parent_category','aile kategorisi','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26225,'tr','level','Seviye','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26226,'tr','category_information','Kategori Bilgileri','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26227,'tr','translatable','%�evrilebilir','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26228,'tr','no_parent','Ebeveyn Yok','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26229,'tr','physical','Fiziksel','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26230,'tr','digital','Dijital','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26231,'tr','200x200','200x200','2021-02-16 07:48:23','2021-02-16 07:48:34'),(26232,'tr','32x32','32x32','2021-02-16 07:48:23','2021-02-16 07:48:34'),(26233,'tr','search_your_files','Dosyalar%�%n%�%z%�% aray%�%n','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26234,'tr','category_has_been_updated_successfully','Kategori ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26235,'tr','all_uploaded_files','Y%]%klenen t%]%m dosyalar','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26236,'tr','upload_new_file','Yeni Dosya Y%]%kle','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26237,'tr','all_files','T%]%m dosyalar','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26238,'tr','search','Arama','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26239,'tr','details_info','Detaylar Bilgi','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26240,'tr','copy_link','Ba%�lant%�%y%�% kopyala','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26241,'tr','are_you_sure_to_delete_this_file','Bu dosyay%�% silece%�inizden emin misiniz?','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26242,'tr','file_info','Dosya Bilgileri','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26243,'tr','link_copied_to_clipboard','link kopyaland%�%','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26244,'tr','oops_unable_to_copy','Maalesef kopyalanam%�%yor','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26245,'tr','file_deleted_successfully','Dosya ba<%�ar%�%yla silindi','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26246,'tr','add_new_brand','Yeni Marka Ekle','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26247,'tr','120x80','120x80','2021-02-16 07:48:23','2021-02-16 07:48:34'),(26248,'tr','brand_information','Marka Bilgileri','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26249,'tr','brand_has_been_updated_successfully','Marka ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:23','2021-09-20 07:30:27'),(26250,'tr','brand_has_been_deleted_successfully','Marka ba<%�ar%�%yla silindi','2021-02-16 07:48:23','2021-09-20 07:30: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 07:48:23','2021-09-20 07:30:27'),(26252,'tr','these_images_are_visible_in_product_details_page_gallery_use_600x600_sizes_images','Bu resimler %]%r%]%n detaylar%�% sayfa galerisinde g%b%r%]%lebilir. 600x600 boyutunda resimler kullan%�%n.','2021-02-16 07:48:23','2021-09-20 07:30: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%b%r%]%lebilir. 300x300 boyutunda resim kullan%�%n. Duyarl%�% hale getirmek i%�in farkl%�% cihazlarda baz%�% kenarlar%�% k%�%rpmam%�%z gerekti%�inden, g%b%r%]%nt%]%n%]%z%]%n ana nesnesinin etraf%�%nda biraz bo<%�luk b%�%rak%�%n.','2021-02-16 07:48:24','2021-09-20 07:30: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%b%m%]%l%]% iframe kodu kullanmay%�%n.','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26255,'tr','save_product','%�r%]%n%]% Kaydet','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26256,'tr','product_has_been_inserted_successfully','%�r%]%n ba<%�ar%�%yla eklendi','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26257,'tr','something_went_wrong','Bir <%�eyler yanl%�%<%� gitti!','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26258,'tr','sorry_for_the_inconvenience_but_were_working_on_it','Verdi%�imiz rahats%�%zl%�%ktan dolay%�% %b%z%]%r dileriz ama bunun %]%zerinde %�al%�%<%�%�%yoruz.','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26259,'tr','error_code','Hata kodu','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26260,'tr','please_configure_smtp_setting_to_work_all_email_sending_functionality','T%]%m e-posta g%b%nderme i<%�levlerini %�al%�%<%�t%�%rmak i%�in l%]%tfen SMTP Ayar%�%n%�% Yap%�%land%�%r%�%n','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26261,'tr','order','Sipari<%�','2021-02-16 07:48:24','2021-09-20 07:30: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 %b%nce bu noktalar%�% akl%�%n%�%zda bulundurun.','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26263,'tr','home_banner_3_max_3','Ana Sayfa Banner 3 (En Fazla 3)','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26264,'tr','add_new_seller','Yeni Sat%�%c%�% Ekle','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26265,'tr','filter_by_approval','Onaya G%b%re Filtrele','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26266,'tr','nonapproved','Onaylanmam%�%<%�','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26267,'tr','type_name_or_email__enter','Ad%�% veya e-postay%�% yaz%�%n ve girin','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26268,'tr','due_to_seller','Sat%�%c%�% nedeniyle','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26269,'tr','log_in_as_this_seller','Bu Sat%�%c%�% olarak giri<%� yap%�%n','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26270,'tr','go_to_payment','%�demeye Git','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26271,'tr','ban_this_seller','Bu sat%�%c%�%y%�% yasaklay%�%n','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26272,'tr','do_you_really_want_to_ban_this_seller','Bu sat%�%c%�%y%�% ger%�ekten yasaklamak istiyor musun?','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26273,'tr','proceed','%�%lerlemek!','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26274,'tr','approved_sellers_updated_successfully','Onaylanan sat%�%c%�%lar ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26275,'tr','seller_has_been_deleted_successfully','Sat%�%c%�% ba<%�ar%�%yla silindi','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26276,'tr','seller_information','Sat%�%c%�% bilgisi','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26277,'tr','seller_has_been_inserted_successfully','Sat%�%c%�% ba<%�ar%�%yla eklendi','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26278,'tr','email_already_exists','Bu e-posta zaten var!','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26279,'tr','verify_your_email_address','Email adresinizi do%�rulay%�%n','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26280,'tr','before_proceeding_please_check_your_email_for_a_verification_link','Devam etmeden %b%nce, l%]%tfen bir do%�rulama ba%�lant%�%s%�% i%�in e-postan%�%z%�% kontrol edin.','2021-02-16 07:48:24','2021-09-20 07:30:27'),(26281,'tr','if_you_did_not_receive_the_email','E-postay%�% almad%�%ysan%�%z.','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26282,'tr','click_here_to_request_another','Ba<%�ka istemek i%�in buray%�% t%�%klay%�%n','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26283,'tr','email_verification','Eposta Do%�rulama','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26284,'tr','email_verification__','Eposta Do%�rulama -','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26285,'tr','https_activation','HTTPS Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26286,'tr','maintenance_mode','Bak%�%m Modu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26287,'tr','maintenance_mode_activation','Bak%�%m Modu Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26288,'tr','classified_product_activate','S%�%n%�%fland%�%r%�%lm%�%<%� %�r%]%n Etkinle<%�tir','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26289,'tr','classified_product','S%�%n%�%fland%�%r%�%lm%�%<%� %�r%]%n','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26290,'tr','business_related','%�%<%�le ilgili','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26291,'tr','vendor_system_activation','Sat%�%c%�% Sistem Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26292,'tr','wallet_system_activation','C%]%zdan Sistem Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26293,'tr','coupon_system_activation','Kupon Sisteminin Etkinle<%�tirilmesi','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26294,'tr','pickup_point_activation','Al%�%<%� Noktas%�% Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26295,'tr','conversation_activation','G%b%r%]%<%�me Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26296,'tr','guest_checkout_activation','Misafir %�deme Etkinle<%�tirme','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26297,'tr','categorybased_commission','Kategori bazl%�% Komisyon','2021-02-16 07:48:25','2021-09-20 07:30: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%b%netici komisyon almayacakt%�%r','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26299,'tr','set_commisssion_now','<%� imdi Komisyon Ayarla','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26300,'tr','payment_related','%�deme ile %�%lgili','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26301,'tr','paypal_payment_activation','Paypal %�deme Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26302,'tr','you_need_to_configure_paypal_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in Paypal\'%�% do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26303,'tr','stripe_payment_activation','Stripe %�deme Etkinle<%�tirme','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26304,'tr','sslcommerz_activation','SSlCommerz Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26305,'tr','instamojo_payment_activation','Instamojo %�deme Etkinle<%�tirme','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26306,'tr','you_need_to_configure_instamojo_payment_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in Instamojo %�demesini do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26307,'tr','razor_pay_activation','Razor Pay Aktivasyonu','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26308,'tr','you_need_to_configure_razor_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in Razor\'u do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26309,'tr','paystack_activation','PayStack Etkinle<%�tirme','2021-02-16 07:48:25','2021-09-20 07:30:27'),(26310,'tr','you_need_to_configure_paystack_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in PayStack\'i do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26311,'tr','voguepay_activation','VoguePay Etkinle<%�tirme','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26312,'tr','you_need_to_configure_voguepay_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in VoguePay\'i do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26313,'tr','payhere_activation','Payhere Aktivasyonu','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26314,'tr','ngenius_activation','Ngenius Aktivasyonu','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26315,'tr','you_need_to_configure_ngenius_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in Ngenius\'u do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26316,'tr','iyzico_activation','%�%yzico Aktivasyonu','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26317,'tr','you_need_to_configure_iyzico_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in iyzico\'yu do%�ru yap%�%land%�%rman%�%z gerekiyor','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26318,'tr','bkash_activation','Bkash Aktivasyonu','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26319,'tr','you_need_to_configure_bkash_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in bkash\'i do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26320,'tr','nagad_activation','Nagad Aktivasyonu','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26321,'tr','you_need_to_configure_nagad_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in nagad\'%�% do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekiyor','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26322,'tr','cash_payment_activation','Nakit %�deme Aktivasyonu','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26323,'tr','social_media_login','Sosyal Medya Giri<%�i','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26324,'tr','facebook_login','Facebook giri<%�i','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26325,'tr','you_need_to_configure_facebook_client_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in Facebook %�%stemcisini do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26326,'tr','google_login','Google giri<%�i','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26327,'tr','you_need_to_configure_google_client_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in Google %�%stemcisini do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekiyor','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26328,'tr','twitter_login','Twitter giri<%�i','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26329,'tr','you_need_to_configure_twitter_client_correctly_to_enable_this_feature','Bu %b%zelli%�i etkinle<%�tirmek i%�in Twitter %�%stemcisini do%�ru <%�ekilde yap%�%land%�%rman%�%z gerekir','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26330,'tr','shop_logo','D%]%kkan%�% Logosu','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26331,'tr','shop_address','Ma%�aza Adresi','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26332,'tr','banner_settings','Banner Ayarlar%�%','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26333,'tr','banners','Afi<%�','2021-02-16 07:48:26','2021-09-20 07:30: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 07:48:26','2021-09-20 07:30:27'),(26335,'tr','insert_link_with_https_','Https i%�eren ba%�lant%�% ekle','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26336,'tr','your_shop_has_been_updated_successfully','Ma%�azan%�%z ba<%�ar%�%yla g%]%ncellendi!','2021-02-16 07:48:26','2021-09-20 07:30:27'),(26337,'tr','search_result_for_','%�%%�in arama sonucu','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26338,'tr','brand_has_been_inserted_successfully','Marka ba<%�ar%�%yla eklendi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26339,'tr','about','hakk%�%nda','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26340,'tr','payout_info','%�deme Bilgileri','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26341,'tr','bank_acc_name','Banka Hesap Ad%�%','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26342,'tr','bank_acc_number','Banka Hesap Numaras%�%','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26343,'tr','total_products','Toplam %�r%]%nler','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26344,'tr','total_sold_amount','Toplam Sat%�%lan Tutar','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26345,'tr','wallet_balance','C%]%zdan Bakiyesi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26346,'tr','cookies_agreement','%�erezler Anla<%�mas%�%','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26347,'tr','cookies_agreement_text','%�erezler S%b%zle<%�mesi Metni','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26348,'tr','show_cookies_agreement','%�erez Anla<%�mas%�% G%b%sterilsin mi?','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26349,'tr','custom_script','%�zel Komut Dosyas%�%','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26350,'tr','header_custom_script__before_head','%�stbilgi %b%zel komut dosyas%�% - </head> %b%ncesinde','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26351,'tr','write_script_with_script_tag','<script> etiketi ile komut dosyas%�% yaz%�%n','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26352,'tr','footer_custom_script__before_body','Altbilgi %b%zel komut dosyas%�% - </body> %b%ncesinde','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26353,'tr','category_has_been_inserted_successfully','Kategori ba<%�ar%�%yla eklendi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26354,'tr','all_flash_deals','T%]%m Flash F%�%rsatlar%�%','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26355,'tr','create_new_flash_deal','Yeni Flash Anla<%�mas%�% Olu<%�turun','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26356,'tr','ffffff','#FFFFFF','2021-02-16 07:48:27','2021-09-20 07:30: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%b%sterilir.','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26358,'tr','flash_deal_has_been_inserted_successfully','Flash Deal ba<%�ar%�%yla eklendi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26359,'tr','flash_deal_status_updated_successfully','Flash anla<%�ma durumu ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26360,'tr','flash_deal_has_been_updated_successfully','Flash Anla<%�ma ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26361,'tr','update_language_info','Dil Bilgilerini g%]%ncelle','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26362,'tr','language_has_been_updated_successfully','Dil ba<%�ar%�%yla g%]%ncellendi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26363,'tr','type_key__enter','Anahtar%�% yaz%�%n ve girin','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26364,'tr','translations_updated_for_','%�%%�in %�eviriler g%]%ncellendi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26365,'tr','language_has_been_inserted_successfully','Dil ba<%�ar%�%yla eklendi','2021-02-16 07:48:27','2021-09-20 07:30:27'),(26366,'tr','verify_now','<%� imdi do%�rulay%�%n','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26367,'tr','iyzico','Iyzico','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26368,'tr','bkash_credential','Bkash Kimlik Bilgileri','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26369,'tr','bkash_checkout_app_key','BKASH CHECKOUT UYGULAMA ANAHTARI','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26370,'tr','bkash_checkout_app_secret','BKASH CHECKOUT UYGULAMA G%�%ZL%�%','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26371,'tr','bkash_checkout_user_name','BKASH CHECKOUT KULLANICI ADI','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26372,'tr','bkash_checkout_password','BKASH CHECKOUT <%� %�%FRE','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26373,'tr','bkash_sandbox_mode','Bkash Sandbox Modu','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26374,'tr','nagad_credential','Nagad Yeterlilik','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26375,'tr','nagad_mode','NAGAD MODU','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26376,'tr','nagad_merchant_id','NAGAD T%�%CAR%�% K%�%ML%�%%� %�%','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26377,'tr','nagad_merchant_number','NAGAD T%�%CAR%�% NUMARASI','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26378,'tr','nagad_pg_public_key','NAGAD PG HALK ANAHTARI','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26379,'tr','nagad_merchant_private_key','NAGAD MERCHANT %�ZEL ANAHTAR','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26380,'tr','iyzico_credential','Iyzico Kimlik Bilgisi','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26381,'tr','iyzico_api_key','IYZICO_API_KEY','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26382,'tr','iyzico_api_key','IYZICO API ANAHTARI','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26383,'tr','iyzico_secret_key','IYZICO_SECRET_KEY','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26384,'tr','iyzico_secret_key','IYZICO G%�%ZL%�% ANAHTAR','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26385,'tr','iyzico_sandbox_mode','IYZICO Sandbox Modu','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26386,'tr','instamojo','Instamojo','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26387,'tr','nagad','Nagad','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26388,'tr','bkash','Bkash','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26389,'tr','your_order_has_been_placed','Sipari<%�iniz al%�%nd%�%','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26390,'tr','your_order_has_been_placed_successfully','Sipari<%�iniz ba<%�ar%�%yla verildi','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26391,'tr','product_image','%�r%]%n resmi','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26392,'tr','step_1','A<%�ama 1','2021-02-16 07:48:28','2021-09-20 07:30:27'),(26393,'tr','download_the_skeleton_file_and_fill_it_with_proper_data','%�%skelet dosyas%�%n%�% indirin ve uygun verilerle doldurun','2021-02-16 07:48:28','2021-09-20 07:30: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 %b%rnek dosyay%�% indirebilirsiniz.','2021-02-16 07:48:28','2021-09-20 07:30: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%b%nderin','2021-02-16 07:48:28','2021-09-20 07:30: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 07:48:29','2021-09-20 07:30:27'),(26397,'tr','step_2','Ad%�%m 2','2021-02-16 07:48:29','2021-09-20 07:30: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 07:48:29','2021-09-20 07:30: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 07:48:29','2021-09-20 07:30:27'),(26400,'tr','upload_product_file','%�r%]%n Dosyas%�%n%�% Y%]%kle','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26401,'tr','all_attributes','T%]%m %�znitelikler','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26402,'tr','add_new_attribute','Yeni %�znitelik Ekle','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26403,'tr','attribute_has_been_inserted_successfully','%�znitelik ba<%�ar%�%yla eklendi','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26404,'tr','attribute_has_been_deleted_successfully','%�znitelik ba<%�ar%�%yla silindi','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26405,'tr','product_has_been_duplicated_successfully','%�r%]%n ba<%�ar%�%yla kopyaland%�%','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26406,'tr','filter_by_date','Tarihe g%b%re filtrele','2021-02-16 07:48:29','2021-09-20 07:30: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 07:48:29','2021-09-20 07:30: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 07:48:29','2021-09-20 07:30:27'),(26409,'tr','payment_completed','%�deme tamamland%�%','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26410,'tr','contact','%�%leti<%�im','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26411,'tr','order_status_has_been_updated','Sipari<%� durumu g%]%ncellendi','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26412,'tr','review_has_been_submitted_successfully','%�%nceleme ba<%�ar%�%yla g%b%nderildi','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26413,'tr','pay_to_seller','Sat%�%c%�%ya %b%de','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26414,'tr','txn_code','Txn Kodu','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26415,'tr','clear_due','Vadesi temizle','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26416,'tr','product_wish_report','%�r%]%n %�%stek Raporu','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26417,'tr','number_of_wish','Dilek Say%�%s%�%','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26418,'tr','all_customers','T%]%m M%]%<%�teriler','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26419,'tr','type_email_or_name__enter','E-posta veya ad yaz%�%n ve Girin','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26420,'tr','package','Paket i%�eri%�i','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26421,'tr','log_in_as_this_customer','Bu M%]%<%�teri olarak oturum a%�%�%n','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26422,'tr','ban_this_customer','Bu M%]%<%�teriyi yasaklay%�%n','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26423,'tr','do_you_really_want_to_ban_this_customer','Bu M%]%<%�teriyi ger%�ekten yasaklamak istiyor musunuz?','2021-02-16 07:48:29','2021-09-20 07:30: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 07:48:29','2021-09-20 07:30:27'),(26425,'tr','ticket_has_been_sent_successfully','Bilet ba<%�ar%�%yla g%b%nderildi','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26426,'tr','send_reply','Cevap G%b%nder','2021-02-16 07:48:29','2021-09-20 07:30:27'),(26427,'tr','recharge_wallet','C%]%zdan%�% <%� arj Et','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26428,'tr','wallet_recharge_history','C%]%zdan <%�arj ge%�mi<%�i','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26429,'tr','offline_recharge_wallet','%�evrimd%�%<%�%�% <%� arj C%]%zdan%�%','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26430,'tr','message_has_been_send_to_seller','Sat%�%c%�%ya mesaj g%b%nderildi','2021-02-16 07:48:30','2021-09-20 07:30: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 07:48:30','2021-09-20 07:30:27'),(26432,'tr','premium_packages_for_customers','M%]%<%�teriler i%�in Premium Paketler','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26433,'tr','offline_package_purchase_','%�evrimd%�%<%�%�% Paket Sat%�%n Alma','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26434,'tr','all_classifies_packages','T%]%m Paketleri S%�%n%�%fland%�%r%�%r','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26435,'tr','create_new_package','Yeni Paket Olu<%�tur','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26436,'tr','package_purchasing_successful','Paket sat%�%n alma i<%�lemi ba<%�ar%�%l%�%','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26437,'tr','product_upload_remaining','Kalan %�r%]%n Y%]%klemesi','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26438,'tr','current_package','<%� u anki paket','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26439,'tr','select_a_condition','Bir ko<%�ul se%�in','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26440,'tr','uploaded_by','Y%]%kleyen','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26441,'tr','customer_status','M%]%<%�teri Durumu','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26442,'tr','unpublished','YAYINLANMAMI<%� ','2021-02-16 07:48:30','2021-09-20 07:30:27'),(26443,'en','sendmail','Sendmail','2021-02-16 07:56:29','2021-09-20 07:30:27'),(26444,'en','mailgun','Mailgun','2021-02-16 07:56:30','2021-09-20 07:30:27'),(26445,'en','mail_host','MAIL HOST','2021-02-16 07:56:30','2021-09-20 07:30:27'),(26446,'en','mail_port','MAIL PORT','2021-02-16 07:56:30','2021-09-20 07:30:27'),(26447,'en','mail_username','MAIL USERNAME','2021-02-16 07:56:30','2021-09-20 07:30:27'),(26448,'en','mail_password','MAIL PASSWORD','2021-02-16 07:56:30','2021-09-20 07:30:27'),(26449,'en','mail_encryption','MAIL ENCRYPTION','2021-02-16 07:56:30','2021-09-20 07:30:27'),(26450,'en','mail_from_address','MAIL FROM ADDRESS','2021-02-16 07:56:30','2021-09-20 07:30:27'),(26451,'en','mail_from_name','MAIL FROM NAME','2021-02-16 07:56:31','2021-09-20 07:30:27'),(26452,'en','mailgun_domain','MAILGUN DOMAIN','2021-02-16 07:56:31','2021-09-20 07:30:27'),(26453,'en','mailgun_secret','MAILGUN SECRET','2021-02-16 07:56:31','2021-09-20 07:30:27'),(26454,'en','save_configuration','Save Configuration','2021-02-16 07:56:31','2021-09-20 07:30:27'),(26455,'en','test_smtp_configuration','Test SMTP configuration','2021-02-16 07:56:31','2021-09-20 07:30:27'),(26456,'en','enter_your_email_address','Enter your email address','2021-02-16 07:56:31','2021-09-20 07:30:27'),(26457,'en','send_test_email','Send test email','2021-02-16 07:56:31','2021-09-20 07:30:27'),(26458,'en','instruction','Instruction','2021-02-16 07:56:31','2021-09-20 07:30: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 07:56:31','2021-09-20 07:30:27'),(26460,'en','for_nonssl','For Non-SSL','2021-02-16 07:56:31','2021-09-20 07:30: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 07:56:32','2021-09-20 07:30: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 07:56:32','2021-09-20 07:30:27'),(26463,'en','set_mail_port_as_587','Set Mail port as 587','2021-02-16 07:56:32','2021-09-20 07:30: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 07:56:32','2021-09-20 07:30:27'),(26465,'en','for_ssl','For SSL','2021-02-16 07:56:32','2021-09-20 07:30:27'),(26466,'en','set_mail_port_as_465','Set Mail port as 465','2021-02-16 07:56:32','2021-09-20 07:30:27'),(26467,'en','set_mail_encryption_as_ssl','Set Mail Encryption as ssl','2021-02-16 07:56:32','2021-09-20 07:30:27'),(26468,'en','installupdate_addon','Install/Update Addon','2021-02-18 05:50:31','2021-09-20 07:30:27'),(26469,'en','no_addon_installed','No Addon Installed','2021-02-18 05:50:31','2021-09-20 07:30:27'),(26470,'en','blog_system','Blog System','2021-02-18 10:01:49','2021-09-20 07:30:27'),(26471,'en','all_posts','All Posts','2021-02-18 10:01:49','2021-09-20 07:30:27'),(26472,'en','facebook_comment','Facebook Comment','2021-02-18 10:01:50','2021-09-20 07:30:27'),(26473,'en','add_new_post','Add New Post','2021-02-18 10:02:55','2021-09-20 07:30:27'),(26474,'en','all_blog_posts','All blog posts','2021-02-18 10:02:55','2021-09-20 07:30:27'),(26475,'en','short_description','Short Description','2021-02-18 10:02:55','2021-09-20 07:30:27'),(26476,'en','change_blog_status_successfully','Change blog status successfully','2021-02-18 10:02:56','2021-09-20 07:30:27'),(26477,'en','blog_information','Blog Information','2021-02-18 10:02:58','2021-09-20 07:30:27'),(26478,'en','blog_title','Blog Title','2021-02-18 10:02:58','2021-09-20 07:30:27'),(26479,'en','meta_keywords','Meta Keywords','2021-02-18 10:02:59','2021-09-20 07:30:27'),(26480,'en','header_nav_menu','Header Nav Menu','2021-02-18 10:04:04','2021-09-20 07:30:27'),(26481,'en','link_with','Link with','2021-02-18 10:04:04','2021-09-20 07:30:27'),(26482,'en','blog','Blog','2021-02-18 10:11:56','2021-09-20 07:30:27'),(26483,'en','all_blog_categories','All Blog Categories','2021-02-18 10:17:26','2021-09-20 07:30:27'),(26484,'en','blog_categories','Blog Categories','2021-02-18 10:17:26','2021-09-20 07:30:27'),(26485,'en','blog_category_information','Blog Category Information','2021-02-19 04:04:31','2021-09-20 07:30:27'),(26486,'en','blog_category_has_been_created_successfully','Blog category has been created successfully','2021-02-19 04:05:13','2021-09-20 07:30:27'),(26487,'en','blog_post_has_been_created_successfully','Blog post has been created successfully','2021-02-19 04:15:31','2021-09-20 07:30:27'),(26488,'en','blog_post_has_been_updated_successfully','Blog post has been updated successfully','2021-02-19 04:32:34','2021-09-20 07:30:27'),(26489,'en','blog_category_has_been_updated_successfully','Blog category has been updated successfully','2021-02-19 04:52:22','2021-09-20 07:30:27'),(26490,'en','installupdate','Install/Update','2021-02-22 04:00:43','2021-09-20 07:30:27'),(26493,'en','addon_nstalled_successfully','Addon nstalled successfully','2021-02-23 02:22:29','2021-09-20 07:30:27'),(26494,'en','approved_refunds','Approved Refunds','2021-02-23 02:23:39','2021-09-20 07:30:27'),(26495,'en','rejected_refunds','rejected Refunds','2021-02-23 02:23:40','2021-09-20 07:30:27'),(26496,'en','affiliate_logs','Affiliate Logs','2021-02-23 02:24:06','2021-09-20 07:30:27'),(26497,'en','african_payment_gateway_addon','African Payment Gateway Addon','2021-02-23 02:24:21','2021-09-20 07:30:27'),(26498,'en','african_pg_configurations','African PG Configurations','2021-02-23 02:24:21','2021-09-20 07:30:27'),(26499,'en','set_african_pg_credentials','Set African PG Credentials','2021-02-23 02:24:21','2021-09-20 07:30: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 02:25:36','2021-09-20 07:30: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 02:25:36','2021-09-20 07:30: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 02:25:36','2021-09-20 07:30:27'),(26503,'en','paystack_currency_code','PAYSTACK CURRENCY CODE','2021-02-23 02:26:16','2021-09-20 07:30:27'),(26504,'en','mpesa_activation','MPesa Activation','2021-02-23 02:26:48','2021-09-20 07:30: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 02:26:48','2021-09-20 07:30:27'),(26506,'en','flutterwave_activation','flutterwave Activation','2021-02-23 02:26:48','2021-09-20 07:30: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 02:26:49','2021-09-20 07:30:27'),(26508,'en','payfast_activation','Payfast Activation','2021-02-23 02:26:49','2021-09-20 07:30: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 02:26:49','2021-09-20 07:30:27'),(26510,'en','mpesa_username','MPESA USERNAME','2021-02-23 02:26:59','2021-09-20 07:30:27'),(26511,'en','mpesa_username','MPESA_USERNAME','2021-02-23 02:26:59','2021-09-20 07:30:27'),(26512,'en','mpesa_password','MPESA PASSWORD','2021-02-23 02:26:59','2021-09-20 07:30:27'),(26513,'en','mpesa_password','MPESA_PASSWORD','2021-02-23 02:26:59','2021-09-20 07:30:27'),(26514,'en','mpesa_passkey','MPESA PASSKEY','2021-02-23 02:26:59','2021-09-20 07:30:27'),(26515,'en','mpesa_passkey','MPESA_PASSKEY','2021-02-23 02:26:59','2021-09-20 07:30:27'),(26516,'en','payfast_credential','PAYFAST Credential','2021-02-23 02:26:59','2021-09-20 07:30:27'),(26517,'en','payfast_merchant_id','PAYFAST_MERCHANT_ID','2021-02-23 02:26:59','2021-09-20 07:30:28'),(26518,'en','payfast_merchant_key','PAYFAST_MERCHANT_KEY','2021-02-23 02:27:00','2021-09-20 07:30:28'),(26519,'en','payfast_sandbox_mode','PAYFAST Sandbox Mode','2021-02-23 02:27:00','2021-09-20 07:30:28'),(26520,'en','google_login_credential','Google Login Credential','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26521,'en','client_id','Client ID','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26522,'en','google_client_id','Google Client ID','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26523,'en','client_secret','Client Secret','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26524,'en','google_client_secret','Google Client Secret','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26525,'en','facebook_login_credential','Facebook Login Credential','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26526,'en','app_id','App ID','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26527,'en','facebook_client_id','Facebook Client ID','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26528,'en','app_secret','App Secret','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26529,'en','facebook_client_secret','Facebook Client Secret','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26530,'en','twitter_login_credential','Twitter Login Credential','2021-02-23 02:27:51','2021-09-20 07:30:28'),(26531,'en','twitter_client_id','Twitter Client ID','2021-02-23 02:27:52','2021-09-20 07:30:28'),(26532,'en','twitter_client_secret','Twitter Client Secret','2021-02-23 02:27:52','2021-09-20 07:30:28'),(26533,'en','point_convert_rate_has_been_updated_successfully','Point convert rate has been updated successfully','2021-02-23 02:30:21','2021-09-20 07:30:28'),(26534,'en','owner','Owner','2021-02-23 02:30:24','2021-09-20 07:30: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 02:30:25','2021-09-20 07:30:28'),(26536,'en','set_point_for_product','Set Point for Product','2021-02-23 02:30:31','2021-09-20 07:30:28'),(26537,'en','set_point','Set Point','2021-02-23 02:30:31','2021-09-20 07:30:28'),(26538,'en','point_has_been_updated_successfully','Point has been updated successfully','2021-02-23 02:30:37','2021-09-20 07:30:28'),(26539,'en','point_has_been_inserted_successfully_for_','Point has been inserted successfully for ','2021-02-23 02:31:06','2021-09-20 07:30:28'),(26540,'en','_products',' products','2021-02-23 02:31:06','2021-09-20 07:30:28'),(26541,'en','customer_name','Customer Name','2021-02-23 02:32:42','2021-09-20 07:30:28'),(26542,'en','mimo_otp','MIMO OTP','2021-02-23 02:32:49','2021-09-20 07:30:28'),(26543,'en','mimo_credential','MIMO Credential','2021-02-23 02:33:05','2021-09-20 07:30:28'),(26544,'en','mimo_username','MIMO_USERNAME','2021-02-23 02:33:05','2021-09-20 07:30:28'),(26545,'en','mimo_password','MIMO_PASSWORD','2021-02-23 02:33:05','2021-09-20 07:30:28'),(26546,'en','mimo_sender_id','MIMO_SENDER_ID','2021-02-23 02:33:06','2021-09-20 07:30:28'),(26547,'en','reject_refund_request_','Reject Refund Request !','2021-02-23 02:33:49','2021-09-20 07:30:28'),(26548,'en','reject_reason','Reject Reason','2021-02-23 02:33:49','2021-09-20 07:30:28'),(26549,'en','submit','Submit','2021-02-23 02:33:49','2021-09-20 07:30:28'),(26550,'en','approval_has_been_done_successfully','Approval has been done successfully','2021-02-23 02:33:49','2021-09-20 07:30:28'),(26551,'en','refund_has_been_sent_successfully','Refund has been sent successfully','2021-02-23 02:33:49','2021-09-20 07:30:28'),(26552,'en','rejected_request','Rejected Request','2021-02-23 02:34:05','2021-09-20 07:30:28'),(26553,'en','refund_request_reject_reason','Refund Request Reject Reason','2021-02-23 02:34:05','2021-09-20 07:30:28'),(26554,'en','approved_request','Approved Request','2021-02-23 02:34:08','2021-09-20 07:30:28'),(26555,'en','mpesa','mpesa','2021-02-23 02:35:33','2021-02-23 02:35:33'),(26556,'en','flutterwave','flutterwave','2021-02-23 02:35:33','2021-02-23 02:35:33'),(26557,'en','payfast','payfast','2021-02-23 02:35:33','2021-02-23 02:35:33'),(26558,'en','this_addon_is_updated_successfully','This addon is updated successfully','2021-02-23 02:40:18','2021-09-20 07:30:28'),(26559,'en','nonrefundable','Non-refundable','2021-02-23 15:06:44','2021-09-20 07:30:28'),(26560,'en','offline_recharge_has_been_done_please_wait_for_response','Offline Recharge has been done. Please wait for response.','2021-02-23 15:08:43','2021-09-20 07:30:28'),(26561,'en','use_phone_instead','Use Phone Instead','2021-02-23 15:13:57','2021-09-20 07:30:28'),(26562,'en','phone_verification','Phone Verification','2021-02-23 15:14:25','2021-09-20 07:30:28'),(26563,'en','resend_code','Resend Code','2021-02-23 15:14:25','2021-09-20 07:30:28'),(26564,'en','staff_information','Staff Information','2021-02-25 15:53:40','2021-09-20 07:30:28'),(26565,'en','staff_has_been_inserted_successfully','Staff has been inserted successfully','2021-02-25 15:54:00','2021-09-20 07:30:28'),(26566,'en','role_information','Role Information','2021-02-25 16:01:25','2021-09-20 07:30:28'),(26567,'en','permissions','Permissions','2021-02-25 16:01:25','2021-09-20 07:30:28'),(26568,'en','role_has_been_updated_successfully','Role has been updated successfully','2021-02-25 16:01:46','2021-09-20 07:30:28'),(26569,'en','update_your_system','Update your system','2021-02-25 16:03:26','2021-09-20 07:30:28'),(26570,'en','current_verion','Current verion','2021-02-25 16:03:26','2021-09-20 07:30:28'),(26571,'en','make_sure_your_server_has_matched_with_all_requirements','Make sure your server has matched with all requirements.','2021-02-25 16:03:26','2021-09-20 07:30:28'),(26572,'en','check_here','Check Here','2021-02-25 16:03:26','2021-09-20 07:30:28'),(26573,'en','download_latest_version_from_codecanyon','Download latest version from codecanyon.','2021-02-25 16:03:26','2021-09-20 07:30: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 16:03:27','2021-09-20 07:30:28'),(26575,'en','upload_that_zip_file_here_and_click_update_now','Upload that zip file here and click update now.','2021-02-25 16:03:27','2021-09-20 07:30: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 16:03:27','2021-09-20 07:30:28'),(26577,'en','package_duration','Package Duration','2021-02-25 23:10:17','2021-09-20 07:30:28'),(26578,'en','digital_product_upload_remaining','Digital Product Upload Remaining','2021-02-25 23:12:10','2021-09-20 07:30:28'),(26579,'en','package_expires_at','Package Expires at','2021-02-25 23:12:10','2021-09-20 07:30:28'),(26580,'en','ok_i_understood','Ok. I Understood','2021-02-27 16:56:27','2021-09-20 07:30:28'),(26581,'en','commission_history','Commission History','2021-03-07 05:40:47','2021-09-20 07:30:28'),(26582,'en','vat__tax','Vat & TAX','2021-03-07 05:40:48','2021-09-20 07:30:28'),(26583,'en','info','Info','2021-03-07 05:40:54','2021-09-20 07:30:28'),(26584,'en','product_wise_shipping','Product Wise Shipping','2021-03-07 05:42:45','2021-09-20 07:30:28'),(26585,'en','low_stock_quantity_warning','Low Stock Quantity Warning','2021-03-07 05:42:45','2021-09-20 07:30:28'),(26586,'en','stock_visibility_state','Stock Visibility State','2021-03-07 05:42:45','2021-09-20 07:30:28'),(26587,'en','show_stock_quantity','Show Stock Quantity','2021-03-07 05:42:45','2021-09-20 07:30:28'),(26588,'en','show_stock_with_text_only','Show Stock With Text Only','2021-03-07 05:42:45','2021-09-20 07:30:28'),(26589,'en','hide_stock','Hide Stock','2021-03-07 05:42:46','2021-09-20 07:30:28'),(26590,'en','flash_deal','Flash Deal','2021-03-07 05:42:46','2021-09-20 07:30:28'),(26591,'en','add_to_flash','Add To Flash','2021-03-07 05:42:46','2021-09-20 07:30:28'),(26592,'en','estimate_shipping_time','Estimate Shipping Time','2021-03-07 05:42:46','2021-09-20 07:30:28'),(26593,'en','shipping_days','Shipping Days','2021-03-07 05:42:46','2021-09-20 07:30:28'),(26594,'en','save_as_draft','Save As Draft','2021-03-07 05:42:46','2021-09-20 07:30:28'),(26595,'en','save__unpublish','Save & Unpublish','2021-03-07 05:42:46','2021-09-20 07:30:28'),(26596,'en','save__publish','Save & Publish','2021-03-07 05:42:46','2021-09-20 07:30:28'),(26597,'en','all_cities','All cities','2021-03-07 05:43:04','2021-09-20 07:30:28'),(26598,'en','cities','Cities','2021-03-07 05:43:04','2021-09-20 07:30:28'),(26599,'en','cost','Cost','2021-03-07 05:43:04','2021-09-20 07:30:28'),(26600,'en','add_new_city','Add New city','2021-03-07 05:43:04','2021-09-20 07:30:28'),(26601,'en','_pts',' pts','2021-03-08 04:54:26','2021-09-20 07:30:28'),(26602,'en','no','No','2021-03-08 04:54:26','2021-09-20 07:30:28'),(26603,'en','convert_now','Convert Now','2021-03-08 04:54:26','2021-09-20 07:30:28'),(26604,'en','affiliate_balance','Affiliate Balance','2021-03-08 04:56:22','2021-09-20 07:30:28'),(26605,'en','configure_payout','Configure Payout','2021-03-08 04:56:22','2021-09-20 07:30:28'),(26606,'en','affiliate_withdraw_request','Affiliate Withdraw Request','2021-03-08 04:56:22','2021-09-20 07:30:28'),(26607,'en','copy_url','Copy Url','2021-03-08 04:56:22','2021-09-20 07:30:28'),(26608,'en','affiliate_earning_history','Affiliate Earning History','2021-03-08 04:56:22','2021-09-20 07:30:28'),(26609,'en','referral_user','Referral User','2021-03-08 04:56:22','2021-09-20 07:30:28'),(26610,'en','referral_type','Referral Type','2021-03-08 04:56:22','2021-09-20 07:30:28'),(26611,'en','payment_settings','Payment Settings','2021-03-08 04:56:50','2021-09-20 07:30:28'),(26612,'en','paypal_email','Paypal Email','2021-03-08 04:56:50','2021-09-20 07:30:28'),(26613,'en','bank_informations','Bank Informations','2021-03-08 04:56:50','2021-09-20 07:30:28'),(26614,'en','acc_no_bank_name_etc','Acc. No, Bank Name etc','2021-03-08 04:56:50','2021-09-20 07:30:28'),(26615,'en','update_payment_settings','Update Payment Settings','2021-03-08 04:56:50','2021-09-20 07:30:28'),(26616,'en','affiliate_payment_settings_has_been_updated_successfully','Affiliate payment settings has been updated successfully','2021-03-08 04:56:53','2021-09-20 07:30:28'),(26617,'en','new_withdraw_request_created_successfully','New withdraw request created successfully','2021-03-08 04:57:38','2021-09-20 07:30:28'),(26618,'en','affiliate_withdraw_request_history','Affiliate withdraw request history','2021-03-08 04:57:39','2021-09-20 07:30:28'),(26619,'en','affiliate_payment_history','Affiliate payment history','2021-03-08 05:00:42','2021-09-20 07:30:28'),(26620,'en','default','Default','2021-03-08 05:06:37','2021-09-20 07:30:28'),(26621,'en','area_wise_flat_shipping_cost','Area Wise Flat Shipping Cost','2021-03-08 05:46:02','2021-09-20 07:30: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 05:46:02','2021-09-20 07:30: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 05:46:03','2021-09-20 07:30: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 05:46:03','2021-09-20 07:30: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 05:46:03','2021-09-20 07:30:28'),(26626,'en','the_requested_quantity_is_not_available_for_','The requested quantity is not available for ','2021-03-08 05:56:12','2021-09-20 07:30:28'),(26627,'en','city_has_been_inserted_successfully','City has been inserted successfully','2021-03-08 05:56:45','2021-09-20 07:30:28'),(26628,'en','namibia','Namibia','2021-03-08 05:57:17','2021-09-20 07:30:28'),(26629,'en','city_information','City Information','2021-03-08 06:14:10','2021-09-20 07:30:28'),(26630,'en','city_has_been_updated_successfully','City has been updated successfully','2021-03-08 06:14:23','2021-09-20 07:30:28'),(26631,'en','sed_ea_dolore_offici','Sed ea dolore offici','2021-03-08 06:17:47','2021-09-20 07:30:28'),(26632,'en','pickup_point_information','Pickup Point Information','2021-03-08 06:27:30','2021-09-20 07:30:28'),(26633,'en','pickup_point_status','Pickup Point Status','2021-03-08 06:27:30','2021-09-20 07:30:28'),(26634,'en','pickup_point_manager','Pick-up Point Manager','2021-03-08 06:27:30','2021-09-20 07:30:28'),(26635,'en','picuppoint_has_been_inserted_successfully','PicupPoint has been inserted successfully','2021-03-08 06:27:37','2021-09-20 07:30:28'),(26636,'en','update_pickup_point_information','Update Pickup Point Information','2021-03-08 06:27:41','2021-09-20 07:30:28'),(26637,'en','picuppoint_has_been_updated_successfully','PicupPoint has been updated successfully','2021-03-08 06:27:45','2021-09-20 07:30:28'),(26638,'en','pickip_point','Pickip Point','2021-03-08 06:28:05','2021-09-20 07:30:28'),(26639,'en','yes','Yes','2021-03-08 06:35:13','2021-09-20 07:30:28'),(26640,'en','done','Done','2021-03-08 06:35:13','2021-09-20 07:30:28'),(26641,'en','conversations_with_','Conversations With ','2021-03-08 06:36:37','2021-09-20 07:30:28'),(26642,'en','between_you_and','Between you and','2021-03-08 06:36:37','2021-09-20 07:30:28'),(26643,'en','seller_product_manage_by_admin','Seller Product Manage By Admin','2021-03-08 06:49:14','2021-09-20 07:30: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 06:49:14','2021-09-20 07:30:28'),(26645,'en','all_taxes','All Taxes','2021-03-09 03:43:13','2021-09-20 07:30:28'),(26646,'en','add_new_tax','Add New Tax','2021-03-09 03:43:13','2021-09-20 07:30:28'),(26647,'en','tax_type','Tax Type','2021-03-09 03:43:13','2021-09-20 07:30:28'),(26648,'en','tax_name','Tax Name','2021-03-09 03:43:13','2021-09-20 07:30:28'),(26649,'en','tax_status_updated_successfully','Tax status updated successfully','2021-03-09 03:43:13','2021-09-20 07:30:28'),(26650,'en','blogs','Blogs','2021-03-24 08:01:32','2021-09-20 07:30:28'),(26651,'en','blogs','Blogs','2021-03-24 08:01:32','2021-09-20 07:30:28'),(26652,'en','view_all_sellers','View All Sellers','2021-03-24 23:31:18','2021-09-20 07:30:28'),(26653,'en','file_selected','File selected','2021-04-11 04:54:39','2021-09-20 07:30:28'),(26654,'en','files_selected','Files selected','2021-04-11 04:54:39','2021-09-20 07:30:28'),(26655,'en','add_more_files','Add more files','2021-04-11 04:54:39','2021-09-20 07:30:28'),(26656,'en','adding_more_files','Adding more files','2021-04-11 04:54:39','2021-09-20 07:30:28'),(26657,'en','drop_files_here_paste_or','Drop files here, paste or','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26658,'en','upload_complete','Upload complete','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26659,'en','upload_paused','Upload paused','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26660,'en','resume_upload','Resume upload','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26661,'en','pause_upload','Pause upload','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26662,'en','retry_upload','Retry upload','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26663,'en','cancel_upload','Cancel upload','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26664,'en','uploading','Uploading','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26665,'en','processing','Processing','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26666,'en','complete','Complete','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26667,'en','files','Files','2021-04-11 04:54:40','2021-09-20 07:30:28'),(26668,'en','this_action_is_disabled_in_demo_mode','This action is disabled in demo mode','2021-05-20 03:38:21','2021-09-20 07:30:28'),(26669,'en','nothing_selected','Nothing selected','2021-05-20 03:49:25','2021-09-20 07:30:28'),(26670,'en','nothing_selected','Nothing selected','2021-05-20 03:49:25','2021-09-20 07:30:28'),(26671,'en','delivery_boy','Delivery Boy','2021-05-20 04:03:03','2021-09-20 07:30:28'),(26672,'en','all_delivery_boy','All Delivery Boy','2021-05-20 04:03:03','2021-09-20 07:30:28'),(26673,'en','add_delivery_boy','Add Delivery Boy','2021-05-20 04:03:04','2021-09-20 07:30:28'),(26674,'en','cancel_request','Cancel Request','2021-05-20 04:03:04','2021-09-20 07:30:28'),(26675,'en','configuration','Configuration','2021-05-20 04:03:04','2021-09-20 07:30:28'),(26676,'en','all_delivery_boys','All Delivery Boys','2021-05-20 04:04:59','2021-09-20 07:30:28'),(26677,'en','add_new_delivery_boy','Add New Delivery Boy','2021-05-20 04:04:59','2021-09-20 07:30:28'),(26678,'en','delivery_boys','Delivery Boys','2021-05-20 04:04:59','2021-09-20 07:30:28'),(26679,'en','collection','Collection','2021-05-20 04:05:00','2021-09-20 07:30:28'),(26680,'en','do_you_really_want_to_ban_this_delivery_boy','Do you really want to ban this delivery_boy?','2021-05-20 04:05:00','2021-09-20 07:30:28'),(26681,'en','do_you_really_want_to_unban_this_delivery_boy','Do you really want to unban this delivery_boy?','2021-05-20 04:05:00','2021-09-20 07:30:28'),(26682,'en','delivery_boy_information','Delivery Boy Information','2021-05-20 04:05:06','2021-09-20 07:30:28'),(26683,'en','select_city','Select City','2021-05-20 04:05:06','2021-09-20 07:30:28'),(26684,'en','delivery_boy_has_been_created_successfully','Delivery Boy has been created successfully','2021-05-20 04:07:01','2021-09-20 07:30:28'),(26685,'en','ban_this_delivery_boy','Ban this delivery boy','2021-05-20 04:07:02','2021-09-20 07:30:28'),(26686,'en','payment_configuration','Payment Configuration','2021-05-20 04:32:11','2021-09-20 07:30:28'),(26687,'en','monthly_salary','Monthly Salary','2021-05-20 04:32:11','2021-09-20 07:30:28'),(26688,'en','salary_amount','Salary Amount','2021-05-20 04:32:11','2021-09-20 07:30:28'),(26689,'en','per_order_commission','Per Order Commission','2021-05-20 04:32:11','2021-09-20 07:30:28'),(26690,'en','commission_rate','Commission Rate','2021-05-20 04:32:11','2021-09-20 07:30:28'),(26691,'en','notification_configuration','Notification Configuration','2021-05-20 04:32:11','2021-09-20 07:30:28'),(26692,'en','send_mail','Send Mail','2021-05-20 04:32:11','2021-09-20 07:30:28'),(26693,'en','send_otp','Send OTP','2021-05-20 04:32:11','2021-09-20 07:30:28'),(26694,'en','all_cancel_request','All Cancel Request','2021-05-20 04:32:16','2021-09-20 07:30:28'),(26695,'en','cancel_requests','Cancel Requests','2021-05-20 04:32:16','2021-09-20 07:30:28'),(26696,'en','request_by','Request By','2021-05-20 04:32:16','2021-09-20 07:30:28'),(26697,'en','request_at','Request At','2021-05-20 04:32:16','2021-09-20 07:30:28'),(26698,'en','offline_customer_package_payment_requests','Offline Customer Package Payment Requests','2021-05-20 04:37:23','2021-09-20 07:30:28'),(26699,'en','method','Method','2021-05-20 04:37:23','2021-09-20 07:30:28'),(26700,'en','txn_id','TXN ID','2021-05-20 04:37:23','2021-09-20 07:30:28'),(26701,'en','reciept','Reciept','2021-05-20 04:37:23','2021-09-20 07:30:28'),(26702,'en','offline_customer_package_payment_approved_successfully','Offline Customer Package Payment approved successfully','2021-05-20 04:37:23','2021-09-20 07:30:28'),(26703,'en','refferal_users','Refferal Users','2021-05-20 04:37:37','2021-09-20 07:30:28'),(26704,'en','reffered_by','Reffered By','2021-05-20 04:37:37','2021-09-20 07:30:28'),(26705,'en','affiliate_withdraw_request_reject','Affiliate Withdraw Request Reject','2021-05-20 04:37:59','2021-09-20 07:30:28'),(26706,'en','are_you_sure_you_want_to_reject_this','Are you sure, You want to reject this?','2021-05-20 04:37:59','2021-09-20 07:30:28'),(26707,'en','server_information','Server information','2021-05-20 04:38:23','2021-09-20 07:30:28'),(26708,'en','current_version','Current Version','2021-05-20 04:38:23','2021-09-20 07:30:28'),(26709,'en','required_version','Required Version','2021-05-20 04:38:23','2021-09-20 07:30:28'),(26710,'en','phpini_config','php.ini Config','2021-05-20 04:38:23','2021-09-20 07:30:28'),(26711,'en','config_name','Config Name','2021-05-20 04:38:23','2021-09-20 07:30:28'),(26712,'en','current','Current','2021-05-20 04:38:24','2021-09-20 07:30:28'),(26713,'en','recommended','Recommended','2021-05-20 04:38:24','2021-09-20 07:30:28'),(26714,'en','extensions_information','Extensions information','2021-05-20 04:38:24','2021-09-20 07:30:28'),(26715,'en','extension_name','Extension Name','2021-05-20 04:38:24','2021-09-20 07:30:28'),(26716,'en','filesystem_permissions','Filesystem Permissions','2021-05-20 04:38:24','2021-09-20 07:30:28'),(26717,'en','file_or_folder','File or Folder','2021-05-20 04:38:24','2021-09-20 07:30:28'),(26718,'en','assign_deliver_boy','Assign Deliver Boy','2021-05-20 04:38:42','2021-09-20 07:30:28'),(26719,'en','select_delivery_boy','Select Delivery Boy','2021-05-20 04:38:42','2021-09-20 07:30:28'),(26720,'en','picked_up','Picked Up','2021-05-20 04:38:43','2021-09-20 07:30:28'),(26721,'en','on_the_way','On The Way','2021-05-20 04:38:43','2021-09-20 07:30:28'),(26722,'en','delivery_boy_has_been_assigned','Delivery boy has been assigned','2021-05-20 04:38:43','2021-09-20 07:30:28'),(26723,'en','seller_account','Seller Account','2021-05-20 04:53:34','2021-09-20 07:30:28'),(26724,'en','copy_credentials','Copy credentials','2021-05-20 04:53:34','2021-09-20 07:30:28'),(26725,'en','customer_account','Customer Account','2021-05-20 04:53:34','2021-09-20 07:30:28'),(26726,'en','delivery_boy_account','Delivery Boy Account','2021-05-20 04:54:07','2021-09-20 07:30:28'),(26727,'en','invalid_coupon','Invalid coupon!','2021-05-20 04:58:01','2021-09-20 07:30:28'),(26728,'en','assigned_delivery','Assigned Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(26729,'en','pickup_delivery','Pickup Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(26730,'en','on_the_way_delivery','On The Way Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(26731,'en','completed_delivery','Completed Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(26732,'en','pending_delivery','Pending Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(26733,'en','cancelled_delivery','Cancelled Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(26734,'en','request_cancelled_delivery','Request Cancelled Delivery','2021-05-20 05:01:59','2021-09-20 07:30:28'),(26735,'en','total_collections','Total Collections','2021-05-20 05:01:59','2021-09-20 07:30:28'),(26736,'en','assigned_delivery_history','Assigned Delivery History','2021-05-20 05:12:13','2021-09-20 07:30:28'),(26737,'en','mark_as_pickup','Mark As Pickup','2021-05-20 05:12:13','2021-09-20 07:30:28'),(26738,'en','do_you_really_want_to_send_request_to_cancel','Do you really want to send request to cancel?','2021-05-20 05:12:13','2021-09-20 07:30:28'),(26739,'en','request_cancel','Request Cancel','2021-05-20 05:12:13','2021-09-20 07:30:28'),(26740,'en','total_collection_history','Total Collection History','2021-05-20 05:13:48','2021-09-20 07:30:28'),(26741,'en','cancelled_delivery_history','Cancelled Delivery History','2021-05-20 05:13:53','2021-09-20 07:30:28'),(26742,'en','completed_delivery_history','Completed Delivery History','2021-05-20 05:13:59','2021-09-20 07:30:28'),(26743,'en','on_the_way_delivery_history','On The Way Delivery History','2021-05-20 05:14:03','2021-09-20 07:30:28'),(26744,'en','pickup_delivery_history','Pickup Delivery History','2021-05-20 05:14:08','2021-09-20 07:30:28'),(26745,'en','website_popup','Website Popup','2021-06-02 02:31:46','2021-09-20 07:30:28'),(26746,'en','show_website_popup','Show website popup?','2021-06-02 02:31:46','2021-09-20 07:30:28'),(26747,'en','popup_content','Popup content','2021-06-02 02:31:46','2021-09-20 07:30:28'),(26748,'en','show_subscriber_form','Show Subscriber form?','2021-06-02 02:31:46','2021-09-20 07:30:28'),(26749,'en','topbar_banner','Topbar Banner','2021-06-02 02:31:49','2021-09-20 07:30:28'),(26750,'en','topbar_banner_link','Topbar Banner Link','2021-06-02 02:31:49','2021-09-20 07:30:28'),(26751,'en','disable_image_optimization','Disable image optimization?','2021-06-02 03:18:51','2021-09-20 07:30:28'),(26752,'en','back_to_uploaded_files','Back to uploaded files','2021-06-02 03:41:55','2021-09-20 07:30:28'),(26753,'en','drag__drop_your_files','Drag & drop your files','2021-06-02 03:41:56','2021-09-20 07:30:28'),(26754,'en','subscribe_now','Subscribe Now','2021-06-02 03:44:19','2021-09-20 07:30:28'),(26755,'en','play_store_link','Play Store Link','2021-06-02 03:49:21','2021-09-20 07:30:28'),(26756,'en','app_store_link','App Store Link','2021-06-02 03:49:21','2021-09-20 07:30:28'),(26757,'en','hello','Hello','2021-06-08 05:29:55','2021-09-20 07:30:28'),(26758,'en','shop_by_department','Shop By Department','2021-06-08 05:29:55','2021-09-20 07:30:28'),(26759,'en','log_out','Log Out','2021-06-08 05:29:55','2021-09-20 07:30:28'),(26760,'en','sms_templates','SMS Templates','2021-06-21 06:01:43','2021-09-20 07:30:28'),(26761,'en','loading','Loading..','2021-06-21 06:02:59','2021-09-20 07:30:28'),(26762,'en','place_order','Place Order','2021-06-21 06:02:59','2021-09-20 07:30:28'),(26763,'en','load_more','Load More.','2021-06-21 06:02:59','2021-09-20 07:30:28'),(26764,'en','nothing_more_found','Nothing more found.','2021-06-21 06:02:59','2021-09-20 07:30:28'),(26765,'en','phone_number_verification','Phone Number Verification','2021-06-21 06:03:28','2021-09-20 07:30:28'),(26766,'en','password_reset','Password Reset','2021-06-21 06:03:28','2021-09-20 07:30:28'),(26767,'en','delivery_status_change','Delivery Status Change','2021-06-21 06:03:28','2021-09-20 07:30:28'),(26768,'en','payment_status_change','Payment Status Change','2021-06-21 06:03:28','2021-09-20 07:30:28'),(26769,'en','assign_delivery_boy','Assign Delivery Boy','2021-06-21 06:03:28','2021-09-20 07:30:28'),(26770,'en','sms_body','SMS Body','2021-06-21 06:03:28','2021-09-20 07:30:28'),(26771,'en','template_id','Template ID','2021-06-21 06:03:28','2021-09-20 07:30:28'),(26772,'en','update_settings','Update Settings','2021-06-21 06:03:28','2021-09-20 07:30:28'),(26773,'en','please_turn_off_maintenance_mode_before_updating','Please turn off maintenance mode before updating.','2021-07-28 00:34:17','2021-09-20 07:30:28'),(26774,'en','file_system__cache_configuration','File System & Cache Configuration','2021-07-28 00:34:18','2021-09-20 07:30:28'),(26775,'en','google_map','Google Map','2021-07-28 00:34:19','2021-09-20 07:30:28'),(26776,'en','google_firebase','Google Firebase','2021-07-28 00:34:19','2021-09-20 07:30:28'),(26777,'en','no_notification_found','No notification found','2021-07-28 00:34:19','2021-09-20 07:30:28'),(26778,'en','view_all_notifications','View All Notifications','2021-07-28 00:34:19','2021-09-20 07:30:28'),(26779,'en','account','Account','2021-08-09 20:12:43','2021-09-20 07:30:28'),(26780,'en','item_has_been_removed_from_cart','Item has been removed from cart','2021-08-09 20:12:43','2021-09-20 07:30:28'),(26781,'en','please_choose_all_the_options','Please choose all the options','2021-08-09 20:12:43','2021-09-20 07:30:28'),(26782,'en','auction_products','Auction Products','2021-08-09 20:15:40','2021-09-20 07:30:28'),(26783,'en','add_new_auction_product','Add New auction product','2021-08-09 20:15:40','2021-09-20 07:30:28'),(26784,'en','all_auction_products','All Auction Products','2021-08-09 20:15:40','2021-09-20 07:30:28'),(26785,'en','select_brand','Select Brand','2021-08-09 20:18:10','2021-09-20 07:30:28'),(26786,'en','minimum_purchase_qty','Minimum Purchase Qty','2021-08-09 20:18:11','2021-09-20 07:30:28'),(26787,'en','discount_date_range','Discount Date Range','2021-08-09 20:18:11','2021-09-20 07:30:28'),(26788,'en','select_date','Select Date','2021-08-09 20:18:11','2021-09-20 07:30:28'),(26789,'en','1','1','2021-08-09 20:18:11','2021-08-09 20:18: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-09 20:18:11','2021-09-20 07:30:28'),(26791,'en','starting_bidding_price','Starting bidding price','2021-08-09 20:26:44','2021-09-20 07:30:28'),(26792,'en','auction_date_range','Auction Date Range','2021-08-09 20:26:44','2021-09-20 07:30:28'),(26793,'en','auction_products_orders','Auction Products Orders','2021-08-19 00:50:51','2021-09-20 07:30:28'),(26794,'en','twilio_otp','Twilio OTP','2021-08-21 05:56:00','2021-09-20 07:30:28'),(26795,'en','mimsms','MIMSMS','2021-08-21 05:56:00','2021-09-20 07:30:28'),(26796,'en','twilio_credential','Twilio Credential','2021-08-21 05:56:36','2021-09-20 07:30:28'),(26797,'en','valid_twilio_number','VALID TWILIO NUMBER','2021-08-21 05:56:36','2021-09-20 07:30:28'),(26798,'en','entity_id','ENTITY ID','2021-08-21 05:56:37','2021-09-20 07:30:28'),(26799,'en','dlt_manual','DLT Manual','2021-08-21 05:56:37','2021-09-20 07:30:28'),(26800,'en','mimsms_credential','MIMSMS Credential','2021-08-21 05:56:37','2021-09-20 07:30:28'),(26801,'en','mim_api_key','MIM_API_KEY','2021-08-21 05:56:37','2021-09-20 07:30:28'),(26802,'en','mim_sender_id','MIM_SENDER_ID','2021-08-21 05:56:37','2021-09-20 07:30:28'),(26803,'en','product_bidding_price__date_range','Product Bidding Price + Date Range','2021-08-21 07:19:33','2021-09-20 07:30:28'),(26804,'en','is_product_quantity_mulitiply','Is Product Quantity Mulitiply','2021-08-21 07:19:33','2021-09-20 07:30:28'),(26805,'en','auction_product','Auction Product','2021-08-21 19:16:21','2021-09-20 07:30:28'),(26806,'en','bidded_products','Bidded Products','2021-08-21 19:16:21','2021-09-20 07:30:28'),(26807,'en','all_auction_product','All Auction Product','2021-08-21 11:42:38','2021-09-20 07:30:28'),(26808,'en','bid_starting_amount','Bid Starting Amount','2021-08-21 11:42:38','2021-09-20 07:30:28'),(26809,'en','auction_start_date','Auction Start Date','2021-08-21 11:42:38','2021-09-20 07:30:28'),(26810,'en','auction_end_date','Auction End Date','2021-08-21 11:42:38','2021-09-20 07:30:28'),(26811,'en','total_bids','Total Bids','2021-08-21 11:42:38','2021-09-20 07:30:28'),(26812,'en','bulk_action','Bulk Action','2021-08-21 11:42:49','2021-09-20 07:30:28'),(26813,'en','delete_selection','Delete selection','2021-08-21 11:42:49','2021-09-20 07:30:28'),(26814,'en','product_approval_update_successfully','Product approval update successfully','2021-08-21 11:42:51','2021-09-20 07:30:28'),(26815,'en','view_products','View Products','2021-08-21 11:47:23','2021-09-20 07:30:28'),(26816,'en','view_all_bids','View All Bids','2021-08-21 11:47:23','2021-09-20 07:30:28'),(26817,'en','edit_auction_product','Edit Auction Product','2021-08-21 11:50:05','2021-09-20 07:30:28'),(26818,'en','auction_will_end','Auction Will End','2021-08-21 12:18:43','2021-09-20 07:30:28'),(26819,'en','starting_bid','Starting Bid','2021-08-21 12:18:43','2021-09-20 07:30:28'),(26820,'en','highest_bid','Highest Bid','2021-08-21 12:18:43','2021-09-20 07:30:28'),(26821,'en','place_bid','Place Bid','2021-08-21 12:18:43','2021-09-20 07:30:28'),(26822,'en','bid_for_product','Bid For Product','2021-08-21 12:18:44','2021-09-20 07:30:28'),(26823,'en','min_bid_amount_','Min Bid Amount: ','2021-08-21 12:18:44','2021-09-20 07:30:28'),(26824,'en','place_bid_price','Place Bid Price','2021-08-21 12:18:44','2021-09-20 07:30:28'),(26825,'en','enter_amount','Enter Amount','2021-08-21 12:18:44','2021-09-20 07:30:28'),(26826,'en','bid_placed_successfully','Bid Placed Successfully','2021-08-21 12:21:27','2021-09-20 07:30:28'),(26827,'en','my_bidded_amount','My Bidded Amount','2021-08-21 12:21:28','2021-09-20 07:30:28'),(26828,'en','chnage_bid','Chnage Bid','2021-08-21 12:21:29','2021-09-20 07:30:28'),(26829,'en','highest_bid_amount','Highest Bid Amount','2021-08-21 12:25:54','2021-09-20 07:30:28'),(26830,'en','ended','Ended','2021-08-21 12:28:51','2021-09-20 07:30:28'),(26831,'en','buy','Buy','2021-08-21 12:28:51','2021-09-20 07:30:28'),(26832,'en','address_edit','Address Edit','2021-08-21 12:30:27','2021-09-20 07:30:28'),(26833,'en','proxypay','ProxyPay','2021-08-21 12:30:40','2021-09-20 07:30:28'),(26834,'en','has_been_placed','has been Placed','2021-08-21 12:32:46','2021-09-20 07:30:28'),(26835,'en','order_has_been_deleted_successfully','Order has been deleted successfully','2021-08-21 12:33:00','2021-09-20 07:30:28'),(26836,'en','purchased','Purchased','2021-08-21 12:33:30','2021-09-20 07:30:28'),(26837,'en','remove_other_items_to_add_auction_product','Remove other items to add auction product.','2021-08-21 12:33:57','2021-09-20 07:30:28'),(26838,'en','item_alreday_added_to_the_cart','Item alreday added to the cart.','2021-08-21 12:33:57','2021-09-20 07:30:28'),(26839,'en','total_collected','Total Collected','2021-09-05 11:02:27','2021-09-20 07:30:28'),(26840,'en','earnings','Earnings','2021-09-05 11:02:27','2021-09-20 07:30:28'),(26841,'en','values','Values','2021-09-05 11:03:02','2021-09-20 07:30:28'),(26842,'en','attribute_values','Attribute values','2021-09-05 11:03:02','2021-09-20 07:30:28'),(26843,'en','global_seo','Global SEO','2021-09-14 05:23:18','2021-09-20 07:30:28'),(26844,'en','keyword_keyword','Keyword, Keyword','2021-09-14 05:23:18','2021-09-20 07:30:28'),(26845,'en','choose_file','Choose File','2021-09-14 05:23:18','2021-09-20 07:30:29'),(26846,'en','nothing_found','Nothing found','2021-09-14 05:23:18','2021-09-20 07:30:29'),(26847,'en','wallet_recharge_history','Wallet Recharge History','2021-09-14 05:23:18','2021-09-20 07:30:29'),(26848,'en','order_code_','Order code: ','2021-09-14 05:23:18','2021-09-20 07:30:29'),(26849,'en','all_categories','All categories','2021-09-14 05:23:19','2021-09-20 07:44:39'),(26850,'en','new','new','2021-09-14 07:18:02','2021-09-14 07:18:02'),(26851,'en','password','Password','2021-09-14 07:22:08','2021-09-20 07:30:29'),(26852,'en','forgot_password','Forgot password?','2021-09-14 07:22:08','2021-09-20 07:30:29'),(26853,'en','times','Times','2021-09-14 07:22:14','2021-09-20 07:30:29'),(26854,'en','be_a_seller','Be A Seller','2021-09-14 07:22:14','2021-09-20 07:30:29'),(26855,'en','sort_by','Sort by','2021-09-14 07:22:16','2021-09-20 07:30:29'),(26856,'en','tax','Tax','2021-09-14 07:22:21','2021-09-20 07:30:29'),(26857,'en','total','Total','2021-09-14 07:22:21','2021-09-20 07:30:29'),(26858,'en','postal_code','Postal code','2021-09-14 07:22:23','2021-09-20 07:30:29'),(26859,'en','terms_and_conditions','terms and conditions','2021-09-14 07:22:27','2021-09-20 07:30:29'),(26860,'en','return_policy','return policy','2021-09-14 07:22:27','2021-09-20 07:30:29'),(26861,'en','privacy_policy','privacy policy','2021-09-14 07:22:27','2021-09-20 07:30:29'),(26862,'en','order_date','Order date','2021-09-14 07:22:32','2021-09-20 07:30:29'),(26863,'en','shipping_address','Shipping address','2021-09-14 07:22:32','2021-09-20 07:30:29'),(26864,'en','order_status','Order status','2021-09-14 07:22:32','2021-09-20 07:30:29'),(26865,'en','seller_commission_activation','Seller Commission Activation','2021-09-19 04:42:21','2021-09-20 07:30: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 04:42:21','2021-09-20 07:30: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 04:42:21','2021-09-20 07:30:29'),(26868,'en','disable_image_encoding','Disable image encoding?','2021-09-19 04:42:42','2021-09-20 07:30:29'),(26869,'en','admin_approval_on_seller_product','Admin Approval On Seller Product','2021-09-19 04:42:42','2021-09-20 07:30: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 04:42:42','2021-09-20 07:30:29'),(26871,'en','proxy_pay_activation','Proxy Pay Activation','2021-09-19 04:42:42','2021-09-20 07:30: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 04:42:42','2021-09-20 07:30:29'),(26873,'en','amarpay_activation','Amarpay Activation','2021-09-19 04:42:42','2021-09-20 07:30: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 04:42:42','2021-09-20 07:30:29'),(26875,'en','category_based_commission','Category Based Commission','2021-09-19 04:44:37','2021-09-20 07:30: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 04:46:09','2021-09-20 07:30: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 04:46:38','2021-09-20 07:30:29'),(26878,'en','seller_commission_activatation','Seller Commission Activatation','2021-09-19 04:47:42','2021-09-20 07:30:29'),(26879,'en','seller_commission_updated_successfully','Seller Commission updated successfully','2021-09-19 05:28:32','2021-09-20 07:30:29'),(26880,'en','order_level','Order Level','2021-09-19 05:33:57','2021-09-20 07:30:29'),(26881,'en','icon','Icon','2021-09-19 05:33:57','2021-09-20 07:30:29'),(26882,'en','all_products','All products','2021-09-19 05:49:10','2021-09-20 07:30:29'),(26883,'en','add_new_product','Add New Product','2021-09-19 05:49:10','2021-09-20 07:30:29'),(26884,'en','reviews','reviews','2021-09-19 06:05:06','2021-09-19 06:05:06'),(26885,'en','sold_by','Sold by','2021-09-19 06:05:07','2021-09-20 07:30:29'),(26886,'en','coupon_has_been_saved_successfully','Coupon has been saved successfully','2021-09-20 01:35:28','2021-09-20 07:30:29'),(26887,'en','cart_base','Cart Base','2021-09-20 01:35:28','2021-09-20 07:30:29'),(26888,'en','coupon_has_been_deleted_successfully','Coupon has been deleted successfully','2021-09-20 01:52:19','2021-09-20 07:30:29'),(26889,'en','coupon_has_been_updated_successfully','Coupon has been updated successfully','2021-09-20 01:53:42','2021-09-20 07:30:29'),(26890,'en','coupons','Coupons','2021-09-20 02:02:10','2021-09-20 07:30:29'),(26891,'en','add_your_coupon','Add Your Coupon','2021-09-20 02:03:19','2021-09-20 07:30:29'),(26892,'en','edit_your_coupon','Edit Your Coupon','2021-09-20 02:14:13','2021-09-20 07:30:29'),(26893,'en','paypal_client_id','Paypal Client Id','2021-09-20 04:19:16','2021-09-20 07:30:29'),(26894,'en','stripe_key','Stripe Key','2021-09-20 04:19:16','2021-09-20 07:30:29'),(26895,'en','stripe_secret','Stripe Secret','2021-09-20 04:19:16','2021-09-20 07:30:29'),(26896,'en','aamarpay_credential','Aamarpay Credential','2021-09-20 04:19:16','2021-09-20 07:30:29'),(26897,'en','aamarpay_store_id','Aamarpay Store Id','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26898,'en','aamarpay_signature_key','Aamarpay signature key','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26899,'en','aamarpay_sandbox_mode','Aamarpay Sandbox Mode','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26900,'en','proxypay_credential','ProxyPay Credential','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26901,'en','proxypay_token','PROXYPAY_TOKEN','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26902,'en','proxypay_token','PROXYPAY TOKEN','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26903,'en','proxypay_entity','PROXYPAY_ENTITY','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26904,'en','proxypay_end_time','PROXYPAY_END_TIME','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26905,'en','days','Days','2021-09-20 04:19:17','2021-09-20 07:30:29'),(26906,'en','flw_public_key','FLW_PUBLIC_KEY','2021-09-20 05:04:59','2021-09-20 07:30:29'),(26907,'en','flw_secret_key','FLW_SECRET_KEY','2021-09-20 05:04:59','2021-09-20 07:30:29'),(26908,'en','flw_secret_hash','FLW_SECRET_HASH','2021-09-20 05:04:59','2021-09-20 07:30:29'),(26909,'en','categories','Categories','2021-09-20 07:30:29','2021-09-20 07:30:29'),(26932,'en','please_select_seller_first','Please Select Seller first.','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26933,'en','edit_seller_custom_followers','Edit Seller Custom Followers','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26934,'en','commission_percentage','Commission Percentage','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26935,'en','selle_commission','Selle Commission','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26936,'en','set_seller_commission','Set Seller Commission','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26937,'en','do_you_really_want_to_unban_this_seller','Do you really want to unban this seller?','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26938,'en','set_commission','Set Commission','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26939,'en','regular','Regular','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26940,'en','unverified','Unverified','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26941,'en','verified','Verified','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26942,'en','filter_by_verification_status','Filter by Verification Status','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26943,'en','set_bulk_commission','Set Bulk Commission','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26944,'en','reply','Reply','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26945,'en','query','Query','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26946,'en','sitemap_url','Sitemap URL','2025-04-24 06:19:29','2025-04-24 06:19:29'),(26947,'en','invalid_login_credentials','Invalid login credentials','2025-04-24 06:19:29','2025-04-24 06:19:29'),(27116,'en','sitemap_url','Sitemap URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27117,'bd','sitemap_url','Sitemap URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27118,'sa','sitemap_url','j%c%%�%�j%�%� URL %�j%�j%�%%�j%V%j%# j%�%�%�%�%�j%c%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27119,'es','sitemap_url','URL del mapa del sitio','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27120,'jp','sitemap_url','��a%��������� ������URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27121,'fr','sitemap_url','URL du plan du site','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27122,'in','sitemap_url','��U%��[%��������������� ������������%������%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27123,'nl','sitemap_url','Sitemap-URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27124,'af','sitemap_url','Werfkaart-URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27125,'eg','sitemap_url','j%c%%�%�j%�%� URL %�j%�j%�%%�j%V%j%# j%�%�%�%�%�j%c%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27126,'za','sitemap_url','Khariidadda goobta URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27127,'ie','sitemap_url','URL l%#arsc%�il an tSu%�mh','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27128,'sg','sitemap_url','URL peta tapak','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27129,'vn','sitemap_url','URL s^%� %��W%� trang web','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27130,'my','sitemap_url','URL peta tapak','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27131,'lk','sitemap_url','�����%��a%���%��������� URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27132,'ke','sitemap_url','Uuzaji wa Flash','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27133,'th','sitemap_url','�c%��U%��U%��U%��U%�%�U%��c%��U%��c%��U%��c%��U%��U%��c%� URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27134,'cn','sitemap_url','�b%�%������%����b%�%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27135,'zw','sitemap_url','Sitemap URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27136,'pk','sitemap_url','j%%j%�j%�%c% %#j%� %�%�j%$%�%� URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27137,'tr','sitemap_url','Site Haritas%�% URL','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27138,'en','please_select_seller_first','Please Select Seller first.','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27139,'en','commission_percentage','Commission Percentage','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27140,'en','filter_by_verification_status','Filter by Verification Status','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27141,'tr','download_file','Dosyay%�% %�%ndir','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27142,'tr','delete_file','Dosyay%�% Sil','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27143,'tr','mime_type','Mim T%]%r%]%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27144,'tr','last_modified','Son De%�i<%�tirilme Tarihi','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27145,'tr','file_size','Dosya Boyutu','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27146,'tr','file_name','Dosya ad%�%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27147,'tr','sitemap_generation_history','Site Haritas%�% Olu<%�turma Ge%�mi<%�i','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27148,'tr','generate_and_download','Olu<%�tur ve %�%ndir','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27149,'pk','download_file','%�j%�j%�%� %�j%�j%�%� %�%� %� %#j%�%�%� %Q%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27150,'pk','delete_file','%�j%�j%�%� %#%� j%�j%�%%� %#j%�%�%� %Q%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27151,'pk','mime_type','%�j%�j%�%� %#�%� %�j%%%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27152,'pk','last_modified','j%�j%�j%�%�%� j%�j%�j%�% j%�j%�%%��%�%� %#�%� %�j%��%��%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27153,'pk','file_size','%�j%�j%�%� %#j%� j%%j%�j%�j%�%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27154,'pk','file_name','%�j%�j%�%� %#j%� %�j%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27155,'pk','sitemap_generation_history','j%%j%�j%�%c% %��%�%[% j%�%�j%�%�%�j%$%%� �%�j%%%c%j%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27156,'pk','generate_and_download','j%�%�j%�j%��%� %Q% j%�%�j%�% %�j%�j%�%� %�%� %� %#j%�%�%� %Q%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27157,'zw','download_file','Dhaunirodha File','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27158,'zw','delete_file','Delete File','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27159,'zw','mime_type','Mime Type','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27160,'zw','last_modified','Last Modified','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27161,'zw','file_size','Saizi Yefaira','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27162,'zw','file_name','File Name','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27163,'zw','sitemap_generation_history','Sitemap Generation History','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27164,'zw','generate_and_download','Gadzira uye Dhawunirodha','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27165,'cn','download_file','�U%��\%\%����W%b%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27166,'cn','delete_file','����������W%b%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27167,'cn','mime_type','Mime ��%W%�� �','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27168,'cn','last_modified','�U%�����%���c%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27169,'cn','file_size','����W%b%�����%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27170,'cn','file_name','����W%b%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27171,'cn','sitemap_generation_history','�\%�������%��[%������������%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27172,'cn','generate_and_download','�������c%b%�U%��\%\%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27173,'th','download_file','�U%��U%�%�U%��U%��c%��c%��U%��U%��U%��c%��U%��U%��c%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27174,'th','delete_file','�U%��U%��c%��U%��U%��c%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27175,'th','mime_type','�U%��U%��U%�%�c%��U%��U%� MIME','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27176,'th','last_modified','�U%��U%��U%�%�U%��U%��U%��U%U%�U%��U%��c%��U%�%�U%��U%U%�U%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27177,'th','file_size','�U%��U%��U%�%�U%��c%��U%��U%��c%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27178,'th','file_name','�U%��U%V%�c%��U%��c%��U%��U%��c%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27179,'th','sitemap_generation_history','�U%��U%��U%�%�U%��U%�%�U%��U%$%�U%��U%�%�U%��U%��U%��c%��U%�%�U%��c%��U%��U%��U%��U%�%�U%��c%��U%��c%��U%��c%��U%��U%��c%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27180,'th','generate_and_download','�U%��U%��c%��U%�%�U%��c%��U%��U%�%�U%��U%�%�U%��U%��c%��c%��U%��U%��U%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27181,'ke','download_file','Pakua Faili','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27182,'ke','delete_file','Futa Faili','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27183,'ke','mime_type','Aina ya Mime','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27184,'ke','last_modified','Iliyorekebishwa Mwisho','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27185,'ke','file_size','Ukubwa wa Faili','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27186,'ke','file_name','Jina la Faili','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27187,'ke','sitemap_generation_history','Historia ya Kizazi cha ramani ya tovuti','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27188,'ke','generate_and_download','Tengeneza na Upakue','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27189,'lk','download_file','������������������������ ��������%��a%��%���%������������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27190,'lk','delete_file','������������������ ������������������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27191,'lk','mime_type','������������ ��a%������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27192,'lk','last_modified','��������������%�����[%��� �����[%���%������%������������������������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27193,'lk','file_size','������������������ �����%��a%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27194,'lk','file_name','������������������ ������������%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27195,'lk','sitemap_generation_history','�����%��a%���%��������� ������%������������%��� ��a%���%���%��[%���%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27196,'lk','generate_and_download','������%�����a%��[%�����������% ��������%��a%��%���%������������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27197,'my','download_file','Muat turun Fail','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27198,'my','delete_file','Padam Fail','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27199,'my','mime_type','Jenis Mime','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27200,'my','last_modified','Terakhir Diubah Suai','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27201,'my','file_size','Saiz Fail','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27202,'my','file_name','Nama Fail','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27203,'my','sitemap_generation_history','Sejarah Penjanaan Peta Laman','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27204,'my','generate_and_download','Hasilkan dan Muat turun','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27205,'vn','download_file','T�Q%�i xu�W%�ng t�Q%�p tin','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27206,'vn','delete_file','X%%a t�Q%�p tin','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27207,'vn','mime_type','Ki�W%�u k�W%�ch c%�m','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27208,'vn','last_modified','L�Q%�n s�W%�a %��W%�i cu�W%�i c%c%ng','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27209,'vn','file_size','K%�ch th^%�%�W%�c t�Q%�p tin','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27210,'vn','file_name','T%�n t�Q%�p tin','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27211,'vn','sitemap_generation_history','L�W%�ch s�W%� th�Q%% h�W%� s^%� %��W%� trang web','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27212,'vn','generate_and_download','T�Q%�o v%� T�Q%�i xu�W%�ng','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27213,'ie','download_file','%�osl%%d%�il Comhad','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27214,'ie','delete_file','Scrios Comhad','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27215,'ie','mime_type','Cine%�l M%�me','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27216,'ie','last_modified','Athraithe Deiridh','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27217,'ie','file_size','M%#id an Chomhaid','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27218,'ie','file_name','Ainm an Chomhaid','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27219,'ie','sitemap_generation_history','Stair Ghini%Q%int L%#arsc%�il an tSu%�mh','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27220,'ie','generate_and_download','A chruth%Q% agus a %�osl%%d%�il','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27221,'za','download_file','Soo deji faylka','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27222,'za','delete_file','Tirtir Faylka','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27223,'za','mime_type','Nooca Mime','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27224,'za','last_modified','Waxka bedelka u dambeeyay','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27225,'za','file_size','Cabbirka faylka','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27226,'za','file_name','Magaca faylka','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27227,'za','sitemap_generation_history','Taariikhda Jiilka Maabka','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27228,'za','generate_and_download','Abuur oo soo deji','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27229,'eg','download_file','j%�%�j%�%%�%� j%�%�%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27230,'eg','delete_file','j%�j%�%%� j%�%�%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27231,'eg','mime_type','%�%�j%c% j%�%�%�j%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27232,'eg','last_modified','j%�j%�j%�% j%�j%c%j%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27233,'eg','file_size','j%�j%�%� j%�%�%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27234,'eg','file_name','j%�j%%%� j%�%�%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27235,'eg','sitemap_generation_history','j%�j%�%%�j%V%j%# j%�%�%�%�%�j%c% j%�j%�j%�%%�j%� j%�%�j%�%�j%$%j%�j%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27236,'eg','generate_and_download','j%�%�j%$%j%�j%� %�j%�%�j%�%%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27237,'af','download_file','Laai l%�er af','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27238,'af','delete_file','Vee l%�er uit','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27239,'af','mime_type','Mime tipe','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27240,'af','last_modified','Laas gewysig','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27241,'af','file_size','L%�ergrootte','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27242,'af','file_name','L%�ernaam','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27243,'af','sitemap_generation_history','Sitemap Generasie Geskiedenis','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27244,'af','generate_and_download','Genereer en laai af','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27245,'nl','download_file','Bestand downloaden','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27246,'nl','delete_file','Bestand verwijderen','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27247,'nl','mime_type','Mime-type','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27248,'nl','last_modified','Laatst gewijzigd','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27249,'nl','file_size','Bestandsgrootte','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27250,'nl','file_name','Bestandsnaam','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27251,'nl','sitemap_generation_history','Sitemap Generatiegeschiedenis','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27252,'nl','generate_and_download','Genereren en downloaden','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27253,'in','download_file','�����[%���������%������ �����]%��[%������%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27254,'in','delete_file','�����]%��[%������% �����V%������ ������%������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27255,'in','mime_type','�����[%������ ���������%�����[%���%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27256,'in','last_modified','�����������%��� ��U%�����b%��������%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27257,'in','file_size','�����]%��[%������% �����[% ��U%��[%��������]%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27258,'in','file_name','�����]%��[%������% �����[% �����[%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27259,'in','sitemap_generation_history','��U%��[%��������������� �����%���%��������[%��� ��������%��c%��[%��U%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27260,'in','generate_and_download','��������������������� ������%������ ������% �����[%���������%������ ������%������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27261,'fr','download_file','T%#l%#charger le fichier','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27262,'fr','delete_file','Supprimer le fichier','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27263,'fr','mime_type','Type MIME','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27264,'fr','last_modified','Derni%�re modification','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27265,'fr','file_size','Taille du fichier','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27266,'fr','file_name','Nom de fichier','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27267,'fr','sitemap_generation_history','Historique de g%#n%#ration du plan du site','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27268,'fr','generate_and_download','G%#n%#rer et t%#l%#charger','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27269,'jp','download_file','�����������������������%�����]%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27270,'jp','delete_file','���������������������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27271,'jp','mime_type','MIME��%������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27272,'jp','last_modified','����a%���$%���%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27273,'jp','file_size','��������������a%�����Q%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27274,'jp','file_name','���������������','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27275,'jp','sitemap_generation_history','��a%��������� ��������������%���$%','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27276,'jp','generate_and_download','��������������������%�����]%���','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27277,'es','generate_and_download','Generar y descargar','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27278,'es','sitemap_generation_history','Historial de generaci%%n de mapas del sitio','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27279,'es','file_name','Nombre del archivo','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27280,'es','file_size','Tama%�%o del archivo','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27281,'es','last_modified','%�ltima modificaci%%n','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27282,'es','mime_type','Tipo MIME','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27283,'es','delete_file','Eliminar archivo','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27284,'es','download_file','Descargar archivo','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27285,'bd','generate_and_download','Generate and Download','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27286,'bd','sitemap_generation_history','Sitemap Generation History','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27287,'bd','file_name','File Name','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27288,'bd','file_size','File Size','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27289,'bd','last_modified','Last Modified','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27290,'bd','mime_type','Mime Type','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27291,'bd','delete_file','Delete File','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27292,'bd','download_file','Download File','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27293,'sa','download_file','j%�%�j%�%%�%� j%�%�%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27294,'sa','delete_file','j%�j%�%%� j%�%�%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27295,'sa','mime_type','%�%�j%c% j%�%�%�j%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27296,'sa','last_modified','j%�j%�j%�% j%�j%c%j%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27297,'sa','file_size','j%�j%�%� j%�%�%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27298,'sa','file_name','j%�j%%%� j%�%�%�%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27299,'sa','sitemap_generation_history','j%�j%�%%�j%V%j%# j%�%�%�%�%�j%c% j%�j%�j%�%%�j%� j%�%�j%�%�j%$%j%�j%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27300,'sa','generate_and_download','j%�%�j%$%j%�j%� %�j%�%�j%�%%�%�','2025-06-26 09:57:07','2025-06-26 09:57:07'),(27301,'en','admin_login_page_image','Admin Login Page Image','2026-01-21 20:31:07','2026-01-21 20:31:07'),(27302,'en','johndoeexamplecom','johndoe@example.com','2026-01-21 20:31:07','2026-01-21 20:31:07'),(27303,'en','back_to_previous_page','Back to Previous Page','2026-01-21 20:31:07','2026-01-21 20:31:07'),(27304,'en','please_enter_a_valid_phone_number_format','Please enter a valid phone number format','2026-01-21 20:31:10','2026-01-21 20:31:10'),(27305,'en','total_customer','Total Customer','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27306,'en','top_customers','Top Customers','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27307,'en','sellers_products','Sellers Products','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27308,'en','total_category','Total Category','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27309,'en','total_brands','Total Brands','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27310,'en','top_brands','Top Brands','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27311,'en','total_sales','Total Sales','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27312,'en','sales_this_month','Sales this month','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27313,'en','sales_stat','Sales Stat','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27314,'en','inhouse_sales','In-house Sales','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27315,'en','sellers_sales','Sellers Sales','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27316,'en','pending_seller','Pending Seller','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27317,'en','top_sellers','Top Sellers','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27318,'en','pending_sellers','Pending Sellers','2026-01-21 20:31:49','2026-01-21 20:31:49'),(27319,'en','total_order','Total Order','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27320,'en','pending_order','Pending order','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27321,'en','confirmed_order','Confirmed Order','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27322,'en','processed_order','Processed Order','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27323,'en','order_shipped','Order Shipped','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27324,'en','inhouse_top_category','In-house Top Category','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27325,'en','by_sales','By Sales','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27326,'en','today','Today','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27327,'en','week','Week','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27328,'en','month','Month','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27329,'en','inhouse_top_brands','In-house Top Brands','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27330,'en','inhouse_store','In-house Store','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27331,'en','all_inhouse_orders','All In-house Orders','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27332,'en','ratings','Ratings','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27333,'en','top_seller__products','Top Seller & Products','2026-01-21 20:31:50','2026-01-21 20:31:50'),(27334,'en','yearly_sales','Yearly Sales','2026-01-21 20:31:51','2026-01-21 20:31:51'),(27335,'en','saving','Saving','2026-01-21 20:31:51','2026-01-21 20:31:51'),(27336,'en','an_error_occurred_while_processing','An error occurred while processing','2026-01-21 20:31:51','2026-01-21 20:31:51'),(27337,'en','saving_as_draft','Saving As Draft','2026-01-21 20:31:51','2026-01-21 20:31:51'),(27338,'en','seller_product','Seller Product','2026-01-21 20:31:58','2026-01-21 20:31:58'),(27339,'en','physical_products','Physical Products','2026-01-21 20:31:58','2026-01-21 20:31:58'),(27340,'en','category_based_discount','Category Based Discount','2026-01-21 20:31:58','2026-01-21 20:31:58'),(27341,'en','brand_bulk_import','Brand Bulk Import','2026-01-21 20:31:58','2026-01-21 20:31:58'),(27342,'en','custom_label','Custom Label','2026-01-21 20:31:58','2026-01-21 20:31:58'),(27343,'en','size_guide','Size Guide','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27344,'en','size_chart','Size Chart','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27345,'en','measurement_points','Measurement Points','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27346,'en','warranty','Warranty','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27347,'en','smart_bar','Smart Bar','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27348,'en','notes','Notes','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27349,'en','add_new_note','Add New Note','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27350,'en','note_list','Note List','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27351,'en','unpaid_orders','Unpaid Orders','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27352,'en','applied_seller','Applied Seller','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27353,'en','seller_rating__followers','Seller Rating & Followers','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27354,'en','seller_based_commission','Seller Based Commission','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27355,'en','earning_report','Earning Report','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27356,'en','dynamic_popup','Dynamic Pop-up','2026-01-21 20:31:59','2026-01-21 20:31:59'),(27357,'en','custom_alert','Custom Alert','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27358,'en','custom_sell_alert','Custom Sell Alert','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27359,'en','email_templates','Email Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27360,'en','admin_templates','Admin Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27361,'en','seller_templates','Seller Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27362,'en','customer_templates','Customer Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27363,'en','common_templates','Common Templates','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27364,'en','notification','Notification','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27365,'en','settings','Settings','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27366,'en','notification_types','Notification Types','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27367,'en','custom_notification','Custom Notification','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27368,'en','custom_notification_history','Custom Notification History','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27369,'en','custom_visitors','Custom Visitors','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27370,'en','product_conversations','Product Conversations','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27371,'en','contacts','Contacts','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27372,'en','payment_gateways','Payment Gateways','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27373,'en','select_homepage','Select Homepage','2026-01-21 20:32:00','2026-01-21 20:32:00'),(27374,'en','homepage_settings','Homepage Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27375,'en','font_family','Font Family','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27376,'en','authentication_layout__settings','Authentication Layout & Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27377,'en','element','Element','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27378,'en','all_elements','All Elements','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27379,'en','select_header','Select Header','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27380,'en','header_settings','Header Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27381,'en','top_bar','Top Bar','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27382,'en','top_bar_list','Top Bar List','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27383,'en','top_bar_settings','Top Bar Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27384,'en','footer_settings','Footer Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27385,'en','business_settings','Business Settings','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27386,'en','order_configuration','Order Configuration','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27387,'en','file_system__cache____________________________________configuration','File System & Cache Configuration','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27388,'en','whatsapp_chat','WhatsApp Chat','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27389,'en','shipping_states','Shipping States','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27390,'en','shipping_areas','Shipping Areas','2026-01-21 20:32:01','2026-01-21 20:32:01'),(27391,'en','shipping_zones','Shipping Zones','2026-01-21 20:32:02','2026-01-21 20:32:02'),(27392,'en','shipping_carrier','Shipping Carrier','2026-01-21 20:32:02','2026-01-21 20:32:02'),(27393,'en','sitemap_generator','Sitemap Generator','2026-01-21 20:32:02','2026-01-21 20:32:02'),(27394,'en','clear_cache','Clear Cache','2026-01-21 20:32:03','2026-01-21 20:32:03'),(27395,'en','new_product','New Product','2026-01-21 20:32:03','2026-01-21 20:32:03'),(27396,'en','new_category','New Category','2026-01-21 20:32:03','2026-01-21 20:32:03'),(27397,'en','new_brand','New Brand','2026-01-21 20:32:03','2026-01-21 20:32:03'),(27398,'en','view_all','View All','2026-01-21 22:31:58','2026-01-21 22:31:58'),(27399,'en','become_a_seller_','Become a Seller !','2026-01-21 22:32:00','2026-01-21 22:32:00'),(27400,'en','login_to_seller','Login to Seller','2026-01-21 22:32:00','2026-01-21 22:32:00'),(27401,'en','helpline','Helpline','2026-01-21 22:32:00','2026-01-21 22:32:00'),(27402,'en','seller_zone','Seller Zone','2026-01-21 22:32:06','2026-01-21 22:32:06'),(27403,'en','become_a_seller','Become A Seller','2026-01-21 22:32:06','2026-01-21 22:32:06'),(27404,'en','delete_your_account','Delete Your Account','2026-01-21 22:32:07','2026-01-21 22:32:07'),(27405,'en','warning_you_cannot_undo_this_action','Warning: You cannot undo this action','2026-01-21 22:32:07','2026-01-21 22:32:07'),(27406,'en','note_','Note: ','2026-01-21 22:32:07','2026-01-21 22:32:07'),(27407,'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.','2026-01-21 22:32:07','2026-01-21 22:32:07'),(27408,'en','deleting_account_means','Deleting Account Means:','2026-01-21 22:32:07','2026-01-21 22:32:07'),(27409,'en','warning','warning','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27410,'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','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27411,'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','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27412,'en','delete_account','Delete Account','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27413,'en','sorry_nothing_found_for','Sorry, nothing found for','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27414,'en','please_login_as_a_customer_to_add_products_to_the_wishlist','Please Login as a customer to add products to the WishList.','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27415,'en','please_login_as_a_customer_to_add_products_to_the_cart','Please Login as a customer to add products to the Cart.','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27416,'en','product_not_found','Product not found','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27417,'en','sorry_only_customers__sellers_can_bid','Sorry, Only customers & Sellers can Bid.','2026-01-21 22:32:08','2026-01-21 22:32:08'),(27418,'en','coupon_code_copied','Coupon Code Copied','2026-01-21 22:32:09','2026-01-21 22:32:09'),(27419,'en','use_phone_number_instead','Use Phone Number Instead','2026-01-21 22:32:09','2026-01-21 22:32:09'),(27420,'en','featured_categories','Featured Categories','2026-01-21 22:32:46','2026-01-21 22:32:46'),(27421,'en','activate_addon_link','Activate Addon Link','2026-01-21 22:59:58','2026-01-21 22:59:58'),(27422,'en','data_can_not_change_in_demo_mode','Data can not change in demo mode.','2026-01-21 22:59:58','2026-01-21 22:59:58'),(27423,'en','gst_activation_confirmation','GST Activation Confirmation','2026-01-21 22:59:58','2026-01-21 22:59:58'),(27424,'en','are_you_sure_you_want_to_enable_the_gst_system','Are you sure you want to enable the GST system?','2026-01-21 22:59:58','2026-01-21 22:59:58'),(27425,'en','this_action_cannot_be_undone_all_existing_vat_taxes_linked_to_products_will_be_permanently_removed_in_addition_any_products_without_an_assigned_hsngst_code_will_be_automatically_unpublished','This action cannot be undone. All existing VAT taxes linked to products will be permanently removed. In addition, any products without an assigned HSN/GST code will be automatically unpublished.','2026-01-21 22:59:58','2026-01-21 22:59:58'),(27426,'en','main_item_purchase_code','Main item purchase code','2026-01-21 23:00:04','2026-01-21 23:00:04'),(27427,'en','addon_purchase_code','Addon purchase code','2026-01-21 23:00:04','2026-01-21 23:00:04'),(27428,'en','you_can_autometically_update_from_previous_10_ten_version','You can autometically update from previous 10 (ten) version.','2026-01-21 23:00:25','2026-01-21 23:00:25'),(27430,'en','purchase_code','Purchase code','2026-01-21 23:05:17','2026-01-21 23:05:17'),(27431,'en','otp_login_configuration','OTP Login Configuration','2026-01-21 23:05:18','2026-01-21 23:05:18'),(27433,'en','cache_cleared_successfully','Cache cleared successfully','2026-01-22 00:26:45','2026-01-22 00:26:45'),(27434,'en','drafts','Drafts','2026-01-22 00:27:55','2026-01-22 00:27:55'),(27435,'en','publish','Publish','2026-01-22 00:27:55','2026-01-22 00:27:55'),(27436,'en','mark_featured','Mark Featured','2026-01-22 00:27:56','2026-01-22 00:27:56'),(27437,'en','mark_todays_deal','Mark Todays Deal','2026-01-22 00:27:56','2026-01-22 00:27:56'),(27438,'en','processing_','Processing ...','2026-01-22 00:27:56','2026-01-22 00:27:56'),(27439,'en','gst_verification_is_pending_for_this_account','GST verification is pending for this account.','2026-01-22 00:27:56','2026-01-22 00:27:56'),(27440,'en','please_assign_gst_details','Please assign GST details','2026-01-22 00:27:56','2026-01-22 00:27:56'),(27441,'en','selected_item_deleted_successfully','Selected item deleted successfully','2026-01-22 00:27:56','2026-01-22 00:27:56'),(27442,'en','selected_items_deleted_successfully','Selected items deleted successfully','2026-01-22 00:27:57','2026-01-22 00:27:57'),(27443,'en','selected_items_published_successfully','Selected items Published successfully','2026-01-22 00:27:57','2026-01-22 00:27:57'),(27444,'en','selected_items_added_in_featured_successfully','Selected items added in featured successfully','2026-01-22 00:27:57','2026-01-22 00:27:57'),(27445,'en','selected_products_have_been_marked_as_todays_deals','Selected products have been marked as Today���s Deals.','2026-01-22 00:27:57','2026-01-22 00:27:57'),(27446,'en','are_you_sure_you_want_to_delete_the_selected_product','Are you sure you want to delete the selected product?','2026-01-22 00:27:57','2026-01-22 00:27:57'),(27447,'en','this_action_cannot_be_undone_once_deleted_the_product_will_be_permanently_removed','This action cannot be undone. Once deleted, the product will be permanently removed.','2026-01-22 00:27:57','2026-01-22 00:27:57'),(27448,'en','please_select_at_least_one_item','Please select at least one item','2026-01-22 00:27:57','2026-01-22 00:27:57'),(27449,'en','are_you_sure_you_want_to_delete_the_selected_products','Are you sure you want to delete the selected products?','2026-01-22 00:27:57','2026-01-22 00:27:57'),(27450,'en','this_action_cannot_be_undone_once_deleted_the_products_will_be_permanently_removed','This action cannot be undone. Once deleted, the products will be permanently removed.','2026-01-22 00:27:58','2026-01-22 00:27:58'),(27451,'en','publish_confirmation','Publish Confirmation','2026-01-22 00:27:58','2026-01-22 00:27:58'),(27452,'en','are_you_sure_you_want_to_publish_the_selected_products','Are you sure you want to publish the selected products?','2026-01-22 00:27:58','2026-01-22 00:27:58'),(27453,'en','products_already_published_will_be_skipped','Products already published will be skipped.','2026-01-22 00:27:58','2026-01-22 00:27:58'),(27454,'en','todays_deal_confirmation','Today���s Deal Confirmation','2026-01-22 00:27:58','2026-01-22 00:27:58'),(27455,'en','are_you_sure_you_want_to_make_the_selected_products_as_todays_deals','Are you sure you want to make the selected products as Today���s Deals?','2026-01-22 00:27:58','2026-01-22 00:27:58'),(27456,'en','products_already_marked_as_todays_deals_will_be_skipped','Products already marked as Today���s Deals will be skipped.','2026-01-22 00:27:58','2026-01-22 00:27:58'),(27457,'en','feature_confirmation','Feature Confirmation','2026-01-22 00:27:58','2026-01-22 00:27:58'),(27458,'en','are_you_sure_you_want_to_mark_the_selected_products_as_featured_','Are you sure you want to mark the selected products as featured ?','2026-01-22 00:27:59','2026-01-22 00:27:59'),(27459,'en','products_already_marked_as_featured_will_be_skipped','Products already marked as featured will be skipped.','2026-01-22 00:27:59','2026-01-22 00:27:59'),(27460,'en','failed_to_load_data','Failed to load data.','2026-01-22 00:27:59','2026-01-22 00:27:59'),(27461,'en','failed_to_load_stock_data','Failed to load stock data','2026-01-22 00:27:59','2026-01-22 00:27:59'),(27462,'en','stock_updated_successfully','Stock updated successfully','2026-01-22 00:27:59','2026-01-22 00:27:59'),(27463,'en','thumb','Thumb','2026-01-22 00:28:07','2026-01-22 00:28:07'),(27464,'en','name__brand','Name / Brand','2026-01-22 00:28:07','2026-01-22 00:28:07'),(27465,'en','owner__category','Owner / Category','2026-01-22 00:28:07','2026-01-22 00:28:07'),(27466,'en','price_details','Price Details','2026-01-22 00:28:07','2026-01-22 00:28:07'),(27467,'en','clear_tempdata','Clear Tempdata','2026-01-22 00:28:40','2026-01-22 00:28:40'),(27468,'en','import_product','Import Product','2026-01-22 00:28:40','2026-01-22 00:28:40'),(27469,'en','files__media','Files & Media','2026-01-22 00:28:40','2026-01-22 00:28:40'),(27470,'en','price__stock','Price & Stock','2026-01-22 00:28:40','2026-01-22 00:28:40'),(27471,'en','seo','SEO','2026-01-22 00:28:41','2026-01-22 00:28:41'),(27472,'en','frequently_bought','Frequently Bought','2026-01-22 00:28:41','2026-01-22 00:28:41'),(27473,'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.','2026-01-22 00:28:41','2026-01-22 00:28:41'),(27474,'en','weight','Weight','2026-01-22 00:28:41','2026-01-22 00:28:41'),(27475,'en','in_kg','In Kg','2026-01-22 00:28:41','2026-01-22 00:28:41'),(27476,'en','the_minimum_quantity_needs_to_be_purchased_by_your_customer','The minimum quantity needs to be purchased by your customer.','2026-01-22 00:28:42','2026-01-22 00:28:42'),(27477,'en','select_main','Select Main','2026-01-22 00:28:42','2026-01-22 00:28:42'),(27478,'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.','2026-01-22 00:28:42','2026-01-22 00:28:42'),(27479,'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.','2026-01-22 00:28:42','2026-01-22 00:28:42'),(27480,'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.','2026-01-22 00:28:42','2026-01-22 00:28:42'),(27481,'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','2026-01-22 00:28:42','2026-01-22 00:28:42'),(27482,'en','choose_flash_title','Choose Flash Title','2026-01-22 00:28:42','2026-01-22 00:28:42'),(27483,'en','choose_discount_type','Choose Discount Type','2026-01-22 00:28:43','2026-01-22 00:28:43'),(27484,'en','product_files__media','Product Files & Media','2026-01-22 00:28:43','2026-01-22 00:28:43'),(27485,'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.','2026-01-22 00:28:43','2026-01-22 00:28:43'),(27486,'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_if_no_thumbnail_is_uploaded_the_products_first_gallery_image_will_be_used_as_the_thumbnailimage','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. If no thumbnail is uploaded, the product\'s first gallery image will be used as the thumbnail,%�image.','2026-01-22 00:28:43','2026-01-22 00:28:43'),(27487,'en','try_to_upload_videos_under_30_seconds_for_better_performance','Try to upload videos under 30 seconds for better performance.','2026-01-22 00:28:43','2026-01-22 00:28:43'),(27488,'en','video_thumbnails','Video Thumbnails','2026-01-22 00:28:43','2026-01-22 00:28:43'),(27489,'en','add_thumbnails_in_the_same_order_as_your_videos_if_you_upload_only_one_image_it_will_be_used_for_all_videos','Add thumbnails in the same order as your videos. If you upload only one image, it will be used for all videos.','2026-01-22 00:28:43','2026-01-22 00:28:43'),(27490,'en','youtube_video__shorts_link','Youtube video / shorts link','2026-01-22 00:28:44','2026-01-22 00:28:44'),(27491,'en','youtube_video__shorts_url','Youtube video / shorts url','2026-01-22 00:28:44','2026-01-22 00:28:44'),(27492,'en','youtube_video_or_short_link','Youtube video or short link','2026-01-22 00:28:44','2026-01-22 00:28:44'),(27493,'en','add_another','Add Another','2026-01-22 00:28:44','2026-01-22 00:28:44'),(27494,'en','external_link','External link','2026-01-22 00:28:44','2026-01-22 00:28:44'),(27495,'en','leave_it_blank_if_you_do_not_use_external_site_link','Leave it blank if you do not use external site link','2026-01-22 00:28:44','2026-01-22 00:28:44'),(27496,'en','external_link_button_text','External link button text','2026-01-22 00:28:45','2026-01-22 00:28:45'),(27497,'en','select_warranty','Select Warranty','2026-01-22 00:28:45','2026-01-22 00:28:45'),(27498,'en','warranty_note','Warranty Note','2026-01-22 00:28:45','2026-01-22 00:28:45'),(27499,'en','select_warranty_note','Select Warranty Note','2026-01-22 00:28:45','2026-01-22 00:28:45'),(27500,'en','select_product','Select Product','2026-01-22 00:28:45','2026-01-22 00:28:45'),(27501,'en','add_products','Add Products','2026-01-22 00:28:46','2026-01-22 00:28:46'),(27502,'en','choose_category','Choose Category','2026-01-22 00:28:46','2026-01-22 00:28:46'),(27503,'en','search_by_product_name','Search by Product Name','2026-01-22 00:28:46','2026-01-22 00:28:46'),(27504,'en','add','Add','2026-01-22 00:28:46','2026-01-22 00:28:46'),(27505,'en','copy_products','Copy Products','2026-01-22 00:28:47','2026-01-22 00:28:47'),(27506,'en','your_refund_type_is_category_based_at_first_select_the_main_category','Your refund type is category based. At first select the main category.','2026-01-22 00:28:47','2026-01-22 00:28:47'),(27507,'en','this_product_allows_refunds','This product allows refunds.','2026-01-22 00:28:48','2026-01-22 00:28:48'),(27508,'en','selected_main_category_has_no_refund_select_a_refundable_category','Selected main category has no refund. Select a refundable category.','2026-01-22 00:28:48','2026-01-22 00:28:48'),(27509,'en','could_not_verify_category_refund_status','Could not verify category refund status.','2026-01-22 00:28:48','2026-01-22 00:28:48'),(27510,'en','thumb','Thumb','2026-01-22 00:33:06','2026-01-22 00:33:06'); /*!40000 ALTER TABLE `translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uploads` -- DROP TABLE IF EXISTS `uploads`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `uploads` ( `id` int NOT NULL AUTO_INCREMENT, `file_original_name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `file_name` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `user_id` int DEFAULT NULL, `file_size` int DEFAULT NULL, `extension` varchar(10) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `type` varchar(15) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `external_link` varchar(500) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uploads` -- LOCK TABLES `uploads` WRITE; /*!40000 ALTER TABLE `uploads` DISABLE KEYS */; /*!40000 ALTER TABLE `uploads` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_coupons` -- DROP TABLE IF EXISTS `user_coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_coupons` ( `user_id` int NOT NULL, `coupon_id` int NOT NULL, `coupon_code` varchar(255) COLLATE utf8mb4_general_ci NOT NULL, `min_buy` double(20,2) NOT NULL, `validation_days` int NOT NULL, `discount` double(20,2) NOT NULL, `discount_type` varchar(20) COLLATE utf8mb4_general_ci NOT NULL, `expiry_date` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_coupons` -- LOCK TABLES `user_coupons` WRITE; /*!40000 ALTER TABLE `user_coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `user_coupons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `users` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `referred_by` int DEFAULT NULL, `provider` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `provider_id` varchar(50) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `refresh_token` text COLLATE utf8mb3_unicode_ci, `access_token` longtext COLLATE utf8mb3_unicode_ci, `user_type` varchar(20) COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'customer', `name` varchar(191) COLLATE utf8mb3_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `verification_code` text COLLATE utf8mb3_unicode_ci, `otp_code` int DEFAULT NULL, `otp_sent_time` timestamp NULL DEFAULT NULL, `new_email_verificiation_code` text COLLATE utf8mb3_unicode_ci, `password` varchar(191) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `device_token` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `avatar` varchar(256) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `avatar_original` varchar(256) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `address` varchar(300) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `country` varchar(30) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `state` varchar(30) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `city` varchar(30) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `postal_code` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `balance` double(20,2) NOT NULL DEFAULT '0.00', `banned` tinyint NOT NULL DEFAULT '0', `is_suspicious` tinyint DEFAULT '0', `referral_code` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `customer_package_id` int DEFAULT NULL, `remaining_uploads` int 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=10 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (3,NULL,NULL,NULL,NULL,NULL,'seller','Mr. Seller','seller@example.com','2018-12-11 18:00:00',NULL,NULL,NULL,NULL,'$2y$10$eUKRlkmm2TAug75cfGQ4i.WoUbcJ2uVPqUlVkox.cv4CCyGEIMQEm','GINywe8dds1cOqUAWuDMrkTss2DdqeXVRif3zJnhzu4Ezlpv5S58OXGFq2Lj',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,0,'3dLUoHsR1l',NULL,NULL,'2018-10-07 04:42:57','2020-03-05 01:33:22'),(8,NULL,NULL,NULL,NULL,NULL,'customer','Mr. Customer','customer@example.com','2018-12-11 18:00:00',NULL,NULL,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,0,'8zJTyXTlTT',NULL,NULL,'2018-10-07 04:42:57','2020-03-03 04:26:11'),(9,NULL,NULL,NULL,NULL,NULL,'admin','Manjaro','info@manjaro.store','2026-01-21 20:01:00',NULL,NULL,NULL,NULL,'$2y$10$bBkLeLclKSy.JVnm/nxuP.3I7WorO5wiCtCs.u4oKZ1IVK.nA99KS',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,0,0,NULL,NULL,0,'2026-01-21 20:31:00','2026-01-21 20:31:00'); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wallets` -- DROP TABLE IF EXISTS `wallets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wallets` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `amount` double(20,2) NOT NULL, `payment_method` varchar(255) COLLATE utf8mb3_unicode_ci DEFAULT NULL, `payment_details` longtext COLLATE utf8mb3_unicode_ci, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wallets` -- LOCK TABLES `wallets` WRITE; /*!40000 ALTER TABLE `wallets` DISABLE KEYS */; /*!40000 ALTER TABLE `wallets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `warranties` -- DROP TABLE IF EXISTS `warranties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `warranties` ( `id` int NOT NULL AUTO_INCREMENT, `text` varchar(100) COLLATE utf8mb4_general_ci NOT NULL, `logo` int 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=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `warranties` -- LOCK TABLES `warranties` WRITE; /*!40000 ALTER TABLE `warranties` DISABLE KEYS */; /*!40000 ALTER TABLE `warranties` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `warranty_translations` -- DROP TABLE IF EXISTS `warranty_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `warranty_translations` ( `id` bigint NOT NULL AUTO_INCREMENT, `warranty_id` bigint NOT NULL, `text` varchar(50) COLLATE utf8mb3_unicode_ci NOT NULL, `lang` varchar(100) COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `warranty_translations` -- LOCK TABLES `warranty_translations` WRITE; /*!40000 ALTER TABLE `warranty_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `warranty_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wishlists` -- DROP TABLE IF EXISTS `wishlists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wishlists` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `product_id` int NOT 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wishlists` -- LOCK TABLES `wishlists` WRITE; /*!40000 ALTER TABLE `wishlists` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zones` -- DROP TABLE IF EXISTS `zones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `zones` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_general_ci 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; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zones` -- LOCK TABLES `zones` WRITE; /*!40000 ALTER TABLE `zones` DISABLE KEYS */; /*!40000 ALTER TABLE `zones` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2026-01-22 2:02:35